i am trying to set my font for Theme{} ```Default...
# compose-desktop
z
i am trying to set my font for Theme{}
Copy code
DefaultFont = FontFamily(
    Font(resource = "fonts/Noto-COLRv1-COLRv1_normal_chars_removed.ttf", FontWeight.Normal, FontStyle.Normal),
    Font(resource = "fonts/Noto-COLRv1-COLRv1_normal_chars_removed.ttf", FontWeight.SemiBold, FontStyle.Normal),
    Font(resource = "fonts/Noto-COLRv1-COLRv1_normal_chars_removed.ttf", FontWeight.Bold, FontStyle.Normal),
    Font(resource = "fonts/NotoSans-Regular.ttf", FontWeight.Normal, FontStyle.Normal),
    Font(resource = "fonts/NotoSans-SemiBold.ttf", FontWeight.SemiBold, FontStyle.Normal),
    Font(resource = "fonts/NotoSans-SemiBold.ttf", FontWeight.Bold, FontStyle.Normal),
)
but it seems only the first font gets used. i would want emojis be taken from the emoji font and when the emoji font does not have the normal characters it should get the from the next one in the list "fonts/NotoSans-Regular.ttf" but instead it shows emoji correct but uses some other default font for normal text what can i do? can i change the global default font used in compose desktop app? PS: just in case you are now asking, why don't you put those 2 in 1 font file. i did not manage to make that work and it seems nobobdy has :-(