-
Notifications
You must be signed in to change notification settings - Fork 1
/
Horizon Theme-color-theme.json
2333 lines (2333 loc) · 72.9 KB
/
Horizon Theme-color-theme.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": "dark",
"colors": {
"activityBar.activeBackground": "#453a58",
"activityBar.background": "#22172a",
"activityBar.border": "#736b6b",
"activityBar.foreground": "#ffffff",
"activityBar.inactiveForeground": "#ffffff66",
"activityBarBadge.background": "#3d278c",
"activityBarBadge.foreground": "#ffffff",
"badge.background": "#4d4d4d",
"badge.foreground": "#ffffff",
"breadcrumb.activeSelectionForeground": "#e0e0e0",
"breadcrumb.background": "#272030",
"breadcrumb.focusForeground": "#e0e0e0",
"breadcrumb.foreground": "#cccccccc",
"button.background": "#2a2a30",
"button.foreground": "#ffffff",
"button.hoverBackground": "#30324d",
"button.secondaryBackground": "#3a3d41",
"button.secondaryForeground": "#ffffff",
"button.secondaryHoverBackground": "#45494e",
"checkbox.background": "#302838",
"checkbox.border": "#00000000",
"checkbox.foreground": "#cccccc",
"debugExceptionWidget.background": "#333333",
"debugExceptionWidget.border": "#474747",
"debugToolBar.background": "#333333",
"debugToolBar.border": "#474747",
"diffEditor.border": "#444444",
"diffEditor.insertedTextBackground": "#32e04d33",
"diffEditor.removedTextBackground": "#ff000033",
"dropdown.background": "#302838",
"dropdown.border": "#00000000",
"dropdown.foreground": "#cccccc",
"editor.background": "#18151f",
"editor.findMatchBackground": "#24714de9",
"editor.findMatchBorder": "#74879f",
"editor.findMatchHighlightBackground": "#ea5c0055",
"editor.findMatchHighlightBorder": "#ffffff00",
"editor.findRangeHighlightBackground": "#3a3d4166",
"editor.findRangeHighlightBorder": "#ffffff00",
"editor.foldBackground": "#2b294372",
"editor.foreground": "#d4d4d4",
"editor.hoverHighlightBackground": "#264f7840",
"editor.inactiveSelectionBackground": "#3a3d41",
"editor.lineHighlightBackground": "#ffffff0a",
"editor.lineHighlightBorder": "#1c1f36",
"editor.rangeHighlightBackground": "#ffffff0b",
"editor.rangeHighlightBorder": "#ffffff00",
"editor.selectionBackground": "#264f78",
"editor.selectionHighlightBackground": "#add6ff26",
"editor.selectionHighlightBorder": "#495f77",
"editor.wordHighlightBackground": "#575757b8",
"editor.wordHighlightStrongBackground": "#004972b8",
"editorBracketMatch.background": "#0064001a",
"editorBracketMatch.border": "#6f3e3e",
"editorCodeLens.foreground": "#999999",
"editorCursor.background": "#000000",
"editorCursor.foreground": "#aeafad",
"editorError.background": "#b73a3400",
"editorError.border": "#ffffff00",
"editorError.foreground": "#f48771",
"editorGroup.border": "#474747",
"editorGroup.emptyBackground": "#18151f",
"editorGroupHeader.tabsBackground": "#201928",
"editorGutter.addedBackground": "#587c0c",
"editorGutter.background": "#42306b2c",
"editorGutter.commentRangeForeground": "#c5c5c5",
"editorGutter.deletedBackground": "#94151b",
"editorGutter.foldingControlForeground": "#c5c5c5",
"editorGutter.modifiedBackground": "#0c7d9d",
"editorHoverWidget.background": "#252526",
"editorHoverWidget.border": "#454545",
"editorHoverWidget.foreground": "#cccccc",
"editorIndentGuide.activeBackground": "#7d5d208f",
"editorIndentGuide.background": "#a1741e91",
"editorInfo.background": "#4490bf00",
"editorInfo.border": "#4490bf00",
"editorInfo.foreground": "#75beff",
"editorLineNumber.activeForeground": "#c6c6c6",
"editorLineNumber.foreground": "#858585",
"editorLink.activeForeground": "#4e94ce",
"editorMarkerNavigation.background": "#292032",
"editorMarkerNavigationError.background": "#f48771",
"editorMarkerNavigationInfo.background": "#75beff",
"editorMarkerNavigationWarning.background": "#cca700",
"editorOverviewRuler.background": "#25252500",
"editorOverviewRuler.border": "#7f7f7f4d",
"editorRuler.foreground": "#5a5a5a",
"editorSuggestWidget.background": "#252526",
"editorSuggestWidget.border": "#454545",
"editorSuggestWidget.foreground": "#d4d4d4",
"editorSuggestWidget.highlightForeground": "#0097fb",
"editorSuggestWidget.selectedBackground": "#062f4a",
"editorWarning.background": "#a9904000",
"editorWarning.border": "#ffffff00",
"editorWarning.foreground": "#cca700",
"editorWhitespace.foreground": "#e3e4e229",
"editorWidget.background": "#252526",
"editorWidget.foreground": "#cccccc",
"editorWidget.resizeBorder": "#5f5f5f",
"focusBorder": "#411740",
"foreground": "#ffffff",
"gitDecoration.addedResourceForeground": "#81b88b",
"gitDecoration.conflictingResourceForeground": "#6c6cc4",
"gitDecoration.deletedResourceForeground": "#c74e39",
"gitDecoration.ignoredResourceForeground": "#8c8c8c",
"gitDecoration.modifiedResourceForeground": "#e2c08d",
"gitDecoration.stageDeletedResourceForeground": "#c74e39",
"gitDecoration.stageModifiedResourceForeground": "#e2c08d",
"gitDecoration.submoduleResourceForeground": "#8db9e2",
"gitDecoration.untrackedResourceForeground": "#73c991",
"icon.foreground": "#ffffff",
"input.background": "#302838",
"input.border": "#00000000",
"input.foreground": "#cccccc",
"input.placeholderForeground": "#a6a6a6",
"inputOption.activeBackground": "#007fd466",
"inputOption.activeBorder": "#007acc00",
"inputOption.activeForeground": "#ffffff",
"list.activeSelectionBackground": "#4d405c81",
"list.activeSelectionForeground": "#ffffff",
"list.dropBackground": "#26254340",
"list.focusBackground": "#262f34",
"list.focusForeground": "#cccccc",
"list.highlightForeground": "#14ace8",
"list.hoverBackground": "#4f3e62c3",
"list.hoverForeground": "#cccccc",
"list.inactiveSelectionBackground": "#32273d9f",
"list.inactiveSelectionForeground": "#cccccc",
"listFilterWidget.background": "#3f255c",
"listFilterWidget.noMatchesOutline": "#92362d",
"listFilterWidget.outline": "#00000000",
"menu.background": "#323247",
"menu.border": "#00000085",
"menu.foreground": "#cccccc",
"menu.selectionBackground": "#7a65b499",
"menu.selectionBorder": "#00000000",
"menu.selectionForeground": "#ffffff",
"menu.separatorBackground": "#bbbbbb",
"menubar.selectionBackground": "#ffffff1a",
"menubar.selectionForeground": "#cccccc",
"merge.commonContentBackground": "#282828",
"merge.commonHeaderBackground": "#383838",
"merge.currentContentBackground": "#27403b",
"merge.currentHeaderBackground": "#367366",
"merge.incomingContentBackground": "#28384b",
"merge.incomingHeaderBackground": "#395f8f",
"minimap.background": "#18151f",
"minimap.errorHighlight": "#f48771",
"minimap.findMatchHighlight": "#24714de9",
"minimap.selectionHighlight": "#264f78",
"minimap.warningHighlight": "#cca700",
"minimapGutter.addedBackground": "#587c0c",
"minimapGutter.deletedBackground": "#94151b",
"minimapGutter.modifiedBackground": "#0c7d9d",
"notificationCenter.border": "#666a92",
"notificationCenterHeader.background": "#222238",
"notificationCenterHeader.foreground": "#cccccc",
"notificationToast.border": "#474747",
"notifications.background": "#323247",
"notifications.border": "#414164",
"notifications.foreground": "#cccccc",
"notificationsErrorIcon.foreground": "#f48771",
"notificationsInfoIcon.foreground": "#2584d9",
"notificationsWarningIcon.foreground": "#cca700",
"panel.background": "#1e1726e7",
"panel.border": "#80808059",
"panelSection.border": "#80808059",
"panelTitle.activeBorder": "#e7e7e7",
"panelTitle.activeForeground": "#e7e7e7",
"panelTitle.inactiveForeground": "#e7e7e799",
"peekView.border": "#007acc",
"peekViewEditor.background": "#001f33",
"peekViewEditor.matchHighlightBackground": "#ff8f0099",
"peekViewEditor.matchHighlightBorder": "#ee931e",
"peekViewEditorGutter.background": "#001f33",
"peekViewResult.background": "#252526",
"peekViewResult.fileForeground": "#ffffff",
"peekViewResult.lineForeground": "#bbbbbb",
"peekViewResult.matchHighlightBackground": "#ea5c004d",
"peekViewResult.selectionBackground": "#3399ff33",
"peekViewResult.selectionForeground": "#ffffff",
"peekViewTitle.background": "#1e1e1e",
"peekViewTitleDescription.foreground": "#ccccccb3",
"peekViewTitleLabel.foreground": "#ffffff",
"pickerGroup.border": "#3f3f46",
"pickerGroup.foreground": "#3794ff",
"progressBar.background": "#c08b0e",
"scrollbar.shadow": "#131010",
"scrollbarSlider.activeBackground": "#bfbfbf66",
"scrollbarSlider.background": "#79797966",
"scrollbarSlider.hoverBackground": "#646464b3",
"selection.background": "#452c6264",
"settings.focusedRowBackground": "#ffffff07",
"settings.headerForeground": "#ffffff",
"sideBar.background": "#201928",
"sideBar.dropBackground": "#26254340",
"sideBar.foreground": "#cccccc",
"sideBarSectionHeader.background": "#00000000",
"sideBarSectionHeader.border": "#cccccc33",
"sideBarSectionHeader.foreground": "#cccccc",
"sideBarTitle.foreground": "#bbbbbb",
"statusBar.background": "#281d34",
"statusBar.debuggingBackground": "#4b2222",
"statusBar.debuggingForeground": "#ffffff",
"statusBar.foreground": "#ffffff",
"statusBar.noFolderBackground": "#341e4d",
"statusBar.noFolderForeground": "#ffffff",
"statusBarItem.activeBackground": "#ffffff25",
"statusBarItem.hoverBackground": "#ffffff1f",
"statusBarItem.remoteBackground": "#473160",
"statusBarItem.remoteForeground": "#ffffff",
"tab.activeBackground": "#463d64bd",
"tab.activeBorder": "#00000000",
"tab.activeBorderTop": "#00000000",
"tab.activeForeground": "#ffffff",
"tab.border": "#25252c",
"tab.inactiveBackground": "#281f32",
"tab.inactiveForeground": "#ffffff80",
"terminal.ansiBlack": "#000000",
"terminal.ansiBlue": "#2472c8",
"terminal.ansiBrightBlack": "#605e5e",
"terminal.ansiBrightBlue": "#3b8eea",
"terminal.ansiBrightCyan": "#29b8db",
"terminal.ansiBrightGreen": "#23d18b",
"terminal.ansiBrightMagenta": "#d670d6",
"terminal.ansiBrightRed": "#f14c4c",
"terminal.ansiBrightWhite": "#e5e5e5",
"terminal.ansiBrightYellow": "#f5f543",
"terminal.ansiCyan": "#11a8cd",
"terminal.ansiGreen": "#0dbc79",
"terminal.ansiMagenta": "#bc3fbc",
"terminal.ansiRed": "#cd3131",
"terminal.ansiWhite": "#e5e5e5",
"terminal.ansiYellow": "#e5e510",
"terminal.border": "#80808059",
"terminal.foreground": "#cccccc",
"terminal.selectionBackground": "#ffffff40",
"terminalCursor.background": "#0087ff",
"terminalCursor.foreground": "#ffffff",
"textLink.foreground": "#175cab",
"titleBar.activeBackground": "#160f1d",
"titleBar.activeForeground": "#cccccc",
"titleBar.border": "#00000000",
"titleBar.inactiveBackground": "#25212a",
"titleBar.inactiveForeground": "#cccccc99",
"tree.indentGuidesStroke": "#585858",
"walkThrough.embeddedEditorBackground": "#00000050",
"widget.shadow": "#0000005c"
//"actionBar.toggledBackground": "#007fd466",
//"activityBar.activeBorder": "#ffffff",
//"activityBar.dropBorder": "#ffffff",
//"banner.background": "#4d405c81",
//"banner.foreground": "#ffffff",
//"banner.iconForeground": "#75beff",
//"breadcrumbPicker.background": "#252526",
//"button.separator": "#ffffff66",
//"charts.blue": "#75beff",
//"charts.foreground": "#ffffff",
//"charts.green": "#89d185",
//"charts.lines": "#ffffff80",
//"charts.orange": "#24714de9",
//"charts.purple": "#b180d7",
//"charts.red": "#f48771",
//"charts.yellow": "#cca700",
//"chat.avatarBackground": "#1f1f1f",
//"chat.avatarForeground": "#ffffff",
//"chat.requestBorder": "#ffffff1a",
//"chat.slashCommandBackground": "#34414b",
//"chat.slashCommandForeground": "#40a6ff",
//"checkbox.selectBackground": "#252526",
//"checkbox.selectBorder": "#ffffff",
//"commandCenter.activeBackground": "#ffffff14",
//"commandCenter.activeBorder": "#cccccc4d",
//"commandCenter.activeForeground": "#cccccc",
//"commandCenter.background": "#ffffff0d",
//"commandCenter.border": "#cccccc33",
//"commandCenter.debuggingBackground": "#4b222242",
//"commandCenter.foreground": "#cccccc",
//"commandCenter.inactiveBorder": "#cccccc26",
//"commandCenter.inactiveForeground": "#cccccc99",
//"commentsView.resolvedIcon": "#cccccc80",
//"commentsView.unresolvedIcon": "#411740",
//"debugConsole.errorForeground": "#f48771",
//"debugConsole.infoForeground": "#75beff",
//"debugConsole.sourceForeground": "#ffffff",
//"debugConsole.warningForeground": "#cca700",
//"debugConsoleInputIcon.foreground": "#ffffff",
//"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.value": "#cccccc99",
//"debugView.exceptionLabelBackground": "#6c2022",
//"debugView.exceptionLabelForeground": "#ffffff",
//"debugView.stateLabelBackground": "#88888844",
//"debugView.stateLabelForeground": "#ffffff",
//"debugView.valueChangedHighlight": "#569cd6",
//"descriptionForeground": "#ffffffb3",
//"diffEditor.diagonalFill": "#cccccc33",
//"diffEditor.insertedLineBackground": "#9bb95533",
//"diffEditor.move.border": "#8b8b8b9c",
//"diffEditor.moveActive.border": "#ffa500",
//"diffEditor.removedLineBackground": "#ff000033",
//"diffEditor.unchangedCodeBackground": "#74747429",
//"diffEditor.unchangedRegionBackground": "#201928",
//"diffEditor.unchangedRegionForeground": "#ffffff",
//"diffEditor.unchangedRegionShadow": "#000000",
//"disabledForeground": "#cccccc80",
//"editor.focusedStackFrameHighlightBackground": "#7abd7a4d",
//"editor.inlineValuesBackground": "#ffc80033",
//"editor.inlineValuesForeground": "#ffffff80",
//"editor.linkedEditingBackground": "#ff00004d",
//"editor.snippetFinalTabstopHighlightBorder": "#525252",
//"editor.snippetTabstopHighlightBackground": "#7c7c7c4d",
//"editor.stackFrameHighlightBackground": "#ffff0033",
//"editor.symbolHighlightBackground": "#ea5c0055",
//"editor.wordHighlightTextBackground": "#575757b8",
//"editorActiveLineNumber.foreground": "#c6c6c6",
//"editorBracketHighlight.foreground1": "#ffd700",
//"editorBracketHighlight.foreground2": "#da70d6",
//"editorBracketHighlight.foreground3": "#179fff",
//"editorBracketHighlight.foreground4": "#00000000",
//"editorBracketHighlight.foreground5": "#00000000",
//"editorBracketHighlight.foreground6": "#00000000",
//"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",
//"editorCommentsWidget.rangeActiveBackground": "#4117401a",
//"editorCommentsWidget.rangeBackground": "#4117401a",
//"editorCommentsWidget.replyInputBackground": "#1e1e1e",
//"editorCommentsWidget.resolvedBorder": "#cccccc80",
//"editorCommentsWidget.unresolvedBorder": "#411740",
//"editorGhostText.foreground": "#ffffff56",
//"editorGroup.dropBackground": "#53595d80",
//"editorGroup.dropIntoPromptBackground": "#252526",
//"editorGroup.dropIntoPromptForeground": "#cccccc",
//"editorGroupHeader.noTabsBackground": "#18151f",
//"editorGutter.commentGlyphForeground": "#d4d4d4",
//"editorGutter.commentUnresolvedGlyphForeground": "#d4d4d4",
//"editorHint.foreground": "#eeeeeeb3",
//"editorHoverWidget.highlightForeground": "#14ace8",
//"editorHoverWidget.statusBarBackground": "#2c2c2d",
//"editorIndentGuide.activeBackground1": "#7d5d208f",
//"editorIndentGuide.activeBackground2": "#00000000",
//"editorIndentGuide.activeBackground3": "#00000000",
//"editorIndentGuide.activeBackground4": "#00000000",
//"editorIndentGuide.activeBackground5": "#00000000",
//"editorIndentGuide.activeBackground6": "#00000000",
//"editorIndentGuide.background1": "#a1741e91",
//"editorIndentGuide.background2": "#00000000",
//"editorIndentGuide.background3": "#00000000",
//"editorIndentGuide.background4": "#00000000",
//"editorIndentGuide.background5": "#00000000",
//"editorIndentGuide.background6": "#00000000",
//"editorInlayHint.background": "#4d4d4d1a",
//"editorInlayHint.foreground": "#969696",
//"editorInlayHint.parameterBackground": "#4d4d4d1a",
//"editorInlayHint.parameterForeground": "#969696",
//"editorInlayHint.typeBackground": "#4d4d4d1a",
//"editorInlayHint.typeForeground": "#969696",
//"editorLightBulb.foreground": "#ffcc00",
//"editorLightBulbAi.foreground": "#999999",
//"editorLightBulbAutoFix.foreground": "#75beff",
//"editorMarkerNavigationError.headerBackground": "#f487711a",
//"editorMarkerNavigationInfo.headerBackground": "#75beff1a",
//"editorMarkerNavigationWarning.headerBackground": "#cca7001a",
//"editorOverviewRuler.addedForeground": "#587c0c99",
//"editorOverviewRuler.bracketMatchForeground": "#a0a0a0",
//"editorOverviewRuler.commentForeground": "#c5c5c5",
//"editorOverviewRuler.commentUnresolvedForeground": "#c5c5c5",
//"editorOverviewRuler.commonContentForeground": "#383838",
//"editorOverviewRuler.currentContentForeground": "#367366",
//"editorOverviewRuler.deletedForeground": "#94151b99",
//"editorOverviewRuler.errorForeground": "#ff1212b3",
//"editorOverviewRuler.findMatchForeground": "#d186167e",
//"editorOverviewRuler.incomingContentForeground": "#395f8f",
//"editorOverviewRuler.infoForeground": "#75beff",
//"editorOverviewRuler.modifiedForeground": "#0c7d9d99",
//"editorOverviewRuler.rangeHighlightForeground": "#007acc99",
//"editorOverviewRuler.selectionHighlightForeground": "#a0a0a0cc",
//"editorOverviewRuler.warningForeground": "#cca700",
//"editorOverviewRuler.wordHighlightForeground": "#a0a0a0cc",
//"editorOverviewRuler.wordHighlightStrongForeground": "#c0a0c0cc",
//"editorOverviewRuler.wordHighlightTextForeground": "#a0a0a0cc",
//"editorPane.background": "#18151f",
//"editorStickyScroll.background": "#18151f",
//"editorStickyScrollHover.background": "#2a2d2e",
//"editorSuggestWidget.focusHighlightForeground": "#14ace8",
//"editorSuggestWidget.selectedForeground": "#ffffff",
//"editorSuggestWidgetStatus.foreground": "#d4d4d480",
//"editorUnicodeHighlight.background": "#bd9b0326",
//"editorUnicodeHighlight.border": "#bd9b03",
//"editorUnnecessaryCode.opacity": "#000000aa",
//"editorWidget.border": "#454545",
//"errorForeground": "#f48771",
//"extensionBadge.remoteBackground": "#3d278c",
//"extensionBadge.remoteForeground": "#ffffff",
//"extensionButton.background": "#2a2a30",
//"extensionButton.foreground": "#ffffff",
//"extensionButton.hoverBackground": "#30324d",
//"extensionButton.prominentBackground": "#2a2a30",
//"extensionButton.prominentForeground": "#ffffff",
//"extensionButton.prominentHoverBackground": "#30324d",
//"extensionButton.separator": "#ffffff66",
//"extensionIcon.preReleaseForeground": "#1d9271",
//"extensionIcon.sponsorForeground": "#d758b3",
//"extensionIcon.starForeground": "#ff8e00",
//"extensionIcon.verifiedForeground": "#175cab",
//"gitDecoration.renamedResourceForeground": "#73c991",
//"inlineChat.background": "#252526",
//"inlineChat.border": "#454545",
//"inlineChat.regionHighlight": "#264f7840",
//"inlineChat.shadow": "#0000005c",
//"inlineChatDiff.inserted": "#32e04d1a",
//"inlineChatDiff.removed": "#ff00001a",
//"inlineChatInput.background": "#302838",
//"inlineChatInput.border": "#454545",
//"inlineChatInput.focusBorder": "#411740",
//"inlineChatInput.placeholderForeground": "#a6a6a6",
//"inputOption.hoverBackground": "#5a5d5e80",
//"inputValidation.errorBackground": "#5a1d1d",
//"inputValidation.errorBorder": "#be1100",
//"inputValidation.infoBackground": "#063b49",
//"inputValidation.infoBorder": "#007acc",
//"inputValidation.warningBackground": "#352a05",
//"inputValidation.warningBorder": "#b89500",
//"interactive.activeCodeBorder": "#007acc",
//"interactive.inactiveCodeBorder": "#32273d9f",
//"keybindingLabel.background": "#8080802b",
//"keybindingLabel.border": "#33333399",
//"keybindingLabel.bottomBorder": "#44444499",
//"keybindingLabel.foreground": "#cccccc",
//"keybindingTable.headerBackground": "#ffffff0a",
//"keybindingTable.rowsBackground": "#ffffff0a",
//"list.deemphasizedForeground": "#8c8c8c",
//"list.errorForeground": "#f88070",
//"list.filterMatchBackground": "#ea5c0055",
//"list.filterMatchBorder": "#ffffff00",
//"list.focusHighlightForeground": "#14ace8",
//"list.focusOutline": "#411740",
//"list.invalidItemForeground": "#b89500",
//"list.warningForeground": "#cca700",
//"listFilterWidget.shadow": "#0000005c",
//"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": "#36736666",
//"mergeEditor.conflict.input2.background": "#395f8f66",
//"mergeEditor.conflict.unhandled.minimapOverViewRuler": "#fcba03",
//"mergeEditor.conflict.unhandledFocused.border": "#ffa600",
//"mergeEditor.conflict.unhandledUnfocused.border": "#ffa6007a",
//"mergeEditor.conflictingLines.background": "#ffea0047",
//"minimap.foregroundOpacity": "#000000",
//"minimap.infoHighlight": "#75beff",
//"minimap.selectionOccurrenceHighlight": "#676767",
//"minimapSlider.activeBackground": "#bfbfbf33",
//"minimapSlider.background": "#79797933",
//"minimapSlider.hoverBackground": "#6464645a",
//"multiDiffEditor.headerBackground": "#808080",
//"notebook.cellBorderColor": "#32273d9f",
//"notebook.cellEditorBackground": "#201928",
//"notebook.cellInsertionIndicator": "#411740",
//"notebook.cellStatusBarItemHoverBackground": "#ffffff26",
//"notebook.cellToolbarSeparator": "#80808059",
//"notebook.editorBackground": "#18151f",
//"notebook.focusedCellBorder": "#411740",
//"notebook.focusedEditorBorder": "#411740",
//"notebook.inactiveFocusedCellBorder": "#32273d9f",
//"notebook.selectedCellBackground": "#32273d9f",
//"notebook.selectedCellBorder": "#32273d9f",
//"notebook.symbolHighlightBackground": "#ffffff0b",
//"notebookEditorOverviewRuler.runningCellForeground": "#89d185",
//"notebookScrollbarSlider.activeBackground": "#bfbfbf66",
//"notebookScrollbarSlider.background": "#79797966",
//"notebookScrollbarSlider.hoverBackground": "#646464b3",
//"notebookStatusErrorIcon.foreground": "#f48771",
//"notebookStatusRunningIcon.foreground": "#ffffff",
//"notebookStatusSuccessIcon.foreground": "#89d185",
//"notificationLink.foreground": "#175cab",
//"panel.dropBorder": "#e7e7e7",
//"panelInput.border": "#00000000",
//"panelSection.dropBackground": "#53595d80",
//"panelSectionHeader.background": "#80808033",
//"peekViewEditorStickyScroll.background": "#001f33",
//"ports.iconRunningProcessForeground": "#473160",
//"problemsErrorIcon.foreground": "#f48771",
//"problemsInfoIcon.foreground": "#75beff",
//"problemsWarningIcon.foreground": "#cca700",
//"profileBadge.background": "#4d4d4d",
//"profileBadge.foreground": "#ffffff",
//"quickInput.background": "#252526",
//"quickInput.foreground": "#cccccc",
//"quickInputList.focusBackground": "#4d405c81",
//"quickInputList.focusForeground": "#ffffff",
//"quickInputTitle.background": "#ffffff1b",
//"sash.hoverBorder": "#411740",
//"scm.historyItemAdditionsForeground": "#81b88b",
//"scm.historyItemDeletionsForeground": "#c74e39",
//"scm.historyItemSelectedStatisticsBorder": "#ffffff33",
//"scm.historyItemStatisticsBorder": "#ffffff33",
//"search.resultsInfoForeground": "#ffffffa6",
//"searchEditor.findMatchBackground": "#ea5c0038",
//"searchEditor.findMatchBorder": "#ffffff00",
//"searchEditor.textInputBorder": "#00000000",
//"settings.checkboxBackground": "#302838",
//"settings.checkboxBorder": "#00000000",
//"settings.checkboxForeground": "#cccccc",
//"settings.dropdownBackground": "#302838",
//"settings.dropdownBorder": "#00000000",
//"settings.dropdownForeground": "#cccccc",
//"settings.dropdownListBorder": "#454545",
//"settings.focusedRowBorder": "#411740",
//"settings.headerBorder": "#80808059",
//"settings.modifiedItemIndicator": "#0c7d9d",
//"settings.numberInputBackground": "#302838",
//"settings.numberInputBorder": "#00000000",
//"settings.numberInputForeground": "#cccccc",
//"settings.rowHoverBackground": "#4f3e623a",
//"settings.sashBorder": "#80808059",
//"settings.settingsHeaderHoverForeground": "#ffffffb3",
//"settings.textInputBackground": "#302838",
//"settings.textInputBorder": "#00000000",
//"settings.textInputForeground": "#cccccc",
//"sideBySideEditor.horizontalBorder": "#474747",
//"sideBySideEditor.verticalBorder": "#474747",
//"simpleFindWidget.sashBorder": "#454545",
//"statusBar.focusBorder": "#ffffff",
//"statusBarItem.compactHoverBackground": "#ffffff33",
//"statusBarItem.errorBackground": "#c72e0f",
//"statusBarItem.errorForeground": "#ffffff",
//"statusBarItem.errorHoverBackground": "#ffffff1f",
//"statusBarItem.errorHoverForeground": "#ffffff",
//"statusBarItem.focusBorder": "#ffffff",
//"statusBarItem.hoverForeground": "#ffffff",
//"statusBarItem.offlineBackground": "#6c1717",
//"statusBarItem.offlineForeground": "#ffffff",
//"statusBarItem.offlineHoverBackground": "#ffffff1f",
//"statusBarItem.offlineHoverForeground": "#ffffff",
//"statusBarItem.prominentBackground": "#00000080",
//"statusBarItem.prominentForeground": "#ffffff",
//"statusBarItem.prominentHoverBackground": "#0000004d",
//"statusBarItem.prominentHoverForeground": "#ffffff",
//"statusBarItem.remoteHoverBackground": "#ffffff1f",
//"statusBarItem.remoteHoverForeground": "#ffffff",
//"statusBarItem.warningBackground": "#7a6400",
//"statusBarItem.warningForeground": "#ffffff",
//"statusBarItem.warningHoverBackground": "#ffffff1f",
//"statusBarItem.warningHoverForeground": "#ffffff",
//"symbolIcon.arrayForeground": "#ffffff",
//"symbolIcon.booleanForeground": "#ffffff",
//"symbolIcon.classForeground": "#ee9d28",
//"symbolIcon.colorForeground": "#ffffff",
//"symbolIcon.constantForeground": "#ffffff",
//"symbolIcon.constructorForeground": "#b180d7",
//"symbolIcon.enumeratorForeground": "#ee9d28",
//"symbolIcon.enumeratorMemberForeground": "#75beff",
//"symbolIcon.eventForeground": "#ee9d28",
//"symbolIcon.fieldForeground": "#75beff",
//"symbolIcon.fileForeground": "#ffffff",
//"symbolIcon.folderForeground": "#ffffff",
//"symbolIcon.functionForeground": "#b180d7",
//"symbolIcon.interfaceForeground": "#75beff",
//"symbolIcon.keyForeground": "#ffffff",
//"symbolIcon.keywordForeground": "#ffffff",
//"symbolIcon.methodForeground": "#b180d7",
//"symbolIcon.moduleForeground": "#ffffff",
//"symbolIcon.namespaceForeground": "#ffffff",
//"symbolIcon.nullForeground": "#ffffff",
//"symbolIcon.numberForeground": "#ffffff",
//"symbolIcon.objectForeground": "#ffffff",
//"symbolIcon.operatorForeground": "#ffffff",
//"symbolIcon.packageForeground": "#ffffff",
//"symbolIcon.propertyForeground": "#ffffff",
//"symbolIcon.referenceForeground": "#ffffff",
//"symbolIcon.snippetForeground": "#ffffff",
//"symbolIcon.stringForeground": "#ffffff",
//"symbolIcon.structForeground": "#ffffff",
//"symbolIcon.textForeground": "#ffffff",
//"symbolIcon.typeParameterForeground": "#ffffff",
//"symbolIcon.unitForeground": "#ffffff",
//"symbolIcon.variableForeground": "#75beff",
//"tab.activeModifiedBorder": "#3399cc",
//"tab.inactiveModifiedBorder": "#3399cc80",
//"tab.lastPinnedBorder": "#585858",
//"tab.unfocusedActiveBackground": "#463d64bd",
//"tab.unfocusedActiveBorder": "#00000000",
//"tab.unfocusedActiveBorderTop": "#00000000",
//"tab.unfocusedActiveForeground": "#ffffff80",
//"tab.unfocusedActiveModifiedBorder": "#3399cc80",
//"tab.unfocusedInactiveBackground": "#281f32",
//"tab.unfocusedInactiveForeground": "#ffffff40",
//"tab.unfocusedInactiveModifiedBorder": "#3399cc40",
//"terminal.dropBackground": "#53595d80",
//"terminal.findMatchBackground": "#24714de9",
//"terminal.findMatchHighlightBackground": "#ea5c0055",
//"terminal.hoverHighlightBackground": "#264f7820",
//"terminal.inactiveSelectionBackground": "#ffffff20",
//"terminal.tab.activeBorder": "#00000000",
//"terminalCommandDecoration.defaultBackground": "#ffffff40",
//"terminalCommandDecoration.errorBackground": "#f14c4c",
//"terminalCommandDecoration.successBackground": "#1b81a8",
//"terminalOverviewRuler.cursorForeground": "#a0a0a0cc",
//"terminalOverviewRuler.findMatchForeground": "#d186167e",
//"terminalStickyScrollHover.background": "#2a2d2e",
//"testing.iconErrored": "#f14c4c",
//"testing.iconFailed": "#f14c4c",
//"testing.iconPassed": "#73c991",
//"testing.iconQueued": "#cca700",
//"testing.iconSkipped": "#848484",
//"testing.iconUnset": "#848484",
//"testing.message.error.decorationForeground": "#f48771",
//"testing.message.error.lineBackground": "#ff000033",
//"testing.message.info.decorationForeground": "#d4d4d480",
//"testing.peekBorder": "#f48771",
//"testing.peekHeaderBackground": "#f487711a",
//"testing.runAction": "#73c991",
//"textBlockQuote.background": "#222222",
//"textBlockQuote.border": "#007acc80",
//"textCodeBlock.background": "#0a0a0a66",
//"textLink.activeForeground": "#3794ff",
//"textPreformat.background": "#ffffff1a",
//"textPreformat.foreground": "#d7ba7d",
//"textSeparator.foreground": "#ffffff2e",
//"toolbar.activeBackground": "#63666750",
//"toolbar.hoverBackground": "#5a5d5e50",
//"tree.inactiveIndentGuidesStroke": "#58585866",
//"tree.tableColumnsBorder": "#cccccc20",
//"tree.tableOddRowsBackground": "#ffffff0a",
//"walkthrough.stepTitle.foreground": "#ffffff",
//"welcomePage.progress.background": "#302838",
//"welcomePage.progress.foreground": "#175cab",
//"welcomePage.tileBackground": "#252526",
//"welcomePage.tileBorder": "#ffffff1a",
//"welcomePage.tileHoverBackground": "#2c2c2d",
//"activityBar.activeFocusBorder": null,
//"button.border": null,
//"contrastActiveBorder": null,
//"contrastBorder": null,
//"diffEditor.insertedTextBorder": null,
//"diffEditor.removedTextBorder": null,
//"diffEditorGutter.insertedLineBackground": null,
//"diffEditorGutter.removedLineBackground": null,
//"diffEditorOverview.insertedForeground": null,
//"diffEditorOverview.removedForeground": null,
//"dropdown.listBackground": null,
//"editor.selectionForeground": null,
//"editor.snippetFinalTabstopHighlightBackground": null,
//"editor.snippetTabstopHighlightBorder": null,
//"editor.symbolHighlightBorder": null,
//"editor.wordHighlightBorder": null,
//"editor.wordHighlightStrongBorder": null,
//"editor.wordHighlightTextBorder": null,
//"editorGhostText.background": null,
//"editorGhostText.border": null,
//"editorGroup.dropIntoPromptBorder": null,
//"editorGroup.focusedEmptyBorder": null,
//"editorGroupHeader.border": null,
//"editorGroupHeader.tabsBorder": null,
//"editorHint.border": null,
//"editorLineNumber.dimmedForeground": null,
//"editorSuggestWidget.selectedIconForeground": null,
//"editorUnnecessaryCode.border": null,
//"inputValidation.errorForeground": null,
//"inputValidation.infoForeground": null,
//"inputValidation.warningForeground": null,
//"list.activeSelectionIconForeground": null,
//"list.focusAndSelectionOutline": null,
//"list.inactiveFocusBackground": null,
//"list.inactiveFocusOutline": null,
//"list.inactiveSelectionIconForeground": null,
//"menubar.selectionBorder": null,
//"merge.border": null,
//"notebook.cellHoverBackground": null,
//"notebook.focusedCellBackground": null,
//"notebook.inactiveSelectedCellBorder": null,
//"notebook.outputContainerBackgroundColor": null,
//"notebook.outputContainerBorderColor": null,
//"panelSectionHeader.border": null,
//"panelSectionHeader.foreground": null,
//"quickInput.list.focusBackground": null,
//"quickInputList.focusIconForeground": null,
//"sideBar.border": null,
//"statusBar.border": null,
//"statusBar.debuggingBorder": null,
//"statusBar.noFolderBorder": null,
//"tab.hoverBackground": null,
//"tab.hoverBorder": null,
//"tab.hoverForeground": null,
//"tab.unfocusedHoverBackground": null,
//"tab.unfocusedHoverBorder": null,
//"tab.unfocusedHoverForeground": null,
//"terminal.background": null,
//"terminal.findMatchBorder": null,
//"terminal.findMatchHighlightBorder": null,
//"terminal.selectionForeground": null,
//"terminalStickyScroll.background": null,
//"testing.message.info.lineBackground": null,
//"toolbar.hoverOutline": null,
//"welcomePage.background": null,
//"widget.border": null,
//"window.activeBorder": null,
//"window.inactiveBorder": null
},
"tokenColors": [
{
"scope": "punctuation.definition.delayed.unison,punctuation.definition.list.begin.unison,punctuation.definition.list.end.unison,punctuation.definition.ability.begin.unison,punctuation.definition.ability.end.unison,punctuation.operator.assignment.as.unison,punctuation.separator.pipe.unison,punctuation.separator.delimiter.unison,punctuation.definition.hash.unison",
"settings": {
"foreground": "#E06C75"
}
},
{
"scope": "variable.other.generic-type.haskell",
"settings": {
"foreground": "#C678DD"
}
},
{
"scope": "storage.type.haskell",
"settings": {
"foreground": "#D19A66"
}
},
{
"scope": "support.variable.magic.python",
"settings": {
"foreground": "#E06C75"
}
},
{
"scope": "punctuation.separator.period.python,punctuation.separator.element.python,punctuation.parenthesis.begin.python,punctuation.parenthesis.end.python",
"settings": {
"foreground": "#D4D4D4"
}
},
{
"scope": "variable.parameter.function.language.special.self.python",
"settings": {
"foreground": "#E5C07B"
}
},
{
"scope": "storage.modifier.lifetime.rust",
"settings": {
"foreground": "#D4D4D4"
}
},
{
"scope": "support.function.std.rust",
"settings": {
"foreground": "#61AFEF"
}
},
{
"scope": "entity.name.lifetime.rust",
"settings": {
"foreground": "#E5C07B"
}
},
{
"scope": "variable.language.rust",
"settings": {
"foreground": "#E06C75"
}
},
{
"scope": "support.constant.edge",
"settings": {
"foreground": "#C678DD"
}
},
{
"scope": "constant.other.character-class.regexp",
"settings": {
"foreground": "#E06C75"
}
},
{
"scope": "keyword.operator.quantifier.regexp",
"settings": {
"foreground": "#D19A66"
}
},
{
"scope": "punctuation.definition.string.begin,punctuation.definition.string.end",
"settings": {
"foreground": "#98C379"
}
},
{
"scope": "variable.parameter.function",
"settings": {
"foreground": "#D4D4D4"
}
},
{
"scope": "comment markup.link",
"settings": {
"foreground": "#7F848E"
}
},
{
"scope": "markup.changed.diff",
"settings": {
"foreground": "#E5C07B"
}
},
{
"scope": "meta.diff.header.from-file,meta.diff.header.to-file,punctuation.definition.from-file.diff,punctuation.definition.to-file.diff",
"settings": {
"foreground": "#61AFEF"
}
},
{
"scope": "markup.inserted.diff",
"settings": {
"foreground": "#98C379"
}
},
{
"scope": "markup.deleted.diff",
"settings": {
"foreground": "#E06C75"
}
},
{
"scope": "meta.function.c,meta.function.cpp",
"settings": {
"foreground": "#E06C75"
}
},
{
"scope": "punctuation.section.block.begin.bracket.curly.cpp,punctuation.section.block.end.bracket.curly.cpp,punctuation.terminator.statement.c,punctuation.section.block.begin.bracket.curly.c,punctuation.section.block.end.bracket.curly.c,punctuation.section.parens.begin.bracket.round.c,punctuation.section.parens.end.bracket.round.c,punctuation.section.parameters.begin.bracket.round.c,punctuation.section.parameters.end.bracket.round.c",
"settings": {
"foreground": "#D4D4D4"
}
},
{
"scope": "punctuation.separator.key-value",
"settings": {
"foreground": "#D4D4D4"
}
},
{
"scope": "keyword.operator.expression.import",
"settings": {
"foreground": "#61AFEF"
}
},
{
"scope": "support.constant.math",
"settings": {
"foreground": "#E5C07B"
}
},
{
"scope": "support.constant.property.math",
"settings": {
"foreground": "#D19A66"
}
},
{
"scope": "variable.other.constant",
"settings": {
"foreground": "#E5C07B"
}
},
{
"scope": [
"storage.type.annotation.java",
"storage.type.object.array.java"
],
"settings": {
"foreground": "#E5C07B"
}
},
{
"scope": "source.java",
"settings": {
"foreground": "#E06C75"
}
},
{
"scope": "punctuation.section.block.begin.java,punctuation.section.block.end.java,punctuation.definition.method-parameters.begin.java,punctuation.definition.method-parameters.end.java,meta.method.identifier.java,punctuation.section.method.begin.java,punctuation.section.method.end.java,punctuation.terminator.java,punctuation.section.class.begin.java,punctuation.section.class.end.java,punctuation.section.inner-class.begin.java,punctuation.section.inner-class.end.java,meta.method-call.java,punctuation.section.class.begin.bracket.curly.java,punctuation.section.class.end.bracket.curly.java,punctuation.section.method.begin.bracket.curly.java,punctuation.section.method.end.bracket.curly.java,punctuation.separator.period.java,punctuation.bracket.angle.java,punctuation.definition.annotation.java,meta.method.body.java",
"settings": {
"foreground": "#D4D4D4"
}
},
{
"scope": "meta.method.java",
"settings": {
"foreground": "#61AFEF"
}
},
{
"scope": "storage.modifier.import.java,storage.type.java,storage.type.generic.java",
"settings": {
"foreground": "#E5C07B"
}
},
{
"scope": "keyword.operator.instanceof.java",
"settings": {
"foreground": "#C678DD"
}
},
{
"scope": "meta.definition.variable.name.java",
"settings": {
"foreground": "#E06C75"
}
},
{
"scope": "keyword.operator.logical",
"settings": {
"foreground": "#56B6C2"
}
},
{
"scope": "keyword.operator.bitwise",
"settings": {
"foreground": "#56B6C2"
}
},
{
"scope": "keyword.operator.channel",
"settings": {
"foreground": "#56B6C2"
}
},
{
"scope": "support.constant.property-value.scss,support.constant.property-value.css",
"settings": {
"foreground": "#D19A66"
}
},
{
"scope": "keyword.operator.css,keyword.operator.scss,keyword.operator.less",
"settings": {
"foreground": "#56B6C2"
}
},
{
"scope": "support.constant.color.w3c-standard-color-name.css,support.constant.color.w3c-standard-color-name.scss",
"settings": {
"foreground": "#D19A66"
}
},
{
"scope": "punctuation.separator.list.comma.css",
"settings": {
"foreground": "#D4D4D4"
}
},
{
"scope": "support.constant.color.w3c-standard-color-name.css",
"settings": {
"foreground": "#D19A66"
}
},
{
"scope": "support.type.vendored.property-name.css",
"settings": {
"foreground": "#56B6C2"
}
},
{