-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGW.sublime-theme
More file actions
134 lines (116 loc) · 2.28 KB
/
GW.sublime-theme
File metadata and controls
134 lines (116 loc) · 2.28 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
// ==============================
// GRAY WIDGET MODIFICATIONS
// ==============================
//
// BUTTON LABEL
//
{
"class": "label_control",
"parents": [{"class": "button_control"}],
"font.size" : 12,
"shadow_color": [20,20,20],
"shadow_offset": [1,1]
},
//
// STANDARD BUTTONS
//
//
// GENERAL BUTTON
//
{
"class": "button_control",
"content_margin": [6, 7, 6, 6],
"min_size": [75, 0],
"layer0.tint" : [50,50,50],
"layer0.opacity": 1.0,
"layer0.inner_margin": [6, 6]
},
// STATE HOVER
{
"class": "button_control",
"attributes": ["hover"],
"layer0.tint" : [30,30,30]
},
// STATE PRESSED
{
"class": "button_control",
"attributes": ["pressed"],
"layer0.tint" : [20,20,20]
},
//
// TEXT INPUT FIELD
//
//
// GENERAL TEXT INPUT
//
{
"class": "text_line_control",
"layer0.tint" : [30,30,30],
"layer0.opacity": 1.0,
"layer0.inner_margin": [0,0],
"content_margin": [3, 4, 3, 3]
},
//
// PANEL TEXT INPUT
//
{
"class": "text_line_control",
"parents": [{"class": "panel_control"}],
"layer0.tint" : [30,30,30],
"layer0.opacity": 1.0,
"layer0.inner_margin": [0,0],
"content_margin": [5,6,5,5]
},
//
// OVERLAY TEXT INPUT
//
{
"class": "text_line_control",
"parents": [{"class": "overlay_control"}],
"layer0.tint" : [30,30,30],
"layer0.opacity": 1.0,
"layer0.inner_margin": [0,0],
"content_margin": [3, 4, 3, 3]
},
//
// PANELS
//
//
// PANEL CONTROL (Search panel background, Console panel BG, ...)
//
{
"class": "panel_control",
"layer0.texture": "Theme - DC/assets/statusbar_bg2.png",
"layer0.tint" : [255,255,255],
"layer0.inner_margin": [1,1],
"layer0.opacity": 1.0,
"content_margin": [5, 2, 5, 1]
},
//
// OVERLAY CONTROL (Quick panel background, ...)
//
{
"class": "overlay_control",
"layer0.tint" : [50,50,50],
"layer0.inner_margin": [1,1],
"layer0.opacity": 1.0,
"content_margin": [5,5,5,5]
},
//
// SEARCH PANEL
//
//
// ICON BUTTON
//
{
"class": "icon_button_control",
"content_margin": [5,5,5,5],
"layer0.opacity": 0
},
{
"class": "icon_button_control",
"settings" : ["!dc_use_soda_search_icons"],
"content_margin": [6,6,6,6],
"layer0.tint" : [30,30,30],
"layer0.opacity": 1
},