I generally only use dark themes for coding, so it\'s really annoying that Sublime Text 3\'s sidebar stays light themed whatever theme you apply.
Does anyone know ho
setting color_scheme
only sets the code pallet,
setting theme
sets the whole ST3 theme to the one you specify:
{
"theme": "Nil.sublime-theme",
"color_scheme": "Packages/Theme - Nil/Big Duo.tmTheme"
...
}
I had the same problem. Just set the theme in Preferences -> Settings – User by editing the json property called.
{
// Default theme
"theme": "Material-Theme.sublime-theme",
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme"
}
For Material theme that I use. It worked for me.