Last active
August 29, 2015 14:06
-
-
Save lamchau/3c3b42ddbf7ebe408b10 to your computer and use it in GitHub Desktop.
Sublime Text 3: Soda Dark Theme tweaks
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
| [ | |
| // remove ST3 3065 file/folder icons | |
| { | |
| "class": "icon_file_type", | |
| "content_margin": [0, 0] | |
| }, { | |
| "class": "icon_folder", | |
| "content_margin": [0, 0] | |
| }, { | |
| "class": "icon_folder_loading", | |
| "content_margin": [0, 0] | |
| }, | |
| // tree (fit more files into the view) | |
| { | |
| "class": "sidebar_tree", | |
| "row_padding": [0, 3], | |
| "indent": 18, | |
| "indent_offset": 18, | |
| "indent_top_level": false, | |
| "dark_content": true | |
| }, | |
| // 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