Created
November 7, 2014 09:34
-
-
Save lamchau/cacdac4540ee225d348b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
[ | |
// highlight modified files (blue for dirty files, like default theme) | |
{ | |
"class": "tab_label", | |
"settings": ["highlight_modified_tabs"], | |
"parents": [{ | |
"class": "tab_control", | |
"attributes": ["dirty"] | |
}], | |
"fg": [20, 100, 220] | |
}, | |
// sidebar heading (bold/black) | |
{ | |
"class": "sidebar_heading", | |
"color": [0, 0, 0], | |
"font.bold": true, | |
"shadow_color": [200, 200, 200], | |
"shadow_offset": [0, 1], | |
}, | |
// Sidebar entry selected (blue to show current file) | |
{ | |
"class": "sidebar_label", | |
"parents": [{ | |
"class": "tree_row", | |
"attributes": ["selected"] | |
}], | |
"color": [255, 255, 255], | |
"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