Sublime text 3设置侧栏

鉴于目前网上对修改sublime text3 左侧边栏样式的解决方法比较少,给的解决方法也很模糊,于是笔者我花了点时间整理个比较详细的解决方法步骤供各位参考:

1、首先打开sublime text3,点击如下图所示:


会进打开此文件夹:


2、之后进入上图所示文件夹,打开里面的配置文件:Default.sublime-theme

3、设置左侧栏背景颜色》

搜索:sidebar_tree,修改

        “class”: “sidebar_tree”,
        “row_padding”: [8, 3],
        “indent”: 12,
        “indent_offset”: 17,
        “indent_top_level”: false,
        “layer0.tint”: [47, 79, 79], //修改此处RGB代码
        “layer0.opacity”: 1.0,
        “dark_content”: false

4、设置左侧栏字体颜色》

搜索:sidebar_label,修改

“class”: “sidebar_label”,
        “color”: [224, 238, 238], //修改此处RGB代码
        “font.bold”: false,
        “font.italic”: false
        // , “shadow_color”: [250, 250, 250], “shadow_offset”: [0, 0]

5、设置左侧栏选中字体颜色》

“class”: “sidebar_label”,
        “parents”: [{“class”: “tree_row”, “attributes”: [“selected”]}],
        “color”: [255, 255, 255] //修改此处RGB代码
        // , “shadow_color”: [60, 60, 60], “shadow_offset”: [0, 1]


设置完毕,笔者设置样式效果图:



            </div>

鉴于目前网上对修改sublime text3 左侧边栏样式的解决方法比较少,给的解决方法也很模糊,于是笔者我花了点时间整理个比较详细的解决方法步骤供各位参考:

1、首先打开sublime text3,点击如下图所示:


会进打开此文件夹:


2、之后进入上图所示文件夹,打开里面的配置文件:Default.sublime-theme

3、设置左侧栏背景颜色》

搜索:sidebar_tree,修改

        “class”: “sidebar_tree”,
        “row_padding”: [8, 3],
        “indent”: 12,
        “indent_offset”: 17,
        “indent_top_level”: false,
        “layer0.tint”: [47, 79, 79], //修改此处RGB代码
        “layer0.opacity”: 1.0,
        “dark_content”: false

4、设置左侧栏字体颜色》

搜索:sidebar_label,修改

“class”: “sidebar_label”,
        “color”: [224, 238, 238], //修改此处RGB代码
        “font.bold”: false,
        “font.italic”: false
        // , “shadow_color”: [250, 250, 250], “shadow_offset”: [0, 0]

5、设置左侧栏选中字体颜色》

“class”: “sidebar_label”,
        “parents”: [{“class”: “tree_row”, “attributes”: [“selected”]}],
        “color”: [255, 255, 255] //修改此处RGB代码
        // , “shadow_color”: [60, 60, 60], “shadow_offset”: [0, 1]


设置完毕,笔者设置样式效果图:



            </div>

猜你喜欢

转载自blog.csdn.net/qq_40428678/article/details/81409048