-
Notifications
You must be signed in to change notification settings - Fork 0
/
tool.jsonc
1179 lines (1179 loc) · 41.2 KB
/
tool.jsonc
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
{
"$schema": "vscode://schemas/color-theme",
"type": "dark",
"colors": {
"activityBar.activeBorder": "#f78166",
"activityBar.background": "#0d1117",
"activityBar.border": "#30363d",
"activityBar.foreground": "#0080ff",
"activityBar.inactiveForeground": "#8b949e",
"activityBarBadge.background": "#1f6feb",
"activityBarBadge.foreground": "#ffffff",
"badge.background": "#1f6feb",
"badge.foreground": "#ffffff",
"breadcrumb.activeSelectionForeground": "#8b949e",
"breadcrumb.focusForeground": "#c9d1d9",
"breadcrumb.foreground": "#8b949e",
"breadcrumbPicker.background": "#161b22",
"button.background": "#1f6feb",
"button.foreground": "#ffffff",
"button.hoverBackground": "#388bfd",
"button.secondaryBackground": "#282e33",
"button.secondaryForeground": "#c9d1d9",
"button.secondaryHoverBackground": "#30363d",
"checkbox.background": "#161b22",
"checkbox.border": "#30363d",
"debugConsole.errorForeground": "#fdac54",
"debugConsole.infoForeground": "#8b949e",
"debugConsole.sourceForeground": "#e3b341",
"debugConsole.warningForeground": "#d29922",
"debugConsoleInputIcon.foreground": "#bc8cff",
"debugIcon.breakpointForeground": "#d47616",
"debugTokenExpression.boolean": "#79c0ff",
"debugTokenExpression.error": "#fdac54",
"debugTokenExpression.name": "#79c0ff",
"debugTokenExpression.number": "#79c0ff",
"debugTokenExpression.string": "#a5d6ff",
"debugTokenExpression.value": "#a5d6ff",
"debugToolBar.background": "#161b22",
"descriptionForeground": "#8b949e",
"diffEditor.insertedLineBackground": "#1f6feb26",
"diffEditor.insertedTextBackground": "#58a6ff4d",
"diffEditor.removedLineBackground": "#b7610026",
"diffEditor.removedTextBackground": "#ec8e2c4d",
"dropdown.background": "#161b22",
"dropdown.border": "#30363d",
"dropdown.foreground": "#c9d1d9",
"dropdown.listBackground": "#161b22",
"editor.background": "#0d1117",
"editor.findMatchBackground": "#9e6a03",
"editor.findMatchHighlightBackground": "#f2cc6080",
"editor.focusedStackFrameHighlightBackground": "#388bfd66",
"editor.foldBackground": "#6e76811a",
"editor.foreground": "#c9d1d9",
"editor.lineHighlightBackground": "#6e76811a",
"editor.linkedEditingBackground": "#58a6ff12",
"editor.selectionHighlightBackground": "#58a6ff40",
"editor.stackFrameHighlightBackground": "#bb800966",
"editor.wordHighlightBackground": "#6e768180",
"editor.wordHighlightBorder": "#6e768199",
"editor.wordHighlightStrongBackground": "#6e76814d",
"editor.wordHighlightStrongBorder": "#6e768199",
"editorBracketHighlight.foreground1": "#79c0ff",
"editorBracketHighlight.foreground2": "#79c0ff",
"editorBracketHighlight.foreground3": "#e3b341",
"editorBracketHighlight.foreground4": "#fdac54",
"editorBracketHighlight.foreground5": "#ff9bce",
"editorBracketHighlight.foreground6": "#d2a8ff",
"editorBracketHighlight.unexpectedBracket.foreground": "#8b949e",
"editorBracketMatch.background": "#58a6ff40",
"editorBracketMatch.border": "#58a6ff99",
"editorCursor.foreground": "#58a6ff",
"editorGroup.border": "#30363d",
"editorGroupHeader.tabsBackground": "#010409",
"editorGroupHeader.tabsBorder": "#30363d",
"editorGutter.addedBackground": "#388bfd66",
"editorGutter.deletedBackground": "#d4761666",
"editorGutter.modifiedBackground": "#bb800966",
"editorIndentGuide.activeBackground": "#c9d1d93d",
"editorIndentGuide.background": "#c9d1d91f",
"editorInlayHint.background": "#8b949e33",
"editorInlayHint.foreground": "#8b949e",
"editorInlayHint.typeBackground": "#8b949e33",
"editorInlayHint.typeForeground": "#8b949e",
"editorLineNumber.activeForeground": "#c9d1d9",
"editorLineNumber.foreground": "#6e7681",
"editorOverviewRuler.border": "#010409",
"editorWhitespace.foreground": "#484f58",
"editorWidget.background": "#161b22",
"errorForeground": "#d47616",
"focusBorder": "#1f6feb",
"foreground": "#c9d1d9",
"gitDecoration.addedResourceForeground": "#58a6ff",
"gitDecoration.conflictingResourceForeground": "#d47616",
"gitDecoration.deletedResourceForeground": "#d47616",
"gitDecoration.ignoredResourceForeground": "#6e7681",
"gitDecoration.modifiedResourceForeground": "#d29922",
"gitDecoration.submoduleResourceForeground": "#8b949e",
"gitDecoration.untrackedResourceForeground": "#58a6ff",
"icon.foreground": "#8b949e",
"input.background": "#0d1117",
"input.border": "#30363d",
"input.foreground": "#c9d1d9",
"input.placeholderForeground": "#6e7681",
"keybindingLabel.foreground": "#c9d1d9",
"list.activeSelectionBackground": "#6e768166",
"list.activeSelectionForeground": "#c9d1d9",
"list.focusBackground": "#388bfd26",
"list.focusForeground": "#c9d1d9",
"list.highlightForeground": "#58a6ff",
"list.hoverBackground": "#6e76811a",
"list.hoverForeground": "#c9d1d9",
"list.inactiveFocusBackground": "#388bfd26",
"list.inactiveSelectionBackground": "#6e768166",
"list.inactiveSelectionForeground": "#c9d1d9",
"minimapSlider.activeBackground": "#8b949e47",
"minimapSlider.background": "#8b949e33",
"minimapSlider.hoverBackground": "#8b949e3d",
"notificationCenterHeader.background": "#161b22",
"notificationCenterHeader.foreground": "#8b949e",
"notifications.background": "#161b22",
"notifications.border": "#30363d",
"notifications.foreground": "#c9d1d9",
"notificationsErrorIcon.foreground": "#d47616",
"notificationsInfoIcon.foreground": "#58a6ff",
"notificationsWarningIcon.foreground": "#d29922",
"panel.background": "#010409",
"panel.border": "#30363d",
"panelInput.border": "#30363d",
"panelTitle.activeBorder": "#f78166",
"panelTitle.activeForeground": "#c9d1d9",
"panelTitle.inactiveForeground": "#8b949e",
"peekViewEditor.background": "#6e76811a",
"peekViewEditor.matchHighlightBackground": "#bb800966",
"peekViewResult.background": "#0d1117",
"peekViewResult.matchHighlightBackground": "#bb800966",
"pickerGroup.border": "#30363d",
"pickerGroup.foreground": "#8b949e",
"progressBar.background": "#1f6feb",
"quickInput.background": "#161b22",
"quickInput.foreground": "#c9d1d9",
"scrollbar.shadow": "#484f5833",
"scrollbarSlider.activeBackground": "#8b949e47",
"scrollbarSlider.background": "#8b949e33",
"scrollbarSlider.hoverBackground": "#8b949e3d",
"settings.headerForeground": "#c9d1d9",
"settings.modifiedItemIndicator": "#bb800966",
"sideBar.background": "#010409",
"sideBar.border": "#30363d",
"sideBar.foreground": "#c9d1d9",
"sideBarSectionHeader.background": "#010409",
"sideBarSectionHeader.border": "#30363d",
"sideBarSectionHeader.foreground": "#c9d1d9",
"sideBarTitle.foreground": "#c9d1d9",
"statusBar.background": "#0d1117",
"statusBar.border": "#30363d",
"statusBar.debuggingBackground": "#b76100",
"statusBar.debuggingForeground": "#ffffff",
"statusBar.focusBorder": "#1f6feb80",
"statusBar.foreground": "#8b949e",
"statusBar.noFolderBackground": "#0d1117",
"statusBarItem.activeBackground": "#c9d1d91f",
"statusBarItem.focusBorder": "#1f6feb",
"statusBarItem.hoverBackground": "#c9d1d914",
"statusBarItem.prominentBackground": "#6e768166",
"statusBarItem.remoteBackground": "#30363d",
"statusBarItem.remoteForeground": "#c9d1d9",
"symbolIcon.arrayForeground": "#ec8e2c",
"symbolIcon.booleanForeground": "#58a6ff",
"symbolIcon.classForeground": "#ec8e2c",
"symbolIcon.colorForeground": "#79c0ff",
"symbolIcon.constructorForeground": "#d2a8ff",
"symbolIcon.enumeratorForeground": "#ec8e2c",
"symbolIcon.enumeratorMemberForeground": "#58a6ff",
"symbolIcon.eventForeground": "#6e7681",
"symbolIcon.fieldForeground": "#ec8e2c",
"symbolIcon.fileForeground": "#d29922",
"symbolIcon.folderForeground": "#d29922",
"symbolIcon.functionForeground": "#bc8cff",
"symbolIcon.interfaceForeground": "#ec8e2c",
"symbolIcon.keyForeground": "#58a6ff",
"symbolIcon.keywordForeground": "#ec8e2c",
"symbolIcon.methodForeground": "#bc8cff",
"symbolIcon.moduleForeground": "#ec8e2c",
"symbolIcon.namespaceForeground": "#ec8e2c",
"symbolIcon.nullForeground": "#58a6ff",
"symbolIcon.numberForeground": "#58a6ff",
"symbolIcon.objectForeground": "#ec8e2c",
"symbolIcon.operatorForeground": "#79c0ff",
"symbolIcon.packageForeground": "#ec8e2c",
"symbolIcon.propertyForeground": "#ec8e2c",
"symbolIcon.referenceForeground": "#58a6ff",
"symbolIcon.snippetForeground": "#58a6ff",
"symbolIcon.stringForeground": "#79c0ff",
"symbolIcon.structForeground": "#ec8e2c",
"symbolIcon.textForeground": "#79c0ff",
"symbolIcon.typeParameterForeground": "#79c0ff",
"symbolIcon.unitForeground": "#58a6ff",
"symbolIcon.variableForeground": "#ec8e2c",
"tab.activeBackground": "#0d1117",
"tab.activeBorder": "#0d1117",
"tab.activeBorderTop": "#f78166",
"tab.activeForeground": "#c9d1d9",
"tab.border": "#30363d",
"tab.hoverBackground": "#0d1117",
"tab.inactiveBackground": "#010409",
"tab.inactiveForeground": "#8b949e",
"tab.unfocusedActiveBorder": "#0d1117",
"tab.unfocusedActiveBorderTop": "#30363d",
"tab.unfocusedHoverBackground": "#6e76811a",
"terminal.ansiBlack": "#484f58",
"terminal.ansiBlue": "#58a6ff",
"terminal.ansiBrightBlack": "#6e7681",
"terminal.ansiBrightBlue": "#79c0ff",
"terminal.ansiBrightCyan": "#56d4dd",
"terminal.ansiBrightGreen": "#79c0ff",
"terminal.ansiBrightMagenta": "#d2a8ff",
"terminal.ansiBrightRed": "#fdac54",
"terminal.ansiBrightWhite": "#ffffff",
"terminal.ansiBrightYellow": "#e3b341",
"terminal.ansiCyan": "#39c5cf",
"terminal.ansiGreen": "#58a6ff",
"terminal.ansiMagenta": "#bc8cff",
"terminal.ansiRed": "#ec8e2c",
"terminal.ansiWhite": "#b1bac4",
"terminal.ansiYellow": "#d29922",
"terminal.foreground": "#c9d1d9",
"textBlockQuote.background": "#010409",
"textBlockQuote.border": "#30363d",
"textCodeBlock.background": "#6e768166",
"textLink.activeForeground": "#58a6ff",
"textLink.foreground": "#58a6ff",
"textPreformat.foreground": "#8b949e",
"textSeparator.foreground": "#21262d",
"titleBar.activeBackground": "#0d1117",
"titleBar.activeForeground": "#8b949e",
"titleBar.border": "#30363d",
"titleBar.inactiveBackground": "#010409",
"titleBar.inactiveForeground": "#8b949e",
"tree.indentGuidesStroke": "#21262d",
//"actionBar.toggledBackground": "#1f6feb66",
//"activityBar.dropBorder": "#c9d1d9",
//"activityBarTop.activeBorder": "#e7e7e7",
//"activityBarTop.dropBorder": "#e7e7e7",
//"activityBarTop.foreground": "#e7e7e7",
//"activityBarTop.inactiveForeground": "#e7e7e799",
//"banner.background": "#6e768166",
//"banner.foreground": "#c9d1d9",
//"banner.iconForeground": "#3794ff",
//"breadcrumb.background": "#0d1117",
//"button.separator": "#ffffff66",
//"charts.blue": "#3794ff",
//"charts.foreground": "#c9d1d9",
//"charts.green": "#89d185",
//"charts.lines": "#c9d1d980",
//"charts.orange": "#d18616",
//"charts.purple": "#b180d7",
//"charts.red": "#f14c4c",
//"charts.yellow": "#cca700",
//"chat.avatarBackground": "#1f1f1f",
//"chat.avatarForeground": "#c9d1d9",
//"chat.requestBorder": "#ffffff1a",
//"chat.slashCommandBackground": "#34414b",
//"chat.slashCommandForeground": "#40a6ff",
//"checkbox.foreground": "#c9d1d9",
//"checkbox.selectBackground": "#161b22",
//"checkbox.selectBorder": "#8b949e",
//"commandCenter.activeBackground": "#ffffff14",
//"commandCenter.activeBorder": "#8b949e4d",
//"commandCenter.activeForeground": "#8b949e",
//"commandCenter.background": "#ffffff0d",
//"commandCenter.border": "#8b949e33",
//"commandCenter.debuggingBackground": "#b7610042",
//"commandCenter.foreground": "#8b949e",
//"commandCenter.inactiveBorder": "#8b949e40",
//"commandCenter.inactiveForeground": "#8b949e",
//"commentsView.resolvedIcon": "#cccccc80",
//"commentsView.unresolvedIcon": "#1f6feb",
//"debugExceptionWidget.background": "#420b0d",
//"debugExceptionWidget.border": "#a31515",
//"debugIcon.breakpointCurrentStackframeForeground": "#ffcc00",
//"debugIcon.breakpointDisabledForeground": "#848484",
//"debugIcon.breakpointStackframeForeground": "#89d185",
//"debugIcon.breakpointUnverifiedForeground": "#848484",
//"debugIcon.continueForeground": "#75beff",
//"debugIcon.disconnectForeground": "#f48771",
//"debugIcon.pauseForeground": "#75beff",
//"debugIcon.restartForeground": "#89d185",
//"debugIcon.startForeground": "#89d185",
//"debugIcon.stepBackForeground": "#75beff",
//"debugIcon.stepIntoForeground": "#75beff",
//"debugIcon.stepOutForeground": "#75beff",
//"debugIcon.stepOverForeground": "#75beff",
//"debugIcon.stopForeground": "#f48771",
//"debugView.exceptionLabelBackground": "#6c2022",
//"debugView.exceptionLabelForeground": "#c9d1d9",
//"debugView.stateLabelBackground": "#88888844",
//"debugView.stateLabelForeground": "#c9d1d9",
//"debugView.valueChangedHighlight": "#569cd6",
//"diffEditor.diagonalFill": "#cccccc33",
//"diffEditor.move.border": "#8b8b8b9c",
//"diffEditor.moveActive.border": "#ffa500",
//"diffEditor.unchangedCodeBackground": "#74747429",
//"diffEditor.unchangedRegionBackground": "#010409",
//"diffEditor.unchangedRegionForeground": "#c9d1d9",
//"diffEditor.unchangedRegionShadow": "#000000",
//"disabledForeground": "#cccccc80",
//"editor.findRangeHighlightBackground": "#3a3d4166",
//"editor.hoverHighlightBackground": "#264f7840",
//"editor.inactiveSelectionBackground": "#264f7880",
//"editor.inlineValuesBackground": "#ffc80033",
//"editor.inlineValuesForeground": "#ffffff80",
//"editor.lineHighlightBorder": "#282828",
//"editor.rangeHighlightBackground": "#ffffff0b",
//"editor.selectionBackground": "#264f78",
//"editor.snippetFinalTabstopHighlightBorder": "#525252",
//"editor.snippetTabstopHighlightBackground": "#7c7c7c4d",
//"editor.symbolHighlightBackground": "#f2cc6080",
//"editor.wordHighlightTextBackground": "#6e768180",
//"editor.wordHighlightTextBorder": "#6e768199",
//"editorActiveLineNumber.foreground": "#c6c6c6",
//"editorBracketPairGuide.activeBackground1": "#00000000",
//"editorBracketPairGuide.activeBackground2": "#00000000",
//"editorBracketPairGuide.activeBackground3": "#00000000",
//"editorBracketPairGuide.activeBackground4": "#00000000",
//"editorBracketPairGuide.activeBackground5": "#00000000",
//"editorBracketPairGuide.activeBackground6": "#00000000",
//"editorBracketPairGuide.background1": "#00000000",
//"editorBracketPairGuide.background2": "#00000000",
//"editorBracketPairGuide.background3": "#00000000",
//"editorBracketPairGuide.background4": "#00000000",
//"editorBracketPairGuide.background5": "#00000000",
//"editorBracketPairGuide.background6": "#00000000",
//"editorCodeLens.foreground": "#999999",
//"editorCommentsWidget.rangeActiveBackground": "#1f6feb1a",
//"editorCommentsWidget.rangeBackground": "#1f6feb1a",
//"editorCommentsWidget.replyInputBackground": "#252526",
//"editorCommentsWidget.resolvedBorder": "#cccccc80",
//"editorCommentsWidget.unresolvedBorder": "#1f6feb",
//"editorError.foreground": "#f14c4c",
//"editorGhostText.foreground": "#ffffff56",
//"editorGroup.dropBackground": "#53595d80",
//"editorGroup.dropIntoPromptBackground": "#161b22",
//"editorGroup.dropIntoPromptForeground": "#c9d1d9",
//"editorGroupHeader.noTabsBackground": "#0d1117",
//"editorGutter.background": "#0d1117",
//"editorGutter.commentGlyphForeground": "#c9d1d9",
//"editorGutter.commentRangeForeground": "#333941",
//"editorGutter.commentUnresolvedGlyphForeground": "#c9d1d9",
//"editorGutter.foldingControlForeground": "#8b949e",
//"editorHint.foreground": "#eeeeeeb3",
//"editorHoverWidget.background": "#161b22",
//"editorHoverWidget.border": "#454545",
//"editorHoverWidget.foreground": "#c9d1d9",
//"editorHoverWidget.highlightForeground": "#58a6ff",
//"editorHoverWidget.statusBarBackground": "#1a2029",
//"editorIndentGuide.activeBackground1": "#c9d1d93d",
//"editorIndentGuide.activeBackground2": "#00000000",
//"editorIndentGuide.activeBackground3": "#00000000",
//"editorIndentGuide.activeBackground4": "#00000000",
//"editorIndentGuide.activeBackground5": "#00000000",
//"editorIndentGuide.activeBackground6": "#00000000",
//"editorIndentGuide.background1": "#c9d1d91f",
//"editorIndentGuide.background2": "#00000000",
//"editorIndentGuide.background3": "#00000000",
//"editorIndentGuide.background4": "#00000000",
//"editorIndentGuide.background5": "#00000000",
//"editorIndentGuide.background6": "#00000000",
//"editorInfo.foreground": "#3794ff",
//"editorInlayHint.parameterBackground": "#8b949e33",
//"editorInlayHint.parameterForeground": "#8b949e",
//"editorLightBulb.foreground": "#ffcc00",
//"editorLightBulbAi.foreground": "#ffcc00",
//"editorLightBulbAutoFix.foreground": "#75beff",
//"editorLink.activeForeground": "#4e94ce",
//"editorMarkerNavigation.background": "#0d1117",
//"editorMarkerNavigationError.background": "#f14c4c",
//"editorMarkerNavigationError.headerBackground": "#f14c4c1a",
//"editorMarkerNavigationInfo.background": "#3794ff",
//"editorMarkerNavigationInfo.headerBackground": "#3794ff1a",
//"editorMarkerNavigationWarning.background": "#cca700",
//"editorMarkerNavigationWarning.headerBackground": "#cca7001a",
//"editorOverviewRuler.addedForeground": "#388bfd3d",
//"editorOverviewRuler.bracketMatchForeground": "#a0a0a0",
//"editorOverviewRuler.commentForeground": "#333941",
//"editorOverviewRuler.commentUnresolvedForeground": "#333941",
//"editorOverviewRuler.commonContentForeground": "#60606066",
//"editorOverviewRuler.currentContentForeground": "#40c8ae80",
//"editorOverviewRuler.deletedForeground": "#d476163d",
//"editorOverviewRuler.errorForeground": "#ff1212b3",
//"editorOverviewRuler.findMatchForeground": "#d186167e",
//"editorOverviewRuler.incomingContentForeground": "#40a6ff80",
//"editorOverviewRuler.infoForeground": "#3794ff",
//"editorOverviewRuler.inlineChatInserted": "#58a6ff2e",
//"editorOverviewRuler.inlineChatRemoved": "#ec8e2c2e",
//"editorOverviewRuler.modifiedForeground": "#bb80093d",
//"editorOverviewRuler.rangeHighlightForeground": "#007acc99",
//"editorOverviewRuler.selectionHighlightForeground": "#a0a0a0cc",
//"editorOverviewRuler.warningForeground": "#cca700",
//"editorOverviewRuler.wordHighlightForeground": "#a0a0a0cc",
//"editorOverviewRuler.wordHighlightStrongForeground": "#c0a0c0cc",
//"editorOverviewRuler.wordHighlightTextForeground": "#a0a0a0cc",
//"editorPane.background": "#0d1117",
//"editorRuler.foreground": "#5a5a5a",
//"editorStickyScroll.background": "#0d1117",
//"editorStickyScroll.shadow": "#484f5833",
//"editorStickyScrollHover.background": "#2a2d2e",
//"editorSuggestWidget.background": "#161b22",
//"editorSuggestWidget.border": "#454545",
//"editorSuggestWidget.focusHighlightForeground": "#58a6ff",
//"editorSuggestWidget.foreground": "#c9d1d9",
//"editorSuggestWidget.highlightForeground": "#58a6ff",
//"editorSuggestWidget.selectedBackground": "#6e768166",
//"editorSuggestWidget.selectedForeground": "#c9d1d9",
//"editorSuggestWidgetStatus.foreground": "#c9d1d980",
//"editorUnicodeHighlight.border": "#cca700",
//"editorUnnecessaryCode.opacity": "#000000aa",
//"editorWarning.foreground": "#cca700",
//"editorWatermark.foreground": "#c9d1d999",
//"editorWidget.border": "#454545",
//"editorWidget.foreground": "#c9d1d9",
//"extensionBadge.remoteBackground": "#1f6feb",
//"extensionBadge.remoteForeground": "#ffffff",
//"extensionButton.background": "#1f6feb",
//"extensionButton.foreground": "#ffffff",
//"extensionButton.hoverBackground": "#388bfd",
//"extensionButton.prominentBackground": "#1f6feb",
//"extensionButton.prominentForeground": "#ffffff",
//"extensionButton.prominentHoverBackground": "#388bfd",
//"extensionButton.separator": "#ffffff66",
//"extensionIcon.preReleaseForeground": "#1d9271",
//"extensionIcon.sponsorForeground": "#d758b3",
//"extensionIcon.starForeground": "#ff8e00",
//"extensionIcon.verifiedForeground": "#58a6ff",
//"gitDecoration.renamedResourceForeground": "#73c991",
//"gitDecoration.stageDeletedResourceForeground": "#c74e39",
//"gitDecoration.stageModifiedResourceForeground": "#e2c08d",
//"inlineChat.background": "#161b22",
//"inlineChat.border": "#454545",
//"inlineChat.regionHighlight": "#264f7840",
//"inlineChat.shadow": "#0000005c",
//"inlineChatDiff.inserted": "#58a6ff27",
//"inlineChatDiff.removed": "#ec8e2c27",
//"inlineChatInput.background": "#0d1117",
//"inlineChatInput.border": "#454545",
//"inlineChatInput.focusBorder": "#1f6feb",
//"inlineChatInput.placeholderForeground": "#6e7681",
//"inputOption.activeBackground": "#1f6feb66",
//"inputOption.activeBorder": "#007acc",
//"inputOption.activeForeground": "#ffffff",
//"inputOption.hoverBackground": "#5a5d5e80",
//"inputValidation.errorBackground": "#5a1d1d",
//"inputValidation.errorBorder": "#be1100",
//"inputValidation.infoBackground": "#063b49",
//"inputValidation.infoBorder": "#007acc",
//"inputValidation.warningBackground": "#352a05",
//"inputValidation.warningBorder": "#b89500",
//"interactive.activeCodeBorder": "#007acc",
//"interactive.inactiveCodeBorder": "#6e768166",
//"keybindingLabel.background": "#8080802b",
//"keybindingLabel.border": "#33333399",
//"keybindingLabel.bottomBorder": "#44444499",
//"keybindingTable.headerBackground": "#c9d1d90a",
//"keybindingTable.rowsBackground": "#c9d1d90a",
//"list.deemphasizedForeground": "#8c8c8c",
//"list.dropBackground": "#062f4a",
//"list.dropBetweenBackground": "#8b949e",
//"list.errorForeground": "#f88070",
//"list.filterMatchBackground": "#f2cc6080",
//"list.focusHighlightForeground": "#58a6ff",
//"list.focusOutline": "#1f6feb",
//"list.invalidItemForeground": "#b89500",
//"list.warningForeground": "#cca700",
//"listFilterWidget.background": "#161b22",
//"listFilterWidget.noMatchesOutline": "#be1100",
//"listFilterWidget.outline": "#00000000",
//"listFilterWidget.shadow": "#0000005c",
//"menu.background": "#161b22",
//"menu.foreground": "#c9d1d9",
//"menu.selectionBackground": "#6e768166",
//"menu.selectionForeground": "#c9d1d9",
//"menu.separatorBackground": "#606060",
//"menubar.selectionBackground": "#5a5d5e50",
//"menubar.selectionForeground": "#8b949e",
//"merge.commonContentBackground": "#60606029",
//"merge.commonHeaderBackground": "#60606066",
//"merge.currentContentBackground": "#40c8ae33",
//"merge.currentHeaderBackground": "#40c8ae80",
//"merge.incomingContentBackground": "#40a6ff33",
//"merge.incomingHeaderBackground": "#40a6ff80",
//"mergeEditor.change.background": "#9bb95533",
//"mergeEditor.change.word.background": "#9ccc2c33",
//"mergeEditor.changeBase.background": "#4b1818",
//"mergeEditor.changeBase.word.background": "#6f1313",
//"mergeEditor.conflict.handled.minimapOverViewRuler": "#adaca8ee",
//"mergeEditor.conflict.handledFocused.border": "#c1c1c1cc",
//"mergeEditor.conflict.handledUnfocused.border": "#86868649",
//"mergeEditor.conflict.input1.background": "#40c8ae33",
//"mergeEditor.conflict.input2.background": "#40a6ff33",
//"mergeEditor.conflict.unhandled.minimapOverViewRuler": "#fcba03",
//"mergeEditor.conflict.unhandledFocused.border": "#ffa600",
//"mergeEditor.conflict.unhandledUnfocused.border": "#ffa6007a",
//"mergeEditor.conflictingLines.background": "#ffea0047",
//"minimap.errorHighlight": "#ff1212b3",
//"minimap.findMatchHighlight": "#d18616",
//"minimap.foregroundOpacity": "#000000",
//"minimap.infoHighlight": "#3794ff",
//"minimap.selectionHighlight": "#264f78",
//"minimap.selectionOccurrenceHighlight": "#676767",
//"minimap.warningHighlight": "#cca700",
//"minimapGutter.addedBackground": "#388bfd66",
//"minimapGutter.deletedBackground": "#d4761666",
//"minimapGutter.modifiedBackground": "#bb800966",
//"multiDiffEditor.background": "#000000",
//"multiDiffEditor.border": "#30363d",
//"multiDiffEditor.headerBackground": "#808080",
//"notebook.cellBorderColor": "#6e768166",
//"notebook.cellEditorBackground": "#010409",
//"notebook.cellInsertionIndicator": "#1f6feb",
//"notebook.cellStatusBarItemHoverBackground": "#ffffff26",
//"notebook.cellToolbarSeparator": "#80808059",
//"notebook.editorBackground": "#0d1117",
//"notebook.focusedCellBorder": "#1f6feb",
//"notebook.focusedEditorBorder": "#1f6feb",
//"notebook.inactiveFocusedCellBorder": "#6e768166",
//"notebook.selectedCellBackground": "#6e768166",
//"notebook.selectedCellBorder": "#6e768166",
//"notebook.symbolHighlightBackground": "#ffffff0b",
//"notebookEditorOverviewRuler.runningCellForeground": "#89d185",
//"notebookScrollbarSlider.activeBackground": "#8b949e47",
//"notebookScrollbarSlider.background": "#8b949e33",
//"notebookScrollbarSlider.hoverBackground": "#8b949e3d",
//"notebookStatusErrorIcon.foreground": "#d47616",
//"notebookStatusRunningIcon.foreground": "#c9d1d9",
//"notebookStatusSuccessIcon.foreground": "#89d185",
//"notificationLink.foreground": "#58a6ff",
//"panel.dropBorder": "#c9d1d9",
//"panelSection.border": "#30363d",
//"panelSection.dropBackground": "#53595d80",
//"panelSectionHeader.background": "#80808033",
//"peekView.border": "#3794ff",
//"peekViewEditorGutter.background": "#6e76811a",
//"peekViewEditorStickyScroll.background": "#6e76811a",
//"peekViewResult.fileForeground": "#ffffff",
//"peekViewResult.lineForeground": "#bbbbbb",
//"peekViewResult.selectionBackground": "#3399ff33",
//"peekViewResult.selectionForeground": "#ffffff",
//"peekViewTitle.background": "#252526",
//"peekViewTitleDescription.foreground": "#ccccccb3",
//"peekViewTitleLabel.foreground": "#ffffff",
//"ports.iconRunningProcessForeground": "#30363d",
//"problemsErrorIcon.foreground": "#f14c4c",
//"problemsInfoIcon.foreground": "#3794ff",
//"problemsWarningIcon.foreground": "#cca700",
//"profileBadge.background": "#4d4d4d",
//"profileBadge.foreground": "#ffffff",
//"quickInputList.focusBackground": "#6e768166",
//"quickInputList.focusForeground": "#c9d1d9",
//"quickInputTitle.background": "#ffffff1b",
//"sash.hoverBorder": "#1f6feb",
//"scm.historyItemAdditionsForeground": "#58a6ff",
//"scm.historyItemDeletionsForeground": "#d47616",
//"scm.historyItemSelectedStatisticsBorder": "#c9d1d933",
//"scm.historyItemStatisticsBorder": "#c9d1d933",
//"search.resultsInfoForeground": "#c9d1d9a6",
//"searchEditor.findMatchBackground": "#f2cc6054",
//"searchEditor.textInputBorder": "#30363d",
//"settings.checkboxBackground": "#161b22",
//"settings.checkboxBorder": "#30363d",
//"settings.checkboxForeground": "#c9d1d9",
//"settings.dropdownBackground": "#161b22",
//"settings.dropdownBorder": "#30363d",
//"settings.dropdownForeground": "#c9d1d9",
//"settings.dropdownListBorder": "#454545",
//"settings.focusedRowBackground": "#6e768110",
//"settings.focusedRowBorder": "#1f6feb",
//"settings.headerBorder": "#30363d",
//"settings.numberInputBackground": "#0d1117",
//"settings.numberInputBorder": "#30363d",
//"settings.numberInputForeground": "#c9d1d9",
//"settings.rowHoverBackground": "#6e768108",
//"settings.sashBorder": "#30363d",
//"settings.settingsHeaderHoverForeground": "#c9d1d9b3",
//"settings.textInputBackground": "#0d1117",
//"settings.textInputBorder": "#30363d",
//"settings.textInputForeground": "#c9d1d9",
//"sideBar.dropBackground": "#53595d80",
//"sideBySideEditor.horizontalBorder": "#30363d",
//"sideBySideEditor.verticalBorder": "#30363d",
//"simpleFindWidget.sashBorder": "#454545",
//"statusBar.debuggingBorder": "#30363d",
//"statusBar.noFolderBorder": "#30363d",
//"statusBar.noFolderForeground": "#8b949e",
//"statusBarItem.compactHoverBackground": "#ffffff33",
//"statusBarItem.errorBackground": "#7f460d",
//"statusBarItem.errorForeground": "#ffffff",
//"statusBarItem.errorHoverBackground": "#c9d1d914",
//"statusBarItem.errorHoverForeground": "#8b949e",
//"statusBarItem.hoverForeground": "#8b949e",
//"statusBarItem.offlineBackground": "#6c1717",
//"statusBarItem.offlineForeground": "#c9d1d9",
//"statusBarItem.offlineHoverBackground": "#c9d1d914",
//"statusBarItem.offlineHoverForeground": "#8b949e",
//"statusBarItem.prominentForeground": "#8b949e",
//"statusBarItem.prominentHoverBackground": "#0000004d",
//"statusBarItem.prominentHoverForeground": "#8b949e",
//"statusBarItem.remoteHoverBackground": "#c9d1d914",
//"statusBarItem.remoteHoverForeground": "#8b949e",
//"statusBarItem.warningBackground": "#7a6400",
//"statusBarItem.warningForeground": "#ffffff",
//"statusBarItem.warningHoverBackground": "#c9d1d914",
//"statusBarItem.warningHoverForeground": "#8b949e",
//"symbolIcon.constantForeground": "#c9d1d9",
//"tab.activeModifiedBorder": "#3399cc",
//"tab.inactiveModifiedBorder": "#3399cc80",
//"tab.lastPinnedBorder": "#21262d",
//"tab.unfocusedActiveBackground": "#0d1117",
//"tab.unfocusedActiveForeground": "#c9d1d980",
//"tab.unfocusedActiveModifiedBorder": "#3399cc80",
//"tab.unfocusedInactiveBackground": "#010409",
//"tab.unfocusedInactiveForeground": "#8b949e80",
//"tab.unfocusedInactiveModifiedBorder": "#3399cc40",
//"terminal.border": "#30363d",
//"terminal.dropBackground": "#53595d80",
//"terminal.findMatchBackground": "#9e6a03",
//"terminal.findMatchHighlightBackground": "#f2cc6080",
//"terminal.hoverHighlightBackground": "#264f7820",
//"terminal.inactiveSelectionBackground": "#264f7880",
//"terminal.selectionBackground": "#264f78",
//"terminal.tab.activeBorder": "#0d1117",
//"terminalCommandDecoration.defaultBackground": "#ffffff40",
//"terminalCommandDecoration.errorBackground": "#f14c4c",
//"terminalCommandDecoration.successBackground": "#1b81a8",
//"terminalOverviewRuler.cursorForeground": "#a0a0a0cc",
//"terminalOverviewRuler.findMatchForeground": "#d186167e",
//"terminalStickyScrollHover.background": "#2a2d2e",
//"testing.coverCountBadgeBackground": "#1f6feb",
//"testing.coverCountBadgeForeground": "#ffffff",
//"testing.coveredBackground": "#58a6ff4d",
//"testing.coveredBorder": "#58a6ff3a",
//"testing.coveredGutterBackground": "#58a6ff2e",
//"testing.iconErrored": "#f14c4c",
//"testing.iconFailed": "#f14c4c",
//"testing.iconPassed": "#73c991",
//"testing.iconQueued": "#cca700",
//"testing.iconSkipped": "#848484",
//"testing.iconUnset": "#848484",
//"testing.message.error.decorationForeground": "#f14c4c",
//"testing.message.error.lineBackground": "#ff000033",
//"testing.message.info.decorationForeground": "#c9d1d980",
//"testing.messagePeekBorder": "#3794ff",
//"testing.messagePeekHeaderBackground": "#3794ff1a",
//"testing.peekBorder": "#f14c4c",
//"testing.peekHeaderBackground": "#f14c4c1a",
//"testing.runAction": "#73c991",
//"testing.uncoveredBackground": "#ec8e2c4d",
//"testing.uncoveredBorder": "#ec8e2c3a",
//"testing.uncoveredBranchBackground": "#935c23",
//"testing.uncoveredGutterBackground": "#ec8e2c74",
//"textPreformat.background": "#ffffff1a",
//"toolbar.activeBackground": "#63666750",
//"toolbar.hoverBackground": "#5a5d5e50",
//"tree.inactiveIndentGuidesStroke": "#21262d66",
//"tree.tableColumnsBorder": "#cccccc20",
//"tree.tableOddRowsBackground": "#c9d1d90a",
//"walkThrough.embeddedEditorBackground": "#00000066",
//"walkthrough.stepTitle.foreground": "#ffffff",
//"welcomePage.progress.background": "#0d1117",
//"welcomePage.progress.foreground": "#58a6ff",
//"welcomePage.tileBackground": "#161b22",
//"welcomePage.tileBorder": "#ffffff1a",
//"welcomePage.tileHoverBackground": "#1a2029",
//"widget.shadow": "#0000005c",
//"activityBar.activeBackground": null,
//"activityBar.activeFocusBorder": null,
//"button.border": null,
//"contrastActiveBorder": null,
//"contrastBorder": null,
//"debugToolBar.border": null,
//"diffEditor.border": null,
//"diffEditor.insertedTextBorder": null,
//"diffEditor.removedTextBorder": null,
//"diffEditorGutter.insertedLineBackground": null,
//"diffEditorGutter.removedLineBackground": null,
//"diffEditorOverview.insertedForeground": null,
//"diffEditorOverview.removedForeground": null,
//"editor.findMatchBorder": null,
//"editor.findMatchHighlightBorder": null,
//"editor.findRangeHighlightBorder": null,
//"editor.rangeHighlightBorder": null,
//"editor.selectionForeground": null,
//"editor.selectionHighlightBorder": null,
//"editor.snippetFinalTabstopHighlightBackground": null,
//"editor.snippetTabstopHighlightBorder": null,
//"editor.symbolHighlightBorder": null,
//"editorCursor.background": null,
//"editorError.background": null,
//"editorError.border": null,
//"editorGhostText.background": null,
//"editorGhostText.border": null,
//"editorGroup.dropIntoPromptBorder": null,
//"editorGroup.emptyBackground": null,
//"editorGroup.focusedEmptyBorder": null,
//"editorGroupHeader.border": null,
//"editorHint.border": null,
//"editorInfo.background": null,
//"editorInfo.border": null,
//"editorLineNumber.dimmedForeground": null,
//"editorOverviewRuler.background": null,
//"editorStickyScroll.border": null,
//"editorSuggestWidget.selectedIconForeground": null,
//"editorUnicodeHighlight.background": null,
//"editorUnnecessaryCode.border": null,
//"editorWarning.background": null,
//"editorWarning.border": null,
//"editorWidget.resizeBorder": null,
//"inputValidation.errorForeground": null,
//"inputValidation.infoForeground": null,
//"inputValidation.warningForeground": null,
//"list.activeSelectionIconForeground": null,
//"list.filterMatchBorder": null,
//"list.focusAndSelectionOutline": null,
//"list.inactiveFocusOutline": null,
//"list.inactiveSelectionIconForeground": null,
//"menu.border": null,
//"menu.selectionBorder": null,
//"menubar.selectionBorder": null,
//"merge.border": null,
//"minimap.background": null,
//"notebook.cellHoverBackground": null,
//"notebook.focusedCellBackground": null,
//"notebook.inactiveSelectedCellBorder": null,
//"notebook.outputContainerBackgroundColor": null,
//"notebook.outputContainerBorderColor": null,
//"notificationCenter.border": null,
//"notificationToast.border": null,
//"outputView.background": null,
//"outputViewStickyScroll.background": null,
//"panelSectionHeader.border": null,
//"panelSectionHeader.foreground": null,
//"peekViewEditor.matchHighlightBorder": null,
//"quickInput.list.focusBackground": null,
//"quickInputList.focusIconForeground": null,
//"searchEditor.findMatchBorder": null,
//"selection.background": null,
//"tab.hoverBorder": null,
//"tab.hoverForeground": null,
//"tab.unfocusedHoverBorder": null,
//"tab.unfocusedHoverForeground": null,
//"terminal.background": null,
//"terminal.findMatchBorder": null,
//"terminal.findMatchHighlightBorder": null,
//"terminal.selectionForeground": null,
//"terminalCursor.background": null,
//"terminalCursor.foreground": null,
//"terminalStickyScroll.background": null,
//"testing.message.info.lineBackground": null,
//"toolbar.hoverOutline": null,
//"welcomePage.background": null,
//"widget.border": null,
//"window.activeBorder": null,
//"window.inactiveBorder": null
},
"tokenColors": [
{
"scope": [
"comment",
"punctuation.definition.comment",
"string.comment"
],
"settings": {
"foreground": "#8B949E"
}
},
{
"scope": [
"constant.other.placeholder",
"constant.character"
],
"settings": {
"foreground": "#EC8E2C"
}
},
{
"scope": [
"constant",
"entity.name.constant",
"variable.other.constant",
"variable.other.enummember",
"variable.language",
"entity"
],
"settings": {
"foreground": "#79C0FF"
}
},
{
"scope": [
"entity.name",
"meta.export.default",
"meta.definition.variable"
],
"settings": {
"foreground": "#FDAC54"
}
},
{
"scope": [
"variable.parameter.function",
"meta.jsx.children",
"meta.block",
"meta.tag.attributes",
"entity.name.constant",
"meta.object.member",
"meta.embedded.expression"
],
"settings": {
"foreground": "#C9D1D9"
}
},
{
"scope": "entity.name.function",
"settings": {
"foreground": "#D2A8FF"
}
},
{
"scope": [
"entity.name.tag",
"support.class.component"
],
"settings": {
"foreground": "#A5D6FF"
}
},
{
"scope": "keyword",
"settings": {
"foreground": "#EC8E2C"
}
},
{
"scope": [
"storage",
"storage.type"
],
"settings": {
"foreground": "#EC8E2C"
}
},
{
"scope": [
"storage.modifier.package",
"storage.modifier.import",
"storage.type.java"
],
"settings": {
"foreground": "#C9D1D9"
}
},
{
"scope": [
"string",
"string punctuation.section.embedded source"
],
"settings": {
"foreground": "#A5D6FF"
}
},
{
"scope": "support",
"settings": {
"foreground": "#79C0FF"
}
},
{
"scope": "meta.property-name",
"settings": {
"foreground": "#79C0FF"
}
},
{
"scope": "variable",
"settings": {
"foreground": "#FDAC54"
}
},
{
"scope": "variable.other",
"settings": {
"foreground": "#C9D1D9"
}
},
{
"scope": "invalid.broken",
"settings": {
"foreground": "#FDAC54",
"fontStyle": "italic"
}
},
{
"scope": "invalid.deprecated",
"settings": {
"foreground": "#FDAC54",
"fontStyle": "italic"
}
},
{
"scope": "invalid.illegal",
"settings": {
"foreground": "#FDAC54",
"fontStyle": "italic"
}
},
{
"scope": "invalid.unimplemented",
"settings": {
"foreground": "#FDAC54",
"fontStyle": "italic"
}
},
{
"scope": "carriage-return",
"settings": {
"foreground": "#F0F6FC",
"background": "#EC8E2C",
"fontStyle": "italic underline"
}
},
{
"scope": "message.error",
"settings": {
"foreground": "#FDAC54"
}
},
{
"scope": "string variable",
"settings": {
"foreground": "#79C0FF"
}
},
{
"scope": [
"source.regexp",
"string.regexp"
],
"settings": {
"foreground": "#A5D6FF"
}
},
{
"scope": [
"string.regexp.character-class",
"string.regexp constant.character.escape",
"string.regexp source.ruby.embedded",
"string.regexp string.regexp.arbitrary-repitition"
],
"settings": {
"foreground": "#A5D6FF"
}
},
{
"scope": "string.regexp constant.character.escape",
"settings": {
"foreground": "#A5D6FF",
"fontStyle": "bold"
}
},
{
"scope": "support.constant",
"settings": {
"foreground": "#79C0FF"
}
},
{
"scope": "support.variable",
"settings": {
"foreground": "#79C0FF"
}
},
{
"scope": "support.type.property-name.json",
"settings": {
"foreground": "#A5D6FF"
}
},
{
"scope": "meta.module-reference",
"settings": {
"foreground": "#79C0FF"
}
},
{
"scope": "punctuation.definition.list.begin.markdown",
"settings": {
"foreground": "#FDAC54"
}
},
{
"scope": [
"markup.heading",