Why do Sublime Text 3 Themes not affect the sidebar?

前端 未结 14 1991
我寻月下人不归
我寻月下人不归 2020-12-12 12:32

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

相关标签:
14条回答
  • 2020-12-12 13:30

    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"
        ...
    }
    
    0 讨论(0)
  • 2020-12-12 13:30

    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.

    0 讨论(0)
提交回复
热议问题