Sublime Forum

How to increase the file tree and tab font size?

#1

Hi,
I’m getting old. Is there a way to increase the file tree and tab font size? If not increase, at least make the tab text bold.
Thanks

0 Likes

#2

check the .sublime-theme file for the theme you’re using.
if default that’d be …/Packages/Theme - Default/Default.sublime-theme
locate “class”: “sidebar_label”
and add key/value pair
“font.size”: 20

0 Likes

#3

Like this? It doesn’t seem to work:

name
sidebar_label
settings

font.size
20

0 Likes

#4

not color schemes but editor theme.
check the file path i posted …/Packages/Theme - Default/Default.sublime-theme.

..
..
 {
     "class": "sidebar_label",
     "color": [0, 0, 0],
     "font.size": 20
     // , "shadow_color": [250, 250, 250], "shadow_offset": [0, 0]
 },
..
..
0 Likes

#5

Awesome. I did the same for tab_label. Thanks!

0 Likes