我总是使用深色编辑器
使用sublimetext3我无法改变侧边栏的颜色,怎么做?
答案 0 :(得分:1)
有两种选择。第一种是从具有深色背景的Package Control下载theme - 我个人更喜欢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]
},