-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.yaml
2200 lines (2200 loc) · 62.2 KB
/
theme.yaml
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
type: dark
name: Saga
$schema: vscode://schemas/color-theme
colors: null
tokenColors:
- scope: comment
settings:
foreground: "#8CA1A5"
- scope:
- string
- string.regexp
settings:
foreground: "#BEC5D4"
- scope: constant.other.symbol
settings:
foreground: "#F4A442"
- scope: string.quoted.single
settings:
foreground: "#70F49C"
- scope: string.pattern.regexp
settings:
foreground: "#89B8C2"
- scope: string.replace.regexp
settings:
foreground: "#91ACD1"
- scope: support.variable.dom
settings:
foreground: "#59F2F7"
- scope: markup.list.numbered.markdown
settings:
foreground: "#FAB38E"
- scope: markup.list.unnumbered.markdown
settings:
foreground: "#F7C57A"
- scope: support.function.magic
settings:
foreground: "#74B8B3"
- scope: support.variable.magic
settings:
foreground: "#DBCD92"
- scope: markup.underline.link.markdown
settings:
foreground: "#FF87AB"
- scope: entity.other.attribute-name.id
settings:
foreground: "#85AC3A"
- scope: support.type.property-name
settings:
foreground: "#94B5C0"
- scope: entity.name.instance
settings:
foreground: "#38A3A5"
- scope: entity.name.tag
settings:
foreground: "#59C2FF"
- scope:
- constant.other.color.rgb-value
- support.constant.color.w3c-extended-color-name
settings:
foreground: "#45A1ED"
- scope: punctuation.definition.metadata
settings:
foreground: "#94B95D"
- scope:
- entity.name.tag.css
- entity.name.tag.script
- entity.name.tag.style
- meta.tag.block.script
- meta.tag.other
- source.css.embedded punctuation.definition.tag.html
- source.embedded punctuation.definition.tag.html
settings:
foreground: "#E78863"
- scope:
- meta.property-group support.constant.property-value
- meta.property-value support.constant.property-value
settings:
foreground: "#2EB67D"
- scope: meta.selector
settings:
foreground: "#DC9656"
- scope: keyword.other.unit
settings:
foreground: "#C74DED"
- scope:
- keyword.other.important
- support.class.error
- support.type.exception.python,
settings:
foreground: "#F43E5C"
- scope: support.type.vendored.property-name
settings:
foreground: "#A9B2C3"
- scope: variable.other.dollar.coffee
settings:
foreground: "#EF596F"
- scope: markup.fenced_code.block.markdown
settings:
foreground: "#CED4DA"
- scope:
- storage.type.function
- storage.type.function.python
settings:
foreground: "#E34F8C"
- scope:
- string
- string.quoted.double.json
- string.quoted.double.json.comments
- string.template
settings:
foreground: "#E0E0E0"
- scope:
- string
- string.template
- string.unquoted
settings:
foreground: "#91DD64"
- scope: string.quoted.double
settings:
foreground: "#C5E478"
- scope: string.quoted.single
settings:
foreground: "#82F0A6"
- scope: string.unquoted.plain.out
settings:
foreground: "#7FDBCA"
- scope: string.unquoted.block
settings:
foreground: "#57CDFF"
- scope: string.unquoted.plain.in
settings:
foreground: "#CDB6DE"
- scope: string.unquoted.attribute-value
settings:
foreground: "#17C984"
- scope:
- constant.character.math
settings:
foreground: "#D6BF55"
- scope:
- constant.numeric.math.trin
settings:
foreground: "#81B88B"
- scope:
- constant.other.general.math
settings:
foreground: "#61AFEF"
- scope:
- constant.other.label
settings:
foreground: "#C2B092"
- scope: keyword.modifier
settings:
foreground: "#A3BD52"
- scope: punctuation.definition.heading
settings:
foreground: "#9D9D9D"
- scope:
- punctuation.definition.list.begin.markdown
- punctuation.definition.list.end.markdown
settings:
foreground: "#3194BE"
- scope: punctuation.definition.markdown
settings:
foreground: "#96A563"
- scope:
- punctuation.definition.string.begin
- punctuation.definition.string.end
settings:
foreground: "#2FBDCA"
- scope: punctuation.definition.raw
settings:
foreground: "#6E85B2"
- scope:
- punctuation.definition.tag.begin
- punctuation.definition.tag.end
settings:
foreground: "#BFA2DB"
- scope:
- meta.brace.square
- punctuation.definition.array
settings:
foreground: "#7287CA"
- scope: meta.brace.round
settings:
foreground: "#E7726B"
- scope:
- punctuation.definition.quasi.begin
- punctuation.definition.quasi.end
settings:
foreground: "#C98057"
- scope:
- meta.brace.curly
- punctuation.definition.dictionary
settings:
foreground: "#7BA54E"
- scope:
- meta.brace.curly.litobj
- punctuation.definition.block
settings:
foreground: "#977EA3"
- scope: punctuation.definition.group
settings:
foreground: "#DB5363"
- scope: punctuation.section.expression
settings:
foreground: "#70A3B1"
- scope: punctuation.definition.character-class
settings:
foreground: "#876EBB"
- scope: punctuation.terminator.statement
settings:
foreground: "#00C1D4"
- scope: punctuation.terminator.rule
settings:
foreground: "#6B8CDF"
- scope: punctuation.separator.comma
settings:
foreground: "#7C969E"
- scope: punctuation.definition.arrow
settings:
foreground: "#A7A061"
- scope: punctuation.separator.continuation.line
settings:
foreground: "#45A5C2"
- scope: meta.delimiter.comma
settings:
foreground: "#1DAEB1"
- scope:
- punctuation.separator.dictionary.key-value
- punctuation.separator.key-value
settings:
foreground: "#DD6A60"
- scope: meta.function-call.with-arguments meta.brace.round
settings:
foreground: "#6E7CB9"
- scope: meta.function-call.without-arguments meta.brace.round
settings:
foreground: "#7C83FD"
- scope: meta.method-call.with-arguments meta.brace.round
settings:
foreground: "#39A2DB"
- scope: meta.method-call.without-arguments meta.brace.round
settings:
foreground: "#39A2DB"
- scope: punctuation.definition.comment
settings:
foreground: "#7F7C82"
- scope: punctuation.definition.tag
settings:
foreground: "#2E99C0"
- scope: punctuation.definition.entity
settings:
foreground: "#DA7F8F"
- scope: punctuation.definition.keyword
settings:
foreground: "#C8C6A7"
- scope: punctuation.definition.attribute-selector
settings:
foreground: "#1DB9C3"
- scope:
- punctuation.definition.parameters
- punctuation.definition.parameters.begin
- punctuation.definition.parameters.end
settings:
foreground: "#F05454"
- scope:
- meta.brace.round
- punctuation.definition.expression
settings:
foreground: "#FF4848"
- scope: punctuation.definition.global
settings:
foreground: "#A0C1B8"
- scope: punctuation.definition.spread
settings:
foreground: "#7868E6"
- scope: punctuation.definition.string
settings:
foreground: "#1687A7"
- scope: punctuation.definition.italic
settings:
foreground: "#CA5964"
- scope: punctuation.definition.bold
settings:
foreground: "#41AAA8"
- scope: punctuation.definition.variable
settings:
foreground: "#69779B"
- scope: punctuation.accessor.optional
settings:
foreground: "#FF4646"
- scope: punctuation.accessor.cascade
settings:
foreground: "#4BB6A9"
- scope: punctuation.accessor.call
settings:
foreground: "#7579E7"
- scope: punctuation.accessor.module
settings:
foreground: "#D49A89"
- scope: punctuation.accessor
settings:
foreground: "#B2B1B9"
- scope: punctuation.definition.directive
settings:
foreground: "#A09F57"
- scope: punctuation.definition.decorator
settings:
foreground: "#C996CC"
- scope: punctuation.definition.key-value
settings:
foreground: "#FB743E"
- scope: punctuation.definition.mapping
settings:
foreground: "#7C9473"
- scope: punctuation.definition.sequence
settings:
foreground: "#3282B8"
- scope: punctuation.definition.alias
settings:
foreground: "#C56868"
- scope: punctuation.definition.anchor
settings:
foreground: "#1CB3C8"
- scope: punctuation.section.regexp
settings:
foreground: "#C0832D"
- scope:
- meta.brace
- punctuation.definition.binding-pattern
- punctuation.section
- punctuation.separator
- punctuation.support
- punctuation.terminator
settings:
foreground: "#9795CF"
- scope: punctuation.definition.group.non-capturing
settings:
foreground: "#929AAB"
- scope: punctuation.definition.group.flag
settings:
foreground: "#8FBAF3"
- scope: punctuation.definition.typeparameters
settings:
foreground: "#86A6DF"
- scope:
- meta.assertion.look-ahead
- punctuation.definition.group.look-ahead
settings:
foreground: "#29BB89"
- scope:
- meta.assertion.negative-look-ahead
- punctuation.definition.group.negative-look-ahead
settings:
foreground: "#C19065"
- scope:
- meta.assertion.look-behind
- punctuation.definition.group.look-behind
settings:
foreground: "#3EA3A3"
- scope:
- meta.assertion.negative-look-behind
- punctuation.definition.group.negative-look-behind
settings:
foreground: "#E26565"
- scope: punctuation.quasi.element
settings:
foreground: "#C26565"
- scope: punctuation.definition.entity
settings:
foreground: "#7F8FB8"
- scope: punctuation.definition.group.directive
settings:
foreground: "#D98C00"
- scope: punctuation.definition.group.longest
settings:
foreground: "#C675E6"
- scope: punctuation.definition.group.call-out
settings:
foreground: "#318FB5"
- scope: punctuation.definition.group.atomic
settings:
foreground: "#F0C400"
- scope: punctuation.definition.group.branch
settings:
foreground: "#E85F99"
- scope: punctuation.definition.group.absent
settings:
foreground: "#EC4B52"
- scope: punctuation.definition.group.named
settings:
foreground: "#DF8543"
- scope: punctuation.definition.annotation
settings:
foreground: "#9E92B9"
- scope: punctuation.definition.group.back-reference
settings:
foreground: "#4592AF"
- scope: punctuation.definition.character-class.negated
settings:
foreground: "#7189BF"
- scope: punctuation.definition.character-class.posix
settings:
foreground: "#5CA0D3"
- scope: punctuation.definition.block.sequence.item
settings:
foreground: "#6CBBB3"
- scope: punctuation.separator.key-value.mapping
settings:
foreground: "#A96851"
- scope: punctuation.separator.mapping
settings:
foreground: "#1297BD"
- scope: punctuation.separator.arguments
settings:
foreground: "#59A985"
- scope: punctuation.separator.sequence
settings:
foreground: "#C07099"
- scope: punctuation.quasi.element
settings:
foreground: "#986EAD"
- scope: punctuation.definition.instance
settings:
foreground: "#926E6F"
- scope:
- punctuation.section.class
- punctuation.section.class.begin
- punctuation.section.class.end
settings:
foreground: "#B97A95"
- scope: keyword.operator.expression
settings:
foreground: "#569CD6"
- scope: punctuation.decorator.internaldeclaration
settings:
foreground: "#1089FF"
- scope: keyword.operator.prototype
settings:
foreground: "#52B788"
- scope:
- heading.1.markdown
- heading.1.markdown entity.name.section.markdown
settings:
foreground: "#6D91DE"
- scope:
- heading.2.markdown
- heading.2.markdown entity.name.section.markdown
settings:
foreground: "#81B88B"
- scope:
- heading.3.markdown
- heading.3.markdown entity.name.section.markdown
settings:
foreground: "#CC5595"
- scope:
- heading.4.markdown
- heading.4.markdown entity.name.section.markdown
settings:
foreground: "#0DB9D7"
- scope:
- heading.5.markdown
- heading.5.markdown entity.name.section.markdown
settings:
foreground: "#E9436D"
- scope:
- heading.6.markdown
- heading.6.markdown entity.name.section.markdown
settings:
foreground: "#C2985B"
- scope: []
settings:
foreground: "#E36414"
- scope: punctuation.type
settings:
foreground: "#9F9FED"
- scope: keyword.operator.or
settings:
foreground: "#4E94CE"
- scope: variable.other.object
settings:
foreground: "#A79E91"
- scope:
- entity.name.function
- keyword.operator.only
settings:
foreground: "#6487C4"
- scope: entity.name.function
settings:
foreground: "#3498DB"
- scope:
- entity.name.function.member
- support.function
- support.function.builtin
- support.function.builtin.python
settings:
foreground: "#9180D6"
- scope: variable.other.object
settings:
foreground: "#A79E91"
- scope: storage.modifier.async
settings:
foreground: "#A6BD52"
- scope: support.type.builtin.class
settings:
foreground: "#F25F5C"
- scope: support.variable.property.dom
settings:
foreground: "#C0615A"
- scope: support.variable.builtin
settings:
foreground: "#689CFF"
- scope: keyword.operator.maybe
settings:
foreground: "#00FFBC"
- scope: meta.object-literal.key
settings:
foreground: "#FF5D8F"
- scope: variable.parameter
settings:
foreground: "#B0B7C3"
- scope: keyword.operator.assignment
settings:
foreground: "#838D91"
- scope: keyword.control.with
settings:
foreground: "#B7B784"
- scope:
- keyword.operator.slice
- support.class.builtin
- variable.other.language
settings:
foreground: "#86DE74"
- scope:
- constant.other.object.key
- keyword.operator.slice
- meta.definition.property
- meta.field.declaration
settings:
foreground: "#75BFFF"
- scope:
- keyword.operator.class
- keyword.operator.extends
- storage.type.property
settings:
foreground: "#DD8AA3"
- scope:
- meta.delimiter.decimal.period
- punctuation.separator.decimal.period
- storage.type.numeric
settings:
foreground: "#9298A1"
- scope:
- entity.name.function.tagged-template
- keyword.operator.existential
settings:
foreground: "#46DAD3"
- scope: variable.other.constant
settings:
foreground: "#9AA5CE"
- scope: keyword.operator.optional.parameter
settings:
foreground: "#1D9ABA"
- scope: support.type.variant
settings:
foreground: "#1EA71A"
- scope:
- keyword.control.then
- keyword.operator.arrow
settings:
foreground: "#23D18B"
- scope: keyword.operator.arrow.wavy
settings:
foreground: "#FF6B68"
- scope: keyword.operator.arrow.skinny
settings:
foreground: "#C586C0"
- scope: keyword.operator.arrow.fat
settings:
foreground: "#6D9CBE"
- scope: keyword.operator.private
settings:
foreground: "#3AB795"
- scope:
- constant.numeric.bigint
- constant.numeric.other.precision
settings:
foreground: "#CB997E"
- scope:
- constant.character.entity
- constant.numeric.other.exponent
- support.module.node
settings:
foreground: "#97A97C"
- scope: constant.numeric.other.separator
settings:
foreground: "#F28482"
- scope: comment.line
settings:
foreground: "#4F93D8"
- scope: comment.line.documentation
settings:
foreground: "#C57BDB"
- scope: comment.block.nested
settings:
foreground: "#EF596F"
- scope: comment.block.documentation.nested
settings:
foreground: "#C2925B"
- scope: comment.block
settings:
foreground: "#0DBC79"
- scope: comment.block.documentation
settings:
foreground: "#C2AD5B"
- scope:
- constant.language.access-type
- constant.numeric.illegal
settings:
foreground: "#FF5370"
- scope: constant.language.symbol-type
settings:
foreground: "#558EFC"
- scope: constant.other.description
settings:
foreground: "#9096A2"
- scope:
- constant.other.email.link.underline
- storage.type.format
settings:
foreground: "#EDB54B"
- scope: constant.other.caps
settings:
foreground: "#E6DB74"
- scope: constant.other.reference.link.markdown
settings:
foreground: "#A093C7"
- scope: constant.character.escape.other
settings:
foreground: "#8E9AAF"
- scope:
- constant.character.escape.decimal
- constant.int
- constant.numeric
- constant.numeric.bigint
- constant.numeric.decimal
- constant.numeric.integer
settings:
foreground: "#46AFE3"
- scope:
- constant.angle.units
- constant.character.escape.arbitrary-radix
- constant.float
- constant.language.json
- constant.numeric.arbitrary-radix
- constant.numeric.float
settings:
foreground: "#33CED8"
- scope:
- constant.character.escape.binary
- constant.freq.units
- constant.numeric.bin
- constant.numeric.binary
settings:
foreground: "#E3CF65"
- scope:
- constant.character.escape.octal
- constant.length.units
- constant.numeric.oct
- constant.numeric.octal
settings:
foreground: "#D8985F"
- scope:
- constant.character.escape.hexadecimal
- constant.numeric.hex
- constant.numeric.hexadecimal
settings:
foreground: "#819AFF"
- scope:
- constant.character.escape.quaternary
- constant.numeric.quaternary
settings:
foreground: "#86BBD8"
- scope:
- constant.character.escape.senary
- constant.numeric.senary
settings:
foreground: "#E39695"
- scope:
- constant.character.escape.duodecimal
- constant.numeric.duodecimal
settings:
foreground: "#23C4B6"
- scope:
- constant.boolean
- constant.character.escape.unicode
- constant.language.boolean
- constant.language.boolean.true
- constant.percentage.units
settings:
foreground: "#89CA78"
- scope:
- constant.character.escape.illegal
- constant.language.boolean.false
settings:
foreground: "#E07267"
- scope:
- constant.character.escape.symbol
- constant.language.nil
- constant.language.null
- constant.resolution.units
settings:
foreground: "#EE64AC"
- scope:
- constant.character.all
- constant.language.merge
- constant.language.undefined
- constant.time.units
settings:
foreground: "#B877DB"
- scope:
- constant.language.infinity
- constant.numeric.indentation-indicator
settings:
foreground: "#0DB9D7"
- scope:
- constant.language.nan
- constant.numeric.yaml-version
- constant.other.timestamp
- support.constant.property-value.css
settings:
foreground: "#1ABC9C"
- scope: constant.other.character-class.negated
settings:
foreground: "#E373CE"
- scope: constant.other.character-class
settings:
foreground: "#1ADEBA"
- scope: constant.other.character-class.range.from
settings:
foreground: "#C6DF3A"
- scope: constant.other.character-class.range.to
settings:
foreground: "#FFAE57"
- scope: constant.other.character-class.range
settings:
foreground: "#FFAE57"
- scope: constant.other.character-class.set
settings:
foreground: "#C6DF3A"
- scope: constant.character.unicode
settings:
foreground: "#B5828D"
- scope: constant.other.character-class.xml
settings:
foreground: "#A5A58D"
- scope: constant.character.numeric
settings:
foreground: "#16C98D"
- scope: constant.character.control
settings:
foreground: "#87AAAA"
- scope: constant.other.character-class.unicode
settings:
foreground: "#A480CF"
- scope: constant.character.escape.unicode.name
settings:
foreground: "#6096BA"
- scope: constant.character.escape.unicode.name
settings:
foreground: "#3BB273"
- scope: constant.character.escape.newline
settings:
foreground: "#40C8AE"
- scope: constant.character.escape
settings:
foreground: "#21BFC2"
- scope:
- constant.character.escape.double-quoted.newline
- constant.character.escape.newline
settings:
foreground: "#E06C75"
- scope: constant.other.character-class.range
settings:
foreground: "#C2D94C"
- scope:
- constant.character.set
- constant.other.character-class.set
settings:
foreground: "#E4B227"
- scope:
- constant.character.posix
- constant.other.character-class.posix
settings:
foreground: "#FF75B5"
- scope: constant.character.numeric
settings:
foreground: "#61AFEF"
- scope: constant.other.inline-data
settings:
foreground: "#80CBC4"
- scope: constant.other.object.key
settings:
foreground: "#EA5964"
- scope: string.quoted.single
settings:
foreground: "#70F49C"
- scope:
- string.quasi
- string.quoted.raw
settings:
foreground: "#29D398"
- scope: string.quoted.double
settings:
foreground: "#B3D667"
- scope:
- string.quoted.template
- string.template
settings:
foreground: "#86DE74"
- scope: string.quoted.module
settings:
foreground: "#BEC191"
- scope: string.unquoted
settings:
foreground: "#7FC8A9"
- scope: string
settings:
foreground: "#ABB8C0"
- scope:
- fenced_code.block.language
- fenced_code.block.language.markdown
- keyword.operator.type.channel
settings:
foreground: "#7CAFC2"
- scope:
- keyword.operator.type.function
- storage.type.function.arrow
settings:
foreground: "#FCC04F"
- scope:
- keyword.control.conditional
- keyword.control.else
- keyword.control.elseif
- keyword.control.if
settings:
foreground: "#E4B227"
- scope: keyword.control.promise
settings:
foreground: "#C57BDB"
- scope:
- keyword.control.for
- keyword.control.loop
- keyword.control.while
settings:
foreground: "#21BFC2"
- scope:
- keyword.control.case
- keyword.control.default
- keyword.control.switch
settings:
foreground: "#35BA66"
- scope:
- keyword.control.catch
- keyword.control.error
- keyword.control.finally
- keyword.control.try
- keyword.control.try-catch
- keyword.control.trycatch
settings:
foreground: "#E66255"
- scope: keyword.control.match
settings:
foreground: "#39A9CB"
- scope: keyword.control.do
settings:
foreground: "#8FD9A8"
- scope:
- keyword.control.as
- keyword.control.export
- keyword.control.from
- keyword.control.import
- keyword.control.module
settings:
foreground: "#7F7C82"
- scope:
- keyword.control.flow
- keyword.control.goto
settings:
foreground: "#859FBB"
- scope: keyword.other.subroutine
settings:
foreground: "#809BCE"
- scope: keyword.other.create
settings:
foreground: "#3DB2FF"
- scope: keyword.other.drop
settings:
foreground: "#F43B86"
- scope: keyword.other.alter
settings:
foreground: "#7FC8A9"
- scope: keyword.other.cascade
settings:
foreground: "#FFB740"
- scope: keyword.other.table
settings:
foreground: "#00C1D4"
- scope:
- keyword.control.require
- keyword.control.with
settings:
foreground: "#CC7832"
- scope: keyword.control.recursion
settings:
foreground: "#43BCCD"
- scope: keyword.control.keepout
settings:
foreground: "#AACC33"
- scope: keyword.control.search
settings:
foreground: "#FF7D33"
- scope: keyword.other
settings:
foreground: "#B267E6"
- scope: keyword.generator.asterisk
settings:
foreground: "#C668BA"
- scope: keyword.control.yield-from
settings:
foreground: "#5BC0EB"
- scope: keyword.control.flow.alias
settings:
foreground: "#BBA461"
- scope: keyword.control.flow.block-scalar.folded
settings:
foreground: "#70A1D7"
- scope: keyword.control.flow.block-scalar.literal
settings:
foreground: "#EEBB4D"
- scope: keyword.control.flow.block-scalar.regexp
settings:
foreground: "#F47C7C"
- scope: keyword.control.flow.block-scalar.replace
settings:
foreground: "#96BB7C"
- scope: keyword.control.property.anchor
settings:
foreground: "#23D18B"
- scope: keyword.other.directive.tag
settings:
foreground: "#71B1FE"
- scope: keyword.other.directive.yaml
settings:
foreground: "#FF91DE"
- scope: keyword.other.assume
settings:
foreground: "#7ABDC9"
- scope: keyword.other.check
settings:
foreground: "#81BD9A"
- scope: keyword.other.debug
settings:
foreground: "#778DD0"
- scope: keyword.other.assert
settings:
foreground: "#A786DA"
- scope: keyword.operator.pattern
settings:
foreground: "#82BC6D"
- scope: keyword.operator.assignment
settings:
foreground: "#9DA5B4"
- scope:
- keyword.operator.assignment.augmented
- keyword.operator.assignment.compound
settings:
foreground: "#81A1C1"
- scope: keyword.operator.optional
settings:
foreground: "#E63E6D"
- scope: keyword.operator.assert
settings:
foreground: "#4895EF"
- scope: keyword.control
settings:
foreground: "#0DB9D7"
- scope: keyword.operator.increment
settings:
foreground: "#53DF83"
- scope: keyword.operator.decrement
settings:
foreground: "#FFAE57"
- scope: keyword.operator.decorator
settings:
foreground: "#599CAB"
- scope: keyword.operator.bitwise
settings:
foreground: "#2BBAC5"