Skip to content

Instantly share code, notes, and snippets.

@lamchau
Created November 7, 2014 09:34
Show Gist options
  • Save lamchau/afa849f4d7b89e21a8ed to your computer and use it in GitHub Desktop.
Save lamchau/afa849f4d7b89e21a8ed to your computer and use it in GitHub Desktop.
[
// highlight modified files (orange for dirty files, like default theme)
{
"class": "tab_label",
"settings": ["highlight_modified_tabs"],
"parents": [{
"class": "tab_control",
"attributes": ["dirty"]
}],
// "fg": [120, 170, 250], // blue
"fg": [253, 136, 1] // orange
},
// sidebar heading (bold/white)
{
"class": "sidebar_heading",
"color": [255, 255, 255],
"font.bold": true,
"shadow_color": [0, 0, 0],
"shadow_offset": [0, -1],
},
// Sidebar entry selected (orange to show current file)
{
"class": "sidebar_label",
"parents": [{
"class": "tree_row",
"attributes": ["selected"]
}],
"color": [253, 136, 1],
"shadow_color": [0, 0, 0],
"shadow_offset": [0, 1]
},
// Sidebar row selected (subtle tweak)
{
"class": "tree_row",
"attributes": ["selected"],
"layer0.opacity": 0.75
},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment