-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.ksn
468 lines (423 loc) · 8.51 KB
/
theme.ksn
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
// -----------------------------------------------------------------------------
// RULES. Do not edit this section unless you know what to do!
// -----------------------------------------------------------------------------
@rules:
opacity: Float
cornerRadius: Int
orientation: String
textureBg: Asset
color:
text: Color
bg: Color
useGradient: Bool
?gradient:
direction: Bool
colorTopLeft: Color
colorBottomRight: Color
font:
size: Int
family: Asset
underlineThickness: Int
atlas:
x: Int
y: Int
w: Int
h: Int
border:
style: String
size: Int
color: Color
nineSlice: Bool
// Outer spacing
margin:
left: Int
right: Int
top: Int
bottom: Int
// Inner spacing
padding:
left: Int
right: Int
top: Int
bottom: Int
size:
height: Int
width: Int
minHeight: Int
maxHeight: Int
minWidth: Int
maxWidth: Int
dropShadow:
color: Color
falloff: Float
radius: Int
cursors:
// default is a reserved keyword
defaultCursor: String
notallowed: String
// ---------------------
// OPTIONAL GROUPS
// Those groups are used by certain elements or effects only
// ---------------------
?scrollbar:
width: Int
color:
bg: Color
front: Color
frontHover: Color
frontClick: Color
corner: Color
?dropdown:
arrowSize: Int
arrowRight: Bool
arrowColor: Color
separatorSize: Int
separatorColor: Color
?textShadow:
color: Color
offsetX: Int
offsetY: Int
?slider:
buttonWidth: Int
textOffsetX: Int
textOffsetY: Int
showValue: Bool
showRange: Bool
?buttonTexture:
image: String
atlasX: Int
atlasY: Int
atlasW: Int
atlasH: Int
?textinput:
colorCursor: Color
colorSelection: Color
colorLabel: Color
blinkInterval: Int
?checkbox:
useAutoPadding: Bool
// -----------------------------------------------------------------------------
// GLOBAL VARIABLES. Property groups are not allowed here!
// -----------------------------------------------------------------------------
@globals:
COLOR_TEXT: #dddddd
COLOR_BG_DARKER: #191a21
COLOR_BG_LIGHTER: #262833
COLOR_BG_ACTIVE: #343746
COLOR_PRIMARY_DARKER: #ef6413
COLOR_PRIMARY_LIGHTER: #f9792f
COLOR_SECONDARY: #ffffff
COLOR_INVALID_DARKER: #771c1c
COLOR_INVALID_LIGHTER: #823b3b
// -----------------------------------------------------------------------------
// BASE
// -----------------------------------------------------------------------------
_root:
orientation: "left"
cornerRadius: 5
opacity: 1
textureBg: ""
font:
size: 16
family: "Montserrat_Regular"
underlineThickness: 0
atlas:
x: 0
y: 0
w: 10
h: 10
color:
text: [email protected]_TEXT
bg: #191a21
useGradient: true
gradient:
direction: true
colorTopLeft: #262833
colorBottomRight: #191a21
border:
size: 2
color: #1f2028
style: "middle"
nineSlice: false
dropShadow:
radius: 5
color: #00000077
falloff: 3.5
cursors:
defaultCursor: "default"
notallowed: "notallowed"
margin:
left: 0
right: 0
top: 0
bottom: 0
padding:
left: 0
right: 0
top: 0
bottom: 0
size:
height: 40
width: 200
minHeight: 0
maxHeight: 0
minWidth: 0
maxWidth: 0
_root!hover:
border:
color: [email protected]_PRIMARY_DARKER
color:
gradient:
direction: true
colorTopLeft: #2b2b33
colorBottomRight: #262833
_root!click:
border:
color: [email protected]_SECONDARY
color:
gradient:
direction: true
colorTopLeft: [email protected]_BG_ACTIVE
colorBottomRight: #262833
_root!disabled:
opacity: 0.6
// -----------------------------------------------------------------------------
// LAYOUTS
// -----------------------------------------------------------------------------
_layout > _root:
size:
minWidth: 20
minHeight: 20
// Empty definitions
_anchorpane > _layout:
_collayout > _gridlayout:
_gridlayout > _layout:
_rowlayout > _layout:
_expander > _layout:
size:
minWidth: 0
maxWidth: 0
minHeight: 0
maxHeight: 0
_scrollpane > _layout:
color:
bg: #00000000
scrollbar:
width: 20
color:
bg: #090a11ff
front: #2b2b33
frontHover: [email protected]_BG_ACTIVE
frontClick: [email protected]_PRIMARY_DARKER
corner: #181818ff
// Scrollbar foreground
_scrollpane_bar_thumb > _slider_inner:
_scrollpane_bar_thumb!hover:
_scrollpane_bar_thumb!click:
// Scrollbar background
_scrollpane_bar_track > _slider:
cornerRadius: 0
dropShadow:
radius: 0
border:
size: 0
color:
useGradient: false
bg: $_root.color.gradient.colorBottomRight
_scrollpane_corner > _root:
cornerRadius: 0
dropShadow:
radius: 0
border:
size: 0
color:
useGradient: false
bg: $_root.color.gradient.colorTopLeft
// -----------------------------------------------------------------------------
// ELEMENTS
// -----------------------------------------------------------------------------
_button > _root:
_checkbox > _root:
border:
color: #4a4a4a99
color:
useGradient: false
bg: #00000000
checkbox:
useAutoPadding: true
_checkbox!hover:
color:
useGradient: false
bg: #00000000
_checkbox!click:
color:
useGradient: false
bg: #00000000
_checkbox_inner > _button:
size:
height: 18
_checkbox_inner!hover:
_checkbox_inner!click:
_checkbox_inner_checked > _slider_inner:
color:
gradient:
direction: true
colorTopLeft: #f48e53
colorBottomRight: #ef6413ff
_checkbox_inner_checked!hover:
_checkbox_inner_checked!click:
_dropdown > _root:
dropdown:
arrowSize: 6
arrowRight: true
arrowColor: $_root.color.text
separatorSize: 0
separatorColor: #000000
padding:
left: 8
right: 8
_dropdown_overlay_bg > _root:
border:
size: 0
color:
useGradient: false
bg: $_root.color.gradient.colorTopLeft
_dropdown_option > _root:
padding:
left: 8
border:
size: 0
color:
useGradient: false
bg: #00000000
dropShadow:
radius: 0
_dropdown_option!hover:
border:
size: $_root.border.size
_dropdown_option!click:
border:
size: $_root.border.size
_dropdown_option_selected > _dropdown_option:
color:
text: [email protected]_PRIMARY_DARKER
_label > _root:
margin:
left: 0
right: 0
textShadow:
color: #000000
offsetX: 2
offsetY: 2
_numberinput > _textinput:
_numberinput_invalid > _textinput_invalid:
_imagepanel > _root:
border:
size: 0
_panel > _root:
cornerRadius: 10
color:
gradient:
colorBottomRight: #333438
colorTopLeft: $_panel.color.gradient.colorBottomRight
border:
size: 2
style: "inset"
color: #000000bb
dropShadow:
color: #00000077
falloff: 3
radius: 30
size:
minHeight: 20
minWidth: 20
_progressbar > _root:
color:
gradient:
direction: true
// Invert direction
colorTopLeft: $_root.color.gradient.colorBottomRight
colorBottomRight: $_root.color.gradient.colorTopLeft
margin:
left: 0
right: 0
top: 0
bottom: 0
orientation: "right"
_progressbar_inner > _progressbar:
border:
size: 0
color:
gradient:
direction: true
colorTopLeft: #f48e53
colorBottomRight: #ef6413ff
_radiobutton > _checkbox:
_radiobutton_inner > _checkbox_inner:
cornerRadius: 9
_radiobutton_inner_checked >_checkbox_inner_checked:
cornerRadius: $_radiobutton_inner.cornerRadius
_slider > _root:
slider:
buttonWidth: 20
textOffsetX: 0
textOffsetY: 0
showValue: true
showRange: false
color:
gradient:
direction: true
// Invert direction
colorTopLeft: $_root.color.gradient.colorBottomRight
colorBottomRight: $_root.color.gradient.colorTopLeft
_slider!hover:
_slider!click:
_slider_inner > _button:
border:
color: $_root!hover.border.color
color:
gradient:
direction: true
colorTopLeft: [email protected]_PRIMARY_LIGHTER
colorBottomRight: [email protected]_PRIMARY_DARKER
_slider_inner!hover:
border:
color: $_root!click.border.color
_slider_inner!click:
border:
color: $_root!hover.border.color
_textinput > _root:
color:
gradient:
direction: true
// Invert direction
colorTopLeft: $_root.color.gradient.colorBottomRight
colorBottomRight: $_root.color.gradient.colorTopLeft
textinput:
colorCursor: #ffffff
colorSelection: #21a9f277
colorLabel: #aaaaaa
blinkInterval: 30
cursors:
defaultCursor: "text"
padding:
left: 8
right: 8
_textinput!hover:
color:
gradient:
direction: true
colorTopLeft: $_root!hover.color.gradient.colorBottomRight
colorBottomRight: $_root!hover.color.gradient.colorTopLeft
_textinput!click:
color:
gradient:
direction: true
colorTopLeft: $_root!click.color.gradient.colorBottomRight
colorBottomRight: $_root!click.color.gradient.colorTopLeft
_textinput_invalid > _textinput:
color:
gradient:
direction: true
colorTopLeft: [email protected]_INVALID_DARKER
colorBottomRight: [email protected]_INVALID_LIGHTER