forked from saffron-health/opencode-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlight.jsonc
More file actions
1441 lines (1441 loc) · 54.2 KB
/
light.jsonc
File metadata and controls
1441 lines (1441 loc) · 54.2 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": "light",
"colors": {
"actionBar.toggledBackground": "#dddddd",
"activityBar.activeBorder": "#005fb8",
"activityBar.background": "#f8f8f8",
"activityBar.border": "#e5e5e5",
"activityBar.foreground": "#1f1f1f",
"activityBar.inactiveForeground": "#616161",
"activityBarBadge.background": "#005fb8",
"activityBarBadge.foreground": "#ffffff",
"badge.background": "#cccccc",
"badge.foreground": "#3b3b3b",
"button.background": "#005fb8",
"button.border": "#0000001a",
"button.foreground": "#ffffff",
"button.hoverBackground": "#0258a8",
"button.secondaryBackground": "#e5e5e5",
"button.secondaryForeground": "#3b3b3b",
"button.secondaryHoverBackground": "#cccccc",
"chat.editedFileForeground": "#895503",
"chat.slashCommandBackground": "#d2ecff",
"chat.slashCommandForeground": "#306ca2",
"checkbox.background": "#f8f8f8",
"checkbox.border": "#cecece",
"descriptionForeground": "#3b3b3b",
"diffEditor.unchangedRegionBackground": "#f8f8f8",
"dropdown.background": "#ffffff",
"dropdown.border": "#cecece",
"dropdown.foreground": "#3b3b3b",
"dropdown.listBackground": "#ffffff",
"editor.background": "#ffffff",
"editor.foreground": "#3b3b3b",
"editor.inactiveSelectionBackground": "#e5ebf1",
"editor.selectionHighlightBackground": "#add6ff80",
"editorGroup.border": "#e5e5e5",
"editorGroupHeader.tabsBackground": "#f8f8f8",
"editorGroupHeader.tabsBorder": "#e5e5e5",
"editorGutter.addedBackground": "#2ea043",
"editorGutter.deletedBackground": "#f85149",
"editorGutter.modifiedBackground": "#005fb8",
"editorIndentGuide.activeBackground1": "#939393",
"editorIndentGuide.background1": "#d3d3d3",
"editorLineNumber.activeForeground": "#171184",
"editorLineNumber.foreground": "#6e7681",
"editorOverviewRuler.border": "#e5e5e5",
"editorSuggestWidget.background": "#f8f8f8",
"editorWidget.background": "#f8f8f8",
"errorForeground": "#f85149",
"focusBorder": "#005fb8",
"foreground": "#3b3b3b",
"icon.foreground": "#3b3b3b",
"input.background": "#ffffff",
"input.border": "#cecece",
"input.foreground": "#3b3b3b",
"input.placeholderForeground": "#767676",
"inputOption.activeBackground": "#bed6ed",
"inputOption.activeBorder": "#005fb8",
"inputOption.activeForeground": "#000000",
"keybindingLabel.foreground": "#3b3b3b",
"list.activeSelectionBackground": "#e8e8e8",
"list.activeSelectionForeground": "#000000",
"list.activeSelectionIconForeground": "#000000",
"list.focusAndSelectionOutline": "#005fb8",
"list.hoverBackground": "#f2f2f2",
"menu.border": "#cecece",
"menu.selectionBackground": "#005fb8",
"menu.selectionForeground": "#ffffff",
"notebook.cellBorderColor": "#e5e5e5",
"notebook.selectedCellBackground": "#c8ddf150",
"notificationCenterHeader.background": "#ffffff",
"notificationCenterHeader.foreground": "#3b3b3b",
"notifications.background": "#ffffff",
"notifications.border": "#e5e5e5",
"notifications.foreground": "#3b3b3b",
"panel.background": "#f8f8f8",
"panel.border": "#e5e5e5",
"panelInput.border": "#e5e5e5",
"panelTitle.activeBorder": "#005fb8",
"panelTitle.activeForeground": "#3b3b3b",
"panelTitle.inactiveForeground": "#3b3b3b",
"peekViewEditor.matchHighlightBackground": "#bb800966",
"peekViewResult.background": "#ffffff",
"peekViewResult.matchHighlightBackground": "#bb800966",
"pickerGroup.border": "#e5e5e5",
"pickerGroup.foreground": "#8b949e",
"ports.iconRunningProcessForeground": "#369432",
"progressBar.background": "#005fb8",
"quickInput.background": "#f8f8f8",
"quickInput.foreground": "#3b3b3b",
"searchEditor.textInputBorder": "#cecece",
"settings.dropdownBackground": "#ffffff",
"settings.dropdownBorder": "#cecece",
"settings.headerForeground": "#1f1f1f",
"settings.modifiedItemIndicator": "#bb800966",
"settings.numberInputBorder": "#cecece",
"settings.textInputBorder": "#cecece",
"sideBar.background": "#f8f8f8",
"sideBar.border": "#e5e5e5",
"sideBar.foreground": "#3b3b3b",
"sideBarSectionHeader.background": "#f8f8f8",
"sideBarSectionHeader.border": "#e5e5e5",
"sideBarSectionHeader.foreground": "#3b3b3b",
"sideBarTitle.foreground": "#3b3b3b",
"statusBar.background": "#f8f8f8",
"statusBar.border": "#e5e5e5",
"statusBar.debuggingBackground": "#fd716c",
"statusBar.debuggingForeground": "#000000",
"statusBar.focusBorder": "#005fb8",
"statusBar.foreground": "#3b3b3b",
"statusBar.noFolderBackground": "#f8f8f8",
"statusBarItem.compactHoverBackground": "#cccccc",
"statusBarItem.errorBackground": "#c72e0f",
"statusBarItem.focusBorder": "#005fb8",
"statusBarItem.hoverBackground": "#b8b8b850",
"statusBarItem.prominentBackground": "#6e768166",
"statusBarItem.remoteBackground": "#005fb8",
"statusBarItem.remoteForeground": "#ffffff",
"tab.activeBackground": "#ffffff",
"tab.activeBorder": "#f8f8f8",
"tab.activeBorderTop": "#005fb8",
"tab.activeForeground": "#3b3b3b",
"tab.border": "#e5e5e5",
"tab.hoverBackground": "#ffffff",
"tab.inactiveBackground": "#f8f8f8",
"tab.inactiveForeground": "#868686",
"tab.lastPinnedBorder": "#d4d4d4",
"tab.selectedBackground": "#ffffffa5",
"tab.selectedBorderTop": "#68a3da",
"tab.selectedForeground": "#333333b3",
"tab.unfocusedActiveBorder": "#f8f8f8",
"tab.unfocusedActiveBorderTop": "#e5e5e5",
"tab.unfocusedHoverBackground": "#f8f8f8",
"terminal.foreground": "#3b3b3b",
"terminal.inactiveSelectionBackground": "#e5ebf1",
"terminal.tab.activeBorder": "#005fb8",
"terminalCursor.foreground": "#005fb8",
"textBlockQuote.background": "#f8f8f8",
"textBlockQuote.border": "#e5e5e5",
"textCodeBlock.background": "#f8f8f8",
"textLink.activeForeground": "#005fb8",
"textLink.foreground": "#005fb8",
"textPreformat.background": "#0000001f",
"textPreformat.foreground": "#3b3b3b",
"textSeparator.foreground": "#21262d",
"titleBar.activeBackground": "#f8f8f8",
"titleBar.activeForeground": "#1e1e1e",
"titleBar.border": "#e5e5e5",
"titleBar.inactiveBackground": "#f8f8f8",
"titleBar.inactiveForeground": "#8b949e",
"welcomePage.tileBackground": "#f3f3f3",
"widget.border": "#e5e5e5"
//"activityBar.dropBorder": "#1f1f1f",
//"activityBarTop.activeBorder": "#424242",
//"activityBarTop.dropBorder": "#424242",
//"activityBarTop.foreground": "#424242",
//"activityBarTop.inactiveForeground": "#424242bf",
//"activityErrorBadge.background": "#e51400",
//"activityErrorBadge.foreground": "#ffffff",
//"activityWarningBadge.background": "#bf8803",
//"activityWarningBadge.foreground": "#ffffff",
//"banner.background": "#a2a2a2",
//"banner.foreground": "#000000",
//"banner.iconForeground": "#1a85ff",
//"breadcrumb.activeSelectionForeground": "#2f2f2f",
//"breadcrumb.background": "#ffffff",
//"breadcrumb.focusForeground": "#2f2f2f",
//"breadcrumb.foreground": "#3b3b3bcc",
//"breadcrumbPicker.background": "#f8f8f8",
//"button.separator": "#ffffff66",
//"chart.axis": "#00000099",
//"chart.guide": "#00000033",
//"chart.line": "#236b8e",
//"charts.blue": "#1a85ff",
//"charts.foreground": "#3b3b3b",
//"charts.green": "#388a34",
//"charts.lines": "#3b3b3b80",
//"charts.orange": "#d18616",
//"charts.purple": "#652d90",
//"charts.red": "#e51400",
//"charts.yellow": "#bf8803",
//"chat.avatarBackground": "#f2f2f2",
//"chat.avatarForeground": "#3b3b3b",
//"chat.requestBackground": "#ffffff9e",
//"chat.requestBorder": "#0000001a",
//"checkbox.foreground": "#3b3b3b",
//"checkbox.selectBackground": "#f8f8f8",
//"checkbox.selectBorder": "#3b3b3b",
//"commandCenter.activeBackground": "#00000014",
//"commandCenter.activeBorder": "#1e1e1e4d",
//"commandCenter.activeForeground": "#1e1e1e",
//"commandCenter.background": "#0000000d",
//"commandCenter.border": "#1e1e1e33",
//"commandCenter.debuggingBackground": "#fd716c42",
//"commandCenter.foreground": "#1e1e1e",
//"commandCenter.inactiveBorder": "#8b949e40",
//"commandCenter.inactiveForeground": "#8b949e",
//"commentsView.resolvedIcon": "#61616180",
//"commentsView.unresolvedIcon": "#005fb8",
//"debugConsole.errorForeground": "#f85149",
//"debugConsole.infoForeground": "#1a85ff",
//"debugConsole.sourceForeground": "#3b3b3b",
//"debugConsole.warningForeground": "#bf8803",
//"debugConsoleInputIcon.foreground": "#3b3b3b",
//"debugExceptionWidget.background": "#f1dfde",
//"debugExceptionWidget.border": "#a31515",
//"debugIcon.breakpointCurrentStackframeForeground": "#be8700",
//"debugIcon.breakpointDisabledForeground": "#848484",
//"debugIcon.breakpointForeground": "#e51400",
//"debugIcon.breakpointStackframeForeground": "#89d185",
//"debugIcon.breakpointUnverifiedForeground": "#848484",
//"debugIcon.continueForeground": "#007acc",
//"debugIcon.disconnectForeground": "#a1260d",
//"debugIcon.pauseForeground": "#007acc",
//"debugIcon.restartForeground": "#388a34",
//"debugIcon.startForeground": "#388a34",
//"debugIcon.stepBackForeground": "#007acc",
//"debugIcon.stepIntoForeground": "#007acc",
//"debugIcon.stepOutForeground": "#007acc",
//"debugIcon.stepOverForeground": "#007acc",
//"debugIcon.stopForeground": "#a1260d",
//"debugTokenExpression.boolean": "#0000ff",
//"debugTokenExpression.error": "#e51400",
//"debugTokenExpression.name": "#9b46b0",
//"debugTokenExpression.number": "#098658",
//"debugTokenExpression.string": "#a31515",
//"debugTokenExpression.type": "#4a90e2",
//"debugTokenExpression.value": "#6c6c6ccc",
//"debugToolBar.background": "#f3f3f3",
//"debugView.exceptionLabelBackground": "#a31515",
//"debugView.exceptionLabelForeground": "#ffffff",
//"debugView.stateLabelBackground": "#88888844",
//"debugView.stateLabelForeground": "#3b3b3b",
//"debugView.valueChangedHighlight": "#569cd6",
//"diffEditor.diagonalFill": "#22222233",
//"diffEditor.insertedLineBackground": "#9bb95533",
//"diffEditor.insertedTextBackground": "#9ccc2c40",
//"diffEditor.move.border": "#8b8b8b9c",
//"diffEditor.moveActive.border": "#ffa500",
//"diffEditor.removedLineBackground": "#ff000033",
//"diffEditor.removedTextBackground": "#ff000033",
//"diffEditor.unchangedCodeBackground": "#b8b8b829",
//"diffEditor.unchangedRegionForeground": "#3b3b3b",
//"diffEditor.unchangedRegionShadow": "#737373bf",
//"disabledForeground": "#61616180",
//"editor.compositionBorder": "#000000",
//"editor.findMatchBackground": "#a8ac94",
//"editor.findMatchHighlightBackground": "#ea5c0055",
//"editor.findRangeHighlightBackground": "#b4b4b44d",
//"editor.focusedStackFrameHighlightBackground": "#cee7ce73",
//"editor.foldBackground": "#add6ff4d",
//"editor.foldPlaceholderForeground": "#808080",
//"editor.hoverHighlightBackground": "#add6ff26",
//"editor.inlineValuesBackground": "#ffc80033",
//"editor.inlineValuesForeground": "#00000080",
//"editor.lineHighlightBorder": "#eeeeee",
//"editor.linkedEditingBackground": "#ff00004d",
//"editor.placeholder.foreground": "#00000077",
//"editor.rangeHighlightBackground": "#fdff0033",
//"editor.selectionBackground": "#add6ff",
//"editor.snippetFinalTabstopHighlightBorder": "#0a326480",
//"editor.snippetTabstopHighlightBackground": "#0a326433",
//"editor.stackFrameHighlightBackground": "#ffff6673",
//"editor.symbolHighlightBackground": "#ea5c0055",
//"editor.wordHighlightBackground": "#57575740",
//"editor.wordHighlightStrongBackground": "#0e639c40",
//"editor.wordHighlightTextBackground": "#57575740",
//"editorActionList.background": "#f8f8f8",
//"editorActionList.focusBackground": "#e8e8e8",
//"editorActionList.focusForeground": "#000000",
//"editorActionList.foreground": "#3b3b3b",
//"editorBracketHighlight.foreground1": "#0431fa",
//"editorBracketHighlight.foreground2": "#319331",
//"editorBracketHighlight.foreground3": "#7b3814",
//"editorBracketHighlight.foreground4": "#00000000",
//"editorBracketHighlight.foreground5": "#00000000",
//"editorBracketHighlight.foreground6": "#00000000",
//"editorBracketHighlight.unexpectedBracket.foreground": "#ff1212cc",
//"editorBracketMatch.background": "#0064001a",
//"editorBracketMatch.border": "#b9b9b9",
//"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": "#919191",
//"editorCommentsWidget.rangeActiveBackground": "#005fb81a",
//"editorCommentsWidget.rangeBackground": "#005fb81a",
//"editorCommentsWidget.replyInputBackground": "#f3f3f3",
//"editorCommentsWidget.resolvedBorder": "#61616180",
//"editorCommentsWidget.unresolvedBorder": "#005fb8",
//"editorCursor.foreground": "#000000",
//"editorError.foreground": "#e51400",
//"editorGhostText.foreground": "#00000077",
//"editorGroup.dropBackground": "#2677cb2e",
//"editorGroup.dropIntoPromptBackground": "#f8f8f8",
//"editorGroup.dropIntoPromptForeground": "#3b3b3b",
//"editorGroupHeader.noTabsBackground": "#ffffff",
//"editorGutter.background": "#ffffff",
//"editorGutter.commentGlyphForeground": "#3b3b3b",
//"editorGutter.commentRangeForeground": "#d5d8e9",
//"editorGutter.commentUnresolvedGlyphForeground": "#3b3b3b",
//"editorGutter.foldingControlForeground": "#3b3b3b",
//"editorGutter.itemBackground": "#d5d8e9",
//"editorGutter.itemGlyphForeground": "#3b3b3b",
//"editorHint.foreground": "#6c6c6c",
//"editorHoverWidget.background": "#f8f8f8",
//"editorHoverWidget.border": "#c8c8c8",
//"editorHoverWidget.foreground": "#3b3b3b",
//"editorHoverWidget.highlightForeground": "#0066bf",
//"editorHoverWidget.statusBarBackground": "#ececec",
//"editorIndentGuide.activeBackground2": "#00000000",
//"editorIndentGuide.activeBackground3": "#00000000",
//"editorIndentGuide.activeBackground4": "#00000000",
//"editorIndentGuide.activeBackground5": "#00000000",
//"editorIndentGuide.activeBackground6": "#00000000",
//"editorIndentGuide.background2": "#00000000",
//"editorIndentGuide.background3": "#00000000",
//"editorIndentGuide.background4": "#00000000",
//"editorIndentGuide.background5": "#00000000",
//"editorIndentGuide.background6": "#00000000",
//"editorInfo.foreground": "#1a85ff",
//"editorInlayHint.background": "#cccccc1a",
//"editorInlayHint.foreground": "#969696",
//"editorInlayHint.parameterBackground": "#cccccc1a",
//"editorInlayHint.parameterForeground": "#969696",
//"editorInlayHint.typeBackground": "#cccccc1a",
//"editorInlayHint.typeForeground": "#969696",
//"editorLightBulb.foreground": "#ddb100",
//"editorLightBulbAi.foreground": "#ddb100",
//"editorLightBulbAutoFix.foreground": "#007acc",
//"editorLink.activeForeground": "#0000ff",
//"editorMarkerNavigation.background": "#ffffff",
//"editorMarkerNavigationError.background": "#e51400",
//"editorMarkerNavigationError.headerBackground": "#e514001a",
//"editorMarkerNavigationInfo.background": "#1a85ff",
//"editorMarkerNavigationInfo.headerBackground": "#1a85ff1a",
//"editorMarkerNavigationWarning.background": "#bf8803",
//"editorMarkerNavigationWarning.headerBackground": "#bf88031a",
//"editorMinimap.inlineChatInserted": "#9ccc2c33",
//"editorMultiCursor.primary.foreground": "#000000",
//"editorMultiCursor.secondary.foreground": "#000000",
//"editorOverviewRuler.addedForeground": "#2ea04399",
//"editorOverviewRuler.bracketMatchForeground": "#a0a0a0",
//"editorOverviewRuler.commentForeground": "#d5d8e9",
//"editorOverviewRuler.commentUnresolvedForeground": "#d5d8e9",
//"editorOverviewRuler.commonContentForeground": "#60606066",
//"editorOverviewRuler.currentContentForeground": "#40c8ae80",
//"editorOverviewRuler.deletedForeground": "#f8514999",
//"editorOverviewRuler.errorForeground": "#ff1212b3",
//"editorOverviewRuler.findMatchForeground": "#d186167e",
//"editorOverviewRuler.incomingContentForeground": "#40a6ff80",
//"editorOverviewRuler.infoForeground": "#1a85ff",
//"editorOverviewRuler.inlineChatInserted": "#9ccc2c33",
//"editorOverviewRuler.inlineChatRemoved": "#ff000029",
//"editorOverviewRuler.modifiedForeground": "#005fb899",
//"editorOverviewRuler.rangeHighlightForeground": "#007acc99",
//"editorOverviewRuler.selectionHighlightForeground": "#a0a0a0cc",
//"editorOverviewRuler.warningForeground": "#bf8803",
//"editorOverviewRuler.wordHighlightForeground": "#a0a0a0cc",
//"editorOverviewRuler.wordHighlightStrongForeground": "#c0a0c0cc",
//"editorOverviewRuler.wordHighlightTextForeground": "#a0a0a0cc",
//"editorPane.background": "#ffffff",
//"editorRuler.foreground": "#d3d3d3",
//"editorStickyScroll.background": "#ffffff",
//"editorStickyScroll.shadow": "#dddddd",
//"editorStickyScrollHover.background": "#f0f0f0",
//"editorSuggestWidget.border": "#c8c8c8",
//"editorSuggestWidget.focusHighlightForeground": "#0066bf",
//"editorSuggestWidget.foreground": "#3b3b3b",
//"editorSuggestWidget.highlightForeground": "#0066bf",
//"editorSuggestWidget.selectedBackground": "#e8e8e8",
//"editorSuggestWidget.selectedForeground": "#000000",
//"editorSuggestWidget.selectedIconForeground": "#000000",
//"editorSuggestWidgetStatus.foreground": "#3b3b3b80",
//"editorUnicodeHighlight.border": "#bf8803",
//"editorUnnecessaryCode.opacity": "#00000077",
//"editorWarning.foreground": "#bf8803",
//"editorWatermark.foreground": "#3b3b3bad",
//"editorWhitespace.foreground": "#33333333",
//"editorWidget.border": "#c8c8c8",
//"editorWidget.foreground": "#3b3b3b",
//"extensionBadge.remoteBackground": "#005fb8",
//"extensionBadge.remoteForeground": "#ffffff",
//"extensionButton.background": "#005fb8",
//"extensionButton.foreground": "#ffffff",
//"extensionButton.hoverBackground": "#0258a8",
//"extensionButton.prominentBackground": "#005fb8",
//"extensionButton.prominentForeground": "#ffffff",
//"extensionButton.prominentHoverBackground": "#0258a8",
//"extensionButton.separator": "#ffffff66",
//"extensionIcon.preReleaseForeground": "#1d9271",
//"extensionIcon.privateForeground": "#00000060",
//"extensionIcon.sponsorForeground": "#b51e78",
//"extensionIcon.starForeground": "#df6100",
//"extensionIcon.verifiedForeground": "#005fb8",
//"git.blame.editorDecorationForeground": "#969696",
//"gitDecoration.addedResourceForeground": "#587c0c",
//"gitDecoration.conflictingResourceForeground": "#ad0707",
//"gitDecoration.deletedResourceForeground": "#ad0707",
//"gitDecoration.ignoredResourceForeground": "#8e8e90",
//"gitDecoration.modifiedResourceForeground": "#895503",
//"gitDecoration.renamedResourceForeground": "#007100",
//"gitDecoration.stageDeletedResourceForeground": "#ad0707",
//"gitDecoration.stageModifiedResourceForeground": "#895503",
//"gitDecoration.submoduleResourceForeground": "#1258a7",
//"gitDecoration.untrackedResourceForeground": "#007100",
//"inlineChat.background": "#f8f8f8",
//"inlineChat.border": "#c8c8c8",
//"inlineChat.foreground": "#3b3b3b",
//"inlineChat.shadow": "#00000029",
//"inlineChatDiff.inserted": "#9ccc2c20",
//"inlineChatDiff.removed": "#ff00001a",
//"inlineChatInput.background": "#ffffff",
//"inlineChatInput.border": "#c8c8c8",
//"inlineChatInput.focusBorder": "#005fb8",
//"inlineChatInput.placeholderForeground": "#767676",
//"inlineEdit.gutterIndicator.background": "#5f5f5f18",
//"inlineEdit.gutterIndicator.primaryBackground": "#005fb880",
//"inlineEdit.gutterIndicator.primaryBorder": "#005fb8",
//"inlineEdit.gutterIndicator.primaryForeground": "#ffffff",
//"inlineEdit.gutterIndicator.secondaryBackground": "#e5e5e5",
//"inlineEdit.gutterIndicator.secondaryBorder": "#e5e5e5",
//"inlineEdit.gutterIndicator.secondaryForeground": "#3b3b3b",
//"inlineEdit.gutterIndicator.successfulBackground": "#005fb8",
//"inlineEdit.gutterIndicator.successfulBorder": "#005fb8",
//"inlineEdit.gutterIndicator.successfulForeground": "#ffffff",
//"inlineEdit.modifiedBackground": "#9ccc2c13",
//"inlineEdit.modifiedBorder": "#3e511240",
//"inlineEdit.modifiedChangedLineBackground": "#9bb95524",
//"inlineEdit.modifiedChangedTextBackground": "#9ccc2c2d",
//"inlineEdit.originalBackground": "#ff00000a",
//"inlineEdit.originalBorder": "#ff000033",
//"inlineEdit.originalChangedLineBackground": "#ff000029",
//"inlineEdit.originalChangedTextBackground": "#ff000029",
//"inlineEdit.tabWillAcceptModifiedBorder": "#3e511240",
//"inlineEdit.tabWillAcceptOriginalBorder": "#ff000033",
//"inputOption.hoverBackground": "#b8b8b850",
//"inputValidation.errorBackground": "#f2dede",
//"inputValidation.errorBorder": "#be1100",
//"inputValidation.infoBackground": "#d6ecf2",
//"inputValidation.infoBorder": "#007acc",
//"inputValidation.warningBackground": "#f6f5d2",
//"inputValidation.warningBorder": "#b89500",
//"interactive.activeCodeBorder": "#007acc",
//"interactive.inactiveCodeBorder": "#e4e6f1",
//"issues.closed": "#8957e5",
//"issues.newIssueDecoration": "#00000048",
//"issues.open": "#3fb950",
//"keybindingLabel.background": "#dddddd66",
//"keybindingLabel.border": "#cccccc66",
//"keybindingLabel.bottomBorder": "#bbbbbb66",
//"keybindingTable.headerBackground": "#3b3b3b0a",
//"keybindingTable.rowsBackground": "#3b3b3b0a",
//"list.deemphasizedForeground": "#8e8e90",
//"list.dropBackground": "#d6ebff",
//"list.dropBetweenBackground": "#3b3b3b",
//"list.errorForeground": "#b01011",
//"list.filterMatchBackground": "#ea5c0055",
//"list.focusHighlightForeground": "#0066bf",
//"list.focusOutline": "#005fb8",
//"list.highlightForeground": "#0066bf",
//"list.inactiveSelectionBackground": "#e4e6f1",
//"list.invalidItemForeground": "#b89500",
//"list.warningForeground": "#855f00",
//"listFilterWidget.background": "#f8f8f8",
//"listFilterWidget.noMatchesOutline": "#be1100",
//"listFilterWidget.outline": "#00000000",
//"listFilterWidget.shadow": "#00000029",
//"menu.background": "#ffffff",
//"menu.foreground": "#3b3b3b",
//"menu.separatorBackground": "#d4d4d4",
//"menubar.selectionBackground": "#b8b8b850",
//"menubar.selectionForeground": "#1e1e1e",
//"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": "#9ccc2c66",
//"mergeEditor.changeBase.background": "#ffcccc",
//"mergeEditor.changeBase.word.background": "#ffa3a3",
//"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": "#ffa600",
//"mergeEditor.conflictingLines.background": "#ffea0047",
//"minimap.chatEditHighlight": "#ffffff99",
//"minimap.errorHighlight": "#ff1212b3",
//"minimap.findMatchHighlight": "#d18616",
//"minimap.foregroundOpacity": "#000000",
//"minimap.infoHighlight": "#1a85ff",
//"minimap.selectionHighlight": "#add6ff",
//"minimap.selectionOccurrenceHighlight": "#c9c9c9",
//"minimap.warningHighlight": "#bf8803",
//"minimapGutter.addedBackground": "#2ea043",
//"minimapGutter.deletedBackground": "#f85149",
//"minimapGutter.modifiedBackground": "#005fb8",
//"minimapSlider.activeBackground": "#0000004d",
//"minimapSlider.background": "#64646433",
//"minimapSlider.hoverBackground": "#64646459",
//"multiDiffEditor.background": "#ffffff",
//"multiDiffEditor.border": "#cccccc",
//"multiDiffEditor.headerBackground": "#f8f8f8",
//"notebook.cellEditorBackground": "#f8f8f8",
//"notebook.cellInsertionIndicator": "#005fb8",
//"notebook.cellStatusBarItemHoverBackground": "#00000014",
//"notebook.cellToolbarSeparator": "#80808059",
//"notebook.editorBackground": "#ffffff",
//"notebook.focusedCellBorder": "#005fb8",
//"notebook.focusedEditorBorder": "#005fb8",
//"notebook.inactiveFocusedCellBorder": "#e5e5e5",
//"notebook.selectedCellBorder": "#e5e5e5",
//"notebook.symbolHighlightBackground": "#fdff0033",
//"notebookEditorOverviewRuler.runningCellForeground": "#388a34",
//"notebookScrollbarSlider.activeBackground": "#00000099",
//"notebookScrollbarSlider.background": "#64646466",
//"notebookScrollbarSlider.hoverBackground": "#646464b3",
//"notebookStatusErrorIcon.foreground": "#f85149",
//"notebookStatusRunningIcon.foreground": "#3b3b3b",
//"notebookStatusSuccessIcon.foreground": "#388a34",
//"notificationCenter.border": "#e5e5e5",
//"notificationLink.foreground": "#005fb8",
//"notificationToast.border": "#e5e5e5",
//"notificationsErrorIcon.foreground": "#e51400",
//"notificationsInfoIcon.foreground": "#1a85ff",
//"notificationsWarningIcon.foreground": "#bf8803",
//"panel.dropBorder": "#3b3b3b",
//"panelSection.border": "#e5e5e5",
//"panelSection.dropBackground": "#2677cb2e",
//"panelSectionHeader.background": "#80808033",
//"panelStickyScroll.background": "#f8f8f8",
//"panelStickyScroll.shadow": "#dddddd",
//"panelTitleBadge.background": "#005fb8",
//"panelTitleBadge.foreground": "#ffffff",
//"peekView.border": "#1a85ff",
//"peekViewEditor.background": "#f2f8fc",
//"peekViewEditorGutter.background": "#f2f8fc",
//"peekViewEditorStickyScroll.background": "#f2f8fc",
//"peekViewResult.fileForeground": "#1e1e1e",
//"peekViewResult.lineForeground": "#646465",
//"peekViewResult.selectionBackground": "#3399ff33",
//"peekViewResult.selectionForeground": "#6c6c6c",
//"peekViewTitle.background": "#f3f3f3",
//"peekViewTitleDescription.foreground": "#616161",
//"peekViewTitleLabel.foreground": "#000000",
//"problemsErrorIcon.foreground": "#e51400",
//"problemsInfoIcon.foreground": "#1a85ff",
//"problemsWarningIcon.foreground": "#bf8803",
//"profileBadge.background": "#c4c4c4",
//"profileBadge.foreground": "#333333",
//"profiles.sashBorder": "#e5e5e5",
//"pullRequests.closed": "#cb2431",
//"pullRequests.draft": "#6e7681",
//"pullRequests.merged": "#8957e5",
//"pullRequests.notification": "#1a85ff",
//"pullRequests.open": "#3fb950",
//"quickInputList.focusBackground": "#e8e8e8",
//"quickInputList.focusForeground": "#000000",
//"quickInputList.focusIconForeground": "#000000",
//"quickInputTitle.background": "#0000000f",
//"radio.activeBackground": "#bed6ed",
//"radio.activeBorder": "#005fb8",
//"radio.activeForeground": "#000000",
//"radio.inactiveBorder": "#00000033",
//"radio.inactiveHoverBackground": "#b8b8b850",
//"sash.hoverBorder": "#005fb8",
//"scmGraph.foreground1": "#ffb000",
//"scmGraph.foreground2": "#dc267f",
//"scmGraph.foreground3": "#994f00",
//"scmGraph.foreground4": "#40b0a6",
//"scmGraph.foreground5": "#b66dff",
//"scmGraph.historyItemBaseRefColor": "#ea5c00",
//"scmGraph.historyItemHoverAdditionsForeground": "#587c0c",
//"scmGraph.historyItemHoverDefaultLabelBackground": "#cccccc",
//"scmGraph.historyItemHoverDefaultLabelForeground": "#3b3b3b",
//"scmGraph.historyItemHoverDeletionsForeground": "#ad0707",
//"scmGraph.historyItemHoverLabelForeground": "#ffffff",
//"scmGraph.historyItemRefColor": "#1a85ff",
//"scmGraph.historyItemRemoteRefColor": "#652d90",
//"scrollbar.shadow": "#dddddd",
//"scrollbarSlider.activeBackground": "#00000099",
//"scrollbarSlider.background": "#64646466",
//"scrollbarSlider.hoverBackground": "#646464b3",
//"search.resultsInfoForeground": "#3b3b3b",
//"searchEditor.findMatchBackground": "#ea5c0038",
//"settings.checkboxBackground": "#f8f8f8",
//"settings.checkboxBorder": "#cecece",
//"settings.checkboxForeground": "#3b3b3b",
//"settings.dropdownForeground": "#3b3b3b",
//"settings.dropdownListBorder": "#c8c8c8",
//"settings.focusedRowBackground": "#f2f2f299",
//"settings.focusedRowBorder": "#005fb8",
//"settings.headerBorder": "#e5e5e5",
//"settings.numberInputBackground": "#ffffff",
//"settings.numberInputForeground": "#3b3b3b",
//"settings.rowHoverBackground": "#f2f2f24d",
//"settings.sashBorder": "#e5e5e5",
//"settings.settingsHeaderHoverForeground": "#1f1f1fb3",
//"settings.textInputBackground": "#ffffff",
//"settings.textInputForeground": "#3b3b3b",
//"sideBar.dropBackground": "#2677cb2e",
//"sideBarActivityBarTop.border": "#e5e5e5",
//"sideBarStickyScroll.background": "#f8f8f8",
//"sideBarStickyScroll.shadow": "#dddddd",
//"sideBarTitle.background": "#f8f8f8",
//"sideBySideEditor.horizontalBorder": "#e5e5e5",
//"sideBySideEditor.verticalBorder": "#e5e5e5",
//"simpleFindWidget.sashBorder": "#c8c8c8",
//"statusBar.debuggingBorder": "#e5e5e5",
//"statusBar.noFolderBorder": "#e5e5e5",
//"statusBar.noFolderForeground": "#3b3b3b",
//"statusBarItem.activeBackground": "#ffffff2e",
//"statusBarItem.errorForeground": "#ffffff",
//"statusBarItem.errorHoverBackground": "#b8b8b850",
//"statusBarItem.errorHoverForeground": "#3b3b3b",
//"statusBarItem.hoverForeground": "#3b3b3b",
//"statusBarItem.offlineBackground": "#6c1717",
//"statusBarItem.offlineForeground": "#ffffff",
//"statusBarItem.offlineHoverBackground": "#b8b8b850",
//"statusBarItem.offlineHoverForeground": "#3b3b3b",
//"statusBarItem.prominentForeground": "#3b3b3b",
//"statusBarItem.prominentHoverBackground": "#b8b8b850",
//"statusBarItem.prominentHoverForeground": "#3b3b3b",
//"statusBarItem.remoteHoverBackground": "#b8b8b850",
//"statusBarItem.remoteHoverForeground": "#3b3b3b",
//"statusBarItem.warningBackground": "#725102",
//"statusBarItem.warningForeground": "#ffffff",
//"statusBarItem.warningHoverBackground": "#b8b8b850",
//"statusBarItem.warningHoverForeground": "#3b3b3b",
//"symbolIcon.arrayForeground": "#3b3b3b",
//"symbolIcon.booleanForeground": "#3b3b3b",
//"symbolIcon.classForeground": "#d67e00",
//"symbolIcon.colorForeground": "#3b3b3b",
//"symbolIcon.constantForeground": "#3b3b3b",
//"symbolIcon.constructorForeground": "#652d90",
//"symbolIcon.enumeratorForeground": "#d67e00",
//"symbolIcon.enumeratorMemberForeground": "#007acc",
//"symbolIcon.eventForeground": "#d67e00",
//"symbolIcon.fieldForeground": "#007acc",
//"symbolIcon.fileForeground": "#3b3b3b",
//"symbolIcon.folderForeground": "#3b3b3b",
//"symbolIcon.functionForeground": "#652d90",
//"symbolIcon.interfaceForeground": "#007acc",
//"symbolIcon.keyForeground": "#3b3b3b",
//"symbolIcon.keywordForeground": "#3b3b3b",
//"symbolIcon.methodForeground": "#652d90",
//"symbolIcon.moduleForeground": "#3b3b3b",
//"symbolIcon.namespaceForeground": "#3b3b3b",
//"symbolIcon.nullForeground": "#3b3b3b",
//"symbolIcon.numberForeground": "#3b3b3b",
//"symbolIcon.objectForeground": "#3b3b3b",
//"symbolIcon.operatorForeground": "#3b3b3b",
//"symbolIcon.packageForeground": "#3b3b3b",
//"symbolIcon.propertyForeground": "#3b3b3b",
//"symbolIcon.referenceForeground": "#3b3b3b",
//"symbolIcon.snippetForeground": "#3b3b3b",
//"symbolIcon.stringForeground": "#3b3b3b",
//"symbolIcon.structForeground": "#3b3b3b",
//"symbolIcon.textForeground": "#3b3b3b",
//"symbolIcon.typeParameterForeground": "#3b3b3b",
//"symbolIcon.unitForeground": "#3b3b3b",
//"symbolIcon.variableForeground": "#007acc",
//"tab.activeModifiedBorder": "#33aaee",
//"tab.dragAndDropBorder": "#3b3b3b",
//"tab.inactiveModifiedBorder": "#33aaee80",
//"tab.unfocusedActiveBackground": "#ffffff",
//"tab.unfocusedActiveForeground": "#3b3b3bb3",
//"tab.unfocusedActiveModifiedBorder": "#33aaeeb3",
//"tab.unfocusedInactiveBackground": "#f8f8f8",
//"tab.unfocusedInactiveForeground": "#86868680",
//"tab.unfocusedInactiveModifiedBorder": "#33aaee40",
//"tab.worktreeBorder": "#bf880366",
//"terminal.ansiBlack": "#000000",
//"terminal.ansiBlue": "#0451a5",
//"terminal.ansiBrightBlack": "#666666",
//"terminal.ansiBrightBlue": "#0451a5",
//"terminal.ansiBrightCyan": "#0598bc",
//"terminal.ansiBrightGreen": "#14ce14",
//"terminal.ansiBrightMagenta": "#bc05bc",
//"terminal.ansiBrightRed": "#cd3131",
//"terminal.ansiBrightWhite": "#a5a5a5",
//"terminal.ansiBrightYellow": "#b5ba00",
//"terminal.ansiCyan": "#0598bc",
//"terminal.ansiGreen": "#107c10",
//"terminal.ansiMagenta": "#bc05bc",
//"terminal.ansiRed": "#cd3131",
//"terminal.ansiWhite": "#555555",
//"terminal.ansiYellow": "#949800",
//"terminal.border": "#e5e5e5",
//"terminal.dropBackground": "#2677cb2e",
//"terminal.findMatchBackground": "#a8ac94",
//"terminal.findMatchHighlightBackground": "#ea5c0055",
//"terminal.hoverHighlightBackground": "#add6ff13",
//"terminal.initialHintForeground": "#00000077",
//"terminal.selectionBackground": "#add6ff",
//"terminalCommandDecoration.defaultBackground": "#00000040",
//"terminalCommandDecoration.errorBackground": "#e51400",
//"terminalCommandDecoration.successBackground": "#2090d3",
//"terminalCommandGuide.foreground": "#e4e6f1",
//"terminalOverviewRuler.border": "#e5e5e5",
//"terminalOverviewRuler.cursorForeground": "#a0a0a0cc",
//"terminalOverviewRuler.findMatchForeground": "#d186167e",
//"terminalStickyScrollHover.background": "#f0f0f0",
//"terminalSymbolIcon.aliasForeground": "#652d90",
//"terminalSymbolIcon.argumentForeground": "#007acc",
//"terminalSymbolIcon.fileForeground": "#3b3b3b",
//"terminalSymbolIcon.flagForeground": "#d67e00",
//"terminalSymbolIcon.folderForeground": "#3b3b3b",
//"terminalSymbolIcon.methodForeground": "#652d90",
//"terminalSymbolIcon.optionForeground": "#d67e00",
//"terminalSymbolIcon.optionValueForeground": "#007acc",
//"testing.coverCountBadgeBackground": "#cccccc",
//"testing.coverCountBadgeForeground": "#3b3b3b",
//"testing.coveredBackground": "#9ccc2c40",
//"testing.coveredBorder": "#9ccc2c30",
//"testing.coveredGutterBackground": "#9ccc2c27",
//"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.badgeBackground": "#e51400",
//"testing.message.error.badgeBorder": "#e51400",
//"testing.message.error.badgeForeground": "#ffffff",
//"testing.message.info.decorationForeground": "#3b3b3b80",
//"testing.messagePeekBorder": "#1a85ff",
//"testing.messagePeekHeaderBackground": "#1a85ff1a",
//"testing.peekBorder": "#e51400",
//"testing.peekHeaderBackground": "#e514001a",
//"testing.runAction": "#73c991",
//"testing.uncoveredBackground": "#ff000033",
//"testing.uncoveredBorder": "#ff000026",
//"testing.uncoveredBranchBackground": "#ff9999",
//"testing.uncoveredGutterBackground": "#ff00004d",
//"toolbar.activeBackground": "#a6a6a650",
//"toolbar.hoverBackground": "#b8b8b850",
//"tree.inactiveIndentGuidesStroke": "#a9a9a966",
//"tree.indentGuidesStroke": "#a9a9a9",
//"tree.tableColumnsBorder": "#61616120",
//"tree.tableOddRowsBackground": "#3b3b3b0a",
//"walkThrough.embeddedEditorBackground": "#f4f4f4",
//"walkthrough.stepTitle.foreground": "#000000",
//"welcomePage.progress.background": "#ffffff",
//"welcomePage.progress.foreground": "#005fb8",
//"welcomePage.tileBorder": "#0000001a",
//"welcomePage.tileHoverBackground": "#dfdfdf",
//"widget.shadow": "#00000029",
//"activityBar.activeBackground": null,
//"activityBar.activeFocusBorder": null,
//"activityBarTop.activeBackground": null,
//"activityBarTop.background": 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.findMatchForeground": null,
//"editor.findMatchHighlightBorder": null,
//"editor.findMatchHighlightForeground": null,
//"editor.findRangeHighlightBorder": null,
//"editor.lineHighlightBackground": null,
//"editor.rangeHighlightBorder": null,
//"editor.selectionForeground": null,
//"editor.selectionHighlightBorder": null,
//"editor.snippetFinalTabstopHighlightBackground": null,
//"editor.snippetTabstopHighlightBorder": 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,
//"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,
//"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.filterMatchBorder": null,
//"list.focusBackground": null,
//"list.focusForeground": null,
//"list.hoverForeground": null,
//"list.inactiveFocusBackground": null,
//"list.inactiveFocusOutline": null,
//"list.inactiveSelectionForeground": null,
//"list.inactiveSelectionIconForeground": 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,
//"outputView.background": null,
//"outputViewStickyScroll.background": null,
//"panelSectionHeader.border": null,
//"panelSectionHeader.foreground": null,
//"panelStickyScroll.border": null,
//"panelTitle.border": null,
//"peekViewEditor.matchHighlightBorder": null,
//"radio.inactiveBackground": null,
//"radio.inactiveForeground": null,
//"searchEditor.findMatchBorder": null,
//"selection.background": null,
//"sideBarStickyScroll.border": null,
//"sideBarTitle.border": 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,
//"terminalStickyScroll.background": null,
//"terminalStickyScroll.border": null,
//"terminalSymbolIcon.inlineSuggestionForeground": null,
//"testing.message.error.lineBackground": null,
//"testing.message.info.lineBackground": null,
//"toolbar.hoverOutline": null,
//"welcomePage.background": null,
//"window.activeBorder": null,
//"window.inactiveBorder": null
},
"tokenColors": [
{
"scope": [
"meta.embedded",
"source.groovy.embedded",
"string meta.image.inline.markdown",
"variable.legacy.builtin.python"
],
"settings": {
"foreground": "#000000"
}
},
{
"scope": "emphasis",
"settings": {
"fontStyle": "italic"
}
},
{
"scope": "strong",
"settings": {
"fontStyle": "bold"
}
},
{
"scope": "meta.diff.header",
"settings": {
"foreground": "#000080"
}
},
{
"scope": "comment",
"settings": {
"foreground": "#008000"
}
},
{
"scope": "constant.language",
"settings": {
"foreground": "#0000FF"
}
},
{
"scope": [
"constant.numeric",
"variable.other.enummember",
"keyword.operator.plus.exponent",
"keyword.operator.minus.exponent"
],
"settings": {
"foreground": "#098658"
}
},
{
"scope": "constant.regexp",
"settings": {
"foreground": "#811F3F"
}
},
{
"scope": "entity.name.tag",
"settings": {
"foreground": "#800000"
}
},
{
"scope": "entity.name.selector",
"settings": {
"foreground": "#800000"
}
},
{
"scope": "entity.other.attribute-name",
"settings": {
"foreground": "#E50000"
}
},
{
"scope": [
"entity.other.attribute-name.class.css",
"source.css entity.other.attribute-name.class",
"entity.other.attribute-name.id.css",
"entity.other.attribute-name.parent-selector.css",
"entity.other.attribute-name.parent.less",
"source.css entity.other.attribute-name.pseudo-class",
"entity.other.attribute-name.pseudo-element.css",
"source.css.less entity.other.attribute-name.id",
"entity.other.attribute-name.scss"
],
"settings": {
"foreground": "#800000"
}
},
{
"scope": "invalid",
"settings": {
"foreground": "#CD3131"
}
},
{
"scope": "markup.underline",
"settings": {
"fontStyle": "underline"
}
},
{
"scope": "markup.bold",
"settings": {
"foreground": "#000080",
"fontStyle": "bold"
}
},
{
"scope": "markup.heading",
"settings": {
"foreground": "#800000",
"fontStyle": "bold"
}
},
{
"scope": "markup.italic",
"settings": {
"fontStyle": "italic"
}
},
{
"scope": "markup.strikethrough",
"settings": {