Sublime Forum

Change interface font size

#1

is it possible to change font size of text in the side bar and in GUI ? (im not talking about font-size of content of editable text in the editor)

0 Likes

#2

Yes, see http://www.sublimetext.com/docs/3/themes.html for documentation on how to modify the theme.

You can add custom rules without editing the default theme by creating a file named Packages/User/Default.sublime-theme (or Adaptive.sublime-theme for the Adaptive theme). Inside of that, add rules with overrides that you want applied. For example, to change the font size in the sidebar, the Package/User/Default.sublime-theme should look like:

[
    {
        "class": "sidebar_label",
        "font.size": 16,
    }
]
0 Likes

#3

This is what Preferences.sublime-settings in Packages\User looks like. What you said didn’t change anything. font-size works but I want to increase size of text in sidebar.

{
	"color_scheme": "Packages/Color Scheme - Default/Mariana.tmTheme",
	"font_size": 11,
	"theme": "Adaptive.sublime-theme"
}
0 Likes

#4

What does your Packages/User/Adaptive.sublime-theme file look like?

0 Likes