@sap-ux/control-property-editor 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (112) hide show
  1. package/.eslintignore +1 -0
  2. package/.eslintrc.js +16 -0
  3. package/CHANGELOG.md +7 -0
  4. package/LICENSE +201 -0
  5. package/README.md +16 -0
  6. package/dist/app.css +2 -0
  7. package/dist/app.css.map +7 -0
  8. package/dist/app.js +347 -0
  9. package/dist/app.js.map +7 -0
  10. package/esbuild.js +25 -0
  11. package/jest.config.js +20 -0
  12. package/package.json +68 -0
  13. package/src/App.scss +57 -0
  14. package/src/App.tsx +136 -0
  15. package/src/Workarounds.scss +79 -0
  16. package/src/actions.ts +3 -0
  17. package/src/components/AppLogo.module.scss +8 -0
  18. package/src/components/AppLogo.tsx +75 -0
  19. package/src/components/ChangeIndicator.tsx +80 -0
  20. package/src/components/Separator.tsx +32 -0
  21. package/src/components/ThemeSelectorCallout.scss +48 -0
  22. package/src/components/ThemeSelectorCallout.tsx +125 -0
  23. package/src/components/ToolBar.scss +39 -0
  24. package/src/components/ToolBar.tsx +26 -0
  25. package/src/components/index.ts +4 -0
  26. package/src/devices.ts +18 -0
  27. package/src/global.d.ts +4 -0
  28. package/src/i18n/i18n.json +68 -0
  29. package/src/i18n.ts +25 -0
  30. package/src/icons.tsx +198 -0
  31. package/src/index.css +1288 -0
  32. package/src/index.tsx +47 -0
  33. package/src/middleware.ts +54 -0
  34. package/src/panels/LeftPanel.scss +17 -0
  35. package/src/panels/LeftPanel.tsx +48 -0
  36. package/src/panels/changes/ChangeStack.module.scss +3 -0
  37. package/src/panels/changes/ChangeStack.tsx +219 -0
  38. package/src/panels/changes/ChangeStackHeader.tsx +43 -0
  39. package/src/panels/changes/ChangesPanel.module.scss +18 -0
  40. package/src/panels/changes/ChangesPanel.tsx +90 -0
  41. package/src/panels/changes/ControlGroup.module.scss +17 -0
  42. package/src/panels/changes/ControlGroup.tsx +61 -0
  43. package/src/panels/changes/PropertyChange.module.scss +24 -0
  44. package/src/panels/changes/PropertyChange.tsx +159 -0
  45. package/src/panels/changes/UnknownChange.module.scss +46 -0
  46. package/src/panels/changes/UnknownChange.tsx +96 -0
  47. package/src/panels/changes/index.tsx +3 -0
  48. package/src/panels/changes/utils.ts +36 -0
  49. package/src/panels/index.ts +2 -0
  50. package/src/panels/outline/Funnel.tsx +64 -0
  51. package/src/panels/outline/NoControlFound.tsx +45 -0
  52. package/src/panels/outline/OutlinePanel.scss +98 -0
  53. package/src/panels/outline/OutlinePanel.tsx +38 -0
  54. package/src/panels/outline/Tree.tsx +393 -0
  55. package/src/panels/outline/index.ts +1 -0
  56. package/src/panels/outline/utils.ts +154 -0
  57. package/src/panels/properties/Clipboard.tsx +44 -0
  58. package/src/panels/properties/DeviceSelector.tsx +40 -0
  59. package/src/panels/properties/DeviceToggle.tsx +39 -0
  60. package/src/panels/properties/DropdownEditor.tsx +80 -0
  61. package/src/panels/properties/Funnel.tsx +64 -0
  62. package/src/panels/properties/HeaderField.tsx +150 -0
  63. package/src/panels/properties/IconValueHelp.tsx +203 -0
  64. package/src/panels/properties/InputTypeSelector.tsx +20 -0
  65. package/src/panels/properties/InputTypeToggle.module.scss +4 -0
  66. package/src/panels/properties/InputTypeToggle.tsx +79 -0
  67. package/src/panels/properties/InputTypeWrapper.tsx +259 -0
  68. package/src/panels/properties/NoControlSelected.tsx +38 -0
  69. package/src/panels/properties/Properties.scss +102 -0
  70. package/src/panels/properties/PropertiesList.tsx +162 -0
  71. package/src/panels/properties/PropertiesPanel.tsx +30 -0
  72. package/src/panels/properties/PropertyDocumentation.module.scss +81 -0
  73. package/src/panels/properties/PropertyDocumentation.tsx +174 -0
  74. package/src/panels/properties/SapUiIcon.scss +109 -0
  75. package/src/panels/properties/StringEditor.tsx +122 -0
  76. package/src/panels/properties/ViewChanger.module.scss +5 -0
  77. package/src/panels/properties/ViewChanger.tsx +143 -0
  78. package/src/panels/properties/constants.ts +2 -0
  79. package/src/panels/properties/index.tsx +1 -0
  80. package/src/panels/properties/propertyValuesCache.ts +39 -0
  81. package/src/panels/properties/types.ts +49 -0
  82. package/src/slice.ts +216 -0
  83. package/src/store.ts +19 -0
  84. package/src/use-local-storage.ts +40 -0
  85. package/src/use-window-size.ts +39 -0
  86. package/src/variables.scss +2 -0
  87. package/test/unit/App.test.tsx +207 -0
  88. package/test/unit/appIndex.test.ts +23 -0
  89. package/test/unit/components/ChangeIndicator.test.tsx +120 -0
  90. package/test/unit/components/ThemeSelector.test.tsx +41 -0
  91. package/test/unit/middleware.test.ts +116 -0
  92. package/test/unit/panels/changes/ChangesPanel.test.tsx +261 -0
  93. package/test/unit/panels/changes/utils.test.ts +40 -0
  94. package/test/unit/panels/outline/OutlinePanel.test.tsx +353 -0
  95. package/test/unit/panels/outline/__snapshots__/utils.test.ts.snap +36 -0
  96. package/test/unit/panels/outline/utils.test.ts +83 -0
  97. package/test/unit/panels/properties/Clipboard.test.tsx +18 -0
  98. package/test/unit/panels/properties/DropdownEditor.test.tsx +62 -0
  99. package/test/unit/panels/properties/Funnel.test.tsx +34 -0
  100. package/test/unit/panels/properties/HeaderField.test.tsx +36 -0
  101. package/test/unit/panels/properties/IconValueHelp.test.tsx +60 -0
  102. package/test/unit/panels/properties/InputTypeToggle.test.tsx +126 -0
  103. package/test/unit/panels/properties/InputTypeWrapper.test.tsx +430 -0
  104. package/test/unit/panels/properties/PropertyDocumentation.test.tsx +131 -0
  105. package/test/unit/panels/properties/StringEditor.test.tsx +107 -0
  106. package/test/unit/panels/properties/ViewChanger.test.tsx +190 -0
  107. package/test/unit/panels/properties/propertyValuesCache.test.ts +23 -0
  108. package/test/unit/slice.test.ts +268 -0
  109. package/test/unit/utils.tsx +67 -0
  110. package/test/utils/utils.tsx +25 -0
  111. package/tsconfig.eslint.json +4 -0
  112. package/tsconfig.json +39 -0
package/src/index.css ADDED
@@ -0,0 +1,1288 @@
1
+ html {
2
+ height: 100%;
3
+ }
4
+
5
+ #root {
6
+ height: 100%;
7
+ }
8
+
9
+ body {
10
+ margin: 0;
11
+ height: 100%;
12
+ font-family: var(--vscode-font-family);
13
+ }
14
+
15
+ html,
16
+ body {
17
+ font-family: var(--vscode-font-family);
18
+ color: var(--vscode-foreground);
19
+ }
20
+
21
+ code {
22
+ font-family: var(--vscode-font-family);
23
+ }
24
+
25
+ html[data-theme='dark'] {
26
+ --vscode-font-family: -apple-system, BlinkMacSystemFont, sans-serif;
27
+ --vscode-font-weight: normal;
28
+ --vscode-font-size: 13px;
29
+ --vscode-editor-font-family: Menlo, Monaco, 'Courier New', monospace;
30
+ --vscode-editor-font-weight: normal;
31
+ --vscode-editor-font-size: 12px;
32
+ --vscode-foreground: #cccccc;
33
+ --vscode-errorForeground: #f48771;
34
+ --vscode-descriptionForeground: rgba(204, 204, 204, 0.7);
35
+ --vscode-icon-foreground: #c5c5c5;
36
+ --vscode-focusBorder: #007fd4;
37
+ --vscode-textSeparator-foreground: rgba(255, 255, 255, 0.18);
38
+ --vscode-textLink-foreground: #3794ff;
39
+ --vscode-textLink-activeForeground: #3794ff;
40
+ --vscode-textPreformat-foreground: #d7ba7d;
41
+ --vscode-textBlockQuote-background: rgba(127, 127, 127, 0.1);
42
+ --vscode-textBlockQuote-border: rgba(0, 122, 204, 0.5);
43
+ --vscode-textCodeBlock-background: rgba(10, 10, 10, 0.4);
44
+ --vscode-widget-shadow: rgba(0, 0, 0, 0.36);
45
+ --vscode-input-background: #3c3c3c;
46
+ --vscode-input-foreground: #cccccc;
47
+ --vscode-inputOption-activeBorder: rgba(0, 122, 204, 0);
48
+ --vscode-inputOption-activeBackground: rgba(0, 127, 212, 0.4);
49
+ --vscode-inputOption-activeForeground: #ffffff;
50
+ --vscode-input-placeholderForeground: #a6a6a6;
51
+ --vscode-inputValidation-infoBackground: #063b49;
52
+ --vscode-inputValidation-infoBorder: #007acc;
53
+ --vscode-inputValidation-warningBackground: #352a05;
54
+ --vscode-inputValidation-warningBorder: #b89500;
55
+ --vscode-inputValidation-errorBackground: #5a1d1d;
56
+ --vscode-inputValidation-errorBorder: #be1100;
57
+ --vscode-dropdown-background: #3c3c3c;
58
+ --vscode-dropdown-foreground: #f0f0f0;
59
+ --vscode-dropdown-border: #3c3c3c;
60
+ --vscode-checkbox-background: #3c3c3c;
61
+ --vscode-checkbox-foreground: #f0f0f0;
62
+ --vscode-checkbox-border: #3c3c3c;
63
+ --vscode-button-foreground: #ffffff;
64
+ --vscode-button-background: #0e639c;
65
+ --vscode-button-hoverBackground: #1177bb;
66
+ --vscode-button-secondaryForeground: #ffffff;
67
+ --vscode-button-secondaryBackground: #3a3d41;
68
+ --vscode-button-secondaryHoverBackground: #45494e;
69
+ --vscode-badge-background: #4d4d4d;
70
+ --vscode-badge-foreground: #ffffff;
71
+ --vscode-scrollbar-shadow: #000000;
72
+ --vscode-scrollbarSlider-background: rgba(121, 121, 121, 0.4);
73
+ --vscode-scrollbarSlider-hoverBackground: rgba(100, 100, 100, 0.7);
74
+ --vscode-scrollbarSlider-activeBackground: rgba(191, 191, 191, 0.4);
75
+ --vscode-progressBar-background: #0e70c0;
76
+ --vscode-editorError-foreground: #f48771;
77
+ --vscode-editorWarning-foreground: #cca700;
78
+ --vscode-editorInfo-foreground: #75beff;
79
+ --vscode-editorHint-foreground: rgba(238, 238, 238, 0.7);
80
+ --vscode-sash-hoverBorder: #007fd4;
81
+ --vscode-editor-background: #1e1e1e;
82
+ --vscode-editor-foreground: #d4d4d4;
83
+ --vscode-editorWidget-background: #252526;
84
+ --vscode-editorWidget-foreground: #cccccc;
85
+ --vscode-editorWidget-border: #454545;
86
+ --vscode-quickInput-background: #252526;
87
+ --vscode-quickInput-foreground: #cccccc;
88
+ --vscode-quickInputTitle-background: rgba(255, 255, 255, 0.1);
89
+ --vscode-quickInput-list\.focusBackground: #062f4a;
90
+ --vscode-pickerGroup-foreground: #3794ff;
91
+ --vscode-pickerGroup-border: #3f3f46;
92
+ --vscode-editor-selectionBackground: #264f78;
93
+ --vscode-editor-inactiveSelectionBackground: #3a3d41;
94
+ --vscode-editor-selectionHighlightBackground: rgba(173, 214, 255, 0.15);
95
+ --vscode-editor-findMatchBackground: #515c6a;
96
+ --vscode-editor-findMatchHighlightBackground: rgba(234, 92, 0, 0.33);
97
+ --vscode-editor-findRangeHighlightBackground: rgba(58, 61, 65, 0.4);
98
+ --vscode-searchEditor-findMatchBackground: rgba(234, 92, 0, 0.22);
99
+ --vscode-editor-hoverHighlightBackground: rgba(38, 79, 120, 0.25);
100
+ --vscode-editorHoverWidget-background: #252526;
101
+ --vscode-editorHoverWidget-foreground: #cccccc;
102
+ --vscode-editorHoverWidget-border: #454545;
103
+ --vscode-editorHoverWidget-statusBarBackground: #2c2c2d;
104
+ --vscode-editorLink-activeForeground: #4e94ce;
105
+ --vscode-editorInlineHint-foreground: #252526;
106
+ --vscode-editorInlineHint-background: #cccccc;
107
+ --vscode-editorLightBulb-foreground: #ffcc00;
108
+ --vscode-editorLightBulbAutoFix-foreground: #75beff;
109
+ --vscode-diffEditor-insertedTextBackground: rgba(155, 185, 85, 0.2);
110
+ --vscode-diffEditor-removedTextBackground: rgba(255, 0, 0, 0.2);
111
+ --vscode-diffEditor-diagonalFill: rgba(204, 204, 204, 0.2);
112
+ --vscode-list-focusOutline: #007fd4;
113
+ --vscode-list-activeSelectionBackground: #094771;
114
+ --vscode-list-activeSelectionForeground: #ffffff;
115
+ --vscode-list-inactiveSelectionBackground: #37373d;
116
+ --vscode-list-hoverBackground: #2a2d2e;
117
+ --vscode-list-dropBackground: #383b3d;
118
+ --vscode-list-highlightForeground: #0097fb;
119
+ --vscode-list-invalidItemForeground: #b89500;
120
+ --vscode-list-errorForeground: #f88070;
121
+ --vscode-list-warningForeground: #cca700;
122
+ --vscode-listFilterWidget-background: #653723;
123
+ --vscode-listFilterWidget-outline: rgba(0, 0, 0, 0);
124
+ --vscode-listFilterWidget-noMatchesOutline: #be1100;
125
+ --vscode-list-filterMatchBackground: rgba(234, 92, 0, 0.33);
126
+ --vscode-tree-indentGuidesStroke: #585858;
127
+ --vscode-tree-tableColumnsBorder: rgba(204, 204, 204, 0.13);
128
+ --vscode-list-deemphasizedForeground: #8c8c8c;
129
+ --vscode-menu-foreground: #cccccc;
130
+ --vscode-menu-background: #252526;
131
+ --vscode-menu-selectionForeground: #ffffff;
132
+ --vscode-menu-selectionBackground: #094771;
133
+ --vscode-menu-separatorBackground: #bbbbbb;
134
+ --vscode-editor-snippetTabstopHighlightBackground: rgba(124, 124, 124, 0.3);
135
+ --vscode-editor-snippetFinalTabstopHighlightBorder: #525252;
136
+ --vscode-breadcrumb-foreground: rgba(204, 204, 204, 0.8);
137
+ --vscode-breadcrumb-background: #1e1e1e;
138
+ --vscode-breadcrumb-focusForeground: #e0e0e0;
139
+ --vscode-breadcrumb-activeSelectionForeground: #e0e0e0;
140
+ --vscode-breadcrumbPicker-background: #252526;
141
+ --vscode-merge-currentHeaderBackground: rgba(64, 200, 174, 0.5);
142
+ --vscode-merge-currentContentBackground: rgba(64, 200, 174, 0.2);
143
+ --vscode-merge-incomingHeaderBackground: rgba(64, 166, 255, 0.5);
144
+ --vscode-merge-incomingContentBackground: rgba(64, 166, 255, 0.2);
145
+ --vscode-merge-commonHeaderBackground: rgba(96, 96, 96, 0.4);
146
+ --vscode-merge-commonContentBackground: rgba(96, 96, 96, 0.16);
147
+ --vscode-editorOverviewRuler-currentContentForeground: rgba(64, 200, 174, 0.5);
148
+ --vscode-editorOverviewRuler-incomingContentForeground: rgba(64, 166, 255, 0.5);
149
+ --vscode-editorOverviewRuler-commonContentForeground: rgba(96, 96, 96, 0.4);
150
+ --vscode-editorOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
151
+ --vscode-editorOverviewRuler-selectionHighlightForeground: rgba(160, 160, 160, 0.8);
152
+ --vscode-minimap-findMatchHighlight: #d18616;
153
+ --vscode-minimap-selectionHighlight: #264f78;
154
+ --vscode-minimap-errorHighlight: rgba(255, 18, 18, 0.7);
155
+ --vscode-minimap-warningHighlight: #cca700;
156
+ --vscode-minimapSlider-background: rgba(121, 121, 121, 0.2);
157
+ --vscode-minimapSlider-hoverBackground: rgba(100, 100, 100, 0.35);
158
+ --vscode-minimapSlider-activeBackground: rgba(191, 191, 191, 0.2);
159
+ --vscode-problemsErrorIcon-foreground: #f48771;
160
+ --vscode-problemsWarningIcon-foreground: #cca700;
161
+ --vscode-problemsInfoIcon-foreground: #75beff;
162
+ --vscode-charts-foreground: #cccccc;
163
+ --vscode-charts-lines: rgba(204, 204, 204, 0.5);
164
+ --vscode-charts-red: #f48771;
165
+ --vscode-charts-blue: #75beff;
166
+ --vscode-charts-yellow: #cca700;
167
+ --vscode-charts-orange: #d18616;
168
+ --vscode-charts-green: #89d185;
169
+ --vscode-charts-purple: #b180d7;
170
+ --vscode-editor-lineHighlightBorder: #282828;
171
+ --vscode-editor-rangeHighlightBackground: rgba(255, 255, 255, 0.04);
172
+ --vscode-editor-symbolHighlightBackground: rgba(234, 92, 0, 0.33);
173
+ --vscode-editorCursor-foreground: #aeafad;
174
+ --vscode-editorWhitespace-foreground: rgba(227, 228, 226, 0.16);
175
+ --vscode-editorIndentGuide-background: #404040;
176
+ --vscode-editorIndentGuide-activeBackground: #707070;
177
+ --vscode-editorLineNumber-foreground: #858585;
178
+ --vscode-editorActiveLineNumber-foreground: #c6c6c6;
179
+ --vscode-editorLineNumber-activeForeground: #c6c6c6;
180
+ --vscode-editorRuler-foreground: #5a5a5a;
181
+ --vscode-editorCodeLens-foreground: #999999;
182
+ --vscode-editorBracketMatch-background: rgba(0, 100, 0, 0.1);
183
+ --vscode-editorBracketMatch-border: #888888;
184
+ --vscode-editorOverviewRuler-border: rgba(127, 127, 127, 0.3);
185
+ --vscode-editorGutter-background: #1e1e1e;
186
+ --vscode-editorUnnecessaryCode-opacity: rgba(0, 0, 0, 0.67);
187
+ --vscode-editorOverviewRuler-rangeHighlightForeground: rgba(0, 122, 204, 0.6);
188
+ --vscode-editorOverviewRuler-errorForeground: rgba(255, 18, 18, 0.7);
189
+ --vscode-editorOverviewRuler-warningForeground: #cca700;
190
+ --vscode-editorOverviewRuler-infoForeground: #75beff;
191
+ --vscode-symbolIcon-arrayForeground: #cccccc;
192
+ --vscode-symbolIcon-booleanForeground: #cccccc;
193
+ --vscode-symbolIcon-classForeground: #ee9d28;
194
+ --vscode-symbolIcon-colorForeground: #cccccc;
195
+ --vscode-symbolIcon-constantForeground: #cccccc;
196
+ --vscode-symbolIcon-constructorForeground: #b180d7;
197
+ --vscode-symbolIcon-enumeratorForeground: #ee9d28;
198
+ --vscode-symbolIcon-enumeratorMemberForeground: #75beff;
199
+ --vscode-symbolIcon-eventForeground: #ee9d28;
200
+ --vscode-symbolIcon-fieldForeground: #75beff;
201
+ --vscode-symbolIcon-fileForeground: #cccccc;
202
+ --vscode-symbolIcon-folderForeground: #cccccc;
203
+ --vscode-symbolIcon-functionForeground: #b180d7;
204
+ --vscode-symbolIcon-interfaceForeground: #75beff;
205
+ --vscode-symbolIcon-keyForeground: #cccccc;
206
+ --vscode-symbolIcon-keywordForeground: #cccccc;
207
+ --vscode-symbolIcon-methodForeground: #b180d7;
208
+ --vscode-symbolIcon-moduleForeground: #cccccc;
209
+ --vscode-symbolIcon-namespaceForeground: #cccccc;
210
+ --vscode-symbolIcon-nullForeground: #cccccc;
211
+ --vscode-symbolIcon-numberForeground: #cccccc;
212
+ --vscode-symbolIcon-objectForeground: #cccccc;
213
+ --vscode-symbolIcon-operatorForeground: #cccccc;
214
+ --vscode-symbolIcon-packageForeground: #cccccc;
215
+ --vscode-symbolIcon-propertyForeground: #cccccc;
216
+ --vscode-symbolIcon-referenceForeground: #cccccc;
217
+ --vscode-symbolIcon-snippetForeground: #cccccc;
218
+ --vscode-symbolIcon-stringForeground: #cccccc;
219
+ --vscode-symbolIcon-structForeground: #cccccc;
220
+ --vscode-symbolIcon-textForeground: #cccccc;
221
+ --vscode-symbolIcon-typeParameterForeground: #cccccc;
222
+ --vscode-symbolIcon-unitForeground: #cccccc;
223
+ --vscode-symbolIcon-variableForeground: #75beff;
224
+ --vscode-editorOverviewRuler-bracketMatchForeground: #a0a0a0;
225
+ --vscode-editor-linkedEditingBackground: rgba(255, 0, 0, 0.3);
226
+ --vscode-editor-wordHighlightBackground: rgba(87, 87, 87, 0.72);
227
+ --vscode-editor-wordHighlightStrongBackground: rgba(0, 73, 114, 0.72);
228
+ --vscode-editorOverviewRuler-wordHighlightForeground: rgba(160, 160, 160, 0.8);
229
+ --vscode-editorOverviewRuler-wordHighlightStrongForeground: rgba(192, 160, 192, 0.8);
230
+ --vscode-editor-foldBackground: rgba(38, 79, 120, 0.3);
231
+ --vscode-editorGutter-foldingControlForeground: #c5c5c5;
232
+ --vscode-peekViewTitle-background: #1e1e1e;
233
+ --vscode-peekViewTitleLabel-foreground: #ffffff;
234
+ --vscode-peekViewTitleDescription-foreground: rgba(204, 204, 204, 0.7);
235
+ --vscode-peekView-border: #007acc;
236
+ --vscode-peekViewResult-background: #252526;
237
+ --vscode-peekViewResult-lineForeground: #bbbbbb;
238
+ --vscode-peekViewResult-fileForeground: #ffffff;
239
+ --vscode-peekViewResult-selectionBackground: rgba(51, 153, 255, 0.2);
240
+ --vscode-peekViewResult-selectionForeground: #ffffff;
241
+ --vscode-peekViewEditor-background: #001f33;
242
+ --vscode-peekViewEditorGutter-background: #001f33;
243
+ --vscode-peekViewResult-matchHighlightBackground: rgba(234, 92, 0, 0.3);
244
+ --vscode-peekViewEditor-matchHighlightBackground: rgba(255, 143, 0, 0.6);
245
+ --vscode-editorMarkerNavigationError-background: #f48771;
246
+ --vscode-editorMarkerNavigationWarning-background: #cca700;
247
+ --vscode-editorMarkerNavigationInfo-background: #75beff;
248
+ --vscode-editorMarkerNavigation-background: #2d2d30;
249
+ --vscode-editorSuggestWidget-background: #252526;
250
+ --vscode-editorSuggestWidget-border: #454545;
251
+ --vscode-editorSuggestWidget-foreground: #d4d4d4;
252
+ --vscode-editorSuggestWidget-selectedBackground: #062f4a;
253
+ --vscode-editorSuggestWidget-highlightForeground: #0097fb;
254
+ --vscode-tab-activeBackground: #1e1e1e;
255
+ --vscode-tab-unfocusedActiveBackground: #1e1e1e;
256
+ --vscode-tab-inactiveBackground: #2d2d2d;
257
+ --vscode-tab-unfocusedInactiveBackground: #2d2d2d;
258
+ --vscode-tab-activeForeground: #ffffff;
259
+ --vscode-tab-inactiveForeground: rgba(255, 255, 255, 0.5);
260
+ --vscode-tab-unfocusedActiveForeground: rgba(255, 255, 255, 0.5);
261
+ --vscode-tab-unfocusedInactiveForeground: rgba(255, 255, 255, 0.25);
262
+ --vscode-tab-border: #252526;
263
+ --vscode-tab-lastPinnedBorder: rgba(204, 204, 204, 0.2);
264
+ --vscode-tab-activeModifiedBorder: #3399cc;
265
+ --vscode-tab-inactiveModifiedBorder: rgba(51, 153, 204, 0.5);
266
+ --vscode-tab-unfocusedActiveModifiedBorder: rgba(51, 153, 204, 0.5);
267
+ --vscode-tab-unfocusedInactiveModifiedBorder: rgba(51, 153, 204, 0.25);
268
+ --vscode-editorPane-background: #1e1e1e;
269
+ --vscode-editorGroupHeader-tabsBackground: #252526;
270
+ --vscode-editorGroupHeader-noTabsBackground: #1e1e1e;
271
+ --vscode-editorGroup-border: #444444;
272
+ --vscode-editorGroup-dropBackground: rgba(83, 89, 93, 0.5);
273
+ --vscode-imagePreview-border: rgba(128, 128, 128, 0.35);
274
+ --vscode-panel-background: #1e1e1e;
275
+ --vscode-panel-border: rgba(128, 128, 128, 0.35);
276
+ --vscode-panelTitle-activeForeground: #e7e7e7;
277
+ --vscode-panelTitle-inactiveForeground: rgba(231, 231, 231, 0.6);
278
+ --vscode-panelTitle-activeBorder: #e7e7e7;
279
+ --vscode-panel-dropBorder: #e7e7e7;
280
+ --vscode-panelSection-dropBackground: rgba(83, 89, 93, 0.5);
281
+ --vscode-panelSectionHeader-background: rgba(128, 128, 128, 0.2);
282
+ --vscode-panelSection-border: rgba(128, 128, 128, 0.35);
283
+ --vscode-statusBar-foreground: #ffffff;
284
+ --vscode-statusBar-noFolderForeground: #ffffff;
285
+ --vscode-statusBar-background: #007acc;
286
+ --vscode-statusBar-noFolderBackground: #68217a;
287
+ --vscode-statusBarItem-activeBackground: rgba(255, 255, 255, 0.18);
288
+ --vscode-statusBarItem-hoverBackground: rgba(255, 255, 255, 0.12);
289
+ --vscode-statusBarItem-prominentForeground: #ffffff;
290
+ --vscode-statusBarItem-prominentBackground: rgba(0, 0, 0, 0.5);
291
+ --vscode-statusBarItem-prominentHoverBackground: rgba(0, 0, 0, 0.3);
292
+ --vscode-statusBarItem-errorBackground: #c72e0f;
293
+ --vscode-statusBarItem-errorForeground: #ffffff;
294
+ --vscode-activityBar-background: #333333;
295
+ --vscode-activityBar-foreground: #ffffff;
296
+ --vscode-activityBar-inactiveForeground: rgba(255, 255, 255, 0.4);
297
+ --vscode-activityBar-activeBorder: #ffffff;
298
+ --vscode-activityBar-dropBorder: #ffffff;
299
+ --vscode-activityBarBadge-background: #007acc;
300
+ --vscode-activityBarBadge-foreground: #ffffff;
301
+ --vscode-statusBarItem-remoteBackground: #16825d;
302
+ --vscode-statusBarItem-remoteForeground: #ffffff;
303
+ --vscode-extensionBadge-remoteBackground: #007acc;
304
+ --vscode-extensionBadge-remoteForeground: #ffffff;
305
+ --vscode-sideBar-background: #252526;
306
+ --vscode-sideBarTitle-foreground: #bbbbbb;
307
+ --vscode-sideBar-dropBackground: rgba(83, 89, 93, 0.5);
308
+ --vscode-sideBarSectionHeader-background: rgba(0, 0, 0, 0);
309
+ --vscode-sideBarSectionHeader-border: rgba(204, 204, 204, 0.2);
310
+ --vscode-titleBar-activeForeground: #cccccc;
311
+ --vscode-titleBar-inactiveForeground: rgba(204, 204, 204, 0.6);
312
+ --vscode-titleBar-activeBackground: #3c3c3c;
313
+ --vscode-titleBar-inactiveBackground: rgba(60, 60, 60, 0.6);
314
+ --vscode-menubar-selectionForeground: #cccccc;
315
+ --vscode-menubar-selectionBackground: rgba(255, 255, 255, 0.1);
316
+ --vscode-notifications-foreground: #cccccc;
317
+ --vscode-notifications-background: #252526;
318
+ --vscode-notificationLink-foreground: #3794ff;
319
+ --vscode-notificationCenterHeader-background: #303031;
320
+ --vscode-notifications-border: #303031;
321
+ --vscode-notificationsErrorIcon-foreground: #f48771;
322
+ --vscode-notificationsWarningIcon-foreground: #cca700;
323
+ --vscode-notificationsInfoIcon-foreground: #75beff;
324
+ --vscode-editorGutter-commentRangeForeground: #c5c5c5;
325
+ --vscode-debugToolBar-background: #333333;
326
+ --vscode-debugIcon-startForeground: #89d185;
327
+ --vscode-settings-headerForeground: #e7e7e7;
328
+ --vscode-settings-modifiedItemIndicator: #0c7d9d;
329
+ --vscode-settings-dropdownBackground: #3c3c3c;
330
+ --vscode-settings-dropdownForeground: #f0f0f0;
331
+ --vscode-settings-dropdownBorder: #3c3c3c;
332
+ --vscode-settings-dropdownListBorder: #454545;
333
+ --vscode-settings-checkboxBackground: #3c3c3c;
334
+ --vscode-settings-checkboxForeground: #f0f0f0;
335
+ --vscode-settings-checkboxBorder: #3c3c3c;
336
+ --vscode-settings-textInputBackground: #3c3c3c;
337
+ --vscode-settings-textInputForeground: #cccccc;
338
+ --vscode-settings-numberInputBackground: #3c3c3c;
339
+ --vscode-settings-numberInputForeground: #cccccc;
340
+ --vscode-settings-focusedRowBackground: rgba(128, 128, 128, 0.14);
341
+ --vscode-notebook-rowHoverBackground: rgba(128, 128, 128, 0.07);
342
+ --vscode-notebook-focusedRowBorder: rgba(255, 255, 255, 0.12);
343
+ --vscode-terminal-foreground: #cccccc;
344
+ --vscode-terminal-selectionBackground: rgba(255, 255, 255, 0.25);
345
+ --vscode-terminal-border: rgba(128, 128, 128, 0.35);
346
+ --vscode-testing-iconFailed: #f14c4c;
347
+ --vscode-testing-iconErrored: #f14c4c;
348
+ --vscode-testing-iconPassed: #73c991;
349
+ --vscode-testing-runAction: #73c991;
350
+ --vscode-testing-iconQueued: #cca700;
351
+ --vscode-testing-iconUnset: #848484;
352
+ --vscode-testing-iconSkipped: #848484;
353
+ --vscode-testing-peekBorder: #f48771;
354
+ --vscode-testing-message\.error\.decorationForeground: #f48771;
355
+ --vscode-testing-message\.error\.lineBackground: rgba(255, 0, 0, 0.2);
356
+ --vscode-testing-message\.warning\.decorationForeground: #cca700;
357
+ --vscode-testing-message\.warning\.lineBackground: rgba(255, 208, 0, 0.2);
358
+ --vscode-testing-message\.info\.decorationForeground: #75beff;
359
+ --vscode-testing-message\.info\.lineBackground: rgba(0, 127, 255, 0.2);
360
+ --vscode-testing-message\.hint\.decorationForeground: rgba(238, 238, 238, 0.7);
361
+ --vscode-welcomePage-tileBackground: #252526;
362
+ --vscode-welcomePage-tileHoverBackground: #2c2c2d;
363
+ --vscode-welcomePage-progress\.background: #3c3c3c;
364
+ --vscode-welcomePage-progress\.foreground: #3794ff;
365
+ --vscode-statusBar-debuggingBackground: #cc6633;
366
+ --vscode-statusBar-debuggingForeground: #ffffff;
367
+ --vscode-debugExceptionWidget-border: #a31515;
368
+ --vscode-debugExceptionWidget-background: #420b0d;
369
+ --vscode-editorGutter-modifiedBackground: #0c7d9d;
370
+ --vscode-editorGutter-addedBackground: #587c0c;
371
+ --vscode-editorGutter-deletedBackground: #94151b;
372
+ --vscode-minimapGutter-modifiedBackground: #0c7d9d;
373
+ --vscode-minimapGutter-addedBackground: #587c0c;
374
+ --vscode-minimapGutter-deletedBackground: #94151b;
375
+ --vscode-editorOverviewRuler-modifiedForeground: rgba(12, 125, 157, 0.6);
376
+ --vscode-editorOverviewRuler-addedForeground: rgba(88, 124, 12, 0.6);
377
+ --vscode-editorOverviewRuler-deletedForeground: rgba(148, 21, 27, 0.6);
378
+ --vscode-editor-stackFrameHighlightBackground: rgba(255, 255, 0, 0.2);
379
+ --vscode-editor-focusedStackFrameHighlightBackground: rgba(122, 189, 122, 0.3);
380
+ --vscode-debugIcon-breakpointForeground: #e51400;
381
+ --vscode-debugIcon-breakpointDisabledForeground: #848484;
382
+ --vscode-debugIcon-breakpointUnverifiedForeground: #848484;
383
+ --vscode-debugIcon-breakpointCurrentStackframeForeground: #ffcc00;
384
+ --vscode-debugIcon-breakpointStackframeForeground: #89d185;
385
+ --vscode-scm-providerBorder: #454545;
386
+ --vscode-notebook-cellBorderColor: #37373d;
387
+ --vscode-notebook-focusedEditorBorder: #007fd4;
388
+ --vscode-notebookStatusSuccessIcon-foreground: #89d185;
389
+ --vscode-notebookStatusErrorIcon-foreground: #f48771;
390
+ --vscode-notebookStatusRunningIcon-foreground: #cccccc;
391
+ --vscode-notebook-outputContainerBackgroundColor: #37373d;
392
+ --vscode-notebook-cellToolbarSeparator: rgba(128, 128, 128, 0.35);
393
+ --vscode-notebook-selectedCellBackground: rgba(56, 59, 61, 0.31);
394
+ --vscode-notebook-selectedCellBorder: #37373d;
395
+ --vscode-notebook-focusedCellBorder: #007fd4;
396
+ --vscode-notebook-inactiveFocusedCellBorder: #37373d;
397
+ --vscode-notebook-cellStatusBarItemHoverBackground: rgba(255, 255, 255, 0.15);
398
+ --vscode-notebook-cellInsertionIndicator: #007fd4;
399
+ --vscode-notebookScrollbarSlider-background: rgba(121, 121, 121, 0.4);
400
+ --vscode-notebookScrollbarSlider-hoverBackground: rgba(100, 100, 100, 0.7);
401
+ --vscode-notebookScrollbarSlider-activeBackground: rgba(191, 191, 191, 0.4);
402
+ --vscode-notebook-symbolHighlightBackground: rgba(255, 255, 255, 0.04);
403
+ --vscode-extensionButton-prominentBackground: #0e639c;
404
+ --vscode-extensionButton-prominentForeground: #ffffff;
405
+ --vscode-extensionButton-prominentHoverBackground: #1177bb;
406
+ --vscode-extensionIcon-starForeground: #ff8e00;
407
+ --vscode-terminal-ansiBlack: #000000;
408
+ --vscode-terminal-ansiRed: #cd3131;
409
+ --vscode-terminal-ansiGreen: #0dbc79;
410
+ --vscode-terminal-ansiYellow: #e5e510;
411
+ --vscode-terminal-ansiBlue: #2472c8;
412
+ --vscode-terminal-ansiMagenta: #bc3fbc;
413
+ --vscode-terminal-ansiCyan: #11a8cd;
414
+ --vscode-terminal-ansiWhite: #e5e5e5;
415
+ --vscode-terminal-ansiBrightBlack: #666666;
416
+ --vscode-terminal-ansiBrightRed: #f14c4c;
417
+ --vscode-terminal-ansiBrightGreen: #23d18b;
418
+ --vscode-terminal-ansiBrightYellow: #f5f543;
419
+ --vscode-terminal-ansiBrightBlue: #3b8eea;
420
+ --vscode-terminal-ansiBrightMagenta: #d670d6;
421
+ --vscode-terminal-ansiBrightCyan: #29b8db;
422
+ --vscode-terminal-ansiBrightWhite: #e5e5e5;
423
+ --vscode-debugTokenExpression-name: #c586c0;
424
+ --vscode-debugTokenExpression-value: rgba(204, 204, 204, 0.6);
425
+ --vscode-debugTokenExpression-string: #ce9178;
426
+ --vscode-debugTokenExpression-boolean: #4e94ce;
427
+ --vscode-debugTokenExpression-number: #b5cea8;
428
+ --vscode-debugTokenExpression-error: #f48771;
429
+ --vscode-debugView-exceptionLabelForeground: #cccccc;
430
+ --vscode-debugView-exceptionLabelBackground: #6c2022;
431
+ --vscode-debugView-stateLabelForeground: #cccccc;
432
+ --vscode-debugView-stateLabelBackground: rgba(136, 136, 136, 0.27);
433
+ --vscode-debugView-valueChangedHighlight: #569cd6;
434
+ --vscode-debugConsole-infoForeground: #75beff;
435
+ --vscode-debugConsole-warningForeground: #cca700;
436
+ --vscode-debugConsole-errorForeground: #f48771;
437
+ --vscode-debugConsole-sourceForeground: #cccccc;
438
+ --vscode-debugConsoleInputIcon-foreground: #cccccc;
439
+ --vscode-debugIcon-pauseForeground: #75beff;
440
+ --vscode-debugIcon-stopForeground: #f48771;
441
+ --vscode-debugIcon-disconnectForeground: #f48771;
442
+ --vscode-debugIcon-restartForeground: #89d185;
443
+ --vscode-debugIcon-stepOverForeground: #75beff;
444
+ --vscode-debugIcon-stepIntoForeground: #75beff;
445
+ --vscode-debugIcon-stepOutForeground: #75beff;
446
+ --vscode-debugIcon-continueForeground: #75beff;
447
+ --vscode-debugIcon-stepBackForeground: #75beff;
448
+ --vscode-gitDecoration-addedResourceForeground: #81b88b;
449
+ --vscode-gitDecoration-modifiedResourceForeground: #e2c08d;
450
+ --vscode-gitDecoration-deletedResourceForeground: #c74e39;
451
+ --vscode-gitDecoration-renamedResourceForeground: #73c991;
452
+ --vscode-gitDecoration-untrackedResourceForeground: #73c991;
453
+ --vscode-gitDecoration-ignoredResourceForeground: #8c8c8c;
454
+ --vscode-gitDecoration-stageModifiedResourceForeground: #e2c08d;
455
+ --vscode-gitDecoration-stageDeletedResourceForeground: #c74e39;
456
+ --vscode-gitDecoration-conflictingResourceForeground: #e4676b;
457
+ --vscode-gitDecoration-submoduleResourceForeground: #8db9e2;
458
+ /* } */
459
+ }
460
+
461
+ html[data-theme='light'] {
462
+ --vscode-font-family: -apple-system, BlinkMacSystemFont, sans-serif;
463
+ --vscode-font-weight: normal;
464
+ --vscode-font-size: 13px;
465
+ --vscode-editor-font-family: Menlo, Monaco, 'Courier New', monospace;
466
+ --vscode-editor-font-weight: normal;
467
+ --vscode-editor-font-size: 12px;
468
+ --vscode-foreground: #616161;
469
+ --vscode-errorForeground: #a1260d;
470
+ --vscode-descriptionForeground: #717171;
471
+ --vscode-icon-foreground: #424242;
472
+ --vscode-focusBorder: #0090f1;
473
+ --vscode-textSeparator-foreground: rgba(0, 0, 0, 0.18);
474
+ --vscode-textLink-foreground: #006ab1;
475
+ --vscode-textLink-activeForeground: #006ab1;
476
+ --vscode-textPreformat-foreground: #a31515;
477
+ --vscode-textBlockQuote-background: rgba(127, 127, 127, 0.1);
478
+ --vscode-textBlockQuote-border: rgba(0, 122, 204, 0.5);
479
+ --vscode-textCodeBlock-background: rgba(220, 220, 220, 0.4);
480
+ --vscode-widget-shadow: rgba(0, 0, 0, 0.16);
481
+ --vscode-input-background: #ffffff;
482
+ --vscode-input-foreground: #616161;
483
+ --vscode-inputOption-activeBorder: rgba(0, 122, 204, 0);
484
+ --vscode-inputOption-activeBackground: rgba(0, 144, 241, 0.2);
485
+ --vscode-inputOption-activeForeground: #000000;
486
+ --vscode-input-placeholderForeground: #767676;
487
+ --vscode-inputValidation-infoBackground: #d6ecf2;
488
+ --vscode-inputValidation-infoBorder: #007acc;
489
+ --vscode-inputValidation-warningBackground: #f6f5d2;
490
+ --vscode-inputValidation-warningBorder: #b89500;
491
+ --vscode-inputValidation-errorBackground: #f2dede;
492
+ --vscode-inputValidation-errorBorder: #be1100;
493
+ --vscode-dropdown-background: #ffffff;
494
+ --vscode-dropdown-border: #cecece;
495
+ --vscode-checkbox-background: #ffffff;
496
+ --vscode-checkbox-border: #cecece;
497
+ --vscode-button-foreground: #ffffff;
498
+ --vscode-button-background: #007acc;
499
+ --vscode-button-hoverBackground: #0062a3;
500
+ --vscode-button-secondaryForeground: #ffffff;
501
+ --vscode-button-secondaryBackground: #5f6a79;
502
+ --vscode-button-secondaryHoverBackground: #4c5561;
503
+ --vscode-badge-background: #c4c4c4;
504
+ --vscode-badge-foreground: #333333;
505
+ --vscode-scrollbar-shadow: #dddddd;
506
+ --vscode-scrollbarSlider-background: rgba(100, 100, 100, 0.4);
507
+ --vscode-scrollbarSlider-hoverBackground: rgba(100, 100, 100, 0.7);
508
+ --vscode-scrollbarSlider-activeBackground: rgba(0, 0, 0, 0.6);
509
+ --vscode-progressBar-background: #0e70c0;
510
+ --vscode-editorError-foreground: #e51400;
511
+ --vscode-editorWarning-foreground: #bf8803;
512
+ --vscode-editorInfo-foreground: #75beff;
513
+ --vscode-editorHint-foreground: #6c6c6c;
514
+ --vscode-sash-hoverBorder: #0090f1;
515
+ --vscode-editor-background: #ffffff;
516
+ --vscode-editor-foreground: #000000;
517
+ --vscode-editorWidget-background: #f3f3f3;
518
+ --vscode-editorWidget-foreground: #616161;
519
+ --vscode-editorWidget-border: #c8c8c8;
520
+ --vscode-quickInput-background: #f3f3f3;
521
+ --vscode-quickInput-foreground: #616161;
522
+ --vscode-quickInputTitle-background: rgba(0, 0, 0, 0.06);
523
+ --vscode-quickInput-list\.focusBackground: #d6ebff;
524
+ --vscode-pickerGroup-foreground: #0066bf;
525
+ --vscode-pickerGroup-border: #cccedb;
526
+ --vscode-editor-selectionBackground: #add6ff;
527
+ --vscode-editor-inactiveSelectionBackground: #e5ebf1;
528
+ --vscode-editor-selectionHighlightBackground: rgba(173, 214, 255, 0.5);
529
+ --vscode-editor-findMatchBackground: #a8ac94;
530
+ --vscode-editor-findMatchHighlightBackground: rgba(234, 92, 0, 0.33);
531
+ --vscode-editor-findRangeHighlightBackground: rgba(180, 180, 180, 0.3);
532
+ --vscode-searchEditor-findMatchBackground: rgba(234, 92, 0, 0.22);
533
+ --vscode-editor-hoverHighlightBackground: rgba(173, 214, 255, 0.15);
534
+ --vscode-editorHoverWidget-background: #f3f3f3;
535
+ --vscode-editorHoverWidget-foreground: #616161;
536
+ --vscode-editorHoverWidget-border: #c8c8c8;
537
+ --vscode-editorHoverWidget-statusBarBackground: #e7e7e7;
538
+ --vscode-editorLink-activeForeground: #0000ff;
539
+ --vscode-editorInlineHint-foreground: #616161;
540
+ --vscode-editorInlineHint-background: #f3f3f3;
541
+ --vscode-editorLightBulb-foreground: #ddb100;
542
+ --vscode-editorLightBulbAutoFix-foreground: #007acc;
543
+ --vscode-diffEditor-insertedTextBackground: rgba(155, 185, 85, 0.2);
544
+ --vscode-diffEditor-removedTextBackground: rgba(255, 0, 0, 0.2);
545
+ --vscode-diffEditor-diagonalFill: rgba(34, 34, 34, 0.2);
546
+ --vscode-list-focusOutline: #0090f1;
547
+ --vscode-list-activeSelectionBackground: #0060c0;
548
+ --vscode-list-activeSelectionForeground: #ffffff;
549
+ --vscode-list-inactiveSelectionBackground: #e4e6f1;
550
+ --vscode-list-hoverBackground: #e8e8e8;
551
+ --vscode-list-highlightForeground: #0066bf;
552
+ --vscode-list-invalidItemForeground: #b89500;
553
+ --vscode-list-errorForeground: #b01011;
554
+ --vscode-list-warningForeground: #855f00;
555
+ --vscode-listFilterWidget-background: #efc1ad;
556
+ --vscode-listFilterWidget-outline: rgba(0, 0, 0, 0);
557
+ --vscode-listFilterWidget-noMatchesOutline: #be1100;
558
+ --vscode-list-filterMatchBackground: rgba(234, 92, 0, 0.33);
559
+ --vscode-tree-indentGuidesStroke: #a9a9a9;
560
+ --vscode-tree-tableColumnsBorder: rgba(97, 97, 97, 0.13);
561
+ --vscode-list-deemphasizedForeground: #8e8e90;
562
+ --vscode-menu-foreground: #616161;
563
+ --vscode-menu-background: #ffffff;
564
+ --vscode-menu-selectionForeground: #ffffff;
565
+ --vscode-menu-selectionBackground: #0060c0;
566
+ --vscode-menu-separatorBackground: #888888;
567
+ --vscode-editor-snippetTabstopHighlightBackground: rgba(10, 50, 100, 0.2);
568
+ --vscode-editor-snippetFinalTabstopHighlightBorder: rgba(10, 50, 100, 0.5);
569
+ --vscode-breadcrumb-foreground: rgba(97, 97, 97, 0.8);
570
+ --vscode-breadcrumb-background: #ffffff;
571
+ --vscode-breadcrumb-focusForeground: #4e4e4e;
572
+ --vscode-breadcrumb-activeSelectionForeground: #4e4e4e;
573
+ --vscode-breadcrumbPicker-background: #f3f3f3;
574
+ --vscode-merge-currentHeaderBackground: rgba(64, 200, 174, 0.5);
575
+ --vscode-merge-currentContentBackground: rgba(64, 200, 174, 0.2);
576
+ --vscode-merge-incomingHeaderBackground: rgba(64, 166, 255, 0.5);
577
+ --vscode-merge-incomingContentBackground: rgba(64, 166, 255, 0.2);
578
+ --vscode-merge-commonHeaderBackground: rgba(96, 96, 96, 0.4);
579
+ --vscode-merge-commonContentBackground: rgba(96, 96, 96, 0.16);
580
+ --vscode-editorOverviewRuler-currentContentForeground: rgba(64, 200, 174, 0.5);
581
+ --vscode-editorOverviewRuler-incomingContentForeground: rgba(64, 166, 255, 0.5);
582
+ --vscode-editorOverviewRuler-commonContentForeground: rgba(96, 96, 96, 0.4);
583
+ --vscode-editorOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
584
+ --vscode-editorOverviewRuler-selectionHighlightForeground: rgba(160, 160, 160, 0.8);
585
+ --vscode-minimap-findMatchHighlight: #d18616;
586
+ --vscode-minimap-selectionHighlight: #add6ff;
587
+ --vscode-minimap-errorHighlight: rgba(255, 18, 18, 0.7);
588
+ --vscode-minimap-warningHighlight: #bf8803;
589
+ --vscode-minimapSlider-background: rgba(100, 100, 100, 0.2);
590
+ --vscode-minimapSlider-hoverBackground: rgba(100, 100, 100, 0.35);
591
+ --vscode-minimapSlider-activeBackground: rgba(0, 0, 0, 0.3);
592
+ --vscode-problemsErrorIcon-foreground: #e51400;
593
+ --vscode-problemsWarningIcon-foreground: #bf8803;
594
+ --vscode-problemsInfoIcon-foreground: #75beff;
595
+ --vscode-charts-foreground: #616161;
596
+ --vscode-charts-lines: rgba(97, 97, 97, 0.5);
597
+ --vscode-charts-red: #e51400;
598
+ --vscode-charts-blue: #75beff;
599
+ --vscode-charts-yellow: #bf8803;
600
+ --vscode-charts-orange: #d18616;
601
+ --vscode-charts-green: #388a34;
602
+ --vscode-charts-purple: #652d90;
603
+ --vscode-editor-lineHighlightBorder: #eeeeee;
604
+ --vscode-editor-rangeHighlightBackground: rgba(253, 255, 0, 0.2);
605
+ --vscode-editor-symbolHighlightBackground: rgba(234, 92, 0, 0.33);
606
+ --vscode-editorCursor-foreground: #000000;
607
+ --vscode-editorWhitespace-foreground: rgba(51, 51, 51, 0.2);
608
+ --vscode-editorIndentGuide-background: #d3d3d3;
609
+ --vscode-editorIndentGuide-activeBackground: #939393;
610
+ --vscode-editorLineNumber-foreground: #237893;
611
+ --vscode-editorActiveLineNumber-foreground: #0b216f;
612
+ --vscode-editorLineNumber-activeForeground: #0b216f;
613
+ --vscode-editorRuler-foreground: #d3d3d3;
614
+ --vscode-editorCodeLens-foreground: #999999;
615
+ --vscode-editorBracketMatch-background: rgba(0, 100, 0, 0.1);
616
+ --vscode-editorBracketMatch-border: #b9b9b9;
617
+ --vscode-editorOverviewRuler-border: rgba(127, 127, 127, 0.3);
618
+ --vscode-editorGutter-background: #ffffff;
619
+ --vscode-editorUnnecessaryCode-opacity: rgba(0, 0, 0, 0.47);
620
+ --vscode-editorOverviewRuler-rangeHighlightForeground: rgba(0, 122, 204, 0.6);
621
+ --vscode-editorOverviewRuler-errorForeground: rgba(255, 18, 18, 0.7);
622
+ --vscode-editorOverviewRuler-warningForeground: #bf8803;
623
+ --vscode-editorOverviewRuler-infoForeground: #75beff;
624
+ --vscode-symbolIcon-arrayForeground: #616161;
625
+ --vscode-symbolIcon-booleanForeground: #616161;
626
+ --vscode-symbolIcon-classForeground: #d67e00;
627
+ --vscode-symbolIcon-colorForeground: #616161;
628
+ --vscode-symbolIcon-constantForeground: #616161;
629
+ --vscode-symbolIcon-constructorForeground: #652d90;
630
+ --vscode-symbolIcon-enumeratorForeground: #d67e00;
631
+ --vscode-symbolIcon-enumeratorMemberForeground: #007acc;
632
+ --vscode-symbolIcon-eventForeground: #d67e00;
633
+ --vscode-symbolIcon-fieldForeground: #007acc;
634
+ --vscode-symbolIcon-fileForeground: #616161;
635
+ --vscode-symbolIcon-folderForeground: #616161;
636
+ --vscode-symbolIcon-functionForeground: #652d90;
637
+ --vscode-symbolIcon-interfaceForeground: #007acc;
638
+ --vscode-symbolIcon-keyForeground: #616161;
639
+ --vscode-symbolIcon-keywordForeground: #616161;
640
+ --vscode-symbolIcon-methodForeground: #652d90;
641
+ --vscode-symbolIcon-moduleForeground: #616161;
642
+ --vscode-symbolIcon-namespaceForeground: #616161;
643
+ --vscode-symbolIcon-nullForeground: #616161;
644
+ --vscode-symbolIcon-numberForeground: #616161;
645
+ --vscode-symbolIcon-objectForeground: #616161;
646
+ --vscode-symbolIcon-operatorForeground: #616161;
647
+ --vscode-symbolIcon-packageForeground: #616161;
648
+ --vscode-symbolIcon-propertyForeground: #616161;
649
+ --vscode-symbolIcon-referenceForeground: #616161;
650
+ --vscode-symbolIcon-snippetForeground: #616161;
651
+ --vscode-symbolIcon-stringForeground: #616161;
652
+ --vscode-symbolIcon-structForeground: #616161;
653
+ --vscode-symbolIcon-textForeground: #616161;
654
+ --vscode-symbolIcon-typeParameterForeground: #616161;
655
+ --vscode-symbolIcon-unitForeground: #616161;
656
+ --vscode-symbolIcon-variableForeground: #007acc;
657
+ --vscode-editorOverviewRuler-bracketMatchForeground: #a0a0a0;
658
+ --vscode-editor-linkedEditingBackground: rgba(255, 0, 0, 0.3);
659
+ --vscode-editor-wordHighlightBackground: rgba(87, 87, 87, 0.25);
660
+ --vscode-editor-wordHighlightStrongBackground: rgba(14, 99, 156, 0.25);
661
+ --vscode-editorOverviewRuler-wordHighlightForeground: rgba(160, 160, 160, 0.8);
662
+ --vscode-editorOverviewRuler-wordHighlightStrongForeground: rgba(192, 160, 192, 0.8);
663
+ --vscode-editor-foldBackground: rgba(173, 214, 255, 0.3);
664
+ --vscode-editorGutter-foldingControlForeground: #424242;
665
+ --vscode-peekViewTitle-background: #ffffff;
666
+ --vscode-peekViewTitleLabel-foreground: #333333;
667
+ --vscode-peekViewTitleDescription-foreground: rgba(97, 97, 97, 0.9);
668
+ --vscode-peekView-border: #007acc;
669
+ --vscode-peekViewResult-background: #f3f3f3;
670
+ --vscode-peekViewResult-lineForeground: #646465;
671
+ --vscode-peekViewResult-fileForeground: #1e1e1e;
672
+ --vscode-peekViewResult-selectionBackground: rgba(51, 153, 255, 0.2);
673
+ --vscode-peekViewResult-selectionForeground: #6c6c6c;
674
+ --vscode-peekViewEditor-background: #f2f8fc;
675
+ --vscode-peekViewEditorGutter-background: #f2f8fc;
676
+ --vscode-peekViewResult-matchHighlightBackground: rgba(234, 92, 0, 0.3);
677
+ --vscode-peekViewEditor-matchHighlightBackground: rgba(245, 216, 2, 0.87);
678
+ --vscode-editorMarkerNavigationError-background: #e51400;
679
+ --vscode-editorMarkerNavigationWarning-background: #bf8803;
680
+ --vscode-editorMarkerNavigationInfo-background: #75beff;
681
+ --vscode-editorMarkerNavigation-background: #ffffff;
682
+ --vscode-editorSuggestWidget-background: #f3f3f3;
683
+ --vscode-editorSuggestWidget-border: #c8c8c8;
684
+ --vscode-editorSuggestWidget-foreground: #000000;
685
+ --vscode-editorSuggestWidget-selectedBackground: #d6ebff;
686
+ --vscode-editorSuggestWidget-highlightForeground: #0066bf;
687
+ --vscode-tab-activeBackground: #ffffff;
688
+ --vscode-tab-unfocusedActiveBackground: #ffffff;
689
+ --vscode-tab-inactiveBackground: #ececec;
690
+ --vscode-tab-unfocusedInactiveBackground: #ececec;
691
+ --vscode-tab-activeForeground: #333333;
692
+ --vscode-tab-inactiveForeground: rgba(51, 51, 51, 0.7);
693
+ --vscode-tab-unfocusedActiveForeground: rgba(51, 51, 51, 0.7);
694
+ --vscode-tab-unfocusedInactiveForeground: rgba(51, 51, 51, 0.35);
695
+ --vscode-tab-border: #f3f3f3;
696
+ --vscode-tab-lastPinnedBorder: rgba(97, 97, 97, 0.19);
697
+ --vscode-tab-activeModifiedBorder: #33aaee;
698
+ --vscode-tab-inactiveModifiedBorder: rgba(51, 170, 238, 0.5);
699
+ --vscode-tab-unfocusedActiveModifiedBorder: rgba(51, 170, 238, 0.7);
700
+ --vscode-tab-unfocusedInactiveModifiedBorder: rgba(51, 170, 238, 0.25);
701
+ --vscode-editorPane-background: #ffffff;
702
+ --vscode-editorGroupHeader-tabsBackground: #f3f3f3;
703
+ --vscode-editorGroupHeader-noTabsBackground: #ffffff;
704
+ --vscode-editorGroup-border: #e7e7e7;
705
+ --vscode-editorGroup-dropBackground: rgba(38, 119, 203, 0.18);
706
+ --vscode-imagePreview-border: rgba(128, 128, 128, 0.35);
707
+ --vscode-panel-background: #ffffff;
708
+ --vscode-panel-border: rgba(128, 128, 128, 0.35);
709
+ --vscode-panelTitle-activeForeground: #424242;
710
+ --vscode-panelTitle-inactiveForeground: rgba(66, 66, 66, 0.75);
711
+ --vscode-panelTitle-activeBorder: #424242;
712
+ --vscode-panelInput-border: #dddddd;
713
+ --vscode-panel-dropBorder: #424242;
714
+ --vscode-panelSection-dropBackground: rgba(38, 119, 203, 0.18);
715
+ --vscode-panelSectionHeader-background: rgba(128, 128, 128, 0.2);
716
+ --vscode-panelSection-border: rgba(128, 128, 128, 0.35);
717
+ --vscode-statusBar-foreground: #ffffff;
718
+ --vscode-statusBar-noFolderForeground: #ffffff;
719
+ --vscode-statusBar-background: #007acc;
720
+ --vscode-statusBar-noFolderBackground: #68217a;
721
+ --vscode-statusBarItem-activeBackground: rgba(255, 255, 255, 0.18);
722
+ --vscode-statusBarItem-hoverBackground: rgba(255, 255, 255, 0.12);
723
+ --vscode-statusBarItem-prominentForeground: #ffffff;
724
+ --vscode-statusBarItem-prominentBackground: rgba(0, 0, 0, 0.5);
725
+ --vscode-statusBarItem-prominentHoverBackground: rgba(0, 0, 0, 0.3);
726
+ --vscode-statusBarItem-errorBackground: #c72e0f;
727
+ --vscode-statusBarItem-errorForeground: #ffffff;
728
+ --vscode-activityBar-background: #2c2c2c;
729
+ --vscode-activityBar-foreground: #ffffff;
730
+ --vscode-activityBar-inactiveForeground: rgba(255, 255, 255, 0.4);
731
+ --vscode-activityBar-activeBorder: #ffffff;
732
+ --vscode-activityBar-dropBorder: #ffffff;
733
+ --vscode-activityBarBadge-background: #007acc;
734
+ --vscode-activityBarBadge-foreground: #ffffff;
735
+ --vscode-statusBarItem-remoteBackground: #16825d;
736
+ --vscode-statusBarItem-remoteForeground: #ffffff;
737
+ --vscode-extensionBadge-remoteBackground: #007acc;
738
+ --vscode-extensionBadge-remoteForeground: #ffffff;
739
+ --vscode-sideBar-background: #f3f3f3;
740
+ --vscode-sideBarTitle-foreground: #6f6f6f;
741
+ --vscode-sideBar-dropBackground: rgba(38, 119, 203, 0.18);
742
+ --vscode-sideBarSectionHeader-background: rgba(0, 0, 0, 0);
743
+ --vscode-sideBarSectionHeader-border: rgba(97, 97, 97, 0.19);
744
+ --vscode-titleBar-activeForeground: #333333;
745
+ --vscode-titleBar-inactiveForeground: rgba(51, 51, 51, 0.6);
746
+ --vscode-titleBar-activeBackground: #dddddd;
747
+ --vscode-titleBar-inactiveBackground: rgba(221, 221, 221, 0.6);
748
+ --vscode-menubar-selectionForeground: #333333;
749
+ --vscode-menubar-selectionBackground: rgba(0, 0, 0, 0.1);
750
+ --vscode-notifications-foreground: #616161;
751
+ --vscode-notifications-background: #f3f3f3;
752
+ --vscode-notificationLink-foreground: #006ab1;
753
+ --vscode-notificationCenterHeader-background: #e7e7e7;
754
+ --vscode-notifications-border: #e7e7e7;
755
+ --vscode-notificationsErrorIcon-foreground: #e51400;
756
+ --vscode-notificationsWarningIcon-foreground: #bf8803;
757
+ --vscode-notificationsInfoIcon-foreground: #75beff;
758
+ --vscode-editorGutter-commentRangeForeground: #c5c5c5;
759
+ --vscode-debugToolBar-background: #f3f3f3;
760
+ --vscode-debugIcon-startForeground: #388a34;
761
+ --vscode-settings-headerForeground: #444444;
762
+ --vscode-settings-modifiedItemIndicator: #66afe0;
763
+ --vscode-settings-dropdownBackground: #ffffff;
764
+ --vscode-settings-dropdownBorder: #cecece;
765
+ --vscode-settings-dropdownListBorder: #c8c8c8;
766
+ --vscode-settings-checkboxBackground: #ffffff;
767
+ --vscode-settings-checkboxBorder: #cecece;
768
+ --vscode-settings-textInputBackground: #ffffff;
769
+ --vscode-settings-textInputForeground: #616161;
770
+ --vscode-settings-textInputBorder: #cecece;
771
+ --vscode-settings-numberInputBackground: #ffffff;
772
+ --vscode-settings-numberInputForeground: #616161;
773
+ --vscode-settings-numberInputBorder: #cecece;
774
+ --vscode-notebook-focusedRowBorder: rgba(0, 0, 0, 0.12);
775
+ --vscode-terminal-foreground: #333333;
776
+ --vscode-terminal-selectionBackground: rgba(0, 0, 0, 0.25);
777
+ --vscode-terminal-border: rgba(128, 128, 128, 0.35);
778
+ --vscode-testing-iconFailed: #f14c4c;
779
+ --vscode-testing-iconErrored: #f14c4c;
780
+ --vscode-testing-iconPassed: #73c991;
781
+ --vscode-testing-runAction: #73c991;
782
+ --vscode-testing-iconQueued: #cca700;
783
+ --vscode-testing-iconUnset: #848484;
784
+ --vscode-testing-iconSkipped: #848484;
785
+ --vscode-testing-peekBorder: #e51400;
786
+ --vscode-testing-message\.error\.decorationForeground: #e51400;
787
+ --vscode-testing-message\.error\.lineBackground: rgba(255, 0, 0, 0.2);
788
+ --vscode-testing-message\.warning\.decorationForeground: #bf8803;
789
+ --vscode-testing-message\.warning\.lineBackground: rgba(255, 208, 0, 0.2);
790
+ --vscode-testing-message\.info\.decorationForeground: #75beff;
791
+ --vscode-testing-message\.info\.lineBackground: rgba(0, 127, 255, 0.2);
792
+ --vscode-testing-message\.hint\.decorationForeground: #6c6c6c;
793
+ --vscode-welcomePage-tileBackground: #f3f3f3;
794
+ --vscode-welcomePage-tileHoverBackground: #dbdbdb;
795
+ --vscode-welcomePage-progress\.background: #ffffff;
796
+ --vscode-welcomePage-progress\.foreground: #006ab1;
797
+ --vscode-statusBar-debuggingBackground: #cc6633;
798
+ --vscode-statusBar-debuggingForeground: #ffffff;
799
+ --vscode-debugExceptionWidget-border: #a31515;
800
+ --vscode-debugExceptionWidget-background: #f1dfde;
801
+ --vscode-editorGutter-modifiedBackground: #66afe0;
802
+ --vscode-editorGutter-addedBackground: #81b88b;
803
+ --vscode-editorGutter-deletedBackground: #ca4b51;
804
+ --vscode-minimapGutter-modifiedBackground: #66afe0;
805
+ --vscode-minimapGutter-addedBackground: #81b88b;
806
+ --vscode-minimapGutter-deletedBackground: #ca4b51;
807
+ --vscode-editorOverviewRuler-modifiedForeground: rgba(102, 175, 224, 0.6);
808
+ --vscode-editorOverviewRuler-addedForeground: rgba(129, 184, 139, 0.6);
809
+ --vscode-editorOverviewRuler-deletedForeground: rgba(202, 75, 81, 0.6);
810
+ --vscode-editor-stackFrameHighlightBackground: rgba(255, 255, 102, 0.45);
811
+ --vscode-editor-focusedStackFrameHighlightBackground: rgba(206, 231, 206, 0.45);
812
+ --vscode-debugIcon-breakpointForeground: #e51400;
813
+ --vscode-debugIcon-breakpointDisabledForeground: #848484;
814
+ --vscode-debugIcon-breakpointUnverifiedForeground: #848484;
815
+ --vscode-debugIcon-breakpointCurrentStackframeForeground: #be8700;
816
+ --vscode-debugIcon-breakpointStackframeForeground: #89d185;
817
+ --vscode-scm-providerBorder: #c8c8c8;
818
+ --vscode-notebook-cellBorderColor: #e8e8e8;
819
+ --vscode-notebook-focusedEditorBorder: #0090f1;
820
+ --vscode-notebookStatusSuccessIcon-foreground: #388a34;
821
+ --vscode-notebookStatusErrorIcon-foreground: #a1260d;
822
+ --vscode-notebookStatusRunningIcon-foreground: #616161;
823
+ --vscode-notebook-outputContainerBackgroundColor: #e8e8e8;
824
+ --vscode-notebook-cellToolbarSeparator: rgba(128, 128, 128, 0.35);
825
+ --vscode-notebook-selectedCellBackground: rgba(200, 221, 241, 0.31);
826
+ --vscode-notebook-selectedCellBorder: #e8e8e8;
827
+ --vscode-notebook-focusedCellBorder: #0090f1;
828
+ --vscode-notebook-inactiveFocusedCellBorder: #e8e8e8;
829
+ --vscode-notebook-cellStatusBarItemHoverBackground: rgba(0, 0, 0, 0.08);
830
+ --vscode-notebook-cellInsertionIndicator: #0090f1;
831
+ --vscode-notebookScrollbarSlider-background: rgba(100, 100, 100, 0.4);
832
+ --vscode-notebookScrollbarSlider-hoverBackground: rgba(100, 100, 100, 0.7);
833
+ --vscode-notebookScrollbarSlider-activeBackground: rgba(0, 0, 0, 0.6);
834
+ --vscode-notebook-symbolHighlightBackground: rgba(253, 255, 0, 0.2);
835
+ --vscode-searchEditor-textInputBorder: #cecece;
836
+ --vscode-extensionButton-prominentBackground: #007acc;
837
+ --vscode-extensionButton-prominentForeground: #ffffff;
838
+ --vscode-extensionButton-prominentHoverBackground: #0062a3;
839
+ --vscode-extensionIcon-starForeground: #df6100;
840
+ --vscode-terminal-ansiBlack: #000000;
841
+ --vscode-terminal-ansiRed: #cd3131;
842
+ --vscode-terminal-ansiGreen: #00bc00;
843
+ --vscode-terminal-ansiYellow: #949800;
844
+ --vscode-terminal-ansiBlue: #0451a5;
845
+ --vscode-terminal-ansiMagenta: #bc05bc;
846
+ --vscode-terminal-ansiCyan: #0598bc;
847
+ --vscode-terminal-ansiWhite: #555555;
848
+ --vscode-terminal-ansiBrightBlack: #666666;
849
+ --vscode-terminal-ansiBrightRed: #cd3131;
850
+ --vscode-terminal-ansiBrightGreen: #14ce14;
851
+ --vscode-terminal-ansiBrightYellow: #b5ba00;
852
+ --vscode-terminal-ansiBrightBlue: #0451a5;
853
+ --vscode-terminal-ansiBrightMagenta: #bc05bc;
854
+ --vscode-terminal-ansiBrightCyan: #0598bc;
855
+ --vscode-terminal-ansiBrightWhite: #a5a5a5;
856
+ --vscode-debugTokenExpression-name: #9b46b0;
857
+ --vscode-debugTokenExpression-value: rgba(108, 108, 108, 0.8);
858
+ --vscode-debugTokenExpression-string: #a31515;
859
+ --vscode-debugTokenExpression-boolean: #0000ff;
860
+ --vscode-debugTokenExpression-number: #098658;
861
+ --vscode-debugTokenExpression-error: #e51400;
862
+ --vscode-debugView-exceptionLabelForeground: #ffffff;
863
+ --vscode-debugView-exceptionLabelBackground: #a31515;
864
+ --vscode-debugView-stateLabelForeground: #616161;
865
+ --vscode-debugView-stateLabelBackground: rgba(136, 136, 136, 0.27);
866
+ --vscode-debugView-valueChangedHighlight: #569cd6;
867
+ --vscode-debugConsole-infoForeground: #75beff;
868
+ --vscode-debugConsole-warningForeground: #bf8803;
869
+ --vscode-debugConsole-errorForeground: #a1260d;
870
+ --vscode-debugConsole-sourceForeground: #616161;
871
+ --vscode-debugConsoleInputIcon-foreground: #616161;
872
+ --vscode-debugIcon-pauseForeground: #007acc;
873
+ --vscode-debugIcon-stopForeground: #a1260d;
874
+ --vscode-debugIcon-disconnectForeground: #a1260d;
875
+ --vscode-debugIcon-restartForeground: #388a34;
876
+ --vscode-debugIcon-stepOverForeground: #007acc;
877
+ --vscode-debugIcon-stepIntoForeground: #007acc;
878
+ --vscode-debugIcon-stepOutForeground: #007acc;
879
+ --vscode-debugIcon-continueForeground: #007acc;
880
+ --vscode-debugIcon-stepBackForeground: #007acc;
881
+ --vscode-gitDecoration-addedResourceForeground: #587c0c;
882
+ --vscode-gitDecoration-modifiedResourceForeground: #895503;
883
+ --vscode-gitDecoration-deletedResourceForeground: #ad0707;
884
+ --vscode-gitDecoration-renamedResourceForeground: #007100;
885
+ --vscode-gitDecoration-untrackedResourceForeground: #007100;
886
+ --vscode-gitDecoration-ignoredResourceForeground: #8e8e90;
887
+ --vscode-gitDecoration-stageModifiedResourceForeground: #895503;
888
+ --vscode-gitDecoration-stageDeletedResourceForeground: #ad0707;
889
+ --vscode-gitDecoration-conflictingResourceForeground: #ad0707;
890
+ --vscode-gitDecoration-submoduleResourceForeground: #1258a7;
891
+ }
892
+
893
+ html[data-theme='high contrast'] {
894
+ --vscode-font-family: -apple-system, BlinkMacSystemFont, sans-serif;
895
+ --vscode-font-weight: normal;
896
+ --vscode-font-size: 13px;
897
+ --vscode-editor-font-family: Menlo, Monaco, 'Courier New', monospace;
898
+ --vscode-editor-font-weight: normal;
899
+ --vscode-editor-font-size: 12px;
900
+ --vscode-foreground: #ffffff;
901
+ --vscode-errorForeground: #f48771;
902
+ --vscode-descriptionForeground: rgba(255, 255, 255, 0.7);
903
+ --vscode-icon-foreground: #ffffff;
904
+ --vscode-focusBorder: #f38518;
905
+ --vscode-contrastBorder: #6fc3df;
906
+ --vscode-contrastActiveBorder: #f38518;
907
+ --vscode-selection-background: #008000;
908
+ --vscode-textSeparator-foreground: #000000;
909
+ --vscode-textLink-foreground: #3794ff;
910
+ --vscode-textLink-activeForeground: #3794ff;
911
+ --vscode-textPreformat-foreground: #d7ba7d;
912
+ --vscode-textBlockQuote-border: #ffffff;
913
+ --vscode-textCodeBlock-background: #000000;
914
+ --vscode-input-background: #000000;
915
+ --vscode-input-foreground: #ffffff;
916
+ --vscode-input-border: #6fc3df;
917
+ --vscode-inputOption-activeBorder: #6fc3df;
918
+ --vscode-inputOption-activeBackground: rgba(0, 0, 0, 0);
919
+ --vscode-input-placeholderForeground: rgba(255, 255, 255, 0.7);
920
+ --vscode-inputValidation-infoBackground: #000000;
921
+ --vscode-inputValidation-infoBorder: #6fc3df;
922
+ --vscode-inputValidation-warningBackground: #000000;
923
+ --vscode-inputValidation-warningBorder: #6fc3df;
924
+ --vscode-inputValidation-errorBackground: #000000;
925
+ --vscode-inputValidation-errorBorder: #6fc3df;
926
+ --vscode-dropdown-background: #000000;
927
+ --vscode-dropdown-listBackground: #000000;
928
+ --vscode-dropdown-foreground: #ffffff;
929
+ --vscode-dropdown-border: #6fc3df;
930
+ --vscode-checkbox-background: #000000;
931
+ --vscode-checkbox-foreground: #ffffff;
932
+ --vscode-checkbox-border: #6fc3df;
933
+ --vscode-button-foreground: #ffffff;
934
+ --vscode-button-secondaryForeground: #ffffff;
935
+ --vscode-badge-background: #000000;
936
+ --vscode-badge-foreground: #ffffff;
937
+ --vscode-scrollbarSlider-background: rgba(111, 195, 223, 0.6);
938
+ --vscode-scrollbarSlider-hoverBackground: rgba(111, 195, 223, 0.8);
939
+ --vscode-scrollbarSlider-activeBackground: #6fc3df;
940
+ --vscode-progressBar-background: #6fc3df;
941
+ --vscode-editorError-border: rgba(228, 119, 119, 0.8);
942
+ --vscode-editorWarning-border: rgba(255, 204, 0, 0.8);
943
+ --vscode-editorInfo-border: rgba(117, 190, 255, 0.8);
944
+ --vscode-editorHint-border: rgba(238, 238, 238, 0.8);
945
+ --vscode-sash-hoverBorder: #f38518;
946
+ --vscode-editor-background: #000000;
947
+ --vscode-editor-foreground: #ffffff;
948
+ --vscode-editorWidget-background: #0c141f;
949
+ --vscode-editorWidget-foreground: #ffffff;
950
+ --vscode-editorWidget-border: #6fc3df;
951
+ --vscode-quickInput-background: #0c141f;
952
+ --vscode-quickInput-foreground: #ffffff;
953
+ --vscode-quickInputTitle-background: #000000;
954
+ --vscode-pickerGroup-foreground: #ffffff;
955
+ --vscode-pickerGroup-border: #ffffff;
956
+ --vscode-editor-selectionBackground: #ffffff;
957
+ --vscode-editor-selectionForeground: #000000;
958
+ --vscode-editor-inactiveSelectionBackground: rgba(255, 255, 255, 0.5);
959
+ --vscode-editor-selectionHighlightBorder: #f38518;
960
+ --vscode-editor-findMatchBorder: #f38518;
961
+ --vscode-editor-findMatchHighlightBorder: #f38518;
962
+ --vscode-editor-findRangeHighlightBorder: rgba(243, 133, 24, 0.4);
963
+ --vscode-searchEditor-findMatchBorder: #f38518;
964
+ --vscode-editor-hoverHighlightBackground: rgba(173, 214, 255, 0.15);
965
+ --vscode-editorHoverWidget-background: #0c141f;
966
+ --vscode-editorHoverWidget-foreground: #ffffff;
967
+ --vscode-editorHoverWidget-border: #6fc3df;
968
+ --vscode-editorHoverWidget-statusBarBackground: #0c141f;
969
+ --vscode-editorLink-activeForeground: #00ffff;
970
+ --vscode-editorInlineHint-foreground: #0c141f;
971
+ --vscode-editorInlineHint-background: #ffffff;
972
+ --vscode-editorLightBulb-foreground: #ffcc00;
973
+ --vscode-editorLightBulbAutoFix-foreground: #75beff;
974
+ --vscode-diffEditor-insertedTextBorder: #33ff2e;
975
+ --vscode-diffEditor-removedTextBorder: #ff008f;
976
+ --vscode-diffEditor-border: #6fc3df;
977
+ --vscode-list-focusOutline: #f38518;
978
+ --vscode-list-highlightForeground: #f38518;
979
+ --vscode-list-invalidItemForeground: #b89500;
980
+ --vscode-list-activeSelectionBackground: #ffffff;
981
+ --vscode-list-activeSelectionForeground: #0c141f;
982
+ --vscode-listFilterWidget-background: #000000;
983
+ --vscode-listFilterWidget-outline: #f38518;
984
+ --vscode-listFilterWidget-noMatchesOutline: #6fc3df;
985
+ --vscode-list-filterMatchBorder: #6fc3df;
986
+ --vscode-tree-indentGuidesStroke: #a9a9a9;
987
+ --vscode-list-deemphasizedForeground: #a7a8a9;
988
+ --vscode-menu-border: #6fc3df;
989
+ --vscode-menu-foreground: #ffffff;
990
+ --vscode-menu-background: #000000;
991
+ --vscode-menu-selectionBorder: #f38518;
992
+ --vscode-menu-separatorBackground: #6fc3df;
993
+ --vscode-editor-snippetTabstopHighlightBackground: rgba(124, 124, 124, 0.3);
994
+ --vscode-editor-snippetFinalTabstopHighlightBorder: #525252;
995
+ --vscode-breadcrumb-foreground: rgba(255, 255, 255, 0.8);
996
+ --vscode-breadcrumb-background: #000000;
997
+ --vscode-breadcrumb-focusForeground: #ffffff;
998
+ --vscode-breadcrumb-activeSelectionForeground: #ffffff;
999
+ --vscode-breadcrumbPicker-background: #0c141f;
1000
+ --vscode-merge-border: #c3df6f;
1001
+ --vscode-editorOverviewRuler-currentContentForeground: #c3df6f;
1002
+ --vscode-editorOverviewRuler-incomingContentForeground: #c3df6f;
1003
+ --vscode-editorOverviewRuler-commonContentForeground: #c3df6f;
1004
+ --vscode-editorOverviewRuler-findMatchForeground: #ab5a00;
1005
+ --vscode-editorOverviewRuler-selectionHighlightForeground: rgba(160, 160, 160, 0.8);
1006
+ --vscode-minimap-findMatchHighlight: #ab5a00;
1007
+ --vscode-minimap-selectionHighlight: #ffffff;
1008
+ --vscode-minimap-errorHighlight: #ff3232;
1009
+ --vscode-minimap-warningHighlight: rgba(255, 204, 0, 0.8);
1010
+ --vscode-minimapSlider-background: rgba(111, 195, 223, 0.3);
1011
+ --vscode-minimapSlider-hoverBackground: rgba(111, 195, 223, 0.4);
1012
+ --vscode-minimapSlider-activeBackground: rgba(111, 195, 223, 0.5);
1013
+ --vscode-charts-foreground: #ffffff;
1014
+ --vscode-charts-lines: rgba(255, 255, 255, 0.5);
1015
+ --vscode-charts-orange: #ab5a00;
1016
+ --vscode-charts-green: #89d185;
1017
+ --vscode-charts-purple: #b180d7;
1018
+ --vscode-editor-lineHighlightBorder: #f38518;
1019
+ --vscode-editor-rangeHighlightBorder: #f38518;
1020
+ --vscode-editor-symbolHighlightBorder: #f38518;
1021
+ --vscode-editorCursor-foreground: #ffffff;
1022
+ --vscode-editorWhitespace-foreground: rgba(227, 228, 226, 0.16);
1023
+ --vscode-editorIndentGuide-background: #ffffff;
1024
+ --vscode-editorIndentGuide-activeBackground: #ffffff;
1025
+ --vscode-editorLineNumber-foreground: #ffffff;
1026
+ --vscode-editorActiveLineNumber-foreground: #f38518;
1027
+ --vscode-editorLineNumber-activeForeground: #f38518;
1028
+ --vscode-editorRuler-foreground: #ffffff;
1029
+ --vscode-editorCodeLens-foreground: #999999;
1030
+ --vscode-editorBracketMatch-background: rgba(0, 100, 0, 0.1);
1031
+ --vscode-editorBracketMatch-border: #6fc3df;
1032
+ --vscode-editorOverviewRuler-border: rgba(127, 127, 127, 0.3);
1033
+ --vscode-editorGutter-background: #000000;
1034
+ --vscode-editorUnnecessaryCode-border: rgba(255, 255, 255, 0.8);
1035
+ --vscode-editorOverviewRuler-rangeHighlightForeground: rgba(0, 122, 204, 0.6);
1036
+ --vscode-editorOverviewRuler-errorForeground: #ff3232;
1037
+ --vscode-editorOverviewRuler-warningForeground: rgba(255, 204, 0, 0.8);
1038
+ --vscode-editorOverviewRuler-infoForeground: rgba(117, 190, 255, 0.8);
1039
+ --vscode-symbolIcon-arrayForeground: #ffffff;
1040
+ --vscode-symbolIcon-booleanForeground: #ffffff;
1041
+ --vscode-symbolIcon-classForeground: #ee9d28;
1042
+ --vscode-symbolIcon-colorForeground: #ffffff;
1043
+ --vscode-symbolIcon-constantForeground: #ffffff;
1044
+ --vscode-symbolIcon-constructorForeground: #b180d7;
1045
+ --vscode-symbolIcon-enumeratorForeground: #ee9d28;
1046
+ --vscode-symbolIcon-enumeratorMemberForeground: #75beff;
1047
+ --vscode-symbolIcon-eventForeground: #ee9d28;
1048
+ --vscode-symbolIcon-fieldForeground: #75beff;
1049
+ --vscode-symbolIcon-fileForeground: #ffffff;
1050
+ --vscode-symbolIcon-folderForeground: #ffffff;
1051
+ --vscode-symbolIcon-functionForeground: #b180d7;
1052
+ --vscode-symbolIcon-interfaceForeground: #75beff;
1053
+ --vscode-symbolIcon-keyForeground: #ffffff;
1054
+ --vscode-symbolIcon-keywordForeground: #ffffff;
1055
+ --vscode-symbolIcon-methodForeground: #b180d7;
1056
+ --vscode-symbolIcon-moduleForeground: #ffffff;
1057
+ --vscode-symbolIcon-namespaceForeground: #ffffff;
1058
+ --vscode-symbolIcon-nullForeground: #ffffff;
1059
+ --vscode-symbolIcon-numberForeground: #ffffff;
1060
+ --vscode-symbolIcon-objectForeground: #ffffff;
1061
+ --vscode-symbolIcon-operatorForeground: #ffffff;
1062
+ --vscode-symbolIcon-packageForeground: #ffffff;
1063
+ --vscode-symbolIcon-propertyForeground: #ffffff;
1064
+ --vscode-symbolIcon-referenceForeground: #ffffff;
1065
+ --vscode-symbolIcon-snippetForeground: #ffffff;
1066
+ --vscode-symbolIcon-stringForeground: #ffffff;
1067
+ --vscode-symbolIcon-structForeground: #ffffff;
1068
+ --vscode-symbolIcon-textForeground: #ffffff;
1069
+ --vscode-symbolIcon-typeParameterForeground: #ffffff;
1070
+ --vscode-symbolIcon-unitForeground: #ffffff;
1071
+ --vscode-symbolIcon-variableForeground: #75beff;
1072
+ --vscode-editorOverviewRuler-bracketMatchForeground: #a0a0a0;
1073
+ --vscode-editor-linkedEditingBackground: rgba(255, 0, 0, 0.3);
1074
+ --vscode-editor-wordHighlightBorder: #f38518;
1075
+ --vscode-editor-wordHighlightStrongBorder: #f38518;
1076
+ --vscode-editorOverviewRuler-wordHighlightForeground: rgba(160, 160, 160, 0.8);
1077
+ --vscode-editorOverviewRuler-wordHighlightStrongForeground: rgba(192, 160, 192, 0.8);
1078
+ --vscode-editorGutter-foldingControlForeground: #ffffff;
1079
+ --vscode-peekViewTitle-background: #0c141f;
1080
+ --vscode-peekViewTitleLabel-foreground: #ffffff;
1081
+ --vscode-peekViewTitleDescription-foreground: rgba(255, 255, 255, 0.6);
1082
+ --vscode-peekView-border: #6fc3df;
1083
+ --vscode-peekViewResult-background: #000000;
1084
+ --vscode-peekViewResult-lineForeground: #ffffff;
1085
+ --vscode-peekViewResult-fileForeground: #ffffff;
1086
+ --vscode-peekViewResult-selectionForeground: #ffffff;
1087
+ --vscode-peekViewEditor-background: #000000;
1088
+ --vscode-peekViewEditorGutter-background: #000000;
1089
+ --vscode-peekViewEditor-matchHighlightBorder: #f38518;
1090
+ --vscode-editorMarkerNavigationError-background: rgba(228, 119, 119, 0.8);
1091
+ --vscode-editorMarkerNavigationWarning-background: rgba(255, 204, 0, 0.8);
1092
+ --vscode-editorMarkerNavigationInfo-background: rgba(117, 190, 255, 0.8);
1093
+ --vscode-editorMarkerNavigation-background: #0c141f;
1094
+ --vscode-editorSuggestWidget-background: #0c141f;
1095
+ --vscode-editorSuggestWidget-border: #6fc3df;
1096
+ --vscode-editorSuggestWidget-foreground: #ffffff;
1097
+ --vscode-editorSuggestWidget-highlightForeground: #f38518;
1098
+ --vscode-tab-activeBackground: #000000;
1099
+ --vscode-tab-unfocusedActiveBackground: #000000;
1100
+ --vscode-tab-activeForeground: #ffffff;
1101
+ --vscode-tab-inactiveForeground: #ffffff;
1102
+ --vscode-tab-unfocusedActiveForeground: #ffffff;
1103
+ --vscode-tab-unfocusedInactiveForeground: #ffffff;
1104
+ --vscode-tab-border: #6fc3df;
1105
+ --vscode-tab-lastPinnedBorder: #6fc3df;
1106
+ --vscode-tab-inactiveModifiedBorder: #ffffff;
1107
+ --vscode-tab-unfocusedActiveModifiedBorder: #ffffff;
1108
+ --vscode-tab-unfocusedInactiveModifiedBorder: #ffffff;
1109
+ --vscode-editorPane-background: #000000;
1110
+ --vscode-editorGroup-focusedEmptyBorder: #f38518;
1111
+ --vscode-editorGroupHeader-noTabsBackground: #000000;
1112
+ --vscode-editorGroupHeader-border: #6fc3df;
1113
+ --vscode-editorGroup-border: #6fc3df;
1114
+ --vscode-imagePreview-border: #6fc3df;
1115
+ --vscode-panel-background: #000000;
1116
+ --vscode-panel-border: #6fc3df;
1117
+ --vscode-panelTitle-activeForeground: #ffffff;
1118
+ --vscode-panelTitle-inactiveForeground: #ffffff;
1119
+ --vscode-panelTitle-activeBorder: #6fc3df;
1120
+ --vscode-panel-dropBorder: #ffffff;
1121
+ --vscode-panelSectionHeader-border: #6fc3df;
1122
+ --vscode-panelSection-border: #6fc3df;
1123
+ --vscode-statusBar-foreground: #ffffff;
1124
+ --vscode-statusBar-noFolderForeground: #ffffff;
1125
+ --vscode-statusBar-border: #6fc3df;
1126
+ --vscode-statusBar-noFolderBorder: #6fc3df;
1127
+ --vscode-statusBarItem-activeBackground: rgba(255, 255, 255, 0.18);
1128
+ --vscode-statusBarItem-hoverBackground: rgba(255, 255, 255, 0.12);
1129
+ --vscode-statusBarItem-prominentForeground: #ffffff;
1130
+ --vscode-statusBarItem-prominentBackground: rgba(0, 0, 0, 0.5);
1131
+ --vscode-statusBarItem-prominentHoverBackground: rgba(0, 0, 0, 0.3);
1132
+ --vscode-statusBarItem-errorForeground: #ffffff;
1133
+ --vscode-activityBar-background: #000000;
1134
+ --vscode-activityBar-foreground: #ffffff;
1135
+ --vscode-activityBar-inactiveForeground: #ffffff;
1136
+ --vscode-activityBar-border: #6fc3df;
1137
+ --vscode-activityBar-dropBorder: #ffffff;
1138
+ --vscode-activityBarBadge-background: #000000;
1139
+ --vscode-activityBarBadge-foreground: #ffffff;
1140
+ --vscode-statusBarItem-remoteBackground: rgba(0, 0, 0, 0);
1141
+ --vscode-statusBarItem-remoteForeground: #ffffff;
1142
+ --vscode-extensionBadge-remoteBackground: #000000;
1143
+ --vscode-extensionBadge-remoteForeground: #ffffff;
1144
+ --vscode-sideBar-background: #000000;
1145
+ --vscode-sideBar-border: #6fc3df;
1146
+ --vscode-sideBarTitle-foreground: #ffffff;
1147
+ --vscode-sideBarSectionHeader-border: #6fc3df;
1148
+ --vscode-titleBar-activeForeground: #ffffff;
1149
+ --vscode-titleBar-activeBackground: #000000;
1150
+ --vscode-titleBar-border: #6fc3df;
1151
+ --vscode-menubar-selectionForeground: #ffffff;
1152
+ --vscode-menubar-selectionBorder: #f38518;
1153
+ --vscode-notificationCenter-border: #6fc3df;
1154
+ --vscode-notificationToast-border: #6fc3df;
1155
+ --vscode-notifications-foreground: #ffffff;
1156
+ --vscode-notifications-background: #0c141f;
1157
+ --vscode-notificationLink-foreground: #3794ff;
1158
+ --vscode-notificationCenterHeader-background: #0c141f;
1159
+ --vscode-notifications-border: #0c141f;
1160
+ --vscode-window-activeBorder: #6fc3df;
1161
+ --vscode-window-inactiveBorder: #6fc3df;
1162
+ --vscode-editorGutter-commentRangeForeground: #c5c5c5;
1163
+ --vscode-debugToolBar-background: #000000;
1164
+ --vscode-debugIcon-startForeground: #89d185;
1165
+ --vscode-settings-headerForeground: #ffffff;
1166
+ --vscode-settings-modifiedItemIndicator: #00497a;
1167
+ --vscode-settings-dropdownBackground: #000000;
1168
+ --vscode-settings-dropdownForeground: #ffffff;
1169
+ --vscode-settings-dropdownBorder: #6fc3df;
1170
+ --vscode-settings-dropdownListBorder: #6fc3df;
1171
+ --vscode-settings-checkboxBackground: #000000;
1172
+ --vscode-settings-checkboxForeground: #ffffff;
1173
+ --vscode-settings-checkboxBorder: #6fc3df;
1174
+ --vscode-settings-textInputBackground: #000000;
1175
+ --vscode-settings-textInputForeground: #ffffff;
1176
+ --vscode-settings-textInputBorder: #6fc3df;
1177
+ --vscode-settings-numberInputBackground: #000000;
1178
+ --vscode-settings-numberInputForeground: #ffffff;
1179
+ --vscode-settings-numberInputBorder: #6fc3df;
1180
+ --vscode-notebook-focusedRowBorder: #f38518;
1181
+ --vscode-terminal-foreground: #ffffff;
1182
+ --vscode-terminal-selectionBackground: rgba(255, 255, 255, 0.5);
1183
+ --vscode-terminal-border: #6fc3df;
1184
+ --vscode-testing-iconFailed: #000000;
1185
+ --vscode-testing-iconErrored: #000000;
1186
+ --vscode-testing-iconPassed: #000000;
1187
+ --vscode-testing-runAction: #000000;
1188
+ --vscode-testing-iconQueued: #000000;
1189
+ --vscode-testing-iconUnset: #848484;
1190
+ --vscode-testing-iconSkipped: #848484;
1191
+ --vscode-testing-message\.error\.decorationForeground: #ffffff;
1192
+ --vscode-testing-message\.warning\.decorationForeground: #ffffff;
1193
+ --vscode-testing-message\.info\.decorationForeground: #ffffff;
1194
+ --vscode-testing-message\.hint\.decorationForeground: #ffffff;
1195
+ --vscode-testing-message\.hint\.lineBackground: #ffffff;
1196
+ --vscode-welcomePage-tileBackground: #000000;
1197
+ --vscode-welcomePage-progress\.background: #000000;
1198
+ --vscode-welcomePage-progress\.foreground: #3794ff;
1199
+ --vscode-statusBar-debuggingBackground: #cc6633;
1200
+ --vscode-statusBar-debuggingForeground: #ffffff;
1201
+ --vscode-statusBar-debuggingBorder: #6fc3df;
1202
+ --vscode-debugExceptionWidget-border: #a31515;
1203
+ --vscode-debugExceptionWidget-background: #420b0d;
1204
+ --vscode-editorGutter-modifiedBackground: #009bf9;
1205
+ --vscode-editorGutter-addedBackground: #33ab4e;
1206
+ --vscode-editorGutter-deletedBackground: #fc5d6d;
1207
+ --vscode-minimapGutter-modifiedBackground: #009bf9;
1208
+ --vscode-minimapGutter-addedBackground: #33ab4e;
1209
+ --vscode-minimapGutter-deletedBackground: #fc5d6d;
1210
+ --vscode-editorOverviewRuler-modifiedForeground: rgba(0, 155, 249, 0.6);
1211
+ --vscode-editorOverviewRuler-addedForeground: rgba(51, 171, 78, 0.6);
1212
+ --vscode-editorOverviewRuler-deletedForeground: rgba(252, 93, 109, 0.6);
1213
+ --vscode-editor-stackFrameHighlightBackground: rgba(255, 255, 0, 0.2);
1214
+ --vscode-editor-focusedStackFrameHighlightBackground: rgba(122, 189, 122, 0.3);
1215
+ --vscode-debugIcon-breakpointForeground: #e51400;
1216
+ --vscode-debugIcon-breakpointDisabledForeground: #848484;
1217
+ --vscode-debugIcon-breakpointUnverifiedForeground: #848484;
1218
+ --vscode-debugIcon-breakpointCurrentStackframeForeground: #ffcc00;
1219
+ --vscode-debugIcon-breakpointStackframeForeground: #89d185;
1220
+ --vscode-scm-providerBorder: #6fc3df;
1221
+ --vscode-notebook-cellBorderColor: #6fc3df;
1222
+ --vscode-notebook-focusedEditorBorder: #f38518;
1223
+ --vscode-notebookStatusSuccessIcon-foreground: #89d185;
1224
+ --vscode-notebookStatusErrorIcon-foreground: #f48771;
1225
+ --vscode-notebookStatusRunningIcon-foreground: #ffffff;
1226
+ --vscode-notebook-cellToolbarSeparator: #6fc3df;
1227
+ --vscode-notebook-selectedCellBorder: #6fc3df;
1228
+ --vscode-notebook-focusedCellBorder: #f38518;
1229
+ --vscode-notebook-inactiveFocusedCellBorder: #6fc3df;
1230
+ --vscode-notebook-cellStatusBarItemHoverBackground: rgba(255, 255, 255, 0.15);
1231
+ --vscode-notebook-cellInsertionIndicator: #f38518;
1232
+ --vscode-notebookScrollbarSlider-background: rgba(111, 195, 223, 0.6);
1233
+ --vscode-notebookScrollbarSlider-hoverBackground: rgba(111, 195, 223, 0.8);
1234
+ --vscode-notebookScrollbarSlider-activeBackground: #6fc3df;
1235
+ --vscode-searchEditor-textInputBorder: #6fc3df;
1236
+ --vscode-extensionIcon-starForeground: #ff8e00;
1237
+ --vscode-terminal-ansiBlack: #000000;
1238
+ --vscode-terminal-ansiRed: #cd0000;
1239
+ --vscode-terminal-ansiGreen: #00cd00;
1240
+ --vscode-terminal-ansiYellow: #cdcd00;
1241
+ --vscode-terminal-ansiBlue: #0000ee;
1242
+ --vscode-terminal-ansiMagenta: #cd00cd;
1243
+ --vscode-terminal-ansiCyan: #00cdcd;
1244
+ --vscode-terminal-ansiWhite: #e5e5e5;
1245
+ --vscode-terminal-ansiBrightBlack: #7f7f7f;
1246
+ --vscode-terminal-ansiBrightRed: #ff0000;
1247
+ --vscode-terminal-ansiBrightGreen: #00ff00;
1248
+ --vscode-terminal-ansiBrightYellow: #ffff00;
1249
+ --vscode-terminal-ansiBrightBlue: #5c5cff;
1250
+ --vscode-terminal-ansiBrightMagenta: #ff00ff;
1251
+ --vscode-terminal-ansiBrightCyan: #00ffff;
1252
+ --vscode-terminal-ansiBrightWhite: #ffffff;
1253
+ --vscode-debugTokenExpression-name: #ffffff;
1254
+ --vscode-debugTokenExpression-value: #ffffff;
1255
+ --vscode-debugTokenExpression-string: #f48771;
1256
+ --vscode-debugTokenExpression-boolean: #75bdfe;
1257
+ --vscode-debugTokenExpression-number: #89d185;
1258
+ --vscode-debugTokenExpression-error: #f48771;
1259
+ --vscode-debugView-exceptionLabelForeground: #ffffff;
1260
+ --vscode-debugView-exceptionLabelBackground: #6c2022;
1261
+ --vscode-debugView-stateLabelForeground: #ffffff;
1262
+ --vscode-debugView-stateLabelBackground: rgba(136, 136, 136, 0.27);
1263
+ --vscode-debugView-valueChangedHighlight: #569cd6;
1264
+ --vscode-debugConsole-infoForeground: #ffffff;
1265
+ --vscode-debugConsole-warningForeground: #008000;
1266
+ --vscode-debugConsole-errorForeground: #f48771;
1267
+ --vscode-debugConsole-sourceForeground: #ffffff;
1268
+ --vscode-debugConsoleInputIcon-foreground: #ffffff;
1269
+ --vscode-debugIcon-pauseForeground: #75beff;
1270
+ --vscode-debugIcon-stopForeground: #f48771;
1271
+ --vscode-debugIcon-disconnectForeground: #f48771;
1272
+ --vscode-debugIcon-restartForeground: #89d185;
1273
+ --vscode-debugIcon-stepOverForeground: #75beff;
1274
+ --vscode-debugIcon-stepIntoForeground: #75beff;
1275
+ --vscode-debugIcon-stepOutForeground: #75beff;
1276
+ --vscode-debugIcon-continueForeground: #75beff;
1277
+ --vscode-debugIcon-stepBackForeground: #75beff;
1278
+ --vscode-gitDecoration-addedResourceForeground: #1b5225;
1279
+ --vscode-gitDecoration-modifiedResourceForeground: #e2c08d;
1280
+ --vscode-gitDecoration-deletedResourceForeground: #c74e39;
1281
+ --vscode-gitDecoration-renamedResourceForeground: #73c991;
1282
+ --vscode-gitDecoration-untrackedResourceForeground: #73c991;
1283
+ --vscode-gitDecoration-ignoredResourceForeground: #a7a8a9;
1284
+ --vscode-gitDecoration-stageModifiedResourceForeground: #e2c08d;
1285
+ --vscode-gitDecoration-stageDeletedResourceForeground: #c74e39;
1286
+ --vscode-gitDecoration-conflictingResourceForeground: #c74e39;
1287
+ --vscode-gitDecoration-submoduleResourceForeground: #8db9e2;
1288
+ }