Adjusting Light theme to make it more visible

This commit is contained in:
László Károlyi 2021-11-12 13:50:48 +01:00
parent 4e3deb0859
commit b73a459d80
Signed by: karolyi
GPG key ID: 2DCAF25E55735BFE
4 changed files with 139 additions and 1 deletions

View file

@ -1,5 +1,6 @@
// Documentation at https://www.sublimetext.com/docs/themes.html
{
"extends": "Material-Theme-Darker.sublime-theme",
"variables":
{
},

View file

@ -0,0 +1,110 @@
// Documentation at https://www.sublimetext.com/docs/themes.html
{
"extends": "Material-Theme-Lighter.sublime-theme",
"variables": {},
"rules": [
/* @ SIDEBAR
* Sidebar panel settings and behavioring
========================================================================= */
{
"class": "sidebar_label",
"color": [110, 110, 110],
"font.bold": false,
"font.italic": false,
"shadow_color": [255, 255, 255, 0],
"shadow_offset": [0, 0]
},
{
"class": "sidebar_label",
"parents": [{"class": "tree_row", "attributes": ["hover"]}],
"color": [110, 110, 110],
"shadow_color": [255, 255, 255, 0],
"shadow_offset": [0, 0],
"font.bold": true
},
{
"class": "sidebar_label",
"parents": [{"class": "tree_row", "attributes": ["selected"]}],
"font.bold": false,
"color": [40, 40, 40]
},
{
"class": "sidebar_label",
"parents": [{"class": "tree_row", "attributes": ["expandable"]}],
"color": [144, 164, 174]
},
{
"class": "sidebar_label",
"parents": [{"class": "tree_row", "attributes": ["expandable"]}],
"settings": ["bold_folder_labels"],
"font.bold": true
},
{
"class": "sidebar_label",
"parents": [{"class": "tree_row", "attributes": ["expandable", "selected"]}],
"color": [69, 90, 100]
},
{
"class": "sidebar_label",
"parents": [{"class": "tree_row", "attributes": ["expanded"]}],
"color": [128, 203, 196]
},
{
"class": "sidebar_label",
"parents": [{"class": "tree_row", "attributes": ["expanded"]}],
"settings": ["bold_folder_labels"],
"font.bold": true
},
{
"class": "sidebar_label",
"parents": [{"class": "tree_row", "attributes": ["expanded", "selected"]}],
"color": [69, 90, 100]
},
{
"class": "sidebar_label",
"attributes": ["transient"],
"font.italic": false
},
// Tab Labels
{
"class": "tab_label",
"fg": [116, 130, 137, 255],
"shadow_color": [255, 255, 255, 0],
"shadow_offset": [0, 0],
"font.size": 11,
"font.italic": false,
"font.bold": false
},
// Tab selected label color
{
"class": "tab_label",
"parents": [{"class": "tab_control", "attributes": ["selected"]}],
"fg": [69, 90, 100, 255],
"font.bold": true,
"shadow_color": [255, 255, 255, 0],
"shadow_offset": [0, 0]
},
{
"class": "tab_label",
"attributes": ["transient"],
"font.italic": true
},
]
}

View file

@ -15,5 +15,5 @@
"scope": "markup.warning.lsp",
"foreground": "color(darkgoldenrod)",
}
]
],
}

View file

@ -10,6 +10,7 @@
"font_size": 15,
"highlight_line": true,
"highlight_modified_tabs": true,
"trim_trailing_white_space_on_save": "all",
"indent_guide_options":
[
"draw_active",
@ -40,4 +41,30 @@
"ensure_newline_at_eof_on_save": true,
"bold_folder_labels": true,
"update_check": false,
/*"material_theme_tree_headings": true,*/
/*"material_theme_arrow_folders": true,*/
/*"material_theme_big_fileicons": true,*/
/*"material_theme_big_fileicons": true,*/
/*"material_theme_big_fileicons": true,*/
"material_theme_big_fileicons": true,
/*"material_theme_bullet_tree_indicator": true,*/
/*"material_theme_bullet_tree_indicator": true,*/
/*"material_theme_bullet_tree_indicator": true,*/
/*"material_theme_compact_sidebar": true,*/
/*"material_theme_compact_sidebar": true,*/
"material_theme_compact_sidebar": true,
/*"material_theme_disable_fileicons": true,*/
/*"material_theme_disable_folder_animation": true,*/
/*"material_theme_disable_tree_indicator": true,*/
/*"material_theme_bold_tab": true,*/
/*"material_theme_small_tab": true,*/
/*"material_theme_small_tab": true,*/
/*"material_theme_tabs_autowidth": true,*/
/*"material_theme_tabs_separator": true,*/
"material_theme_tabs_separator": true,
/*"material_theme_accent_scrollbars": true,*/
/*"material_theme_bright_scrollbars": true,*/
/*"material_theme_contrast_mode": true,*/
/*"material_theme_contrast_mode": true,*/
/*"material_theme_contrast_mode": true,*/
}