-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
1060 lines (1060 loc) · 44.7 KB
/
settings.json
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": "light",
"colors": {
"activityBar.activeBackground": "#d4edfa",
"activityBar.activeBorder": "#72cdf2",
"activityBar.background": "#ffffff",
"activityBar.dropBorder": "#72cdf2",
"activityBar.foreground": "#972fff",
"activityBar.inactiveForeground": "#b367fb",
"activityBarBadge.background": "#72a6fc",
"activityBarBadge.foreground": "#ffffff",
"badge.background": "#72a6fc",
"badge.foreground": "#ffffff",
"breadcrumb.activeSelectionForeground": "#972fff",
"breadcrumb.focusForeground": "#972fff",
"breadcrumb.foreground": "#972fff",
"button.background": "#72cdf2",
"button.foreground": "#ffffff",
"button.hoverBackground": "#00beef",
"button.secondaryBackground": "#72a6fc",
"button.secondaryForeground": "#ffffff",
"button.secondaryHoverBackground": "#008fff",
"descriptionForeground": "#00beef",
"diffEditor.border": "#e5c8fb",
"diffEditor.diagonalFill": "#e5c8fb",
"diffEditor.insertedTextBackground": "#d4edff6e",
"diffEditor.removedTextBackground": "#e0c5f2a0",
"dropdown.background": "#f4e8fd",
"dropdown.border": "#a7dcf5",
"dropdown.foreground": "#972fff",
"editor.background": "#ffffff",
"editor.findMatchBackground": "#eac6fb",
"editor.findMatchBorder": "#c15dfb",
"editor.findRangeHighlightBorder": "#72cef2a1",
"editor.foldBackground": "#f4e8fd00",
"editor.foreground": "#972fff",
"editor.lineHighlightBackground": "#f4e8fd",
"editor.selectionBackground": "#d4edfa",
"editor.selectionHighlightBackground": "#d4edfab2",
"editor.wordHighlightBackground": "#d4edfab2",
"editor.wordHighlightStrongBackground": "#d4edfab2",
"editor.wordHighlightStrongBorder": "#72cdf2",
"editorBracketHighlight.foreground1": "#008fff",
"editorBracketHighlight.foreground2": "#00afff",
"editorBracketHighlight.foreground3": "#aa00ff",
"editorBracketHighlight.foreground4": "#9300ff",
"editorBracketHighlight.foreground5": "#8a2be2",
"editorBracketHighlight.foreground6": "#8866ff",
"editorBracketMatch.background": "#d4edfa",
"editorBracketMatch.border": "#72cdf2",
"editorCursor.background": "#ffffff",
"editorCursor.foreground": "#972fff",
"editorGroup.border": "#e5c8fb",
"editorGroup.dropBackground": "#e5c8fb",
"editorGroupHeader.tabsBackground": "#f4e8fd",
"editorGutter.addedBackground": "#a7dcf5",
"editorGutter.deletedBackground": "#c392ea",
"editorGutter.foldingControlForeground": "#72a6fc",
"editorGutter.modifiedBackground": "#c5acfb",
"editorHoverWidget.statusBarBackground": "#f4e8fd",
"editorIndentGuide.activeBackground1": "#cd97f9",
"editorIndentGuide.background1": "#e5c8fb",
"editorLightBulb.foreground": "#8866ff",
"editorLightBulbAutoFix.foreground": "#aa00ff",
"editorLineNumber.activeForeground": "#b367fb",
"editorLineNumber.foreground": "#cd97f9",
"editorLink.activeForeground": "#72cdf2",
"editorOverviewRuler.border": "#e5c8fb",
"editorOverviewRuler.bracketMatchForeground": "#d4edfa",
"editorOverviewRuler.errorForeground": "#a861e5",
"editorOverviewRuler.findMatchForeground": "#c15dfbb2",
"editorOverviewRuler.infoForeground": "#72a6fc",
"editorOverviewRuler.rangeHighlightForeground": "#c15dfbb2",
"editorOverviewRuler.selectionHighlightForeground": "#72cdf2b2",
"editorOverviewRuler.warningForeground": "#a888fc",
"editorOverviewRuler.wordHighlightForeground": "#72cdf2b2",
"editorOverviewRuler.wordHighlightStrongForeground": "#00beefb2",
"editorRuler.foreground": "#e5c8fb",
"editorSuggestWidget.border": "#cd97f9",
"editorUnicodeHighlight.border": "#ff00aa",
"editorWhitespace.foreground": "#e5c8fb",
"editorWidget.background": "#f4e8fd",
"editorWidget.border": "#e5c8fb",
"errorForeground": "#8a2be2",
"extensionBadge.remoteBackground": "#72cdf2",
"extensionBadge.remoteForeground": "#ffffff",
"extensionButton.prominentBackground": "#72cdf2",
"extensionButton.prominentForeground": "#ffffff",
"extensionButton.prominentHoverBackground": "#00beef",
"extensionIcon.preReleaseForeground": "#00beefb2",
"extensionIcon.starForeground": "#008fffb2",
"extensionIcon.verifiedForeground": "#00beefb2",
"focusBorder": "#72cdf2",
"foreground": "#972fff",
"gitDecoration.addedResourceForeground": "#ff00ff",
"gitDecoration.conflictingResourceForeground": "#8a2be2",
"gitDecoration.deletedResourceForeground": "#a861e5",
"gitDecoration.ignoredResourceForeground": "#cd97f9",
"gitDecoration.modifiedResourceForeground": "#8866ff",
"gitDecoration.renamedResourceForeground": "#ff00ff",
"gitDecoration.stageDeletedResourceForeground": "#a861e5",
"gitDecoration.stageModifiedResourceForeground": "#a888fc",
"gitDecoration.submoduleResourceForeground": "#008fff",
"gitDecoration.untrackedResourceForeground": "#b367fb",
"icon.foreground": "#972fff",
"input.background": "#ffffff",
"input.border": "#a7dcf5",
"input.foreground": "#972fff",
"input.placeholderForeground": "#b367fb",
"inputOption.activeBackground": "#72cdf2",
"inputOption.activeForeground": "#ffffff",
"inputValidation.errorBackground": "#e0c5f2",
"inputValidation.errorBorder": "#a861e5",
"inputValidation.infoBackground": "#d3defc",
"inputValidation.infoBorder": "#72a6fc",
"inputValidation.warningBackground": "#e1d3fc",
"inputValidation.warningBorder": "#a888fc",
"keybindingLabel.background": "#d4edfa",
"keybindingLabel.foreground": "#972fff",
"keybindingTable.headerBackground": "#e5c8fb",
"keybindingTable.rowsBackground": "#f4e8fd",
"list.activeSelectionBackground": "#d4edfa",
"list.activeSelectionForeground": "#972fff",
"list.dropBackground": "#e5c8fb",
"list.errorForeground": "#8a2be2",
"list.focusHighlightForeground": "#00beef",
"list.highlightForeground": "#00beef",
"list.hoverBackground": "#e5c8fb",
"list.inactiveSelectionBackground": "#e5c8fb",
"list.warningForeground": "#8866ff",
"minimap.errorHighlight": "#e0c5f2",
"minimap.selectionHighlight": "#d4edfab2",
"minimap.selectionOccurrenceHighlight": "#d4edfab2",
"minimap.warningHighlight": "#e1d3fc",
"minimapGutter.addedBackground": "#72cdf2",
"minimapGutter.deletedBackground": "#a861e5",
"minimapGutter.modifiedBackground": "#a888fc",
"notificationCenterHeader.background": "#d4edfa",
"notificationLink.foreground": "#00beef",
"notifications.background": "#f4e8fd",
"notificationsErrorIcon.foreground": "#8a2be2",
"notificationsInfoIcon.foreground": "#008fff",
"notificationsWarningIcon.foreground": "#8866ff",
"panel.dropBorder": "#72cdf2",
"panelTitle.activeBorder": "#a7dcf5",
"panelTitle.inactiveForeground": "#b367fb",
"peekView.border": "#cd97f9",
"peekViewEditor.background": "#f4e8fd",
"peekViewEditor.matchHighlightBackground": "#eac6fb",
"peekViewEditor.matchHighlightBorder": "#c15dfb",
"pickerGroup.border": "#e5c8fb",
"pickerGroup.foreground": "#00beef",
"ports.iconRunningProcessForeground": "#aa00ff",
"progressBar.background": "#72a6fc",
"quickInput.background": "#f4e8fd",
"quickInputList.focusBackground": "#e5c8fb",
"quickInputTitle.background": "#d4edfa",
"sash.hoverBorder": "#e5c8fb",
"scrollbarSlider.activeBackground": "#e5c8fb",
"scrollbarSlider.background": "#e5c8fb",
"scrollbarSlider.hoverBackground": "#cd97f9",
"searchEditor.findMatchBorder": "#ff00ff",
"selection.background": "#d4edfa",
"settings.focusedRowBackground": "#f4e8fd",
"settings.focusedRowBorder": "#72cdf2",
"settings.headerForeground": "#972fff",
"settings.modifiedItemIndicator": "#72cdf2",
"settings.rowHoverBackground": "#f4e8fd",
"sideBar.background": "#f4e8fd",
"sideBar.dropBackground": "#ff00aa",
"sideBarSectionHeader.background": "#ffffff",
"sideBarSectionHeader.border": "#e5c8fb",
"sideBarTitle.foreground": "#972fff",
"statusBar.background": "#72cdf2",
"statusBar.debuggingBackground": "#b159fb",
"statusBar.foreground": "#ffffff",
"statusBarItem.activeBackground": "#00000000",
"statusBarItem.errorBackground": "#8a2be2",
"statusBarItem.errorForeground": "#ffffff",
"statusBarItem.hoverBackground": "#972fff30",
"statusBarItem.remoteBackground": "#b159fb",
"statusBarItem.remoteForeground": "#ffffff",
"statusBarItem.warningBackground": "#8866ff",
"statusBarItem.warningForeground": "#ffffff",
"tab.activeBackground": "#ffffff",
"tab.activeForeground": "#972fff",
"tab.inactiveBackground": "#f4e8fd",
"tab.lastPinnedBorder": "#e5c8fb",
"tab.unfocusedActiveForeground": "#972fff",
"tab.unfocusedInactiveForeground": "#972fff",
"terminal.ansiBlack": "#ffffff",
"terminal.ansiBlue": "#008fff",
"terminal.ansiBrightBlack": "#e5c8fb",
"terminal.ansiBrightBlue": "#007bff",
"terminal.ansiBrightCyan": "#009fff",
"terminal.ansiBrightGreen": "#00b0ed",
"terminal.ansiBrightMagenta": "#8e00ff",
"terminal.ansiBrightRed": "#6500df",
"terminal.ansiBrightWhite": "#972fff",
"terminal.ansiBrightYellow": "#5f45ff",
"terminal.ansiCyan": "#00afff",
"terminal.ansiGreen": "#00beef",
"terminal.ansiMagenta": "#aa00ff",
"terminal.ansiRed": "#8a2be2",
"terminal.ansiWhite": "#b367fb",
"terminal.ansiYellow": "#8866ff",
"terminal.background": "#ffffff",
"terminal.border": "#e5c8fb",
"terminal.foreground": "#972fff",
"terminal.selectionBackground": "#72cdf2",
"terminal.selectionForeground": "#ffffff",
"textCodeBlock.background": "#e5c8fb",
"textLink.activeForeground": "#72cdf2",
"textLink.foreground": "#00beef",
"textPreformat.foreground": "#00afff",
"toolbar.hoverBackground": "#e5c8fb",
"tree.indentGuidesStroke": "#b367fb",
"tree.tableColumnsBorder": "#e5c8fb",
"actionBar.toggledBackground": "#72cdf2",
"activityBarTop.activeBorder": "#e7e7e7",
"activityBarTop.dropBorder": "#e7e7e7",
"activityBarTop.foreground": "#e7e7e7",
"activityBarTop.inactiveForeground": "#e7e7e799",
"banner.background": "#d4edfa",
"banner.foreground": "#972fff",
"banner.iconForeground": "#3794ff",
"breadcrumb.background": "#ffffff",
"breadcrumbPicker.background": "#f4e8fd",
"button.separator": "#ffffff66",
"charts.blue": "#3794ff",
"charts.foreground": "#972fff",
//"charts.green": "#89d185",
//"charts.lines": "#972fff80",
//"charts.orange": "#d18616",
"charts.purple": "#b180d7",
//"charts.red": "#f14c4c",
//"charts.yellow": "#cca700",
//"chat.avatarBackground": "#1f1f1f",
//"chat.avatarForeground": "#972fff",
//"chat.requestBorder": "#ffffff1a",
//"chat.slashCommandBackground": "#34414b",
//"chat.slashCommandForeground": "#40a6ff",
//"checkbox.background": "#f4e8fd",
//"checkbox.border": "#a7dcf5",
//"checkbox.foreground": "#972fff",
//"checkbox.selectBackground": "#f4e8fd",
//"checkbox.selectBorder": "#972fff",
//"commandCenter.activeBackground": "#ffffff14",
//"commandCenter.activeBorder": "#cccccc4d",
//"commandCenter.activeForeground": "#cccccc",
//"commandCenter.background": "#ffffff0d",
//"commandCenter.border": "#cccccc33",
//"commandCenter.debuggingBackground": "#b159fb42",
//"commandCenter.foreground": "#cccccc",
//"commandCenter.inactiveBorder": "#cccccc26",
//"commandCenter.inactiveForeground": "#cccccc99",
//"commentsView.resolvedIcon": "#cccccc80",
//"commentsView.unresolvedIcon": "#72cdf2",
//"debugConsole.errorForeground": "#8a2be2",
//"debugConsole.infoForeground": "#3794ff",
//"debugConsole.sourceForeground": "#972fff",
//"debugConsole.warningForeground": "#cca700",
//"debugConsoleInputIcon.foreground": "#972fff",
//"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": "#ce917 8",
//"debugTokenExpression.value": "#cccccc99",
//"debugToolBar.background": "#333333",
//"debugView.exceptionLabelBackground": "#6c2022",
//"debugView.exceptionLabelForeground": "#972fff",
//"debugView.stateLabelBackground": "#88888844",
//"debugView.stateLabelForeground": "#972fff",
//"debugView.valueChangedHighlight": "#569cd6",
//"diffEditor.insertedLineBackground": "#9bb95533",
//"diffEditor.move.border": "#8b8b8b9c",
//"diffEditor.moveActive.border": "#ffa500",
//"diffEditor.removedLineBackground": "#ff000033",
//"diffEditor.unchangedCodeBackground": "#74747429",
//"diffEditor.unchangedRegionBackground": "#f4e8fd",
//"diffEditor.unchangedRegionForeground": "#972fff",
//"diffEditor.unchangedRegionShadow": "#000000",
//"disabledForeground": "#cccccc80",
//"editor.findMatchHighlightBackground": "#ea5c0055",
//"editor.findRangeHighlightBackground": "#3a3d4166",
//"editor.focusedStackFrameHighlightBackground": "#7abd7a4d",
//"editor.hoverHighlightBackground": "#264f7840",
//"editor.inactiveSelectionBackground": "#d4edfa80",
//"editor.inlineValuesBackground": "#ffc80033",
//"editor.inlineValuesForeground": "#ffffff80",
//"editor.lineHighlightBorder": "#282828",
//"editor.linkedEditingBackground": "#ff00004d",
//"editor.rangeHighlightBackground": "#ffffff0b",
//"editor.snippetFinalTabstopHighlightBorder": "#525252",
//"editor.snippetTabstopHighlightBackground": "#7c7c7c4d",
//"editor.stackFrameHighlightBackground": "#ffff0033",
//"editor.symbolHighlightBackground": "#ea5c0055",
//"editor.wordHighlightTextBackground": "#d4edfa",
//"editorActiveLineNumber.foreground": "#c6c6c6",
//"editorBracketHighlight.unexpectedBracket.foreground": "#ff1212cc",
//"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": "#72cdf21a",
//"editorCommentsWidget.rangeBackground": "#72cdf21a",
//"editorCommentsWidget.replyInputBackground": "#252526",
//"editorCommentsWidget.resolvedBorder": "#cccccc80",
//"editorCommentsWidget.unresolvedBorder": "#72cdf2",
//"editorError.foreground": "#f14c4c",
//"editorGhostText.foreground": "#ffffff56",
//"editorGroup.dropIntoPromptBackground": "#f4e8fd",
//"editorGroup.dropIntoPromptForeground": "#972fff",
//"editorGroupHeader.noTabsBackground": "#ffffff",
//"editorGutter.background": "#ffffff",
//"editorGutter.commentGlyphForeground": "#972fff",
//"editorGutter.commentRangeForeground": "#e5c8fb",
//"editorGutter.commentUnresolvedGlyphForeground": "#972fff",
//"editorHint.foreground": "#eeeeeeb3",
//"editorHoverWidget.background": "#f4e8fd",
//"editorHoverWidget.border": "#e5c8fb",
//"editorHoverWidget.foreground": "#972fff",
//"editorHoverWidget.highlightForeground": "#00beef",
//"editorIndentGuide.activeBackground1": "#cd97f9",
//"editorIndentGuide.activeBackground2": "#00000000",
//"editorIndentGuide.activeBackground3": "#00000000",
//"editorIndentGuide.activeBackground4": "#00000000",
//"editorIndentGuide.activeBackground5": "#00000000",
//"editorIndentGuide.activeBackground6": "#00000000",
//"editorIndentGuide.background1": "#e5c8fb",
//"editorIndentGuide.background2": "#00000000",
//"editorIndentGuide.background3": "#00000000",
//"editorIndentGuide.background4": "#00000000",
//"editorIndentGuide.background5": "#00000000",
//"editorIndentGuide.background6": "#00000000",
//"editorInfo.foreground": "#3794ff",
//"editorInlayHint.background": "#72a6fc1a",
//"editorInlayHint.foreground": "#969696",
//"editorInlayHint.parameterBackground": "#72a6fc1a",
//"editorInlayHint.parameterForeground": "#969696",
//"editorInlayHint.typeBackground": "#72a6fc1a",
//"editorInlayHint.typeForeground": "#969696",
//"editorLightBulbAi.foreground": "#8866ff",
//"editorMarkerNavigation.background": "#ffffff",
//"editorMarkerNavigationError.background": "#f14c4c",
//"editorMarkerNavigationError.headerBackground": "#f14c4c1a",
//"editorMarkerNavigationInfo.background": "#3794ff",
//"editorMarkerNavigationInfo.headerBackground": "#3794ff1a",
//"editorMarkerNavigationWarning.background": "#cca700",
//"editorMarkerNavigationWarning.headerBackground": "#cca7001a",
//"editorOverviewRuler.addedForeground": "#a7dcf599",
//"editorOverviewRuler.commentForeground": "#e5c8fb",
//"editorOverviewRuler.commentUnresolvedForeground": "#e5c8fb",
//"editorOverviewRuler.commonContentForeground": "#60606066",
//"editorOverviewRuler.currentContentForeground": "#40c8ae80",
//"editorOverviewRuler.deletedForeground": "#c392ea99",
//"editorOverviewRuler.incomingContentForeground": "#40a6ff80",
//"editorOverviewRuler.inlineChatInserted": "#d4edfa99",
//"editorOverviewRuler.inlineChatRemoved": "#e0c5f299",
//"editorOverviewRuler.modifiedForeground": "#c5acfb99",
//"editorOverviewRuler.wordHighlightTextForeground": "#72cdf2",
//"editorPane.background": "#ffffff",
//"editorStickyScroll.background": "#ffffff",
//"editorStickyScroll.shadow": "#000000",
//"editorStickyScrollHover.background": "#2a2d2e",
//"editorSuggestWidget.background": "#f4e8fd",
//"editorSuggestWidget.focusHighlightForeground": "#00beef",
//"editorSuggestWidget.foreground": "#972fff",
//"editorSuggestWidget.highlightForeground": "#00beef",
//"editorSuggestWidget.selectedBackground": "#e5c8fb",
//"editorSuggestWidget.selectedForeground": "#972fff",
//"editorSuggestWidgetStatus.foreground": "#972fff80",
//"editorUnnecessaryCode.opacity": "#000000aa",
//"editorWarning.foreground": "#cca700",
//"editorWatermark.foreground": "#972fff99",
//"editorWidget.foreground": "#972fff",
//"extensionButton.background": "#72cdf2",
//"extensionButton.foreground": "#ffffff",
//"extensionButton.hoverBackground": "#00beef",
//"extensionButton.separator": "#ffffff66",
//"extensionIcon.sponsorForeground": "#d758b3",
//"gitlens.closedAutolinkedIssueIconColor": "#a371f7",
//"gitlens.closedPullRequestIconColor": "#f85149",
//"gitlens.decorations.addedForegroundColor": "#ff0000",
//"gitlens.decorations.branchAheadForegroundColor": "#35b15e",
//"gitlens.decorations.branchBehindForegroundColor": "#b15e35",
//"gitlens.decorations.branchDivergedForegroundColor": "#d8af1b",
//"gitlens.decorations.branchMissingUpstreamForegroundColor": "#c74e39",
//"gitlens.decorations.branchUnpublishedForegroundColor": "#35b15e",
//"gitlens.decorations.copiedForegroundColor": "#ff0000",
//"gitlens.decorations.deletedForegroundColor": "#a861e5",
//"gitlens.decorations.ignoredForegroundColor": "#cd97f9",
//"gitlens.decorations.modifiedForegroundColor": "#8866ff",
//"gitlens.decorations.renamedForegroundColor": "#ff0000",
//"gitlens.decorations.statusMergingOrRebasingConflictForegroundColor": "#c74e39",
//"gitlens.decorations.statusMergingOrRebasingForegroundColor": "#d8af1b",
//"gitlens.decorations.untrackedForegroundColor": "#b367fb",
//"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.graphMinimapMarkerRemoteBranchesColor": "#2b5e88",
//"gitlens.graphMinimapMarkerStashesColor": "#b34db3",
//"gitlens.graphMinimapMarkerTagsColor": "#6b562e",
//"gitlens.graphMinimapMarkerUpstreamColor": "#09ae17",
//"gitlens.graphScrollMarkerHeadColor": "#05e617",
//"gitlens.graphScrollMarkerHighlightsColor": "#fbff0a",
//"gitlens.graphScrollMarkerLocalBranchesColor": "#3087cf",
//"gitlens.graphScrollMarkerRemoteBranchesColor": "#2b5e88",
//"gitlens.graphScrollMarkerStashesColor": "#b34db3",
//"gitlens.graphScrollMarkerTagsColor": "#6b562e",
//"gitlens.graphScrollMarkerUpstreamColor": "#09ae17",
//"gitlens.gutterBackgroundColor": "#ffffff13",
//"gitlens.gutterForegroundColor": "#bebebe",
//"gitlens.gutterUncommittedForegroundColor": "#00bcf299",
//"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",
//"inlineChat.background": "#f4e8fd",
//"inlineChat.border": "#e5c8fb",
//"inlineChat.regionHighlight": "#264f7840",
//"inlineChat.shadow": "#0000005c",
//"inlineChatDiff.inserted": "#d4edfa80",
//"inlineChatDiff.removed": "#e0c5f280",
//"inlineChatInput.background": "#ffffff",
//"inlineChatInput.border": "#e5c8fb",
//"inlineChatInput.focusBorder": "#72cdf2",
//"inlineChatInput.placeholderForeground": "#b367fb",
//"inputOption.activeBorder": "#007acc",
//"inputOption.hoverBackground": "#5a5d5e80",
//"interactive.activeCodeBorder": "#cd97f9",
//"interactive.inactiveCodeBorder": "#e5c8fb",
//"issues.closed": "#cb2431",
//"issues.newIssueDecoration": "#ffffff48",
//"issues.open": "#3fb950",
//"keybindingLabel.border": "#33333399",
//"keybindingLabel.bottomBorder": "#44444499",
//"list.deemphasizedForeground": "#8c8c8c",
//"list.dropBetweenBackground": "#972fff",
//"list.filterMatchBackground": "#ea5c0055",
//"list.focusOutline": "#72cdf2",
//"list.invalidItemForeground": "#b89500",
//"listFilterWidget.background": "#f4e8fd",
//"listFilterWidget.noMatchesOutline": "#be1100",
//"listFilterWidget.outline": "#00000000",
//"listFilterWidget.shadow": "#0000005c",
//"menu.background": "#f4e8fd",
//"menu.foreground": "#972fff",
//"menu.selectionBackground": "#d4edfa",
//"menu.selectionForeground": "#972fff",
//"menu.separatorBackground": "#606060",
//"menubar.selectionBackground": "#e5c8fb",
//"menubar.selectionForeground": "#cccccc",
//"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.findMatchHighlight": "#d18616",
//"minimap.foregroundOpacity": "#000000",
//"minimap.infoHighlight": "#3794ff",
//"minimapSlider.activeBackground": "#e5c8fb80",
//"minimapSlider.background": "#e5c8fb80",
//"minimapSlider.hoverBackground": "#cd97f980",
//"multiDiffEditor.background": "#000000",
//"multiDiffEditor.border": "#e5c8fb",
//"multiDiffEditor.headerBackground": "#808080",
//"notebook.cellBorderColor": "#e5c8fb",
//"notebook.cellEditorBackground": "#f4e8fd",
//"notebook.cellInsertionIndicator": "#72cdf2",
//"notebook.cellStatusBarItemHoverBackground": "#ffffff26",
//"notebook.cellToolbarSeparator": "#80808059",
//"notebook.editorBackground": "#ffffff",
//"notebook.focusedCellBorder": "#72cdf2",
//"notebook.focusedEditorBorder": "#72cdf2",
//"notebook.inactiveFocusedCellBorder": "#e5c8fb",
//"notebook.selectedCellBackground": "#e5c8fb",
//"notebook.selectedCellBorder": "#e5c8fb",
//"notebook.symbolHighlightBackground": "#ffffff0b",
//"notebookEditorOverviewRuler.runningCellForeground": "#89d185",
//"notebookScrollbarSlider.activeBackground": "#e5c8fb",
//"notebookScrollbarSlider.background": "#e5c8fb",
//"notebookScrollbarSlider.hoverBackground": "#cd97f9",
//"notebookStatusErrorIcon.foreground": "#8a2be2",
//"notebookStatusRunningIcon.foreground": "#972fff",
//"notebookStatusSuccessIcon.foreground": "#89d185",
//"notifications.border": "#d4edfa",
//"notifications.foreground": "#972fff",
//"panel.background": "#ffffff",
//"panel.border": "#80808059",
//"panelInput.border": "#a7dcf5",
//"panelSection.border": "#80808059",
//"panelSection.dropBackground": "#e5c8fb",
//"panelSectionHeader.background": "#80808033",
//"panelTitle.activeForeground": "#e7e7e7",
//"peekViewEditorGutter.background": "#f4e8fd",
//"peekViewEditorStickyScroll.background": "#f4e8fd",
//"peekViewResult.background": "#252526",
//"peekViewResult.fileForeground": "#ffffff",
//"peekViewResult.lineForeground": "#bbbbbb",
//"peekViewResult.matchHighlightBackground": "#ea5c004d",
//"peekViewResult.selectionBackground": "#3399ff33",
//"peekViewResult.selectionForeground": "#ffffff",
//"peekViewTitle.background": "#252526",
//"peekViewTitleDescription.foreground": "#ccccccb3",
//"peekViewTitleLabel.foreground": "#ffffff",
//"problemsErrorIcon.foreground": "#f14c4c",
//"problemsInfoIcon.foreground": "#3794ff",
//"problemsWarningIcon.foreground": "#cca700",
//"profileBadge.background": "#4d4d4d",
//"profileBadge.foreground": "#ffffff",
//"pullRequests.closed": "#cb2431",
//"pullRequests.draft": "#6e7681",
//"pullRequests.merged": "#8957e5",
//"pullRequests.notification": "#008fff",
//"pullRequests.open": "#3fb950",
//"quickInput.foreground": "#972fff",
//"quickInputList.focusForeground": "#972fff",
//"scm.historyItemAdditionsForeground": "#ff0000",
//"scm.historyItemDeletionsForeground": "#a861e5",
//"scm.historyItemSelectedStatisticsBorder": "#972fff33",
//"scm.historyItemStatisticsBorder": "#972fff33",
//"scrollbar.shadow": "#000000",
//"search.resultsInfoForeground": "#972fffa6",
//"searchEditor.findMatchBackground": "#ea5c0038",
//"searchEditor.textInputBorder": "#a7dcf5",
//"settings.checkboxBackground": "#f4e8fd",
//"settings.checkboxBorder": "#a7dcf5",
//"settings.checkboxForeground": "#972fff",
//"settings.dropdownBackground": "#f4e8fd",
//"settings.dropdownBorder": "#a7dcf5",
//"settings.dropdownForeground": "#972fff",
//"settings.dropdownListBorder": "#e5c8fb",
//"settings.headerBorder": "#80808059",
//"settings.numberInputBackground": "#ffffff",
//"settings.numberInputBorder": "#a7dcf5",
//"settings.numberInputForeground": "#972fff",
//"settings.sashBorder": "#80808059",
//"settings.settingsHeaderHoverForeground": "#972fffb3",
//"settings.textInputBackground": "#ffffff",
//"settings.textInputBorder": "#a7dcf5",
"settings.textInputForeground": "#00ccff",
//"sideBySideEditor.horizontalBorder": "#e5c8fb",
//"sideBySideEditor.verticalBorder": "#e5c8fb",
//"simpleFindWidget.sashBorder": "#454545",
//"statusBar.debuggingForeground": "#ffffff",
//"statusBar.focusBorder": "#ffffff",
//"statusBar.noFolderBackground": "#68217a",
//"statusBar.noFolderForeground": "#ffffff",
//"statusBarItem.compactHoverBackground": "#ffffff33",
//"statusBarItem.errorHoverBackground": "#972fff30",
//"statusBarItem.errorHoverForeground": "#ffffff",
//"statusBarItem.focusBorder": "#ffffff",
//"statusBarItem.hoverForeground": "#ffffff",
//"statusBarItem.offlineBackground": "#6c1717",
//"statusBarItem.offlineForeground": "#ffffff",
//"statusBarItem.offlineHoverBackground": "#972fff30",
//"statusBarItem.offlineHoverForeground": "#ffffff",
//"statusBarItem.prominentBackground": "#00000080",
//"statusBarItem.prominentForeground": "#ffffff",
//"statusBarItem.prominentHoverBackground": "#0000004d",
//"statusBarItem.prominentHoverForeground": "#ffffff",
//"statusBarItem.remoteHoverBackground": "#972fff30",
//"statusBarItem.remoteHoverForeground": "#ffffff",
//"statusBarItem.warningHoverBackground": "#972fff30",
//"statusBarItem.warningHoverForeground": "#ffffff",
//"symbolIcon.arrayForeground": "#972fff",
//"symbolIcon.booleanForeground": "#972fff",
//"symbolIcon.classForeground": "#ee9d28",
//"symbolIcon.colorForeground": "#972fff",
//"symbolIcon.constantForeground": "#972fff",
//"symbolIcon.constructorForeground": "#b180d7",
//"symbolIcon.enumeratorForeground": "#ee9d28",
//"symbolIcon.enumeratorMemberForeground": "#75beff",
//"symbolIcon.eventForeground": "#ee9d28",
//"symbolIcon.fieldForeground": "#75beff",
//"symbolIcon.fileForeground": "#972fff",
//"symbolIcon.folderForeground": "#972fff",
//"symbolIcon.functionForeground": "#b180d7",
//"symbolIcon.interfaceForeground": "#75beff",
//"symbolIcon.keyForeground": "#972fff",
//"symbolIcon.keywordForeground": "#972fff",
//"symbolIcon.methodForeground": "#b180d7",
//"symbolIcon.moduleForeground": "#972fff",
//"symbolIcon.namespaceForeground": "#972fff",
//"symbolIcon.nullForeground": "#972fff",
//"symbolIcon.numberForeground": "#972fff",
//"symbolIcon.objectForeground": "#972fff",
//"symbolIcon.operatorForeground": "#972fff",
//"symbolIcon.packageForeground": "#972fff",
//"symbolIcon.propertyForeground": "#972fff",
//"symbolIcon.referenceForeground": "#972fff",
//"symbolIcon.snippetForeground": "#972fff",
//"symbolIcon.stringForeground": "#972fff",
//"symbolIcon.structForeground": "#972fff",
//"symbolIcon.textForeground": "#972fff",
//"symbolIcon.typeParameterForeground": "#972fff",
//"symbolIcon.unitForeground": "#972fff",
//"symbolIcon.variableForeground": "#75beff",
//"tab.activeModifiedBorder": "#3399cc",
//"tab.border": "#252526",
//"tab.inactiveForeground": "#972fff80",
//"tab.inactiveModifiedBorder": "#3399cc80",
//"tab.unfocusedActiveBackground": "#ffffff",
//"tab.unfocusedActiveModifiedBorder": "#3399cc80",
//"tab.unfocusedInactiveBackground": "#f4e8fd",
//"tab.unfocusedInactiveModifiedBorder": "#3399cc40",
//"terminal.dropBackground": "#e5c8fb",
//"terminal.findMatchBackground": "#eac6fb",
//"terminal.findMatchHighlightBackground": "#ea5c0055",
//"terminal.hoverHighlightBackground": "#264f7820",
//"terminal.inactiveSelectionBackground": "#72cdf280",
//"terminalCommandDecoration.defaultBackground": "#ffffff40",
//"terminalCommandDecoration.errorBackground": "#f14c4c",
//"terminalCommandDecoration.successBackground": "#1b81a8",
//"terminalOverviewRuler.cursorForeground": "#a0a0a0cc",
//"terminalOverviewRuler.findMatchForeground": "#c15dfb",
//"terminalStickyScrollHover.background": "#2a2d2e",
//"testing.coverCountBadgeBackground": "#72a6fc",
//"testing.coverCountBadgeForeground": "#ffffff",
//"testing.coveredBackground": "#d4edfa",
//"testing.coveredBorder": "#d4edfabf",
//"testing.coveredGutterBackground": "#d4edfa99",
//"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": "#972fff80",
//"testing.messagePeekBorder": "#3794ff",
//"testing.messagePeekHeaderBackground": "#3794ff1a",
//"testing.peekBorder": "#f14c4c",
//"testing.peekHeaderBackground": "#f14c4c1a",
//"testing.runAction": "#73c991",
//"testing.uncoveredBackground": "#e0c5f2",
//"testing.uncoveredBorder": "#e0c5f2bf",
//"testing.uncoveredBranchBackground": "#e0c5f2",
//"testing.uncoveredGutterBackground": "#e0c5f2",
//"textBlockQuote.background": "#222222",
//"textBlockQuote.border": "#007acc80",
//"textPreformat.background": "#ffffff1a",
//"textSeparator.foreground": "#ffffff2e",
//"titleBar.activeBackground": "#3c3c3c",
"titleBar.activeForeground": "#ff00ff",
//"titleBar.inactiveBackground": "#3c3c3c99",
//"titleBar.inactiveForeground": "#cccccc99",
//"toolbar.activeBackground": "#f9f2fe",
//"tree.inactiveIndentGuidesStroke": "#b367fb66",
//"tree.tableOddRowsBackground": "#972fff0a",
//"walkThrough.embeddedEditorBackground": "#00000066",
//"walkthrough.stepTitle.foreground": "#ffffff",
//"welcomePage.progress.background": "#ffffff",
//"welcomePage.progress.foreground": "#00beef",
//"welcomePage.tileBackground": "#f4e8fd",
//"welcomePage.tileBorder": "#ffffff1a",
//"welcomePage.tileHoverBackground": "#ffffff",
//"widget.shadow": "#0000005c",
//"activityBar.activeFocusBorder": null,
//"activityBar.border": null,
//"button.border": null,
//"contrastActiveBorder": null,
//"contrastBorder": null,
//"debugToolBar.border": null,
//"diffEditor.insertedTextBorder": null,
//"diffEditor.removedTextBorder": null,
//"diffEditorGutter.insertedLineBackground": null,
//"diffEditorGutter.removedLineBackground": null,
//"diffEditorOverview.insertedForeground": null,
//"diffEditorOverview.removedForeground": null,
//"dropdown.listBackground": null,
//"editor.findMatchHighlightBorder": null,
//"editor.rangeHighlightBorder": null,
//"editor.selectionForeground": null,
//"editor.selectionHighlightBorder": null,
//"editor.snippetFinalTabstopHighlightBackground": null,
//"editor.snippetTabstopHighlightBorder": null,
//"editor.symbolHighlightBorder": null,
//"editor.wordHighlightBorder": null,
//"editor.wordHighlightTextBorder": 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,
//"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.focusBackground": 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,
//"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,
//"quickInput.list.focusBackground": null,
//"quickInputList.focusIconForeground": null,
//"sideBar.border": null,
//"sideBar.foreground": null,
//"sideBarSectionHeader.foreground": null,
//"statusBar.border": null,
//"statusBar.debuggingBorder": null,
//"statusBar.noFolderBorder": null,
//"tab.activeBorder": null,
//"tab.activeBorderTop": null,
//"tab.hoverBackground": null,
//"tab.hoverBorder": null,
//"tab.hoverForeground": null,
//"tab.unfocusedActiveBorder": null,
//"tab.unfocusedActiveBorderTop": null,
//"tab.unfocusedHoverBackground": null,
//"tab.unfocusedHoverBorder": null,
//"tab.unfocusedHoverForeground": null,
//"terminal.findMatchBorder": null,
//"terminal.findMatchHighlightBorder": null,
//"terminal.tab.activeBorder": null,
"terminalCursor.background": "#ff00aa",
"terminalCursor.foreground": "#00ccff"
//"terminalStickyScroll.background": 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": [
"constant.language.undefined",
"keyword",
"storage.modifier",
"variable.language.this",
"variable.language.super",
"storage.type.function.js",
"storage.type.function.ts",
"storage.type.class.js",
"storage.type.class.ts",
"storage.type.js",
"storage.type.ts",
"storage.type.type.ts",
"source.css support.function"
],
"settings": {
"foreground": "#008FFF"
}
},
{
"scope": ["constant.character.escape"],
"settings": {
"foreground": "#8866FF"
}
},
{
"scope": [
"keyword.operator",
"constant.character.escape",
"punctuation.definition.logical",
"punctuation.definition.quote",
"punctuation.definition.list",
"punctuation.definition.para",
"punctuation.definition.template-expression",
"punctuation.definition.attribute"
],
"settings": {
"foreground": "#008FFF"
}
},
{
"scope": [
"entity.name.type",
"punctuation.definition.group",
"support.type.primitive",
"storage.type"
],
"settings": {
"foreground": "#00BEEF"
}
},
{
"scope": ["storage.type.annotation", "variable.parameter"],
"settings": {
"foreground": "#8A2BE2"
}
},
{
"scope": [
"string",
"markup.quote",
"constant.other.reference",
"markup.underline.link"
],
"settings": {
"foreground": "#00AFFF"
}
},
{
"scope": ["comment", "meta.separator"],
"settings": {
"foreground": "#B367FB"
}
},
{
"scope": ["entity.name.function"],
"settings": {
"foreground": "#AA00FF"
}
},
{
"scope": [
"constant.numeric",
"constant.language.null",
"constant.language.boolean"
],
"settings": {
"foreground": "#9300FF"
}
},
{
"scope": ["variable", "meta.import variable.other.readwrite.alias"],
"settings": {
"foreground": "#972FFF"
}
},
{
"scope": [
"entity.name.tag",
"variable.other.property",
"variable.other.normal.shell",
"punctuation.definition.variable.shell",
"punctuation.definition.character-class",
"constant.other.character-class",
"entity.other.attribute-name",
"support.type.property-name",
"meta.import variable"
],
"settings": {
"foreground": "#AA00FF"
}
},
{
"scope": [
"variable.other.enummember",
"variable.other.constant",
"punctuation.definition.character-class"
],
"settings": {
"foreground": "#972FFF"
}
},
{
"scope": ["heading", "markup.bold"],
"settings": {
"foreground": "#00BEEF"
}
},
{
"scope": [
"markup.inline.raw",
"markup.italic",
"markup.bold",
"markup.strikethrough"
],
"settings": {
"foreground": "#008FFF"
}
},
{
"scope": ["string.other.link.title.markdown"],
"settings": {
"foreground": "#00BEEF"
}
},
{
"scope": ["heading"],
"settings": {
"fontStyle": "bold"
}
},
{
"scope": [
"entity.name.tag.html",
"entity.name.tag.css",
"entity.name.tag.script.html.vue",
"entity.name.tag.style.html.vue",
"entity.name.tag.template.html.vue"
],
"settings": {
"foreground": "#00BEEF"
}
},
{
"scope": [
"entity.other.attribute-name.id.css",
"entity.other.attribute-name.id.html",