Skip to content

Instantly share code, notes, and snippets.

@mlepage
Last active June 27, 2022 19:05
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mlepage/8c9ad03655b6c69ec556 to your computer and use it in GitHub Desktop.
Save mlepage/8c9ad03655b6c69ec556 to your computer and use it in GitHub Desktop.
Sublime Text 3 dark sidebar theme
/*
Sublime Text 3 Dark Sidebar Theme
Marc Lepage
Darkens the sidebar to match Goto Anything and the tab bar.
To use (Mac OS X), copy this file to:
~/Library/Application Support/Sublime Text 3/Packages/User/Default.sublime-theme
Adapted from Default.sublime-theme extracted from (zip) package:
/Applications/Sublime Text.app/Contents/MacOS/Packages/Theme - Default.sublime-package
All changes marked with EDIT.
*/
[
{
"class": "sidebar_container",
"layer0.tint": [21, 21, 18], // EDIT match tab gutter
"layer0.opacity": 1.0,
"layer0.draw_center": false,
"layer0.inner_margin": [0, 0, 1, 0],
"content_margin": [0, 0, 1, 0]
},
{
"class": "sidebar_tree",
"row_padding": [8, 3],
"indent": 12,
"indent_offset": 17,
"indent_top_level": false,
"layer0.tint": [64, 64, 64], // EDIT match "quick_panel_row"
"layer0.opacity": 1.0,
"dark_content": false
},
{
"class": "sidebar_heading",
"color": [255, 255, 255, 140], // EDIT match "tab_label"
"font.bold": true,
"shadow_color": [0, 0, 0, 100], // EDIT match "tab_label"
"shadow_offset": [0, -1] // EDIT match "tab_label"
},
{
"class": "sidebar_heading",
"parents":
[
{ "class": "tree_row", "attributes": ["selected"] }
],
//"shadow_color": [160, 174, 192] EDIT disable
},
{
"class": "sidebar_label",
"color": [200, 200, 200], // EDIT
"font.bold": false,
"font.italic": false
// , "shadow_color": [250, 250, 250], "shadow_offset": [0, 0]
},
{
"class": "sidebar_label",
"parents": [{"class": "tree_row", "attributes": ["selected"]}],
"color": [255, 255, 255]
// , "shadow_color": [60, 60, 60], "shadow_offset": [0, 1]
},
{
"class": "sidebar_label",
"parents": [{"class": "tree_row", "attributes": ["expandable"]}],
"settings": ["bold_folder_labels"],
"font.bold": true
},
{
"class": "sidebar_label",
"attributes": ["transient"],
"font.italic": true
}
]
@ArmoredVortex
Copy link

Thank you for the help It worked like a charm 🚀

@snapfast
Copy link

Use https://packagecontrol.io/packages/Themes%20Menu%20Switcher
Themes Menu Switcher... It has themes applied on all areas of sublime text. :)

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