Please help me to change font size of folder and file names in SublimeText. The “font_size” parameter works only for the code
Resizing folder and file names
deathaxe
#2
Anything but the editor is controlled by *.sublime-theme files.
A theme can be customized via UI: Customize Theme
command palette entry.
Some themes such as Adaptive support font customization via variables.
// Documentation at https://www.sublimetext.com/docs/themes.html
{
"variables":
{
"font_size_sm": 11,
"font_size": 12,
"font_size_lg": 13,
"font_size_title": 24,
}
}
If a theme doesn’t or more fine gained control is desired, each element can be customized via theme rules individually.
// Documentation at https://www.sublimetext.com/docs/themes.html
{
"variables":
{
},
"rules":
[
{
"class": "sidebar_heading",
"font.size": 13,
},
{
"class": "sidebar_label",
"font.size": 10,
},
]
}
1 Like