-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsyntax-theme.json
More file actions
1635 lines (1635 loc) · 60.4 KB
/
syntax-theme.json
File metadata and controls
1635 lines (1635 loc) · 60.4 KB
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.activeBackground": "#bd93f910",
"activityBar.activeBorder": "#ff79c680",
"activityBar.background": "#343746",
"activityBar.foreground": "#f8f8f2",
"activityBar.inactiveForeground": "#6272a4",
"activityBarBadge.background": "#ff79c6",
"activityBarBadge.foreground": "#f8f8f2",
"badge.background": "#44475a",
"badge.foreground": "#f8f8f2",
"breadcrumb.activeSelectionForeground": "#f8f8f2",
"breadcrumb.background": "#282a36",
"breadcrumb.focusForeground": "#f8f8f2",
"breadcrumb.foreground": "#6272a4",
"breadcrumbPicker.background": "#191a21",
"button.background": "#44475a",
"button.foreground": "#f8f8f2",
"button.secondaryBackground": "#282a36",
"button.secondaryForeground": "#f8f8f2",
"button.secondaryHoverBackground": "#343746",
"debugToolBar.background": "#21222c",
"diffEditor.insertedTextBackground": "#50fa7b20",
"diffEditor.removedTextBackground": "#ff555550",
"dropdown.background": "#343746",
"dropdown.border": "#191a21",
"dropdown.foreground": "#f8f8f2",
"editor.background": "#282a36",
"editor.findMatchBackground": "#ffb86c80",
"editor.findMatchHighlightBackground": "#ffffff40",
"editor.findRangeHighlightBackground": "#44475a75",
"editor.foldBackground": "#21222c80",
"editor.foreground": "#f8f8f2",
"editor.hoverHighlightBackground": "#8be9fd50",
"editor.lineHighlightBorder": "#44475a",
"editor.rangeHighlightBackground": "#bd93f915",
"editor.selectionBackground": "#44475a",
"editor.selectionHighlightBackground": "#424450",
"editor.snippetFinalTabstopHighlightBackground": "#282a36",
"editor.snippetFinalTabstopHighlightBorder": "#50fa7b",
"editor.snippetTabstopHighlightBackground": "#282a36",
"editor.snippetTabstopHighlightBorder": "#6272a4",
"editor.wordHighlightBackground": "#8be9fd50",
"editor.wordHighlightStrongBackground": "#50fa7b50",
"editorBracketHighlight.foreground1": "#f8f8f2",
"editorBracketHighlight.foreground2": "#ff79c6",
"editorBracketHighlight.foreground3": "#8be9fd",
"editorBracketHighlight.foreground4": "#50fa7b",
"editorBracketHighlight.foreground5": "#bd93f9",
"editorBracketHighlight.foreground6": "#ffb86c",
"editorBracketHighlight.unexpectedBracket.foreground": "#ff5555",
"editorCodeLens.foreground": "#6272a4",
"editorError.foreground": "#ff5555",
"editorGroup.border": "#bd93f9",
"editorGroup.dropBackground": "#44475a70",
"editorGroupHeader.tabsBackground": "#191a21",
"editorGutter.addedBackground": "#50fa7b80",
"editorGutter.deletedBackground": "#ff555580",
"editorGutter.modifiedBackground": "#8be9fd80",
"editorHoverWidget.background": "#282a36",
"editorHoverWidget.border": "#6272a4",
"editorIndentGuide.activeBackground": "#ffffff45",
"editorIndentGuide.background": "#ffffff1a",
"editorLineNumber.foreground": "#6272a4",
"editorLink.activeForeground": "#8be9fd",
"editorMarkerNavigation.background": "#21222c",
"editorOverviewRuler.addedForeground": "#50fa7b80",
"editorOverviewRuler.border": "#191a21",
"editorOverviewRuler.currentContentForeground": "#50fa7b",
"editorOverviewRuler.deletedForeground": "#ff555580",
"editorOverviewRuler.errorForeground": "#ff555580",
"editorOverviewRuler.incomingContentForeground": "#bd93f9",
"editorOverviewRuler.infoForeground": "#8be9fd80",
"editorOverviewRuler.modifiedForeground": "#8be9fd80",
"editorOverviewRuler.selectionHighlightForeground": "#ffb86c",
"editorOverviewRuler.warningForeground": "#ffb86c80",
"editorOverviewRuler.wordHighlightForeground": "#8be9fd",
"editorOverviewRuler.wordHighlightStrongForeground": "#50fa7b",
"editorRuler.foreground": "#ffffff1a",
"editorSuggestWidget.background": "#21222c",
"editorSuggestWidget.foreground": "#f8f8f2",
"editorSuggestWidget.selectedBackground": "#44475a",
"editorWarning.foreground": "#8be9fd",
"editorWhitespace.foreground": "#ffffff1a",
"editorWidget.background": "#21222c",
"errorForeground": "#ff5555",
"extensionButton.prominentBackground": "#50fa7b90",
"extensionButton.prominentForeground": "#f8f8f2",
"extensionButton.prominentHoverBackground": "#50fa7b60",
"focusBorder": "#6272a4",
"foreground": "#f8f8f2",
"gitDecoration.conflictingResourceForeground": "#ffb86c",
"gitDecoration.deletedResourceForeground": "#ff5555",
"gitDecoration.ignoredResourceForeground": "#6272a4",
"gitDecoration.modifiedResourceForeground": "#8be9fd",
"gitDecoration.untrackedResourceForeground": "#50fa7b",
"input.background": "#282a36",
"input.border": "#191a21",
"input.foreground": "#f8f8f2",
"input.placeholderForeground": "#6272a4",
"inputOption.activeBorder": "#bd93f9",
"inputValidation.errorBorder": "#ff5555",
"inputValidation.infoBorder": "#ff79c6",
"inputValidation.warningBorder": "#ffb86c",
"list.activeSelectionBackground": "#44475a",
"list.activeSelectionForeground": "#f8f8f2",
"list.dropBackground": "#44475a",
"list.errorForeground": "#ff5555",
"list.focusBackground": "#44475a75",
"list.highlightForeground": "#8be9fd",
"list.hoverBackground": "#44475a75",
"list.inactiveSelectionBackground": "#44475a75",
"list.warningForeground": "#ffb86c",
"listFilterWidget.background": "#343746",
"listFilterWidget.noMatchesOutline": "#ff5555",
"listFilterWidget.outline": "#424450",
"merge.currentHeaderBackground": "#50fa7b90",
"merge.incomingHeaderBackground": "#bd93f990",
"panel.background": "#282a36",
"panel.border": "#bd93f9",
"panelTitle.activeBorder": "#ff79c6",
"panelTitle.activeForeground": "#f8f8f2",
"panelTitle.inactiveForeground": "#6272a4",
"peekView.border": "#44475a",
"peekViewEditor.background": "#282a36",
"peekViewEditor.matchHighlightBackground": "#f1fa8c80",
"peekViewResult.background": "#21222c",
"peekViewResult.fileForeground": "#f8f8f2",
"peekViewResult.lineForeground": "#f8f8f2",
"peekViewResult.matchHighlightBackground": "#f1fa8c80",
"peekViewResult.selectionBackground": "#44475a",
"peekViewResult.selectionForeground": "#f8f8f2",
"peekViewTitle.background": "#191a21",
"peekViewTitleDescription.foreground": "#6272a4",
"peekViewTitleLabel.foreground": "#f8f8f2",
"pickerGroup.border": "#bd93f9",
"pickerGroup.foreground": "#8be9fd",
"progressBar.background": "#ff79c6",
"selection.background": "#bd93f9",
"settings.checkboxBackground": "#21222c",
"settings.checkboxBorder": "#191a21",
"settings.checkboxForeground": "#f8f8f2",
"settings.dropdownBackground": "#21222c",
"settings.dropdownBorder": "#191a21",
"settings.dropdownForeground": "#f8f8f2",
"settings.headerForeground": "#f8f8f2",
"settings.modifiedItemIndicator": "#ffb86c",
"settings.numberInputBackground": "#21222c",
"settings.numberInputBorder": "#191a21",
"settings.numberInputForeground": "#f8f8f2",
"settings.textInputBackground": "#21222c",
"settings.textInputBorder": "#191a21",
"settings.textInputForeground": "#f8f8f2",
"sideBar.background": "#21222c",
"sideBarSectionHeader.background": "#282a36",
"sideBarSectionHeader.border": "#191a21",
"sideBarTitle.foreground": "#f8f8f2",
"statusBar.background": "#191a21",
"statusBar.debuggingBackground": "#ff5555",
"statusBar.debuggingForeground": "#191a21",
"statusBar.foreground": "#f8f8f2",
"statusBar.noFolderBackground": "#191a21",
"statusBar.noFolderForeground": "#f8f8f2",
"statusBarItem.prominentBackground": "#ff5555",
"statusBarItem.prominentHoverBackground": "#ffb86c",
"statusBarItem.remoteBackground": "#bd93f9",
"statusBarItem.remoteForeground": "#282a36",
"tab.activeBackground": "#282a36",
"tab.activeBorderTop": "#ff79c680",
"tab.activeForeground": "#f8f8f2",
"tab.border": "#191a21",
"tab.inactiveBackground": "#21222c",
"tab.inactiveForeground": "#6272a4",
"terminal.ansiBlack": "#21222c",
"terminal.ansiBlue": "#bd93f9",
"terminal.ansiBrightBlack": "#6272a4",
"terminal.ansiBrightBlue": "#d6acff",
"terminal.ansiBrightCyan": "#a4ffff",
"terminal.ansiBrightGreen": "#69ff94",
"terminal.ansiBrightMagenta": "#ff92df",
"terminal.ansiBrightRed": "#ff6e6e",
"terminal.ansiBrightWhite": "#ffffff",
"terminal.ansiBrightYellow": "#ffffa5",
"terminal.ansiCyan": "#8be9fd",
"terminal.ansiGreen": "#ff0000",
"terminal.ansiMagenta": "#ff79c6",
"terminal.ansiRed": "#ff5555",
"terminal.ansiWhite": "#f8f8f2",
"terminal.ansiYellow": "#f1fa8c",
"terminal.background": "#282a36",
"terminal.foreground": "#00fd61",
"titleBar.activeBackground": "#21222c",
"titleBar.activeForeground": "#f8f8f2",
"titleBar.inactiveBackground": "#191a21",
"titleBar.inactiveForeground": "#6272a4",
"walkThrough.embeddedEditorBackground": "#21222c"
//"actionBar.toggledBackground": "#6272a466",
//"activityBar.dropBorder": "#f8f8f2",
//"activityBarTop.activeBorder": "#e7e7e7",
//"activityBarTop.dropBorder": "#e7e7e7",
//"activityBarTop.foreground": "#e7e7e7",
//"activityBarTop.inactiveForeground": "#e7e7e799",
//"banner.background": "#44475a",
//"banner.foreground": "#f8f8f2",
//"banner.iconForeground": "#3794ff",
//"button.hoverBackground": "#52556c",
//"button.separator": "#f8f8f266",
//"charts.blue": "#3794ff",
//"charts.foreground": "#f8f8f2",
//"charts.green": "#89d185",
//"charts.lines": "#f8f8f280",
//"charts.orange": "#d18616",
//"charts.purple": "#b180d7",
//"charts.red": "#ff5555",
//"charts.yellow": "#8be9fd",
//"chat.avatarBackground": "#1f1f1f",
//"chat.avatarForeground": "#f8f8f2",
//"chat.requestBackground": "#282a369e",
//"chat.requestBorder": "#ffffff1a",
//"chat.slashCommandBackground": "#34414b8f",
//"chat.slashCommandForeground": "#40a6ff",
//"checkbox.background": "#343746",
//"checkbox.border": "#191a21",
//"checkbox.foreground": "#f8f8f2",
//"checkbox.selectBackground": "#21222c",
//"checkbox.selectBorder": "#c5c5c5",
//"commandCenter.activeBackground": "#ffffff14",
//"commandCenter.activeBorder": "#f8f8f24d",
//"commandCenter.activeForeground": "#f8f8f2",
//"commandCenter.background": "#ffffff0d",
//"commandCenter.border": "#f8f8f233",
//"commandCenter.debuggingBackground": "#ff555542",
//"commandCenter.foreground": "#f8f8f2",
//"commandCenter.inactiveBorder": "#6272a440",
//"commandCenter.inactiveForeground": "#6272a4",
//"commentsView.resolvedIcon": "#cccccc80",
//"commentsView.unresolvedIcon": "#6272a4",
//"debugConsole.errorForeground": "#ff5555",
//"debugConsole.infoForeground": "#3794ff",
//"debugConsole.sourceForeground": "#f8f8f2",
//"debugConsole.warningForeground": "#8be9fd",
//"debugConsoleInputIcon.foreground": "#f8f8f2",
//"debugExceptionWidget.background": "#420b0d",
//"debugExceptionWidget.border": "#a31515",
//"debugIcon.breakpointCurrentStackframeForeground": "#ffcc00",
//"debugIcon.breakpointDisabledForeground": "#848484",
//"debugIcon.breakpointForeground": "#e51400",
//"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",
//"debugTokenExpression.boolean": "#4e94ce",
//"debugTokenExpression.error": "#f48771",
//"debugTokenExpression.name": "#c586c0",
//"debugTokenExpression.number": "#b5cea8",
//"debugTokenExpression.string": "#ce9178",
//"debugTokenExpression.type": "#4a90e2",
//"debugTokenExpression.value": "#cccccc99",
//"debugView.exceptionLabelBackground": "#6c2022",
//"debugView.exceptionLabelForeground": "#f8f8f2",
//"debugView.stateLabelBackground": "#88888844",
//"debugView.stateLabelForeground": "#f8f8f2",
//"debugView.valueChangedHighlight": "#569cd6",
//"descriptionForeground": "#f8f8f2b3",
//"diffEditor.diagonalFill": "#cccccc33",
//"diffEditor.insertedLineBackground": "#9bb95533",
//"diffEditor.move.border": "#8b8b8b9c",
//"diffEditor.moveActive.border": "#ffa500",
//"diffEditor.removedLineBackground": "#ff000033",
//"diffEditor.unchangedCodeBackground": "#74747429",
//"diffEditor.unchangedRegionBackground": "#21222c",
//"diffEditor.unchangedRegionForeground": "#f8f8f2",
//"diffEditor.unchangedRegionShadow": "#000000",
//"disabledForeground": "#cccccc80",
//"editor.focusedStackFrameHighlightBackground": "#7abd7a4d",
//"editor.foldPlaceholderForeground": "#808080",
//"editor.inactiveSelectionBackground": "#44475a80",
//"editor.inlineValuesBackground": "#ffc80033",
//"editor.inlineValuesForeground": "#ffffff80",
//"editor.linkedEditingBackground": "#ff00004d",
//"editor.placeholder.foreground": "#ffffff56",
//"editor.stackFrameHighlightBackground": "#ffff0033",
//"editor.symbolHighlightBackground": "#ffffff40",
//"editor.wordHighlightTextBackground": "#8be9fd50",
//"editorActiveLineNumber.foreground": "#c6c6c6",
//"editorBracketMatch.background": "#0064001a",
//"editorBracketMatch.border": "#888888",
//"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",
//"editorCommentsWidget.rangeActiveBackground": "#6272a41a",
//"editorCommentsWidget.rangeBackground": "#6272a41a",
//"editorCommentsWidget.replyInputBackground": "#191a21",
//"editorCommentsWidget.resolvedBorder": "#cccccc80",
//"editorCommentsWidget.unresolvedBorder": "#6272a4",
//"editorCursor.foreground": "#aeafad",
//"editorGhostText.foreground": "#ffffff56",
//"editorGroup.dropIntoPromptBackground": "#21222c",
//"editorGroup.dropIntoPromptForeground": "#f8f8f2",
//"editorGroupHeader.noTabsBackground": "#282a36",
//"editorGutter.background": "#282a36",
//"editorGutter.commentGlyphForeground": "#f8f8f2",
//"editorGutter.commentRangeForeground": "#343746",
//"editorGutter.commentUnresolvedGlyphForeground": "#f8f8f2",
//"editorGutter.foldingControlForeground": "#c5c5c5",
//"editorHint.foreground": "#eeeeeeb3",
//"editorHoverWidget.foreground": "#f8f8f2",
//"editorHoverWidget.highlightForeground": "#8be9fd",
//"editorHoverWidget.statusBarBackground": "#303241",
//"editorIndentGuide.activeBackground1": "#ffffff45",
//"editorIndentGuide.activeBackground2": "#00000000",
//"editorIndentGuide.activeBackground3": "#00000000",
//"editorIndentGuide.activeBackground4": "#00000000",
//"editorIndentGuide.activeBackground5": "#00000000",
//"editorIndentGuide.activeBackground6": "#00000000",
//"editorIndentGuide.background1": "#ffffff1a",
//"editorIndentGuide.background2": "#00000000",
//"editorIndentGuide.background3": "#00000000",
//"editorIndentGuide.background4": "#00000000",
//"editorIndentGuide.background5": "#00000000",
//"editorIndentGuide.background6": "#00000000",
//"editorInfo.foreground": "#3794ff",
//"editorInlayHint.background": "#44475a1a",
//"editorInlayHint.foreground": "#969696",
//"editorInlayHint.parameterBackground": "#44475a1a",
//"editorInlayHint.parameterForeground": "#969696",
//"editorInlayHint.typeBackground": "#44475a1a",
//"editorInlayHint.typeForeground": "#969696",
//"editorLightBulb.foreground": "#ffcc00",
//"editorLightBulbAi.foreground": "#ffcc00",
//"editorLightBulbAutoFix.foreground": "#75beff",
//"editorLineNumber.activeForeground": "#c6c6c6",
//"editorMarkerNavigationError.background": "#ff5555",
//"editorMarkerNavigationError.headerBackground": "#ff55551a",
//"editorMarkerNavigationInfo.background": "#3794ff",
//"editorMarkerNavigationInfo.headerBackground": "#3794ff1a",
//"editorMarkerNavigationWarning.background": "#8be9fd",
//"editorMarkerNavigationWarning.headerBackground": "#8be9fd1a",
//"editorMultiCursor.primary.foreground": "#aeafad",
//"editorMultiCursor.secondary.foreground": "#aeafad",
//"editorOverviewRuler.bracketMatchForeground": "#a0a0a0",
//"editorOverviewRuler.commentForeground": "#343746",
//"editorOverviewRuler.commentUnresolvedForeground": "#343746",
//"editorOverviewRuler.commonContentForeground": "#60606066",
//"editorOverviewRuler.findMatchForeground": "#d186167e",
//"editorOverviewRuler.inlineChatInserted": "#50fa7b13",
//"editorOverviewRuler.inlineChatRemoved": "#ff555530",
//"editorOverviewRuler.rangeHighlightForeground": "#007acc99",
//"editorOverviewRuler.wordHighlightTextForeground": "#ffb86c",
//"editorPane.background": "#282a36",
//"editorStickyScroll.background": "#282a36",
//"editorStickyScroll.shadow": "#000000",
//"editorStickyScrollHover.background": "#2a2d2e",
//"editorSuggestWidget.border": "#454545",
//"editorSuggestWidget.focusHighlightForeground": "#8be9fd",
//"editorSuggestWidget.highlightForeground": "#8be9fd",
//"editorSuggestWidget.selectedForeground": "#f8f8f2",
//"editorSuggestWidgetStatus.foreground": "#f8f8f280",
//"editorUnicodeHighlight.border": "#8be9fd",
//"editorUnnecessaryCode.opacity": "#000000aa",
//"editorWatermark.foreground": "#f8f8f299",
//"editorWidget.border": "#454545",
//"editorWidget.foreground": "#f8f8f2",
//"extensionBadge.remoteBackground": "#ff79c6",
//"extensionBadge.remoteForeground": "#f8f8f2",
//"extensionButton.background": "#44475a",
//"extensionButton.foreground": "#f8f8f2",
//"extensionButton.hoverBackground": "#52556c",
//"extensionButton.separator": "#f8f8f266",
//"extensionIcon.preReleaseForeground": "#1d9271",
//"extensionIcon.sponsorForeground": "#d758b3",
//"extensionIcon.starForeground": "#ff8e00",
//"extensionIcon.verifiedForeground": "#3794ff",
//"gitDecoration.addedResourceForeground": "#81b88b",
//"gitDecoration.renamedResourceForeground": "#73c991",
//"gitDecoration.stageDeletedResourceForeground": "#c74e39",
//"gitDecoration.stageModifiedResourceForeground": "#e2c08d",
//"gitDecoration.submoduleResourceForeground": "#8db9e2",
//"gitlens.closedAutolinkedIssueIconColor": "#a371f7",
//"gitlens.closedPullRequestIconColor": "#f85149",
//"gitlens.decorations.addedForegroundColor": "#81b88b",
//"gitlens.decorations.branchAheadForegroundColor": "#35b15e",
//"gitlens.decorations.branchBehindForegroundColor": "#b15e35",
//"gitlens.decorations.branchDivergedForegroundColor": "#d8af1b",
//"gitlens.decorations.branchMissingUpstreamForegroundColor": "#c74e39",
//"gitlens.decorations.branchUnpublishedForegroundColor": "#35b15e",
//"gitlens.decorations.copiedForegroundColor": "#73c991",
//"gitlens.decorations.deletedForegroundColor": "#ff5555",
//"gitlens.decorations.ignoredForegroundColor": "#6272a4",
//"gitlens.decorations.modifiedForegroundColor": "#8be9fd",
//"gitlens.decorations.renamedForegroundColor": "#73c991",
//"gitlens.decorations.statusMergingOrRebasingConflictForegroundColor": "#c74e39",
//"gitlens.decorations.statusMergingOrRebasingForegroundColor": "#d8af1b",
//"gitlens.decorations.untrackedForegroundColor": "#50fa7b",
//"gitlens.decorations.workspaceCurrentForegroundColor": "#35b15e",
//"gitlens.decorations.workspaceRepoMissingForegroundColor": "#909090",
//"gitlens.decorations.workspaceRepoOpenForegroundColor": "#35b15e",
//"gitlens.decorations.worktreeHasUncommittedChangesForegroundColor": "#e2c08d",
//"gitlens.decorations.worktreeMissingForegroundColor": "#c74e39",
//"gitlens.graphChangesColumnAddedColor": "#347d39",
//"gitlens.graphChangesColumnDeletedColor": "#c93c37",
//"gitlens.graphLane10Color": "#2ece9d",
//"gitlens.graphLane1Color": "#15a0bf",
//"gitlens.graphLane2Color": "#0669f7",
//"gitlens.graphLane3Color": "#8e00c2",
//"gitlens.graphLane4Color": "#c517b6",
//"gitlens.graphLane5Color": "#d90171",
//"gitlens.graphLane6Color": "#cd0101",
//"gitlens.graphLane7Color": "#f25d2e",
//"gitlens.graphLane8Color": "#f2ca33",
//"gitlens.graphLane9Color": "#7bd938",
//"gitlens.graphMinimapMarkerHeadColor": "#05e617",
//"gitlens.graphMinimapMarkerHighlightsColor": "#fbff0a",
//"gitlens.graphMinimapMarkerLocalBranchesColor": "#3087cf",
//"gitlens.graphMinimapMarkerPullRequestsColor": "#c76801",
//"gitlens.graphMinimapMarkerRemoteBranchesColor": "#2b5e88",
//"gitlens.graphMinimapMarkerStashesColor": "#b34db3",
//"gitlens.graphMinimapMarkerTagsColor": "#6b562e",
//"gitlens.graphMinimapMarkerUpstreamColor": "#09ae17",
//"gitlens.graphScrollMarkerHeadColor": "#05e617",
//"gitlens.graphScrollMarkerHighlightsColor": "#fbff0a",
//"gitlens.graphScrollMarkerLocalBranchesColor": "#3087cf",
//"gitlens.graphScrollMarkerPullRequestsColor": "#c76801",
//"gitlens.graphScrollMarkerRemoteBranchesColor": "#2b5e88",
//"gitlens.graphScrollMarkerStashesColor": "#b34db3",
//"gitlens.graphScrollMarkerTagsColor": "#6b562e",
//"gitlens.graphScrollMarkerUpstreamColor": "#09ae17",
//"gitlens.gutterBackgroundColor": "#ffffff13",
//"gitlens.gutterForegroundColor": "#bebebe",
//"gitlens.gutterUncommittedForegroundColor": "#00bcf299",
//"gitlens.launchpadIndicatorAttentionColor": "#d8af1b",
//"gitlens.launchpadIndicatorAttentionHoverColor": "#d8af1b",
//"gitlens.launchpadIndicatorBlockedColor": "#c74e39",
//"gitlens.launchpadIndicatorBlockedHoverColor": "#c74e39",
//"gitlens.launchpadIndicatorMergeableColor": "#3fb950",
//"gitlens.launchpadIndicatorMergeableHoverColor": "#3fb950",
//"gitlens.lineHighlightBackgroundColor": "#00bcf233",
//"gitlens.lineHighlightOverviewRulerColor": "#00bcf299",
//"gitlens.mergedPullRequestIconColor": "#a371f7",
//"gitlens.openAutolinkedIssueIconColor": "#3fb950",
//"gitlens.openPullRequestIconColor": "#3fb950",
//"gitlens.trailingLineBackgroundColor": "#00000000",
//"gitlens.trailingLineForegroundColor": "#99999959",
//"gitlens.unpublishedChangesIconColor": "#35b15e",
//"gitlens.unpublishedCommitIconColor": "#35b15e",
//"gitlens.unpulledChangesIconColor": "#b15e35",
//"icon.foreground": "#c5c5c5",
//"inlineChat.background": "#21222c",
//"inlineChat.border": "#454545",
//"inlineChat.foreground": "#f8f8f2",
//"inlineChat.shadow": "#0000005c",
//"inlineChatDiff.inserted": "#50fa7b10",
//"inlineChatDiff.removed": "#ff555528",
//"inlineChatInput.background": "#282a36",
//"inlineChatInput.border": "#454545",
//"inlineChatInput.focusBorder": "#6272a4",
//"inlineChatInput.placeholderForeground": "#6272a4",
//"inlineparameters.annotationBackground": "#1e2c31",
//"inlineparameters.annotationForeground": "#adbec5",
//"inputOption.activeBackground": "#6272a466",
//"inputOption.activeForeground": "#ffffff",
//"inputOption.hoverBackground": "#5a5d5e80",
//"inputValidation.errorBackground": "#5a1d1d",
//"inputValidation.infoBackground": "#063b49",
//"inputValidation.warningBackground": "#352a05",
//"interactive.activeCodeBorder": "#44475a",
//"interactive.inactiveCodeBorder": "#44475a75",
//"keybindingLabel.background": "#8080802b",
//"keybindingLabel.border": "#33333399",
//"keybindingLabel.bottomBorder": "#44444499",
//"keybindingLabel.foreground": "#cccccc",
//"keybindingTable.headerBackground": "#f8f8f20a",
//"keybindingTable.rowsBackground": "#f8f8f20a",
//"list.deemphasizedForeground": "#8c8c8c",
//"list.dropBetweenBackground": "#c5c5c5",
//"list.filterMatchBackground": "#ffffff40",
//"list.focusHighlightForeground": "#8be9fd",
//"list.focusOutline": "#6272a4",
//"list.invalidItemForeground": "#b89500",
//"listFilterWidget.shadow": "#0000005c",
//"menu.background": "#343746",
//"menu.foreground": "#f8f8f2",
//"menu.selectionBackground": "#44475a",
//"menu.selectionForeground": "#f8f8f2",
//"menu.separatorBackground": "#606060",
//"menubar.selectionBackground": "#5a5d5e50",
//"menubar.selectionForeground": "#f8f8f2",
//"merge.commonContentBackground": "#60606029",
//"merge.commonHeaderBackground": "#60606066",
//"merge.currentContentBackground": "#50fa7b3a",
//"merge.incomingContentBackground": "#bd93f93a",
//"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": "#50fa7b3a",
//"mergeEditor.conflict.input2.background": "#bd93f93a",
//"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": "#8be9fd",
//"minimapGutter.addedBackground": "#50fa7b80",
//"minimapGutter.deletedBackground": "#ff555580",
//"minimapGutter.modifiedBackground": "#8be9fd80",
//"minimapSlider.activeBackground": "#bfbfbf33",
//"minimapSlider.background": "#79797933",
//"minimapSlider.hoverBackground": "#64646459",
//"multiDiffEditor.border": "#191a21",
//"multiDiffEditor.headerBackground": "#262626",
//"notebook.cellBorderColor": "#44475a75",
//"notebook.cellEditorBackground": "#21222c",
//"notebook.cellInsertionIndicator": "#6272a4",
//"notebook.cellStatusBarItemHoverBackground": "#ffffff26",
//"notebook.cellToolbarSeparator": "#80808059",
//"notebook.editorBackground": "#282a36",
//"notebook.focusedCellBorder": "#6272a4",
//"notebook.focusedEditorBorder": "#6272a4",
//"notebook.inactiveFocusedCellBorder": "#44475a75",
//"notebook.selectedCellBackground": "#44475a75",
//"notebook.selectedCellBorder": "#44475a75",
//"notebook.symbolHighlightBackground": "#ffffff0b",
//"notebookEditorOverviewRuler.runningCellForeground": "#89d185",
//"notebookScrollbarSlider.activeBackground": "#bfbfbf66",
//"notebookScrollbarSlider.background": "#79797966",
//"notebookScrollbarSlider.hoverBackground": "#646464b3",
//"notebookStatusErrorIcon.foreground": "#ff5555",
//"notebookStatusRunningIcon.foreground": "#f8f8f2",
//"notebookStatusSuccessIcon.foreground": "#89d185",
//"notificationCenterHeader.background": "#2b2c39",
//"notificationLink.foreground": "#3794ff",
//"notifications.background": "#21222c",
//"notifications.border": "#2b2c39",
//"notifications.foreground": "#f8f8f2",
//"notificationsErrorIcon.foreground": "#ff5555",
//"notificationsInfoIcon.foreground": "#3794ff",
//"notificationsWarningIcon.foreground": "#8be9fd",
//"panel.dropBorder": "#f8f8f2",
//"panelInput.border": "#191a21",
//"panelSection.border": "#bd93f9",
//"panelSection.dropBackground": "#44475a70",
//"panelSectionHeader.background": "#80808033",
//"panelStickyScroll.background": "#282a36",
//"panelStickyScroll.shadow": "#000000",
//"peekViewEditorGutter.background": "#282a36",
//"peekViewEditorStickyScroll.background": "#282a36",
//"ports.iconRunningProcessForeground": "#bd93f9",
//"problemsErrorIcon.foreground": "#ff5555",
//"problemsInfoIcon.foreground": "#3794ff",
//"problemsWarningIcon.foreground": "#8be9fd",
//"profileBadge.background": "#4d4d4d",
//"profileBadge.foreground": "#ffffff",
//"profiles.sashBorder": "#bd93f9",
//"quickInput.background": "#21222c",
//"quickInput.foreground": "#f8f8f2",
//"quickInputList.focusBackground": "#44475a",
//"quickInputList.focusForeground": "#f8f8f2",
//"quickInputTitle.background": "#ffffff1b",
//"sash.hoverBorder": "#6272a4",
//"scm.historyItemAdditionsForeground": "#81b88b",
//"scm.historyItemDeletionsForeground": "#ff5555",
//"scm.historyItemSelectedStatisticsBorder": "#f8f8f233",
//"scm.historyItemStatisticsBorder": "#f8f8f233",
//"scrollbar.shadow": "#000000",
//"scrollbarSlider.activeBackground": "#bfbfbf66",
//"scrollbarSlider.background": "#79797966",
//"scrollbarSlider.hoverBackground": "#646464b3",
//"search.resultsInfoForeground": "#f8f8f2a6",
//"searchEditor.findMatchBackground": "#ffffff2a",
//"searchEditor.textInputBorder": "#191a21",
//"settings.dropdownListBorder": "#454545",
//"settings.focusedRowBackground": "#44475a46",
//"settings.focusedRowBorder": "#6272a4",
//"settings.headerBorder": "#bd93f9",
//"settings.rowHoverBackground": "#44475a23",
//"settings.sashBorder": "#bd93f9",
//"settings.settingsHeaderHoverForeground": "#f8f8f2b3",
//"sideBar.dropBackground": "#44475a70",
//"sideBarActivityBarTop.border": "#191a21",
//"sideBarStickyScroll.background": "#21222c",
//"sideBarStickyScroll.shadow": "#000000",
//"sideBarTitle.background": "#21222c",
//"sideBySideEditor.horizontalBorder": "#bd93f9",
//"sideBySideEditor.verticalBorder": "#bd93f9",
//"simpleFindWidget.sashBorder": "#454545",
//"statusBar.focusBorder": "#f8f8f2",
//"statusBarItem.activeBackground": "#ffffff2e",
//"statusBarItem.compactHoverBackground": "#ffffff33",
//"statusBarItem.errorBackground": "#cc0000",
//"statusBarItem.errorForeground": "#ffffff",
//"statusBarItem.errorHoverBackground": "#ffffff1f",
//"statusBarItem.errorHoverForeground": "#f8f8f2",
//"statusBarItem.focusBorder": "#f8f8f2",
//"statusBarItem.hoverBackground": "#ffffff1f",
//"statusBarItem.hoverForeground": "#f8f8f2",
//"statusBarItem.offlineBackground": "#6c1717",
//"statusBarItem.offlineForeground": "#282a36",
//"statusBarItem.offlineHoverBackground": "#ffffff1f",
//"statusBarItem.offlineHoverForeground": "#f8f8f2",
//"statusBarItem.prominentForeground": "#f8f8f2",
//"statusBarItem.prominentHoverForeground": "#f8f8f2",
//"statusBarItem.remoteHoverBackground": "#ffffff1f",
//"statusBarItem.remoteHoverForeground": "#f8f8f2",
//"statusBarItem.warningBackground": "#04bde7",
//"statusBarItem.warningForeground": "#ffffff",
//"statusBarItem.warningHoverBackground": "#ffffff1f",
//"statusBarItem.warningHoverForeground": "#f8f8f2",
//"symbolIcon.arrayForeground": "#f8f8f2",
//"symbolIcon.booleanForeground": "#f8f8f2",
//"symbolIcon.classForeground": "#ee9d28",
//"symbolIcon.colorForeground": "#f8f8f2",
//"symbolIcon.constantForeground": "#f8f8f2",
//"symbolIcon.constructorForeground": "#b180d7",
//"symbolIcon.enumeratorForeground": "#ee9d28",
//"symbolIcon.enumeratorMemberForeground": "#75beff",
//"symbolIcon.eventForeground": "#ee9d28",
//"symbolIcon.fieldForeground": "#75beff",
//"symbolIcon.fileForeground": "#f8f8f2",
//"symbolIcon.folderForeground": "#f8f8f2",
//"symbolIcon.functionForeground": "#b180d7",
//"symbolIcon.interfaceForeground": "#75beff",
//"symbolIcon.keyForeground": "#f8f8f2",
//"symbolIcon.keywordForeground": "#f8f8f2",
//"symbolIcon.methodForeground": "#b180d7",
//"symbolIcon.moduleForeground": "#f8f8f2",
//"symbolIcon.namespaceForeground": "#f8f8f2",
//"symbolIcon.nullForeground": "#f8f8f2",
//"symbolIcon.numberForeground": "#f8f8f2",
//"symbolIcon.objectForeground": "#f8f8f2",
//"symbolIcon.operatorForeground": "#f8f8f2",
//"symbolIcon.packageForeground": "#f8f8f2",
//"symbolIcon.propertyForeground": "#f8f8f2",
//"symbolIcon.referenceForeground": "#f8f8f2",
//"symbolIcon.snippetForeground": "#f8f8f2",
//"symbolIcon.stringForeground": "#f8f8f2",
//"symbolIcon.structForeground": "#f8f8f2",
//"symbolIcon.textForeground": "#f8f8f2",
//"symbolIcon.typeParameterForeground": "#f8f8f2",
//"symbolIcon.unitForeground": "#f8f8f2",
//"symbolIcon.variableForeground": "#75beff",
//"tab.activeModifiedBorder": "#3399cc",
//"tab.dragAndDropBorder": "#f8f8f2",
//"tab.inactiveModifiedBorder": "#3399cc80",
//"tab.lastPinnedBorder": "#585858",
//"tab.selectedBackground": "#282a36",
//"tab.selectedBorderTop": "#ff79c680",
//"tab.selectedForeground": "#f8f8f2",
//"tab.unfocusedActiveBackground": "#282a36",
//"tab.unfocusedActiveBorderTop": "#ff79c640",
//"tab.unfocusedActiveForeground": "#f8f8f280",
//"tab.unfocusedActiveModifiedBorder": "#3399cc80",
//"tab.unfocusedInactiveBackground": "#21222c",
//"tab.unfocusedInactiveForeground": "#6272a480",
//"tab.unfocusedInactiveModifiedBorder": "#3399cc40",
//"terminal.border": "#bd93f9",
//"terminal.dropBackground": "#44475a70",
//"terminal.findMatchBackground": "#ffb86c80",
//"terminal.findMatchHighlightBackground": "#ffffff40",
//"terminal.hoverHighlightBackground": "#8be9fd28",
//"terminal.inactiveSelectionBackground": "#44475a80",
//"terminal.initialHintForeground": "#ffffff56",
//"terminal.selectionBackground": "#44475a",
//"terminalCommandDecoration.defaultBackground": "#ffffff40",
//"terminalCommandDecoration.errorBackground": "#f14c4c",
//"terminalCommandDecoration.successBackground": "#1b81a8",
//"terminalOverviewRuler.cursorForeground": "#a0a0a0cc",
//"terminalOverviewRuler.findMatchForeground": "#d186167e",
//"terminalStickyScrollHover.background": "#2a2d2e",
//"testing.coverCountBadgeBackground": "#44475a",
//"testing.coverCountBadgeForeground": "#f8f8f2",
//"testing.coveredBackground": "#50fa7b20",
//"testing.coveredBorder": "#50fa7b18",
//"testing.coveredGutterBackground": "#50fa7b13",
//"testing.iconErrored": "#f14c4c",
//"testing.iconErrored.retired": "#f14c4cb3",
//"testing.iconFailed": "#f14c4c",
//"testing.iconFailed.retired": "#f14c4cb3",
//"testing.iconPassed": "#73c991",
//"testing.iconPassed.retired": "#73c991b3",
//"testing.iconQueued": "#cca700",
//"testing.iconQueued.retired": "#cca700b3",
//"testing.iconSkipped": "#848484",
//"testing.iconSkipped.retired": "#848484b3",
//"testing.iconUnset": "#848484",
//"testing.iconUnset.retired": "#848484b3",
//"testing.message.error.decorationForeground": "#ff5555",
//"testing.message.error.lineBackground": "#ff000033",
//"testing.message.info.decorationForeground": "#f8f8f280",
//"testing.messagePeekBorder": "#3794ff",
//"testing.messagePeekHeaderBackground": "#3794ff1a",
//"testing.peekBorder": "#ff5555",
//"testing.peekHeaderBackground": "#ff55551a",
//"testing.runAction": "#73c991",
//"testing.uncoveredBackground": "#ff555550",
//"testing.uncoveredBorder": "#ff55553c",
//"testing.uncoveredBranchBackground": "#af4549",
//"testing.uncoveredGutterBackground": "#ff555578",
//"textBlockQuote.background": "#222222",
//"textBlockQuote.border": "#007acc80",
//"textCodeBlock.background": "#0a0a0a66",
//"textLink.activeForeground": "#3794ff",
//"textLink.foreground": "#3794ff",
//"textPreformat.background": "#ffffff1a",
//"textPreformat.foreground": "#d7ba7d",
//"textSeparator.foreground": "#ffffff2e",
//"toolbar.activeBackground": "#63666750",
//"toolbar.hoverBackground": "#5a5d5e50",
//"tree.inactiveIndentGuidesStroke": "#58585866",
//"tree.indentGuidesStroke": "#585858",
//"tree.tableColumnsBorder": "#cccccc20",
//"tree.tableOddRowsBackground": "#f8f8f20a",
//"walkthrough.stepTitle.foreground": "#ffffff",
//"welcomePage.progress.background": "#282a36",
//"welcomePage.progress.foreground": "#3794ff",
//"welcomePage.tileBackground": "#21222c",
//"welcomePage.tileBorder": "#ffffff1a",
//"welcomePage.tileHoverBackground": "#282935",
//"widget.shadow": "#0000005c",
//"activityBar.activeFocusBorder": null,
//"activityBar.border": null,
//"activityBarTop.activeBackground": null,
//"activityBarTop.background": 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,
//"dropdown.listBackground": null,
//"editor.findMatchBorder": null,
//"editor.findMatchForeground": null,
//"editor.findMatchHighlightBorder": null,
//"editor.findMatchHighlightForeground": null,
//"editor.findRangeHighlightBorder": null,
//"editor.lineHighlightBackground": null,
//"editor.rangeHighlightBorder": null,
//"editor.selectionForeground": null,
//"editor.selectionHighlightBorder": null,
//"editor.symbolHighlightBorder": null,
//"editor.wordHighlightBorder": null,
//"editor.wordHighlightStrongBorder": null,
//"editor.wordHighlightTextBorder": 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,
//"editorGroupHeader.tabsBorder": null,
//"editorHint.border": null,
//"editorInfo.background": null,
//"editorInfo.border": null,
//"editorLineNumber.dimmedForeground": null,
//"editorMultiCursor.primary.background": null,
//"editorMultiCursor.secondary.background": 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,
//"gitlens.decorations.branchUpToDateForegroundColor": null,
//"inputValidation.errorForeground": null,
//"inputValidation.infoForeground": null,
//"inputValidation.warningForeground": null,
//"list.activeSelectionIconForeground": null,
//"list.filterMatchBorder": null,
//"list.focusAndSelectionOutline": null,
//"list.focusForeground": null,
//"list.hoverForeground": null,
//"list.inactiveFocusBackground": null,
//"list.inactiveFocusOutline": null,
//"list.inactiveSelectionForeground": null,
//"list.inactiveSelectionIconForeground": null,
//"menu.border": null,
//"menu.selectionBorder": null,
//"menubar.selectionBorder": null,
//"merge.border": null,
//"minimap.background": null,
//"multiDiffEditor.background": null,
//"notebook.cellHoverBackground": null,
//"notebook.focusedCellBackground": null,
//"notebook.inactiveSelectedCellBorder": null,
//"notebook.outputContainerBackgroundColor": null,
//"notebook.outputContainerBorderColor": null,
//"notificationCenter.border": null,
//"notificationCenterHeader.foreground": null,
//"notificationToast.border": null,
//"outputView.background": null,
//"outputViewStickyScroll.background": null,
//"panelSectionHeader.border": null,
//"panelSectionHeader.foreground": null,
//"panelStickyScroll.border": null,
//"peekViewEditor.matchHighlightBorder": null,
//"quickInput.list.focusBackground": null,
//"quickInputList.focusIconForeground": null,
//"searchEditor.findMatchBorder": null,
//"sideBar.border": null,
//"sideBar.foreground": null,
//"sideBarSectionHeader.foreground": null,
//"sideBarStickyScroll.border": null,
//"statusBar.border": null,
//"statusBar.debuggingBorder": null,
//"statusBar.noFolderBorder": null,
//"tab.activeBorder": null,
//"tab.hoverBackground": null,
//"tab.hoverBorder": null,
//"tab.hoverForeground": null,
//"tab.unfocusedActiveBorder": null,
//"tab.unfocusedHoverBackground": null,
//"tab.unfocusedHoverBorder": null,
//"tab.unfocusedHoverForeground": null,
//"terminal.findMatchBorder": null,
//"terminal.findMatchHighlightBorder": null,
//"terminal.selectionForeground": null,
//"terminal.tab.activeBorder": null,
//"terminalCursor.background": null,
//"terminalCursor.foreground": null,
//"terminalStickyScroll.background": null,
//"terminalStickyScroll.border": null,
//"testing.message.info.lineBackground": null,
//"titleBar.border": null,
//"toolbar.hoverOutline": null,
//"welcomePage.background": null,
//"widget.border": null,
//"window.activeBorder": null,
//"window.inactiveBorder": null
},
"tokenColors": [
{
"scope": ["emphasis"],
"settings": {
"fontStyle": "italic"
}
},
{
"scope": ["strong"],
"settings": {
"fontStyle": "bold"
}
},
{
"scope": ["header"],
"settings": {
"foreground": "#BD93F9"
}
},
{
"scope": ["meta.diff", "meta.diff.header"],
"settings": {
"foreground": "#6272A4"
}
},
{
"scope": ["markup.inserted"],
"settings": {
"foreground": "#50FA7B"
}
},
{
"scope": ["markup.deleted"],
"settings": {
"foreground": "#FF5555"
}
},
{
"scope": ["markup.changed"],
"settings": {
"foreground": "#FFB86C"
}
},
{
"scope": ["invalid"],
"settings": {
"foreground": "#FF5555",
"fontStyle": "underline italic"
}
},
{
"scope": ["invalid.deprecated"],
"settings": {
"foreground": "#F8F8F2",
"fontStyle": "underline italic"
}
},
{
"scope": ["entity.name.filename"],
"settings": {
"foreground": "#F1FA8C"
}
},
{
"scope": ["markup.error"],
"settings": {
"foreground": "#FF5555"
}
},
{
"scope": ["markup.underline"],
"settings": {
"fontStyle": "underline"
}
},
{
"scope": ["markup.bold"],
"settings": {
"foreground": "#FFB86C",
"fontStyle": "bold"
}
},
{
"scope": ["markup.heading"],
"settings": {
"foreground": "#BD93F9",
"fontStyle": "bold"
}
},
{
"scope": ["markup.italic"],
"settings": {
"foreground": "#F1FA8C",
"fontStyle": "italic"
}
},
{
"scope": [
"beginning.punctuation.definition.list.markdown",
"beginning.punctuation.definition.quote.markdown",
"punctuation.definition.link.restructuredtext"
],
"settings": {
"foreground": "#8BE9FD"
}
},
{
"scope": ["markup.inline.raw", "markup.raw.restructuredtext"],
"settings": {
"foreground": "#50FA7B"
}
},
{
"scope": ["markup.underline.link", "markup.underline.link.image"],
"settings": {
"foreground": "#8BE9FD"
}
},
{
"scope": [
"meta.link.reference.def.restructuredtext",
"punctuation.definition.directive.restructuredtext",
"string.other.link.description",
"string.other.link.title"
],
"settings": {
"foreground": "#FF79C6"
}
},
{
"scope": ["entity.name.directive.restructuredtext", "markup.quote"],
"settings": {
"foreground": "#F1FA8C",
"fontStyle": "italic"