Skip to content

Instantly share code, notes, and snippets.

@renz45
Last active December 4, 2016 21:01
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save renz45/1854721 to your computer and use it in GitHub Desktop.
Save renz45/1854721 to your computer and use it in GitHub Desktop.
Re-style Sublime Text 2 sidebar to a darker theme

This re-styles your sublime text 2 sidebar to be darker, so it doesn't blind you when using a dark theme.

Dark sublime text 2 sidebar

Save the Default.sublime-theme file into packages/user

[
{
"class": "close_button",
"layer0.texture": "Theme - Default/light_x_bright.png",
"layer0.opacity": 0.7
},
{
"class": "sidebar_tree",
"layer0.tint": [50, 50, 50] //230,230,230
},
{
"class": "sidebar_heading",
"color": [200, 200, 200], //130,130,130 headers (open files, folders)
"shadow_color": [0, 0, 0]// 250 250 250
},
{
"class": "sidebar_label",
"color": [200, 200, 200]// 0 0 0 text in the sidebar tree
},
{
"class": "text_line_control",
"layer0.tint": 0
},
{
"class": "quick_panel_row",
"layer0.texture": "Theme - Default/panel_row.png",
"layer0.inner_margin": [2, 2, 2, 2],
"layer0.opacity": 1.0
},
{
"class": "quick_panel_row",
"attributes": ["selected"],
"layer0.texture": "Theme - Default/panel_row_selected.png"
},
{
"class": "quick_panel_label",
"bg": [87, 87, 87, 255],
"selected_match_fg": [255, 255, 255, 255],
"selected_bg": [64, 64, 64, 255]
},
{
"class": "quick_panel_path_label",
"bg": [87, 87, 87, 255],
"selected_match_fg": [255, 255, 255, 255],
"selected_bg": [64, 64, 64, 255]
},
{
"class": "quick_panel_score_label",
"bg": [87, 87, 87, 255],
"selected_fg": [166, 229, 255, 255],
"selected_bg": [64, 64, 64, 255]
},
{
"class": "auto_complete_label",
"bg": [255, 255, 255, 255],
"selected_match_fg": [0, 0, 0, 255],
"selected_bg": [156, 185, 223, 255]
},
{
"class": "fold_button_control",
"layer1.texture": "Theme - Default.arrow_right.png"
}
]
@xgqfrms-GitHub
Copy link

good job!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment