silli0x
silli0x

Reputation: 15

Sublime Text 3 Sidebar Color

I always use dark colors for editor

With sublimetext3 I can not change the color of the sidebar, how to do it?

Upvotes: 0

Views: 4450

Answers (1)

MattDMo
MattDMo

Reputation: 102852

There are two options. The first is to download a theme from Package Control that has dark backgrounds - I personally prefer Theme - Soda with the Soda Dark 3.sublime-theme setting in your user preferences.

The other option is to modify your .sublime-theme file yourself. The following will set the background of the sidebar to black:

{
    "class": "sidebar_container",
    "layer0.tint": [0, 0, 0], // this is the color setting
    "layer0.opacity": 1.0,
    "layer0.inner_margin": [1, 1, 2, 1],
    "content_margin": [0, 0, 1, 0]
},

Upvotes: 1

Related Questions