-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAdaptive.sublime-theme
89 lines (85 loc) · 2.12 KB
/
Adaptive.sublime-theme
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[
/* Side Bar
------------------------------------------------------------------------- */
// label and background
{
"class": "tree_row",
"attributes": ["selectable", "hover", "!selected"],
"layer0.tint": [255, 255, 255, 0.0],
},
{
"class": "tree_row",
"attributes": ["selected"],
"parents": [{"class": "window", "attributes": ["file_medium_dark"]}],
"layer0.tint": [255, 255, 255, 0.1],
"layer0.opacity": 1.0,
},
{
"class": "sidebar_label",
"parents": [{"class": "tree_row", "attributes": ["!hover", "!selected"]}],
"fg": ["foreground", 0.5],
},
// hide folder disclosure button
/*{
"class": "disclosure_button_control",
"parents": [{"class": "tree_row"}],
"content_margin": 0,
},*/
// folder icons
{
"class": "icon_folder",
"parents": [{"class": "tree_row", "attributes": ["hover"]}],
"layer0.opacity": 0.4,
},
// file icons
{
"class": "icon_file_type",
"parents": [{"class": "tree_row"}],
"layer0.opacity": 0.75,
},
{
"class": "icon_file_type",
"parents": [{"class": "tree_row", "attributes": ["hover"]}],
"layer0.opacity": 1.0,
},
{
"class": "icon_file_type",
"parents": [{"class": "tree_row", "attributes": ["selected"]}],
"layer0.opacity": 1.0,
},
/* Tabs
------------------------------------------------------------------------- */
{
"class": "tabset_control",
"tab_overlap": -1
},
{
"class": "tab_control",
"layer0.opacity": 0.0,
"layer1.texture": "",
"layer1.opacity": 1.0,
"layer2.opacity": 0.0,
"layer3.opacity": 0.0,
"content_margin": [16, 8, 16, 4],
},
{
"class": "tab_control",
"settings": ["show_tab_close_buttons"],
"content_margin": [16, 8, 10, 4],
},
{
"class": "tab_label",
"parents": [{"class": "tab_control", "attributes": ["hover", "!selected"]}],
"fg": ["foreground", 1.0],
},
{
"class": "tab_label",
"parents": [{"class": "tab_control", "attributes": ["dirty"], "settings": ["highlight_modified_tabs"]}],
"fg": ["accent", 1.0],
},
{
"class": "tab_label",
"parents": [{"class": "tab_control", "attributes": ["dirty", "!selected", "!hover"], "settings": ["highlight_modified_tabs"]}],
"fg": ["accent", 0.75],
},
]