-
As it is stated above, I would like to know how one defines a font to be bold in the json file itself. Font family and size is clear, just not weight. I have seen a discussion which was pertaining to the Python file. However, that is not what I where I would like to have it defined, therefore I felt the need to start this discussion. I apologise if I may have missed another similar discussion though. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@32-git It's easy to change the font weight in json file, you have to change this block of code for any font changes:
For bold font weight, just replace the Here is the difference: Hope it helps, you can also try my ThemeMaker program for making custom themes. |
Beta Was this translation helpful? Give feedback.
@32-git It's easy to change the font weight in json file, you have to change this block of code for any font changes:
For bold font weight, just replace the
"font": "Roboto",
to"font": "Roboto Bold",
Here is the difference:
Hope it helps, you can also try my ThemeMaker program for making custom themes.