-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNord-Sublime-Text.sublime-theme
1961 lines (1881 loc) · 71.9 KB
/
Nord-Sublime-Text.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
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
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
//------------------------------------------------------------------------------
// COLOR PALETTES
//------------------------------------------------------------------------------
//
// [46, 52, 64] --> #2E3440 nord0 Used for texts, backgrounds, carets & structuring characters like curly/square brackets.
// tab section background | tab element background | tab element active state | sidebar background | sidebar tree | quick panel section | text input field border |
// bottom panel background |quick panel background | mini quick panel section
// title_bar | code completion table row | button labels hover | tooltip background |
//
// button labels | find buttons | button labels pressed | scrollbar vertical control |
// scrollbar horizontal control | scroll corner control | empty window | grid layout
// [59, 66, 82] --> #3B4252 nord1 Used as a lighter background color for UI elements like status bars.
// tab element hover state | status bar background | quick panel row hover state |
// | mini quick panel row hover state |
// mini quick panel row selected state | code completion table row hover state |
// code completion table row selected state
// [67, 76, 94] --> #434C5E nord2 Used as line highlighting in the editor.
// In the UI scope it may be used as selection- and hightlight color.
// selected sidebar row state | minimap control |
// quick panel row selected state | code completion table row selected state |
// mini quick panel row selected state
// [76, 86, 106] --> #4C566A nord3 Used for comments, invisibles, indent- and wrap guide marker.
// In the UI scope used as pseudoclass color for disabled elements.
// tab label inactive state | sidebar entry default state |
// autocomplete foreground | tab close button | tab inactive dirty button |
// tab inactive dirty button | scroll left/right button | fold button control default state |
// scroll drag/pluck |
// [216, 222, 233] --> #D8DEE9 nord4 Main color for text, variables, constants and attributes.
// In the UI scope used as semi-light background depending on the theme shading design.
// tab label active state | status bar text color | sidebar folder default state | sidebar entry selected state | sidebar entry hover state |
// quick panel foreground | title_bar | quick panel match label |
// quick panel selected match foreground | quick panel foreground |
// quick panel path label | quick panel foreground | quick panel path label |
// autocomplete match label | autocomplete foreground | text dropdown tint
// tab dropdown tint | tooltip text
// [229, 233, 240] --> #E5E9F0 nord5 Used as a lighter background color for UI elements like status bars.
// Used as semi-light background depending on the theme shading design.
// tab label inactive state | bottom icon default state | bottom icon default state |
// bottom icon default state | bottom icon default state | bottom icon default state |
// bottom icon default state | fold button control hover state
// [236, 239, 244] --> #ECEFF4 nord6 Used for punctuations, carets and structuring characters like curly- and square brackets.
// In the UI scope used as background, selection- and hightlight color depending on the theme shading design.
// [143, 188, 187] --> #8FBCBB nord7 Used for classes, types and documentation tags
// [136, 192, 208] --> #88C0D0 nord8 Represents the accent color of the color palette.
// Main color for primary UI elements and methods/functions.
// label default | find buttons hover state | find buttons pressed state |
// bottom icon hover state | bottom icon selected state | bottom icon hover state |
// bottom icon selected state | bottom icon hover state | bottom icon selected state |
// bottom icon hover state | bottom icon selected state | bottom icon hover state |
// bottom icon selected state | tab close button hover state | tab active dirty button |
// tab dropdown hover state | scroll tab left/right button hover |
// text field dropdown hover state
// [129, 161, 193] --> #81A1C1 nord9 Used for language-specific syntactic/reserved support characters and keywords, operators, tags, units and
// punctuations like (semi)colons,commas and braces.
// [94, 129, 172] --> #5E81AC nord10 Used for markup doctypes, import/include/require statements, pre-processor statements and at-rules (`@`)
// [191, 97, 106] --> #BF616A nord11 Used for errors, git/diff deletion and linter marker.
// [208, 135, 112] --> #D08770 nord12 Used for annotations.
// In the UI scope used for warnings and git/diff renamings.
// [235, 203, 139] --> #EBCB8B nord13 Used for escape characters, regular expressions and markup entities.
// In the UI scope used for warnings and git/diff renamings.
// [163, 190, 140] --> #A3BE8C nord14 Main color for strings and attribute values.
// In the UI scope used for git/diff additions and success visualizations.
// [180, 142, 173] --> #B48EAD nord15 Used for numbers.
//------------------------------------------------------------------------------
// TABS -- Nordified
//------------------------------------------------------------------------------
//Tab set
{
"class": "tabset_control",
"layer0.texture": "",
"layer0.tint": [46, 52, 64], //tab section background
"layer0.inner_margin": [2, 0, 2, 2],
"layer0.opacity": 1.0,
"content_margin": [6, 0, 8, 0],
"tab_overlap": 0,
"tab_width": 180,
"tab_min_width": 140,
"tab_height": 40,
"mouse_wheel_switch": false
},
// Tab set - option
{
"class": "tabset_control",
"settings": ["theme_agila_compact_tab"],
"tab_height": 40
},
{
"class": "tabset_control",
"settings": ["enable_tab_scrolling"],
"content_margin": 0
},
{
"class": "tabset_control",
"settings": ["mouse_wheel_switches_tabs"],
"mouse_wheel_switch": true
},
// Nano Mode
{
"class": "tabset_control",
"settings": ["theme_agila_nano_mode"],
"tab_overlap": 0,
"tab_width": 40,
"tab_min_width": 40,
"tab_height": 18
},
//Tab element
{
"class": "tab_control",
"content_margin": [8, 0],
"max_margin_trim": 0,
"hit_test_level": 0.5,
"layer0.texture": "",
"layer0.tint": [46, 52, 64], //tab element background
"layer0.inner_margin": [5, 5],
"layer0.opacity": 1.0,
"layer1.texture": "Nord/assets/tab_current.png",
"layer1.opacity": 0.0,
"layer1.tint": [136, 192, 208] // tab element selected border color
},
//Tab close state
{
"class": "tab_control",
"settings": ["show_tab_close_buttons"],
"content_margin": [15, 14, 15, 15] //tab element text and button margin
},
// Tab set text - option
{
"class": "tab_control",
"settings": ["theme_agila_compact_tab"],
"content_margin": [15, 13, 15, 15] //tab element text and button margin
},
//Tab hover state
{
"class": "tab_control",
"attributes": ["hover"],
"layer0.texture": "",
"layer0.tint": [59, 66, 82], //tab element hover state
},
//Tab active state
{
"class": "tab_control",
"attributes": ["selected"],
"layer0.texture": "",
"layer0.tint": [46, 52, 64], //tab element active state
"layer1.opacity": 1.0
},
//Tab dirty state (close button hidden)
{
"class": "tab_control",
"settings": ["!show_tab_close_buttons"],
"attributes": ["dirty"],
"content_margin": [8, 0]
},
// Nano Mode
{
"class": "tab_control",
"settings": ["theme_agila_nano_mode"],
"content_margin": [4, 0]
},
//------------------------------------------------------------------------------
// TABS - CLOSE / HIGHLIGHT / STATE BUTTONS - Nordified?
//------------------------------------------------------------------------------
// Tab close button
{
"class": "tab_close_button",
"content_margin": [8, 8],
"layer0.texture": "Nord/assets/tab-close.png",
"layer0.tint": [76, 86, 106], //tab close button
},
{
"class": "tab_close_button",
"settings": ["show_tab_close_buttons"],
"layer0.opacity": 1.0
},
// Nano Mode - hide button when show_tab_close_buttons is false
{
"class": "tab_close_button",
"settings": ["!show_tab_close_buttons", "theme_agila_nano_mode"],
"content_margin": 0
},
// Nano Mode
{
"class": "tab_close_button",
"settings": ["show_tab_close_buttons", "theme_agila_nano_mode"],
"content_margin": [8, 8, 7, 7],
"layer0.texture": "Nord/assets/nano-mode/tab-close.png",
"layer0.opacity": 0.5,
"layer0.tint": [255, 255, 255]
},
{
"class": "tab_close_button",
"parents": [{"class": "tab_control", "attributes": ["hover"]}],
"layer0.opacity": 1.0
},
{
"class": "tab_close_button",
"parents": [{"class": "tab_control", "attributes": ["selected"]}],
"layer0.opacity": 1.0
},
{
"class": "tab_close_button",
"parents": [{"class": "tab_control"}],
"attributes": ["hover"],
"layer0.tint": [136, 192, 208], //tab close button hover state
"layer0.opacity": 1.0
},
// Nano Mode
{
"class": "tab_close_button",
"parents": [{"class": "tab_control", "attributes": ["hover"]}],
"attributes": ["hover"],
"settings": ["theme_agila_nano_mode"],
"layer0.texture": "Nord/assets/nano-mode/tab-close.png",
"layer0.opacity": 1.0,
"layer0.tint": [255, 0, 0]
},
// Tab dirty button
{
"class": "tab_close_button",
"parents": [{"class": "tab_control", "attributes": ["dirty"]}],
"layer0.texture": "Nord/assets/tab-dirty-white.png",
"layer0.tint": [76, 86, 106], //tab inactive dirty button
"layer0.opacity": 1.0,
"layer0.inner_margin": 0
},
{
"class": "tab_close_button",
"parents": [{"class": "tab_control", "attributes": ["dirty", "selected"]}],
"layer0.texture": "Nord/assets/tab-dirty-white.png",
"layer0.tint": [136, 192, 208], //tab active dirty button
"layer0.opacity": 1.0,
"layer0.inner_margin": 0
},
// Tab dirty button - options
{
"class": "tab_close_button",
"parents": [{"class": "tab_control", "attributes": ["dirty"]}],
"settings": ["theme_agila_modified_tab_marker_white"],
"layer0.texture": "Nord/assets/tab-dirty-white.png",
"layer0.tint": [255, 255, 255] //white theme
},
{
"class": "tab_close_button",
"parents": [{"class": "tab_control", "attributes": ["dirty"]}],
"settings": ["theme_agila_modified_tab_marker_gray"],
"layer0.texture": "Nord/assets/tab-dirty-gray.png",
"layer0.tint": [134, 145, 165] //gray theme
},
{
"class": "tab_close_button",
"parents": [{"class": "tab_control", "attributes": ["dirty"]}],
"settings": ["theme_agila_modified_tab_marker_lightblue"],
"layer0.texture": "Nord/assets/tab-dirty-lightblue.png",
"layer0.tint": [69, 183, 207] //light blue theme
},
{
"class": "tab_close_button",
"parents": [{"class": "tab_control", "attributes": ["dirty"]}],
"settings": ["theme_agila_modified_tab_marker_yellow"],
"layer0.texture": "Nord/assets/tab-dirty-yellow.png",
"layer0.tint": [254, 201, 106] //yellow theme
},
{
"class": "tab_close_button",
"parents": [{"class": "tab_control", "attributes": ["dirty"]}],
"settings": ["theme_agila_modified_tab_marker_pink"],
"layer0.texture": "Nord/assets/tab-dirty-pink.png",
"layer0.tint": [243, 103, 129] //pink theme
},
// Nano Mode - always display the dirty button
{
"class": "tab_close_button",
"parents": [{"class": "tab_control", "attributes": ["dirty"]}],
"settings": ["!show_tab_close_buttons", "theme_agila_nano_mode"],
"content_margin": [8, 8]
},
// Tab highlight button TODO
{
"class": "tab_close_button",
"settings": ["highlight_modified_tabs"],
"parents": [{"class": "tab_control", "attributes": ["dirty"]}],
"layer0.tint": [255, 255, 255], //tab inactive state close button
"layer0.opacity": 1.0
},
{
"class": "tab_close_button",
"settings": ["highlight_modified_tabs"],
"parents": [{"class": "tab_control", "attributes": ["dirty", "hover"]}],
"layer0.texture": "Nord/assets/tab-close.png",
"attributes": ["hover"],
"layer0.tint": [243, 103, 129], //tab active state hover on close button
"layer0.opacity": 1.0
},
// Nano Mode
{
"class": "tab_close_button",
"settings": ["highlight_modified_tabs", "theme_agila_nano_mode"],
"parents": [{"class": "tab_control", "attributes": ["dirty", "hover"]}],
"attributes": ["hover"],
"layer0.texture": "Nord/assets/nano-mode/tab-close.png",
"layer0.opacity": 1.0,
"layer0.tint": [255, 0, 0]
},
//------------------------------------------------------------------------------
// TABS - LABELS -- Nordified
//------------------------------------------------------------------------------
//Tab label inactive state
{
"class": "tab_label",
"fade": true,
"fg": [76, 86, 106], //tab label inactive state
"font.size": 11.5
},
// Nano Mode
{
"class": "tab_label",
"settings": ["theme_agila_nano_mode"],
"font.size": 11
},
//Tab label highlighted state
{
"class": "tab_label",
"parents": [{"class": "tab_control", "attributes": ["hover"]}],
"fg": [216, 222, 233] //tab label hover state
},
//Tab label active state
{
"class": "tab_label",
"parents": [{"class": "tab_control", "attributes": ["selected"]}],
"fg": [216, 222, 233] //tab label active state
},
//Tab label active state - options
{
"class": "tab_label",
"parents": [{"class": "tab_control", "attributes": ["selected"]}],
"settings": ["theme_agila_active_tab_entry_white"],
"fg": [255, 255, 255] //white theme
},
{
"class": "tab_label",
"parents": [{"class": "tab_control", "attributes": ["selected"]}],
"settings": ["theme_agila_active_tab_entry_gray"],
"fg": [134, 145, 165] //gray theme
},
{
"class": "tab_label",
"parents": [{"class": "tab_control", "attributes": ["selected"]}],
"settings": ["theme_agila_active_tab_entry_lightblue"],
"fg": [69, 183, 207] //light blue theme
},
{
"class": "tab_label",
"parents": [{"class": "tab_control", "attributes": ["selected"]}],
"settings": ["theme_agila_active_tab_entry_yellow"],
"fg": [254, 201, 106] //yellow theme
},
{
"class": "tab_label",
"parents": [{"class": "tab_control", "attributes": ["selected"]}],
"settings": ["theme_agila_active_tab_entry_pink"],
"fg": [243, 103, 129] //pink theme
},
{
"class": "tab_label",
"attributes": ["transient"],
"font.italic": true
},
//------------------------------------------------------------------------------
// TABS - LIST & SCROLL ICONS - Nordified
//------------------------------------------------------------------------------
{
"class": "show_tabs_dropdown_button",
"content_margin": [10,10],
"layer0.texture": "Nord/assets/tabset-list-white.png",
"layer0.tint": [216, 222, 233], //tab dropdown tint
"layer0.opacity": 1.0
},
// Nano Mode
{
"class": "show_tabs_dropdown_button",
"settings": ["theme_agila_nano_mode"],
"content_margin": [9, 7, 8, 6],
"layer0.texture": "Nord/assets/nano-mode/tabset-list.png",
"layer0.tint": [116, 116, 116]
},
{
"class": "show_tabs_dropdown_button",
"attributes": ["hover"],
"layer0.texture": "Nord/assets/tabset-list-white.png",
"layer0.tint": [136, 192, 208], //tab dropdown hover state
"layer0.opacity": 1.0
},
// Nano Mode
{
"class": "show_tabs_dropdown_button",
"attributes": ["hover"],
"settings": ["theme_agila_nano_mode"],
"layer0.texture": "Nord/assets/nano-mode/tabset-list.png"
},
// Tab scroll left
{
"class": "scroll_tabs_left_button",
"content_margin": [8, 8],
"layer0.texture": "Nord/assets/button_arrow_left.png",
"layer0.tint": [76, 86, 106], //scroll left/right button
"layer0.inner_margin": 0,
"layer0.opacity": 1.0
},
// Nano Mode
{
"class": "scroll_tabs_left_button",
"settings": ["theme_agila_nano_mode"],
"content_margin": [9,7,8,6],
"layer0.texture": "Nord/assets/button_arrow_left.png"
},
{
"class": "scroll_tabs_left_button",
"attributes": ["hover"],
"layer0.tint": [136, 192, 208], //scroll left/right button hover
"layer0.opacity": 1.0
},
// Tab scroll right
{
"class": "scroll_tabs_right_button",
"content_margin": [8,8],
"layer0.texture": "Nord/assets/button_arrow_right.png",
"layer0.tint": [76, 86, 106], //scroll left/right button
"layer0.inner_margin": 0,
"layer0.opacity": 1.0
},
// Nano Mode
{
"class": "scroll_tabs_right_button",
"settings": ["theme_agila_nano_mode"],
"content_margin": [9,7,8,6],
"layer0.texture": "Nord/assets/button_arrow_right.png"
},
{
"class": "scroll_tabs_right_button",
"attributes": ["hover"],
"layer0.tint": [136, 192, 208], //scroll tab left/right button hover
"layer0.opacity": 1.0
},
//------------------------------------------------------------------------------
// FOLD BUTTONS - Nordified
//------------------------------------------------------------------------------
{
"class": "fold_button_control",
"layer0.texture": "Nord/assets2/default/fold_right.png",
"layer0.opacity": 1.0,
"layer0.inner_margin": 0,
"layer1.texture": "Nord/assets2/commons/fold_right--hover.png",
"layer1.opacity": 0.0,
"layer1.inner_margin": 0,
"content_margin": [9, 7, 8, 6]
},
{
"class": "fold_button_control",
"attributes": ["hover"],
"layer0.opacity": 0.0,
"layer1.opacity": 1.0
},
{
"class": "fold_button_control",
"attributes": ["expanded"],
"layer0.texture": "Nord/assets2/default/fold_down.png",
"layer1.texture": "Nord/assets2/commons/fold_down--hover.png"
},
//------------------------------------------------------------------------------
// STANDARD SCROLLBARS - Nordified
//------------------------------------------------------------------------------
//Standard vertical scroll bar
{
"class": "scroll_bar_control",
"layer0.tint": [46, 52, 64], //scrollbar vertical control
"layer0.opacity": 1.0,
"layer0.inner_margin": 0,
"blur": true
},
//Standard horizontal scroll bar
{
"class": "scroll_bar_control",
"attributes": ["horizontal"],
"layer0.tint": [46, 52, 64], //scrollbar horizontal control
"layer0.opacity": 1.0,
"layer0.inner_margin": 0,
"blur": true
},
//Standard scroll bar corner
{
"class": "scroll_corner_control",
"layer0.tint":[46, 52, 64], //scroll corner control
"layer0.inner_margin": 0,
"layer0.opacity": 1.0
},
//Standard vertical scroll puck
{
"class": "puck_control",
"layer0.tint":[76, 86, 106], //scroll drag/pluck
"layer0.opacity": 1.0,
"layer0.inner_margin": 0,
"content_margin": [4,0],
"blur": false
},
//Standard vertical scroll puck - options
{
"class": "puck_control",
"settings": ["theme_agila_vertical_scrollbar_white"],
"layer0.tint": [255, 255, 255] //white theme
},
{
"class": "puck_control",
"settings": ["theme_agila_vertical_scrollbar_gray"],
"layer0.tint": [134, 145, 165] //gray theme
},
{
"class": "puck_control",
"settings": ["theme_agila_vertical_scrollbar_lightblue"],
"layer0.tint": [69, 183, 207] //light blue theme
},
{
"class": "puck_control",
"settings": ["theme_agila_vertical_scrollbar_yellow"],
"layer0.tint": [254, 201, 106] //yellow theme
},
{
"class": "puck_control",
"settings": ["theme_agila_vertical_scrollbar_pink"],
"layer0.tint": [243, 103, 129] //pink theme
},
//Standard vertical scroll thinness - options
{
"class": "puck_control",
"settings": ["theme_agila_vertical_scrollbar_thickest"],
"content_margin": [6,0]
},
{
"class": "puck_control",
"settings": ["theme_agila_vertical_scrollbar_thicker"],
"content_margin": [5,0]
},
{
"class": "puck_control",
"settings": ["theme_agila_vertical_scrollbar_thinner"],
"content_margin": [3,0]
},
{
"class": "puck_control",
"settings": ["theme_agila_vertical_scrollbar_thinnest"],
"content_margin": [2,0]
},
{
"class": "puck_control",
"settings": ["theme_agila_vertical_scrollbar_invisible"],
"content_margin": [0,0]
},
//Standard horizontal scroll puck
{
"class": "puck_control",
"attributes": ["horizontal"],
"layer0.tint":[76, 86, 106], //scroll drag/pluck
"layer0.inner_margin": 0,
"content_margin": [10,4],
"blur": false
},
//Standard horizontal scroll puck - options
{
"class": "puck_control",
"attributes": ["horizontal"],
"settings": ["theme_agila_horizontal_scrollbar_white"],
"layer0.tint": [255, 255, 255] //white theme
},
{
"class": "puck_control",
"attributes": ["horizontal"],
"settings": ["theme_agila_horizontal_scrollbar_gray"],
"layer0.tint": [134, 145, 165] //gray theme
},
{
"class": "puck_control",
"attributes": ["horizontal"],
"settings": ["theme_agila_horizontal_scrollbar_lightblue"],
"layer0.tint": [69, 183, 207] //light blue theme
},
{
"class": "puck_control",
"attributes": ["horizontal"],
"settings": ["theme_agila_horizontal_scrollbar_yellow"],
"layer0.tint": [254, 201, 106] //yellow theme
},
{
"class": "puck_control",
"attributes": ["horizontal"],
"settings": ["theme_agila_horizontal_scrollbar_pink"],
"layer0.tint": [243, 103, 129] //pink theme
},
//Standard horizontal scroll thinness - options
{
"class": "puck_control",
"attributes": ["horizontal"],
"settings": ["theme_agila_horizontal_scrollbar_thickest"],
"content_margin": [10,6]
},
{
"class": "puck_control",
"attributes": ["horizontal"],
"settings": ["theme_agila_horizontal_scrollbar_thicker"],
"content_margin": [10,5]
},
{
"class": "puck_control",
"attributes": ["horizontal"],
"settings": ["theme_agila_horizontal_scrollbar_thinner"],
"content_margin": [10,3]
},
{
"class": "puck_control",
"attributes": ["horizontal"],
"settings": ["theme_agila_horizontal_scrollbar_thinnest"],
"content_margin": [10,2]
},
{
"class": "puck_control",
"attributes": ["horizontal"],
"settings": ["theme_agila_horizontal_scrollbar_invisible"],
"content_margin": [10,0]
},
//------------------------------------------------------------------------------
// OVERLAY SCROLLBARS
//------------------------------------------------------------------------------
//Overlay toggle scroll bar
{
"class": "scroll_area_control",
"settings": ["overlay_scroll_bars"],
"overlay": true
},
{
"class": "scroll_area_control",
"settings": ["!overlay_scroll_bars"],
"overlay": false
},
//Overlay vertical scroll bar
{
"class": "scroll_bar_control",
"settings": ["overlay_scroll_bars"],
"layer0.tint": [36, 57, 69], //overlay scrollbar
"layer0.inner_margin": [0, 5],
"layer0.opacity": 0,
"blur": true
},
//Overlay horizontal scroll bar
{
"class": "scroll_bar_control",
"settings": ["overlay_scroll_bars"],
"attributes": ["horizontal"],
"layer0.inner_margin": [5, 0],
"layer0.opacity": 0,
"blur": true
},
//Overlay vertical puck
{
"class": "puck_control",
"settings": ["overlay_scroll_bars"],
"layer0.texture": "",
"layer0.inner_margin": [0, 5],
"content_margin": [2, 12],
"blur": true
},
//Overlay horizontal puck
{
"class": "puck_control",
"settings": ["overlay_scroll_bars"],
"attributes": ["horizontal"],
"layer0.texture": "",
"layer0.inner_margin": [5, 0],
"content_margin": [12, 2],
"blur": true
},
//Overlay light puck (for dark content)
{
"class": "puck_control",
"settings": ["overlay_scroll_bars"],
"attributes": ["dark"],
"layer0.tint": [131, 168, 190] //overlay scrollbar puck
},
//Overlay light horizontal puck (for dark content)
{
"class": "puck_control",
"settings": ["overlay_scroll_bars"],
"attributes": ["horizontal", "dark"],
"layer0.tint": [131, 168, 190] //overlay scrollbar puck
},
//------------------------------------------------------------------------------
// EMPTY WINDOW BACKGROUND - Nordified
//------------------------------------------------------------------------------
{
"class": "sheet_container_control",
"layer0.tint": [46, 52, 64], //empty window
"layer0.opacity": 1.0
},
//------------------------------------------------------------------------------
// GRID LAYOUT - Nordified
//------------------------------------------------------------------------------
{
"class": "grid_layout_control",
"border_size": 1,
"border_color": [46, 52, 64] //grid layout
},
//------------------------------------------------------------------------------
// MINI MAP - Nordified
//------------------------------------------------------------------------------
{
"class": "minimap_control",
"settings": ["always_show_minimap_viewport"],
"viewport_color": [67, 76, 94, 70], //minimap control
"viewport_opacity": 1.0
},
{
"class": "minimap_control",
"settings": ["!always_show_minimap_viewport"],
"viewport_color": [67, 76, 94, 70], //minimap control
"viewport_opacity": { "target": 0.0, "speed": 10.0, "interpolation": "smoothstep" }
},
{
"class": "minimap_control",
"attributes": ["hover"],
"settings": ["!always_show_minimap_viewport"],
"viewport_opacity": 1.0
},
//------------------------------------------------------------------------------
// DIALOG
//------------------------------------------------------------------------------
{
"class": "dialog",
"layer0.tint": [36, 57, 69], //dialog
"layer0.opacity": 1.0
},
//------------------------------------------------------------------------------
// PROGRESS BAR
//------------------------------------------------------------------------------
{
"class": "progress_bar_control",
"layer0.tint": [36, 57, 69], //progress bar
"layer0.opacity": 1.0
},
{
"class": "progress_gauge_control",
"layer0.tint": [131, 168, 190], //progress gauge control
"layer0.opacity": 1.0,
"content_margin": [0, 6]
},
//------------------------------------------------------------------------------
// LABELS - Nordified
//------------------------------------------------------------------------------
// General labels
{
"class": "label_control",
"color": [136, 192, 208] //label default
},
// Text field labels
{
"class": "label_control",
"parents": [{"class": "panel_control"}]
},
// Button labels
{
"class": "label_control",
"parents": [{"class": "button_control", "attributes": ["hover"]}],
"font.bold": false,
"font.size": 14,
"color": [46, 52, 64], //button labels hover
},
{
"class": "label_control",
"parents": [{"class": "button_control", "attributes": ["pressed"]}],
"font.bold": false,
"font.size": 14,
"color": [46, 52, 64], //button labels pressed
},
{
"class": "label_control",
"parents": [{"class": "button_control", "attributes": ["!hover"]}],
"font.bold": false,
"font.size": 14,
"color": [136, 192, 208], //button labels
},
// Nano Mode
{
"class": "label_control",
"settings": ["theme_agila_nano_mode"],
"font.size": 11
},
//------------------------------------------------------------------------------
// TOOLTIP - Nordified
//------------------------------------------------------------------------------
// Tooltip container
{
"class": "tool_tip_control",
"layer0.tint": [46, 52, 64], //tooltip background
"layer0.inner_margin": [1, 1],
"layer0.opacity": 1.0,
"content_margin": [8, 6]
},
// Nano Mode
{
"class": "tool_tip_control",
"settings": ["theme_agila_nano_mode"],
"content_margin": [5, 3],
"layer1.tint": [90, 90, 90],
"layer1.inner_margin": [1, 1],
"layer1.draw_center": false,
"layer1.opacity": 1.0
},
// Tooltip content
{
"class": "tool_tip_label_control",
"color": [216, 222, 233] //tooltip text
},
// Nano Mode
{
"class": "tool_tip_label_control",
"settings": ["theme_agila_nano_mode"],
"color": [180, 180, 180],
"font.size": 11
},
//------------------------------------------------------------------------------
// SIDEBAR -- Nordified
//------------------------------------------------------------------------------
//Sidebar container
{
"class": "sidebar_container",
"layer0.tint": [46, 52, 64], //sidebar background
"layer0.opacity": 1.0,
"layer0.draw_center": false,
"layer0.inner_margin": 0,
"content_margin": [0, 15, 0, 0]
},
// Nano Mode
{
"class": "sidebar_container",
"settings": ["theme_agila_nano_mode"],
"content_margin": [0, 0, 0, 0]
},
//Sidebar tree
{
"class": "sidebar_tree",
"row_padding": [35, 9],
"indent": 28,
"indent_offset": 0,
"indent_top_level": false,
"layer0.tint": [46, 52, 64], //sidebar tree
"layer0.opacity": 1.0,
"dark_content": false,
},
//Sidebar tree - options
{
"class": "sidebar_tree",
"settings": ["theme_agila_compact_sidebar"],
"indent": 20
},
{
"class": "sidebar_tree",
"settings": ["theme_agila_sidebar_mini"],
"row_padding": [20, 5]
},
{
"class": "sidebar_tree",
"settings": ["theme_agila_sidebar_xsmall"],
"row_padding": [20, 7]
},
{
"class": "sidebar_tree",
"settings": ["theme_agila_sidebar_small"],
"row_padding": [20, 8]
},
{
"class": "sidebar_tree",
"settings": ["theme_agila_sidebar_medium"],
"row_padding": [20, 9]
},
{
"class": "sidebar_tree",
"settings": ["theme_agila_sidebar_large"],
"row_padding": [20, 11]
},
// Nano Mode
{
"class": "sidebar_tree",
"settings": ["theme_agila_nano_mode"],
"row_padding": [0, 1, 0, 0],
"indent_top_level": false,
"indent": 16,
"indent_offset": 2
},
//Sidebar rows
{
"class": "tree_row",
"layer0.tint": [67, 76, 94], //selected sidebar row state
"layer0.opacity": 0,
"layer0.inner_margin": [1, 1]
},
//Sidebar row selected
{
"class": "tree_row",
"attributes": ["selected"],
"layer0.opacity": 1.0
},
// Nano Mode
{
"class": "tree_row",
"attributes": ["hover"],
"settings": ["theme_agila_nano_mode"],
"layer0.opacity": 1.0
},
//Sidebar heading
{
"class": "sidebar_heading",
"color": [216, 222, 233], //sidebar heading
"font.bold": true,
"font.size": 12
},
//Sidebar heading - options
{
"class": "sidebar_heading",
"settings": ["theme_agila_sidebar_heading_white"],
"color": [255, 255, 255] //white theme
},
{
"class": "sidebar_heading",
"settings": ["theme_agila_sidebar_heading_gray"],
"color": [134, 145, 165] //gray theme
},
{
"class": "sidebar_heading",
"settings": ["theme_agila_sidebar_heading_lightblue"],
"color": [69, 183, 207] //light blue theme
},
{
"class": "sidebar_heading",
"settings": ["theme_agila_sidebar_heading_yellow"],
"color": [254, 201, 106] //yellow theme
},
{
"class": "sidebar_heading",
"settings": ["theme_agila_sidebar_heading_pink"],
"color": [243, 103, 129] //pink theme
},
//Sidebar heading selected
{
"class": "sidebar_heading",
"parents": [{"class": "tree_row", "attributes": ["selected"]}]