29 lines
912 B
Plaintext
29 lines
912 B
Plaintext
// Documentation at https://www.sublimetext.com/docs/themes.html
|
|
{
|
|
"variables":
|
|
{
|
|
"cyan_dark": "rgba(32, 192, 225, 0.8)",
|
|
},
|
|
"rules":
|
|
[
|
|
// modified files in the folder tree
|
|
{
|
|
"class": "sidebar_label",
|
|
"parents": [{"class": "file_system_entry", "attributes": ["modified"]}],
|
|
"color": [155, 237, 254, 0.9] // cyan 90%
|
|
//"color": [119, 228, 255, 0.9] // cyan bluer 90%
|
|
},
|
|
// modified file badge
|
|
{
|
|
"class": "vcs_status_badge",
|
|
"parents": [{"class": "file_system_entry", "attributes": ["modified"]}],
|
|
"layer0.tint": [155, 237, 254, 0.7] // cyan 70%
|
|
},
|
|
// adds a cyan option for selected tab
|
|
{
|
|
"class": "tab_control",
|
|
"settings": ["gravity_highlight_color_cyan"],
|
|
"attributes": ["selected"], "layer0.tint": "var(cyan_dark)"
|
|
},
|
|
]
|
|
} |