-
Notifications
You must be signed in to change notification settings - Fork 36
/
Neon.sublime-color-scheme
executable file
·3075 lines (3069 loc) · 111 KB
/
Neon.sublime-color-scheme
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
{
// ASCII comments from http://patorjk.com/software/taag/#p=display&h=0&v=0&c=c%2B%2B&f=Georgi16&t=text
"name": "Neon",
"author": "Matt Morrison @MattDMo mattdmo@mattdmo.com",
"variables": {
"varname": "#000000",
// for use with minihtml CSS
"--background": "#000000",
"--foreground": "#FFFFFF",
"--accent": "#0205FF",
"--redish": "#FF0105",
"--orangish": "#FF6001",
"--yellowish": "#E0FF01",
"--greenish": "#06FF05",
"--cyanish": "#01FFFD",
"--bluish": "#0042FF",
"--purplish": "#7D1AE6",
"--pinkish": "#FF01C3",
// actual variable names in case someone wants to use them or I decide
// to experiment with color blending some day
"black": "#000000",
"white": "#FFFFFF",
"red": "#FF0105",
"orange": "#FF6001",
"yellow": "#E0FF01",
"green": "#06FF05",
"cyan": "#01FFFD",
"blue": "#0042FF",
"purple": "#7D1AE6",
"pink": "#FF01C3",
},
"globals":
{
// "something": "var(varname)",
"background": "#000000",
"foreground": "#FFFFFF",
"invisibles": "#06FF05",
"caret": "#FFFFFF",
"block_caret": "#FFFFFF",
"block_caret_border": "#1515FF",
"block_caret_underline": "#F2FF06",
"block_caret_corner_style": "cut",
"block_caret_corner_radius": "2",
"line_highlight": "#2D2D2D",
"misspelling": "#EB1C02",
"fold_marker": "#06FF05",
"minimap_border": "#1515FFB4",
"accent": "#0205FF",
// "popup_css": "", // leaving this line uncommented produces black type on near-black background for popups
// "phantom_css": "",
"gutter": "#000000",
"gutter_foreground": "#B0B0B0",
"gutter_foreground_highlight": "#FFFFFF",
"line_diff_width": "2",
"line_diff_added": "#2AB814",
"line_diff_modified": "#E0FF00",
"line_diff_deleted": "#FC2003",
"selection": "#0205FF",
"selection_foreground": "#E0FF01",
"selection_border": "#06FF05",
"selection_border_width": "1",
"inactive_selection": "#353576",
"inactive_selection_border": "#00FFFF",
"inactive_selection_foreground": "#AD891F",
"selection_corner_style": "cut",
"selection_corner_radius": "2",
"highlight": "#FF026A",
"find_highlight": "#F2FF06",
"find_highlight_foreground": "#1515FF",
"scroll_highlight": "#FF026A",
"scroll_selected_highlight": "#E0FF00",
"rulers": "#F2FF067A",
"guide": "#B0B0B0",
"active_guide": "#FF0080",
"stack_guide": "#307326",
"brackets_options": "stippled_underline bold italic",
"brackets_foreground": "#FF0080",
"bracket_contents_options": "underline bold",
"bracket_contents_foreground": "#FF0080",
"tags_options": "stippled_underline bold italic",
"tags_foreground": "#7D1AE6",
"shadow": "#B0B0B0B3",
"shadow_width": "5"
},
"rules":
[
// ____
// 6MMMMb/ 68b
// 8P YM Y89
// 6M Y ____ ___ __ ____ ___ __ ___ ____
// MM 6MMMMb `MM 6MMb 6MMMMb `MM 6MM `MM 6MMMMb.
// MM 6M' `Mb MMM9 `Mb 6M' `Mb MM69 " MM 6M' Mb
// MM ___MM MM MM' MM MM MM MM' MM MM `'
// MM `M'MMMMMMMM MM MM MMMMMMMM MM MM MM
// YM M MM MM MM MM MM MM MM
// 8b d9 YM d9 MM MM YM d9 MM MM YM. d9
// YMMMM9 YMMMM9 _MM_ _MM_ YMMMM9 _MM_ _MM_ YMMMM9
{
"name": "White",
"scope": "meta.function-call meta.group.braces.round.function.arguments.js, meta.function-call.python, constant.other.haskell",
"foreground": "#FFFFFF"
},
{
"name": "Invalid Illegal",
"scope": "invalid, invalid.illegal",
"foreground": "#FFFFFF",
"background": "#FF0000",
"font_style": "bold italic"
},
{
"name": "Invalid Deprecated",
"scope": "invalid.deprecated",
"foreground": "#808080",
"background": "#920808",
"font_style": "bold italic"
},
{
"name": "Punctuation",
"scope": "punctuation - (punctuation.definition.string | punctuation.definition.comment)",
"foreground": "#FFFEF7"
},
{
"name": "Comment",
"scope": "comment, punctuation.definition.comment",
"foreground": "#7F817E",
"font_style": "italic"
},
{
"name": "docstring",
"scope": "string.quoted.double.block, string.docstring, string.quoted.single.block",
"foreground": "#218B97",
"font_style": "italic"
},
{
"name": "Numbers",
"scope": "constant.numeric, punctuation.separator.decimal",
"foreground": "#FF0604"
},
{
"name": "Language Constant/Boolean",
"scope": "constant.language, constant.boolean",
"foreground": "#FF1308",
"font_style": "bold italic"
},
{
"name": "Constant.character.entity",
"scope": "constant.character.entity, punctuation.definition.constant",
"foreground": "#FF07A0",
"font_style": "italic"
},
{
"name": "Keyword",
"scope": "keyword, keyword.operator.module",
"foreground": "#0B93FF"
},
{
"name": "Keyword other",
"scope": "keyword.other",
"foreground": "#FF026A"
},
{
"name": "Operator",
"scope": "keyword.operator -keyword.operator.dereference",
"foreground": "#A7A3FF",
"font_style": "bold"
},
{
"name": "Comparison operator",
"scope": "keyword.operator.comparison",
"foreground": "#48FFC2",
"font_style": "bold"
},
{
"name": "Assignment operator",
"scope": "keyword.operator.assignment",
"foreground": "#FF6106",
"font_style": "bold"
},
{
"name": "Augmented assignment operator",
"scope": "keyword.operator.assignment.augmented",
"foreground": "#FFBBF4",
"font_style": "bold"
},
{
"name": "Storage type",
"scope": "storage.type",
"foreground": "#FF4101"
},
{
"name": "Storage modifier",
"scope": "storage.modifier",
"foreground": "#00E400",
"background": "#003A00"
},
{
"name": "Variable",
"scope": "variable, punctuation.definition.variable, meta.function.inline.parameters variable.parameter",
"foreground": "#FF25D9"
},
{
"name": "Other Variable",
"scope": "variable.other, meta.variable.other.valid",
"foreground": "#D285CC"
},
{
"name": "Language Variable",
"scope": "variable.language, variable.parameter.function.language",
"foreground": "#0AEDFF",
"font_style": "italic"
},
{
"name": "Entity-Other",
"scope": "entity.other",
"foreground": "#04FFD7"
},
{
"name": "Inherited class",
"scope": "entity.other.inherited-class",
"foreground": "#80FCFF"
},
{
"name": "Class",
"scope": "meta.class.identifier, entity.name.type.class, support.class, variable.other.class, entity.name.class",
"foreground": "#CFFF01"
},
{
"name": "Dict key",
"scope": "meta.structure.dictionary meta.structure.dictionary.key, constant.other.object.key string, meta.object-literal.key, meta.mapping.key",
"foreground": "#A9FF98",
"font_style": "bold"
},
{
"name": "Dict Value",
"scope": "meta.structure.dictionary.value",
"foreground": "#7DC5F9"
},
{
"name": "Item-access arguments",
"scope": "meta.item-access.arguments",
"foreground": "#11BD7C"
},
{
"name": "Method",
"scope": "meta.method.identifier, meta.method-call, meta.method.declaration",
"foreground": "#13FFA3"
},
{
"name": "Function definition",
"scope": "meta.function entity.name.function, entity.name.function.abp, meta.prototype.function.js, entity.name.function.makefile, entity.name.function.go, meta.class-method.js entity.name.function.js, entity.name.function.fortran, entity.name.function.sql, entity.name.function.template",
"foreground": "#0AFF04",
"background": "#07019A"
},
{
"name": "Function call",
"scope": "meta.function-call, support.function.name, meta.function-call punctuation.definition.parameters, meta.function-call variable.function, meta.function-call entity.name.function.js, support.function.source.rust, meta.function-call meta.function-call.generic, support.function.any-method, meta.function.inline.other variable.parameter",
"foreground": "#10FF02"
},
{
"name": "Function arguments",
"scope": "meta.function-call.arguments, meta.function-call.parameters variable.parameter, support.function.any-method, meta.function.inline.other entity.other.attribute-value variable.parameter",
"foreground": "#2BB71D",
"font_style": "italic"
},
{
"name": "Function definition parameters",
"scope": "variable.parameter.function, meta.function.parameters variable.parameter, meta.function-call.arguments variable.parameter",
"foreground": "#FFF57F",
"font_style": "italic"
},
{
"name": "Support.constant",
"scope": "support.constant",
"foreground": "#EB939A",
"font_style": "italic"
},
{
"name": "Exception",
"scope": "support.type.exception",
"foreground": "#F8F8F8",
"background": "#800F00"
},
{
"name": "Support function",
"scope": "support.function",
"foreground": "#C809FF"
},
{
"name": "Builtin function",
"scope": "support.function.builtin",
"foreground": "#E0A1FF",
"font_style": "italic"
},
{
"name": "String",
"scope": "string -string.unquoted.old-plist -string.unquoted.heredoc, string.unquoted.heredoc string",
"foreground": "#FFDF02"
},
{
"name": "String Quotes",
"scope": "string.quoted punctuation.definition.string.begin, string.quoted punctuation.definition.string.end, punctuation.definition.string, string.quoted.double.begin, string.quoted.double.end, punctuation.definition.generic, support.punctuation.expression",
"foreground": "#FF07A2",
"font_style": "italic"
},
{
"name": "String constant",
"scope": "string constant",
"foreground": "#FF087B",
"font_style": "italic"
},
{
"name": "Constant.other",
"scope": "constant.other",
"foreground": "#FFA325",
"font_style": "bold"
},
{
"name": "String embedded-source",
"scope": "string.quoted source",
"foreground": "#EBFF59",
"background": "#252525"
},
{
"name": "String variable",
"scope": "string variable",
"foreground": "#52B5D9"
},
{
"name": "Support.type",
"scope": "support.type",
"foreground": "#FF1190"
},
{
"name": "Support variable",
"scope": "support.variable",
"foreground": "#0A4AFF"
},
// _ ________ ________
// dM. `MMMMMMMb. `MMMMMMMb.
// ,MMb MM `Mb MM `Mb
// d'YM. MM MM MM MM
// ,P `Mb MM MM MM .M9
// d' YM. MM MM MMMMMMM(
// ,P `Mb MM MM MM `Mb
// d' YM. MM MM MM MM
// ,MMMMMMMMb MM MM MM MM
// d' YM. MM .M9 MM .M9
// _dM_ _dMM__MMMMMMM9' _MMMMMMM9'
//
// Android Debug Bridge
{
"name": "Timestamp",
"scope": "constant.other.adb.timestamp",
"foreground": "#FE7DF5"
},
{
"name": "Function",
"scope": "source.adb entity.name.function",
"foreground": "#10FF07"
},
{
"name": "constant.other",
"scope": "constant.other.adb",
"foreground": "#FF8000"
},
{
"name": "Info",
"scope": "entity.name.filename.adb",
"foreground": "#08F2FF"
},
{
"name": "Warning",
"scope": "keyword.adb",
"foreground": "#FFFF00"
},
// _ ____ _______ __
// dM. `MM' `MM'`MM d'
// ,MMb MM MM MM d'
// d'YM. MM MM MM d'
// ,P `Mb MM MM MM d'
// d' YM. MMMMMMMMMM MMd'
// ,P `Mb MM MM MMYM.
// d' YM. MM MM MM YM.
// ,MMMMMMMMb MM MM MM YM.
// d' YM. MM MM MM YM.
// _dM_ _dMM__MM_ _MM__MM_ YM._
//
// AutoHotKey
{
"name": "AHK Function Definition",
"scope": "labelline.ahk entity.name.function.label.ahk",
"foreground": "#0AFF04",
"background": "#07019A"
},
{
"name": "AHK Hotkey Definition",
"scope": "hotkeyline.ahk entity.name.function.label.ahk",
"foreground": "#CFFF01",
"background": "#03003F"
},
{
"name": "AHK Equals",
"scope": "punctuation.definition.equals",
"foreground": "#EF11BB",
},
{
"name": "AHK constant.language.hotkey",
"scope": "constant.language.hotkey",
"foreground": "#FF6001",
"font_style": ""
},
{
"name": "AHK Preprocessor Directive",
"scope": "preprocessordirective.ahk keyword",
"foreground": "#9FA5FF",
},
// ________ ___ ____ ____ ___
// `MMMMMMMb. `MM `MM' `MM'68b `MM
// MM `Mb MM / MM MM Y89 MM /
// MM MM ___ __ MM __ /M MM MM ___ MM /M ___ __
// MM .M9 `MM 6MM MM d' /MMMMM MM MM `MM MM /MMMMM `MM 6MM
// MMMMMMM( MM69 " MM d' MM MMMMMMMMMM MM MM MM MM69 "
// MM `Mb MM' MM d' MM MM MM MM MM MM MM'
// MM MM MM MMdM. MM MM MM MM MM MM MM
// MM MM MM MMPYM. MM MM MM MM MM MM MM
// MM .M9 MM MM YM. YM. , MM MM MM MM YM. , MM
// _MMMMMMM9' _MM_ _MM_ YM._ YMMM9 _MM_ _MM__MM__MM_ YMMM9 _MM_
//
// BracketHighlighter
{
"name": "BracketHighlighter default",
"scope": "brackethighlighter.default",
"foreground": "#93FFC4"
},
{
"name": "BracketHighlighter unmatched",
"scope": "brackethighlighter.unmatched",
"foreground": "#FF1E00"
},
{
"name": "BracketHighlighter curly",
"scope": "brackethighlighter.curly",
"foreground": "#00FF40"
},
{
"name": "BracketHighlighter round",
"scope": "brackethighlighter.round",
"foreground": "#1AB5FF"
},
{
"name": "BracketHighlighter square",
"scope": "brackethighlighter.square",
"foreground": "#FF8000"
},
{
"name": "BracketHighlighter angle",
"scope": "brackethighlighter.angle",
"foreground": "#9A35FF"
},
{
"name": "BracketHighlighter tag",
"scope": "brackethighlighter.tag",
"foreground": "#FFFF00"
},
{
"name": "BracketHighlighter quote",
"scope": "brackethighlighter.quote",
"foreground": "#FF07A2"
},
{
"name": "BracketHighlighter C define",
"scope": "brackethighlighter.c_define",
"foreground": "#8189FF"
},
{
"name": "BracketHighlighter Bash",
"scope": "brackethighlighter.bash",
"foreground": "#0B93FF"
},
// ____ ,M' ____ ,M' ____
// 6MMMMb/ dP 6MMMMb/ dP 6MMMMb/
// 8P YM ,M' 8P YM ,M' 8P YM dP dP
// 6M Y dP 6M Y dP 6M Y ,M',M'
// MM ,M' MM M M ,M' MM dP dP
// MM dP MM M M dP MM ,M',M'
// MM ,M' MM M M ,M' MM MMMMMMMM
// MM dP MM MMMMMMM MMMMMMM dP MM ,M',M'
// YM 6 ,M' YM 6 M M ,M' YM 6 MMMMMMMM
// 8b d9 dP 8b d9 M M dP 8b d9 ,M',M'
// YMMMM9 ,M' YMMMM9 M M ,M' YMMMM9 dP dP
// dP dP ,M',M'
// ,M' ,M' dP dP
// dP dP
{
"name": "C/C++ struct, union",
"scope": "entity.name.struct, entity.name.union",
"foreground": "#FBFF0E",
"background": "#05065B"
},
{
"name": "C/C++ Format string",
"scope": "constant.other.placeholder.c, constant.other.placeholder.c++",
"foreground": "#FF0099",
"font_style": "italic",
},
{
"name": "C/C++ Preprocessor Line",
"scope": "meta.preprocessor",
"foreground": "#A85E3D"
},
{
"name": "C/C++ Preprocessor Directive",
"scope": "meta.preprocessor keyword",
"foreground": "#8189FF"
},
{
"name": "C/C++ <include>",
"scope": "string.quoted.other.lt-gt.include",
"foreground": "#0CC4FF"
},
{
"name": "C/C++ \"include\"",
"scope": "string.quoted.double.include",
"foreground": "#FF65BE"
},
{
"name": "C Improved preprocessor #include",
"scope": "keyword.other.preprocessor.include",
"background": "#070583",
"font_style": "bold"
},
{
"name": "C Improved preprocessor #define",
"scope": "keyword.other.preprocessor.include",
"background": "#070583",
"font_style": "bold"
},
{
"name": "C# Nullable Type",
"scope": "storage.type.nullable",
"background": "#070583",
"font_style": "bold"
},
{
"name": "C# Reflection",
"scope": "keyword.operator.reflection",
"foreground": "#0D09F6",
"font_style": "bold"
},
{
"name": "C# Method Definition",
"scope": "meta.method entity.name.function",
"foreground": "#0AFF04",
"background": "#07019A",
"font_style": "bold"
},
{
"name": "C# Inline Documentation",
"scope": "comment.line.documentation",
"background": "#7F817E2A",
},
{
"name": "C# Inline Documentation Comment Symbol",
"scope": "punctuation.definition.comment.documentation",
"foreground": "#DE7468",
"font_style": ""
},
{
"name": "C# Inline Documentation Text",
"scope": "comment.line.documentation text.documentation",
"foreground": "#218B97",
"font_style": "italic"
},
// ____ ___
// 6MMMMb/ `MM 68b
// 8P YM MM Y89
// 6M Y MM _____ ___ ___ ___ ___ __ ____
// MM MM 6MMMMMb `MM `MM MM `MM 6MM 6MMMMb
// MM MM 6M' `Mb MM MM MM MM69 " 6M' `Mb
// MM MM MM MM MM MM MM MM' MM MM
// MM MM MM MM MM MM MM MM MMMMMMMM
// YM 6 MM MM MM MM MM MM MM MM
// 8b d9 MM YM. ,M9 MM YM. MM MM YM d9
// YMMMM9 _MM_ YMMMMM9 MM YMMM9MM__MM_ YMMMM9
// MM
// (8) M9
// YMM9
{
"name": "Global symbol",
"scope": "source.symbol.global.clojure",
"foreground": "#FFACAA",
"font_style": "italic"
},
{
"name": "Constant.string",
"scope": "source.clojure constant.string.symbol.clojure",
"foreground": "#A029F5",
"font_style": "bold"
},
{
"name": "Keyword",
"scope": "source.clojure support.other.keyword",
"foreground": "#0B93FF"
},
{
"name": "Namespace",
"scope": "entity.name.namespace",
"foreground": "#CFFF01",
"background": "#070E48",
"font_style": "bold"
},
{
"name": "Storage, Support functions",
"scope": "storage.clojure, support.function.clojure",
"foreground": "#00BB5E"
},
{
"name": "Storage.type.function",
"scope": "storage.type.function source.clojure",
"foreground": "#10FF02"
},
{
"name": "Keyword.other.mark",
"scope": "keyword.other.mark",
"foreground": "#FF71BB",
"font_style": "bold italic"
},
{
"name": "Match Function",
"scope": "support.function.match.clojure",
"foreground": "#47FFC7",
"font_style": "bold italic"
},
{
"name": "Map braces",
"scope": "punctuation.definition.map",
"foreground": "#80FF80",
"font_style": "bold italic"
},
{
"name": "Set braces",
"scope": "punctuation.definition.set",
"foreground": "#FF3229",
"font_style": "bold italic"
},
{
"name": "Vector brackets",
"scope": "punctuation.definition.vector",
"foreground": "#FF00FF",
"font_style": "bold italic"
},
{
"name": "String Constant Symbol",
"scope": "constant.string.symbole.clojure, meta.expression.map constant.string.symbol.clojure",
"foreground": "#A7A3FF"
},
// ____ ____ ____
// 6MMMMb/ 6MMMMb\ 6MMMMb\
// 8P YM 6M' ` 6M' ` /
// 6M Y MM MM ____ /M ____
// MM YM. YM. 6MMMMb /MMMMM 6MMMMb.
// MM YMMMMb YMMMMb 6M' `Mb MM 6M' Mb
// MM `Mb `Mb MM MM MM MM `'
// MM MM MM MMMMMMMM MM MM
// YM 6 MM MM MM MM MM
// 8b d9 L ,M9 L ,M9 YM d9 YM. , YM. d9 68b
// YMMMM9 MYMMMM9 MYMMMM9 YMMMM9 YMMM9 YMMMM9 Y89
{
"name": "CSS: additional-constants",
"scope": "meta.property-value support.constant.named-color.css, meta.property-value constant",
"foreground": "#FFF203",
"font_style": "italic"
},
{
"name": "CSS: @at-rule",
"scope": "meta.preprocessor.at-rule keyword.control.at-rule",
"foreground": "#F6AA11"
},
{
"name": "CSS: attribute-match",
"scope": "source.css meta.attribute-selector keyword.operator.comparison",
"foreground": "#833F04"
},
{
"name": "CSS: .class",
"scope": "entity.other.attribute-name.class.css, entity.other.attribute-name.class.css punctuation",
"foreground": "#B2FF02",
"background": "#2A3C00"
},
{
"name": "CSS: constructor argument",
"scope": "meta.constructor.argument",
"foreground": "#0AEB77"
},
{
"name": "CSS: #id",
"scope": "entity.other.attribute-name.id.css, entity.other.attribute-name.id.css punctuation",
"foreground": "#FF50F0"
},
{
"name": "CSS: pseudo-element",
"scope": "entity.other.attribute-name.pseudo-element",
"foreground": "#AE08FF"
},
{
"name": "CSS: pseudo-class",
"scope": "entity.other.attribute-name.pseudo-class, entity.other.attribute-name.tag.pseudo-class",
"foreground": "#D2C9FF"
},
{
"name": "CSS: property-name",
"scope": "support.type.property-name.css, meta.property-name",
"foreground": "#FFF262"
},
{
"name": "CSS: property-value",
"scope": "meta.property-group support.constant.property-value.css, meta.property-value support.constant.property-value.css",
"foreground": "#357BF6",
"background": "#0D1F3F"
},
{
"name": "CSS: selector",
"scope": "meta.selector.css",
"foreground": "#84F6C3"
},
{
"name": "CSS: tag-name",
"scope": "entity.name.tag.css",
"foreground": "#05C2FF"
},
{
"name": "CSS: tag wildcard",
"scope": "entity.name.tag.wildcard, entity.other.attribute-name.universal",
"foreground": "#FF7900",
"font_style": "bold"
},
{
"name": "CSS: units",
"scope": "keyword.other.unit",
"foreground": "#1DD292"
},
{
"name": "CSS: Flag",
"scope": "keyword.other.important.css",
"foreground": "#FF0000",
"font_style": "glow"
},
{
"name": "CSS: Numeric Suffix",
"scope": "constant.numeric.suffix",
"background": "#FF060433",
"font_style": ""
},
{
"name": "SASS: Block comment",
"scope": "comment.block.sass",
"foreground": "#208C9A",
"font_style": "italic"
},
{
"name": "SASS: Placeholder Selector",
"scope": "entity.other.attribute-name.placeholder-selector.sass",
"foreground": "#FF5699",
"font_style": "bold italic"
},
{
"name": "SASS: Attribute Selector",
"scope": "entity.other.attribute-selector.sass",
"foreground": "#817DFF"
},
{
"name": "SASS: Regex",
"scope": "keyword.other.regex.sass",
"foreground": "#FFE4A6"
},
{
"name": "SASS: Comma",
"scope": "comment.punctuation.comma.sass",
"foreground": "#FCFDFF"
},
{
"name": "SASS: RGB Color",
"scope": "constant.other.color.rgb-value.css, meta.property-value.css constant.other.color.rgb-value.css, constant.other.color.rgb-value.css punctuation.definition.constant.css, meta.property-value.css constant.other.color.rgb-value.css punctuation.definition.constant.css",
"foreground": "#07FFF5"
},
{
"name": "SASS: RGBA Color",
"scope": "constant.other.color.rgba-value.css, meta.property-value.css constant.other.color.rgba-value.css, constant.other.color.rgba-value.css punctuation.definition.constant.css, meta.property-value.css constant.other.color.rgba-value.css punctuation.definition.constant.css",
"foreground": "#07B7F5"
},
{
"name": "SCSS: Semicolon",
"scope": "comment.punctuation.semicolon.sass",
"foreground": "#6969FA"
},
// ___ __ __
// `MM 68b 69MM 69MM
// MM Y89 6M' ` 6M' `
// ____MM ___ _MM__ _MM__
// 6MMMMMM `MM MMMMM MMMMM
// 6M' `MM MM MM MM
// MM MM MM MM MM
// MM MM MM MM MM
// MM MM MM MM MM
// YM. ,MM MM MM MM
// YMMMMMM__MM__MM_ _MM_
{
"name": "diff.range Punctuation",
"scope": "meta.diff.range punctuation.definition.range",
"foreground": "#1AEFFF",
"font_style": "bold"
},
{
"name": "diff.range Line Numbers",
"scope": "meta.diff.range meta.toc-list.line-number",
"foreground": "#FF07C5",
"font_style": "bold"
},
{
"name": "diff.punctuation From",
"scope": "source.diff punctuation.definition.from-file",
"foreground": "#6CFE11",
"background": "#1911FF",
"font_style": "bold"
},
{
"name": "diff.punctuation To",
"scope": "source.diff punctuation.definition.to-file",
"foreground": "#1911FF",
"background": "#6CFE11",
"font_style": "bold"
},
{
"name": "diff.header From",
"scope": "meta.diff.header.from-file",
"foreground": "#6CFE11",
"background": "#1911FF"
},
{
"name": "diff.header To",
"scope": "meta.diff.header.to-file",
"foreground": "#1911FF",
"background": "#6CFE11"
},
{
"name": "diff.deleted",
"scope": "markup.deleted",
"foreground": "#FFFFFF",
"background": "#BC1802"
},
{
"name": "diff.changed",
"scope": "markup.changed",
"foreground": "#FFFFFF",
"background": "#CFB406"
},
{
"name": "diff.inserted",
"scope": "markup.inserted",
"foreground": "#FFFFFF",
"background": "#277D08"
},
// ________ ___ __ ___
// `MMMMMMMb. `MM 69MM68b `MM
// MM `Mb MM 6M' `Y89 MM
// MM MM _____ ____ MM __ ____ ___ __ _MM__ ___ MM ____
// MM MM 6MMMMMb 6MMMMb. MM d' 6MMMMb `MM 6MM MMMMM `MM MM 6MMMMb
// MM MM 6M' `Mb 6M' Mb MM d' 6M' `Mb MM69 " MM MM MM 6M' `Mb
// MM MM MM MM MM `' MM d' MM MM MM' MM MM MM MM MM
// MM MM MM MM MM MMdM. MMMMMMMM MM MM MM MM MMMMMMMM
// MM MM MM MM MM MMPYM. MM MM MM MM MM MM
// MM .M9 YM. ,M9 YM. d9 MM YM. YM d9 MM MM MM MM YM d9
// _MMMMMMM9' YMMMMM9 YMMMM9 _MM_ YM._ YMMMM9 _MM_ _MM_ _MM__MM_ YMMMM9
{
"name": "Dockerfile: entity.name.enum",
"scope": "entity.name.enum",
"foreground": "#06FF05"
},
// ________ ___ ____ ________ ___
// `MMMMMMM 68b `MM `MM' `MMMMMMM 68b `MM
// MM \ Y89 MM MM MM \ Y89 MM
// MM ___ ___ __ ____MM MM ___ __ MM ___ MM ____ ____
// MM , `MM `MM 6MMb 6MMMMMM MM `MM 6MMb MM , `MM MM 6MMMMb 6MMMMb\
// MMMMMM MM MMM9 `Mb 6M' `MM MM MMM9 `Mb MMMMMM MM MM 6M' `Mb MM' `
// MM ` MM MM' MM MM MM MM MM' MM MM ` MM MM MM MM YM.
// MM MM MM MM MM MM MM MM MM MM MM MM MMMMMMMM YMMMMb
// MM MM MM MM MM MM MM MM MM MM MM MM MM `Mb
// MM MM MM MM YM. ,MM MM MM MM MM MM MM YM d9 L ,MM
// _MM_ _MM__MM_ _MM_ YMMMMMM__MM__MM_ _MM__MM_ _MM__MM_ YMMMM9 MYMMMM9
{
"name": "Find In Files: filename",
"scope": "entity.name.filename.find-in-files",
"foreground": "#06FF05"
},
{
"name": "Find In Files: Line Number - Match",
"scope": "constant.numeric.line-number.match.find-in-files",
"foreground": "#FFFF00",
"font_style": "bold italic underline"
},
// ________
// `MMMMMMM
// MM \ /
// MM _____ ___ __ /M ___ __ ___ ___ __
// MM , 6MMMMMb `MM 6MM /MMMMM `MM 6MM 6MMMMb `MM 6MMb
// MMMMMM 6M' `Mb MM69 " MM MM69 " 8M' `Mb MMM9 `Mb
// MM ` MM MM MM' MM MM' ,oMM MM' MM
// MM MM MM MM MM MM ,6MM9'MM MM MM
// MM MM MM MM MM MM MM' MM MM MM
// MM YM. ,M9 MM YM. , MM MM. ,MM MM MM
// _MM_ YMMMMM9 _MM_ YMMM9 _MM_ `YMMM9'Yb._MM_ _MM_
{
"name": "Program name",
"scope": "entity.name.function.program",
"foreground": "#C4FF03",
"background": "#3F0115",
"font_style": "bold italic"
},
{
"name": "Intent",
"scope": "keyword.intent.fortran",
"foreground": "#08D879",
"font_style": "italic"
},
{
"name": "Implicit statement",
"scope": "meta.implicit_statement.fortran keyword.control",
"foreground": "#F68EFF",
"background": "#48294B",
"font_style": "bold"
},
{
"name": "Data",
"scope": "storage.data.fortran",
"foreground": "#C4FF03"
},
{
"name": "\"use\" module name",
"scope": "storage.type.module",
"foreground": "#CFFF01",
"background": "#070E48"
},
// ____ ____
// 6MMMMb/ 68b 6MMMMb/
// 8P YM Y89 / 8P YM / /
// 6M Y ___ /M 6M Y ___ ___ /M /M ____ ___ __
// MM `MM /MMMMM MM `MM MM /MMMMM /MMMMM 6MMMMb `MM 6MM
// MM MM MM MM MM MM MM MM 6M' `Mb MM69 "
// MM ___ MM MM MM ___ MM MM MM MM MM MM MM'
// MM `M' MM MM MM `M' MM MM MM MM MMMMMMMM MM
// YM M MM MM YM M MM MM MM MM MM MM
// 8b d9 MM YM. , 8b d9 YM. MM YM. , YM. , YM d9 MM
// YMMMM9 _MM_ YMMM9 YMMMM9 YMMM9MM_ YMMM9 YMMM9 YMMMM9 _MM_
{
"name": "GitGutter deleted",
"scope": "markup.deleted.git_gutter",
"foreground": "#FF0000"
},
{
"name": "GitGutter inserted",
"scope": "markup.inserted.git_gutter",
"foreground": "#00FF00"
},
{
"name": "GitGutter changed",
"scope": "markup.changed.git_gutter",
"foreground": "#FFFF00"
},
// ____ ____ ___ ___ ___
// `MM' `MM' `MM `MM `MM
// MM MM MM MM MM
// MM MM ___ ____ MM __ ____ MM MM
// MM MM 6MMMMb 6MMMMb\ MM d' 6MMMMb MM MM
// MMMMMMMMMM 8M' `Mb MM' ` MM d' 6M' `Mb MM MM
// MM MM ,oMM YM. MM d' MM MM MM MM
// MM MM ,6MM9'MM YMMMMb MMdM. MMMMMMMM MM MM
// MM MM MM' MM `Mb MMPYM. MM MM MM
// MM MM MM. ,MM L ,MM MM YM. YM d9 MM MM
// _MM_ _MM_`YMMM9'Yb.MYMMMM9 _MM_ YM._ YMMMM9 _MM__MM_
{
"name": "Module name",
"scope": "meta.declaration.module.haskell support.other.module.haskell",
"foreground": "#E2FF09",
"background": "#000B76"
},
{
"name": "Imported module",
"scope": "meta.import.haskell support.other.module.haskell",
"foreground": "#2DFF08"
},
{
"name": "Exported function",
"scope": "meta.declaration.exports.haskell entity.name.function.haskell",
"foreground": "#FDA7FF",
"background": "#43215B"
},