Sublime Forum

Wich setting have to be turned True to see that effect on material theme?

#1

Hey!

I would like to add option to higlight current file in sidebar. Like in the picture below? I mean in material theme?

Best Regards

Also

I would like to get permament changes in my intendguidlines. After I make some changes in ST theme, after I restart ST changes aren’t remembered.

0 Likes

#2

edit the ThemeName.sublime-theme file of your current theme and add this code:

// Sidebar rows
{
“class”: “tree_row”,
“layer0.texture”: “”,
“layer0.tint”: [43, 43, 43],
“layer0.opacity”: 1,
},
// Sidebar row selected
{
“class”: “tree_row”,
“attributes”: [“selected”],
“layer0.texture”: “”,
“layer0.tint”: [180, 180, 180],
“layer0.opacity”: 0.1,
},
// Sidebar row hover
{
“class”: “tree_row”,
“attributes”: [“hover”],
“layer0.texture”: “”,
“layer0.tint”: [255, 255, 255],
“layer0.opacity”: 0.1,
},

You will see the behavior, then change to your desired colors and done!

Note: if you have installed a Theme from repository it will be packaged into a Filename.sublime-package file (you can find them on “Installed Packages” directory)
to unpackage that and edit the .sublime-theme file install a plugin called “Extract Sublime Package

0 Likes