Sublime Text 3 侧边栏颜色
Sublime Text 3 Sidebar Color
我总是为编辑器使用深色
使用sublime text 3我无法更改侧边栏的颜色,怎么办?
有两种选择。第一种是下载 theme from Package Control that has dark backgrounds - I personally prefer Theme - Soda
并在您的用户首选项中设置 Soda Dark 3.sublime-theme
。
另一种选择是自己修改 .sublime-theme
文件。下面将侧边栏的背景设置为黑色:
{
"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]
},
我总是为编辑器使用深色
使用sublime text 3我无法更改侧边栏的颜色,怎么办?
有两种选择。第一种是下载 theme from Package Control that has dark backgrounds - I personally prefer Theme - Soda
并在您的用户首选项中设置 Soda Dark 3.sublime-theme
。
另一种选择是自己修改 .sublime-theme
文件。下面将侧边栏的背景设置为黑色:
{
"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]
},