-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtailwind.config.vscode.js
544 lines (540 loc) · 43.5 KB
/
tailwind.config.vscode.js
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
const plugin = require('tailwindcss/plugin')
module.exports = plugin(() => {}, {
theme: {
extend: {
colors: {
vscode: {
/* The following values were autogenerated
1. Go to https://code.visualstudio.com/api/references/theme-color
2. Do this in a web inspector, and feel awesome (or terrible):
Object.fromEntries(
Array.from(
document.querySelectorAll('li code:first-of-type'),
n => {
const k = n.textContent.replace(/\./g, '-')
return [k, `var(--vscode-${k})`]
}
)
)
3. Copy that object here.
*/
'contrastActiveBorder': 'var(--vscode-contrastActiveBorder)',
'contrastBorder': 'var(--vscode-contrastBorder)',
'focusBorder': 'var(--vscode-focusBorder)',
'foreground': 'var(--vscode-foreground)',
'widget-shadow': 'var(--vscode-widget-shadow)',
'selection-background': 'var(--vscode-selection-background)',
'descriptionForeground': 'var(--vscode-descriptionForeground)',
'errorForeground': 'var(--vscode-errorForeground)',
'icon-foreground': 'var(--vscode-icon-foreground)',
'sash-hoverBorder': 'var(--vscode-sash-hoverBorder)',
'window-activeBorder': 'var(--vscode-window-activeBorder)',
'window-inactiveBorder': 'var(--vscode-window-inactiveBorder)',
'textBlockQuote-background': 'var(--vscode-textBlockQuote-background)',
'textBlockQuote-border': 'var(--vscode-textBlockQuote-border)',
'textCodeBlock-background': 'var(--vscode-textCodeBlock-background)',
'textLink-activeForeground': 'var(--vscode-textLink-activeForeground)',
'textLink-foreground': 'var(--vscode-textLink-foreground)',
'textPreformat-foreground': 'var(--vscode-textPreformat-foreground)',
'textSeparator-foreground': 'var(--vscode-textSeparator-foreground)',
'button-background': 'var(--vscode-button-background)',
'button-foreground': 'var(--vscode-button-foreground)',
'button-hoverBackground': 'var(--vscode-button-hoverBackground)',
'button-secondaryForeground': 'var(--vscode-button-secondaryForeground)',
'button-secondaryBackground': 'var(--vscode-button-secondaryBackground)',
'button-secondaryHoverBackground': 'var(--vscode-button-secondaryHoverBackground)',
'checkbox-background': 'var(--vscode-checkbox-background)',
'checkbox-foreground': 'var(--vscode-checkbox-foreground)',
'checkbox-border': 'var(--vscode-checkbox-border)',
'dropdown-background': 'var(--vscode-dropdown-background)',
'dropdown-listBackground': 'var(--vscode-dropdown-listBackground)',
'dropdown-border': 'var(--vscode-dropdown-border)',
'dropdown-foreground': 'var(--vscode-dropdown-foreground)',
'input-background': 'var(--vscode-input-background)',
'input-border': 'var(--vscode-input-border)',
'input-foreground': 'var(--vscode-input-foreground)',
'input-placeholderForeground': 'var(--vscode-input-placeholderForeground)',
'inputOption-activeBackground': 'var(--vscode-inputOption-activeBackground)',
'inputOption-activeBorder': 'var(--vscode-inputOption-activeBorder)',
'inputOption-activeForeground': 'var(--vscode-inputOption-activeForeground)',
'inputValidation-errorBackground': 'var(--vscode-inputValidation-errorBackground)',
'inputValidation-errorForeground': 'var(--vscode-inputValidation-errorForeground)',
'inputValidation-errorBorder': 'var(--vscode-inputValidation-errorBorder)',
'inputValidation-infoBackground': 'var(--vscode-inputValidation-infoBackground)',
'inputValidation-infoForeground': 'var(--vscode-inputValidation-infoForeground)',
'inputValidation-infoBorder': 'var(--vscode-inputValidation-infoBorder)',
'inputValidation-warningBackground': 'var(--vscode-inputValidation-warningBackground)',
'inputValidation-warningForeground': 'var(--vscode-inputValidation-warningForeground)',
'inputValidation-warningBorder': 'var(--vscode-inputValidation-warningBorder)',
'scrollbar-shadow': 'var(--vscode-scrollbar-shadow)',
'scrollbarSlider-activeBackground': 'var(--vscode-scrollbarSlider-activeBackground)',
'scrollbarSlider-background': 'var(--vscode-scrollbarSlider-background)',
'scrollbarSlider-hoverBackground': 'var(--vscode-scrollbarSlider-hoverBackground)',
'badge-foreground': 'var(--vscode-badge-foreground)',
'badge-background': 'var(--vscode-badge-background)',
'progressBar-background': 'var(--vscode-progressBar-background)',
'list-activeSelectionBackground': 'var(--vscode-list-activeSelectionBackground)',
'list-activeSelectionForeground': 'var(--vscode-list-activeSelectionForeground)',
'list-dropBackground': 'var(--vscode-list-dropBackground)',
'list-focusBackground': 'var(--vscode-list-focusBackground)',
'list-focusForeground': 'var(--vscode-list-focusForeground)',
'list-highlightForeground': 'var(--vscode-list-highlightForeground)',
'list-hoverBackground': 'var(--vscode-list-hoverBackground)',
'list-hoverForeground': 'var(--vscode-list-hoverForeground)',
'list-inactiveSelectionBackground': 'var(--vscode-list-inactiveSelectionBackground)',
'list-inactiveSelectionForeground': 'var(--vscode-list-inactiveSelectionForeground)',
'list-inactiveFocusBackground': 'var(--vscode-list-inactiveFocusBackground)',
'list-invalidItemForeground': 'var(--vscode-list-invalidItemForeground)',
'list-errorForeground': 'var(--vscode-list-errorForeground)',
'list-warningForeground': 'var(--vscode-list-warningForeground)',
'listFilterWidget-background': 'var(--vscode-listFilterWidget-background)',
'listFilterWidget-outline': 'var(--vscode-listFilterWidget-outline)',
'listFilterWidget-noMatchesOutline': 'var(--vscode-listFilterWidget-noMatchesOutline)',
'list-filterMatchBackground': 'var(--vscode-list-filterMatchBackground)',
'list-filterMatchBorder': 'var(--vscode-list-filterMatchBorder)',
'tree-indentGuidesStroke': 'var(--vscode-tree-indentGuidesStroke)',
'list-deemphasizedForeground': 'var(--vscode-list-deemphasizedForeground)',
'activityBar-background': 'var(--vscode-activityBar-background)',
'activityBar-dropBorder': 'var(--vscode-activityBar-dropBorder)',
'activityBar-foreground': 'var(--vscode-activityBar-foreground)',
'activityBar-inactiveForeground': 'var(--vscode-activityBar-inactiveForeground)',
'activityBar-border': 'var(--vscode-activityBar-border)',
'activityBarBadge-background': 'var(--vscode-activityBarBadge-background)',
'activityBarBadge-foreground': 'var(--vscode-activityBarBadge-foreground)',
'activityBar-activeBorder': 'var(--vscode-activityBar-activeBorder)',
'activityBar-activeBackground': 'var(--vscode-activityBar-activeBackground)',
'activityBar-activeFocusBorder': 'var(--vscode-activityBar-activeFocusBorder)',
'sideBar-background': 'var(--vscode-sideBar-background)',
'sideBar-foreground': 'var(--vscode-sideBar-foreground)',
'sideBar-border': 'var(--vscode-sideBar-border)',
'sideBar-dropBackground': 'var(--vscode-sideBar-dropBackground)',
'sideBarTitle-foreground': 'var(--vscode-sideBarTitle-foreground)',
'sideBarSectionHeader-background': 'var(--vscode-sideBarSectionHeader-background)',
'sideBarSectionHeader-foreground': 'var(--vscode-sideBarSectionHeader-foreground)',
'sideBarSectionHeader-border': 'var(--vscode-sideBarSectionHeader-border)',
'minimap-findMatchHighlight': 'var(--vscode-minimap-findMatchHighlight)',
'minimap-selectionHighlight': 'var(--vscode-minimap-selectionHighlight)',
'minimap-errorHighlight': 'var(--vscode-minimap-errorHighlight)',
'minimap-warningHighlight': 'var(--vscode-minimap-warningHighlight)',
'minimap-background': 'var(--vscode-minimap-background)',
'minimapSlider-background': 'var(--vscode-minimapSlider-background)',
'minimapSlider-hoverBackground': 'var(--vscode-minimapSlider-hoverBackground)',
'minimapSlider-activeBackground': 'var(--vscode-minimapSlider-activeBackground)',
'minimapGutter-addedBackground': 'var(--vscode-minimapGutter-addedBackground)',
'minimapGutter-modifiedBackground': 'var(--vscode-minimapGutter-modifiedBackground)',
'minimapGutter-deletedBackground': 'var(--vscode-minimapGutter-deletedBackground)',
'editorGroup-border': 'var(--vscode-editorGroup-border)',
'editorGroup-dropBackground': 'var(--vscode-editorGroup-dropBackground)',
'editorGroupHeader-noTabsBackground': 'var(--vscode-editorGroupHeader-noTabsBackground)',
'editorGroupHeader-tabsBackground': 'var(--vscode-editorGroupHeader-tabsBackground)',
'editorGroupHeader-tabsBorder': 'var(--vscode-editorGroupHeader-tabsBorder)',
'editorGroupHeader-border': 'var(--vscode-editorGroupHeader-border)',
'editorGroup-emptyBackground': 'var(--vscode-editorGroup-emptyBackground)',
'editorGroup-focusedEmptyBorder': 'var(--vscode-editorGroup-focusedEmptyBorder)',
'tab-activeBackground': 'var(--vscode-tab-activeBackground)',
'tab-unfocusedActiveBackground': 'var(--vscode-tab-unfocusedActiveBackground)',
'tab-activeForeground': 'var(--vscode-tab-activeForeground)',
'tab-border': 'var(--vscode-tab-border)',
'tab-activeBorder': 'var(--vscode-tab-activeBorder)',
'tab-unfocusedActiveBorder': 'var(--vscode-tab-unfocusedActiveBorder)',
'tab-activeBorderTop': 'var(--vscode-tab-activeBorderTop)',
'tab-unfocusedActiveBorderTop': 'var(--vscode-tab-unfocusedActiveBorderTop)',
'tab-lastPinnedBorder': 'var(--vscode-tab-lastPinnedBorder)',
'tab-inactiveBackground': 'var(--vscode-tab-inactiveBackground)',
'tab-unfocusedInactiveBackground': 'var(--vscode-tab-unfocusedInactiveBackground)',
'tab-inactiveForeground': 'var(--vscode-tab-inactiveForeground)',
'tab-unfocusedActiveForeground': 'var(--vscode-tab-unfocusedActiveForeground)',
'tab-unfocusedInactiveForeground': 'var(--vscode-tab-unfocusedInactiveForeground)',
'tab-hoverBackground': 'var(--vscode-tab-hoverBackground)',
'tab-unfocusedHoverBackground': 'var(--vscode-tab-unfocusedHoverBackground)',
'tab-hoverForeground': 'var(--vscode-tab-hoverForeground)',
'tab-unfocusedHoverForeground': 'var(--vscode-tab-unfocusedHoverForeground)',
'tab-hoverBorder': 'var(--vscode-tab-hoverBorder)',
'tab-unfocusedHoverBorder': 'var(--vscode-tab-unfocusedHoverBorder)',
'tab-activeModifiedBorder': 'var(--vscode-tab-activeModifiedBorder)',
'tab-inactiveModifiedBorder': 'var(--vscode-tab-inactiveModifiedBorder)',
'tab-unfocusedActiveModifiedBorder': 'var(--vscode-tab-unfocusedActiveModifiedBorder)',
'tab-unfocusedInactiveModifiedBorder': 'var(--vscode-tab-unfocusedInactiveModifiedBorder)',
'editorPane-background': 'var(--vscode-editorPane-background)',
'editor-background': 'var(--vscode-editor-background)',
'editor-foreground': 'var(--vscode-editor-foreground)',
'editorLineNumber-foreground': 'var(--vscode-editorLineNumber-foreground)',
'editorLineNumber-activeForeground': 'var(--vscode-editorLineNumber-activeForeground)',
'editorCursor-background': 'var(--vscode-editorCursor-background)',
'editorCursor-foreground': 'var(--vscode-editorCursor-foreground)',
'editor-selectionBackground': 'var(--vscode-editor-selectionBackground)',
'editor-selectionForeground': 'var(--vscode-editor-selectionForeground)',
'editor-inactiveSelectionBackground': 'var(--vscode-editor-inactiveSelectionBackground)',
'editor-selectionHighlightBackground': 'var(--vscode-editor-selectionHighlightBackground)',
'editor-selectionHighlightBorder': 'var(--vscode-editor-selectionHighlightBorder)',
'editor-wordHighlightBackground': 'var(--vscode-editor-wordHighlightBackground)',
'editor-wordHighlightBorder': 'var(--vscode-editor-wordHighlightBorder)',
'editor-wordHighlightStrongBackground': 'var(--vscode-editor-wordHighlightStrongBackground)',
'editor-wordHighlightStrongBorder': 'var(--vscode-editor-wordHighlightStrongBorder)',
'editor-findMatchBackground': 'var(--vscode-editor-findMatchBackground)',
'editor-findMatchHighlightBackground': 'var(--vscode-editor-findMatchHighlightBackground)',
'editor-findRangeHighlightBackground': 'var(--vscode-editor-findRangeHighlightBackground)',
'editor-findMatchBorder': 'var(--vscode-editor-findMatchBorder)',
'editor-findMatchHighlightBorder': 'var(--vscode-editor-findMatchHighlightBorder)',
'editor-findRangeHighlightBorder': 'var(--vscode-editor-findRangeHighlightBorder)',
'searchEditor-findMatchBackground': 'var(--vscode-searchEditor-findMatchBackground)',
'searchEditor-findMatchBorder': 'var(--vscode-searchEditor-findMatchBorder)',
'searchEditor-textInputBorder': 'var(--vscode-searchEditor-textInputBorder)',
'editor-hoverHighlightBackground': 'var(--vscode-editor-hoverHighlightBackground)',
'editor-lineHighlightBackground': 'var(--vscode-editor-lineHighlightBackground)',
'editor-lineHighlightBorder': 'var(--vscode-editor-lineHighlightBorder)',
'editorLink-activeForeground': 'var(--vscode-editorLink-activeForeground)',
'editor-rangeHighlightBackground': 'var(--vscode-editor-rangeHighlightBackground)',
'editor-rangeHighlightBorder': 'var(--vscode-editor-rangeHighlightBorder)',
'editor-symbolHighlightBackground': 'var(--vscode-editor-symbolHighlightBackground)',
'editor-symbolHighlightBorder': 'var(--vscode-editor-symbolHighlightBorder)',
'editorWhitespace-foreground': 'var(--vscode-editorWhitespace-foreground)',
'editorIndentGuide-background': 'var(--vscode-editorIndentGuide-background)',
'editorIndentGuide-activeBackground': 'var(--vscode-editorIndentGuide-activeBackground)',
'editorRuler-foreground': 'var(--vscode-editorRuler-foreground)',
'editor-linkedEditingBackground': 'var(--vscode-editor-linkedEditingBackground)',
'editorCodeLens-foreground': 'var(--vscode-editorCodeLens-foreground)',
'editorLightBulb-foreground': 'var(--vscode-editorLightBulb-foreground)',
'editorLightBulbAutoFix-foreground': 'var(--vscode-editorLightBulbAutoFix-foreground)',
'editorBracketMatch-background': 'var(--vscode-editorBracketMatch-background)',
'editorBracketMatch-border': 'var(--vscode-editorBracketMatch-border)',
'editor-foldBackground': 'var(--vscode-editor-foldBackground)',
'editorOverviewRuler-background': 'var(--vscode-editorOverviewRuler-background)',
'editorOverviewRuler-border': 'var(--vscode-editorOverviewRuler-border)',
'editorOverviewRuler-findMatchForeground': 'var(--vscode-editorOverviewRuler-findMatchForeground)',
'editorOverviewRuler-rangeHighlightForeground': 'var(--vscode-editorOverviewRuler-rangeHighlightForeground)',
'editorOverviewRuler-selectionHighlightForeground':
'var(--vscode-editorOverviewRuler-selectionHighlightForeground)',
'editorOverviewRuler-wordHighlightForeground': 'var(--vscode-editorOverviewRuler-wordHighlightForeground)',
'editorOverviewRuler-wordHighlightStrongForeground':
'var(--vscode-editorOverviewRuler-wordHighlightStrongForeground)',
'editorOverviewRuler-modifiedForeground': 'var(--vscode-editorOverviewRuler-modifiedForeground)',
'editorOverviewRuler-addedForeground': 'var(--vscode-editorOverviewRuler-addedForeground)',
'editorOverviewRuler-deletedForeground': 'var(--vscode-editorOverviewRuler-deletedForeground)',
'editorOverviewRuler-errorForeground': 'var(--vscode-editorOverviewRuler-errorForeground)',
'editorOverviewRuler-warningForeground': 'var(--vscode-editorOverviewRuler-warningForeground)',
'editorOverviewRuler-infoForeground': 'var(--vscode-editorOverviewRuler-infoForeground)',
'editorOverviewRuler-bracketMatchForeground': 'var(--vscode-editorOverviewRuler-bracketMatchForeground)',
'editorError-foreground': 'var(--vscode-editorError-foreground)',
'editorError-border': 'var(--vscode-editorError-border)',
'editorError-background': 'var(--vscode-editorError-background)',
'editorWarning-foreground': 'var(--vscode-editorWarning-foreground)',
'editorWarning-border': 'var(--vscode-editorWarning-border)',
'editorWarning-background': 'var(--vscode-editorWarning-background)',
'editorInfo-foreground': 'var(--vscode-editorInfo-foreground)',
'editorInfo-border': 'var(--vscode-editorInfo-border)',
'editorInfo-background': 'var(--vscode-editorInfo-background)',
'editorHint-foreground': 'var(--vscode-editorHint-foreground)',
'editorHint-border': 'var(--vscode-editorHint-border)',
'problemsErrorIcon-foreground': 'var(--vscode-problemsErrorIcon-foreground)',
'problemsWarningIcon-foreground': 'var(--vscode-problemsWarningIcon-foreground)',
'problemsInfoIcon-foreground': 'var(--vscode-problemsInfoIcon-foreground)',
'editorUnnecessaryCode-border': 'var(--vscode-editorUnnecessaryCode-border)',
'editorUnnecessaryCode-opacity': 'var(--vscode-editorUnnecessaryCode-opacity)',
'editorGutter-background': 'var(--vscode-editorGutter-background)',
'editorGutter-modifiedBackground': 'var(--vscode-editorGutter-modifiedBackground)',
'editorGutter-addedBackground': 'var(--vscode-editorGutter-addedBackground)',
'editorGutter-deletedBackground': 'var(--vscode-editorGutter-deletedBackground)',
'editorGutter-commentRangeForeground': 'var(--vscode-editorGutter-commentRangeForeground)',
'editorGutter-foldingControlForeground': 'var(--vscode-editorGutter-foldingControlForeground)',
'diffEditor-insertedTextBackground': 'var(--vscode-diffEditor-insertedTextBackground)',
'diffEditor-insertedTextBorder': 'var(--vscode-diffEditor-insertedTextBorder)',
'diffEditor-removedTextBackground': 'var(--vscode-diffEditor-removedTextBackground)',
'diffEditor-removedTextBorder': 'var(--vscode-diffEditor-removedTextBorder)',
'diffEditor-border': 'var(--vscode-diffEditor-border)',
'diffEditor-diagonalFill': 'var(--vscode-diffEditor-diagonalFill)',
'editorWidget-foreground': 'var(--vscode-editorWidget-foreground)',
'editorWidget-background': 'var(--vscode-editorWidget-background)',
'editorWidget-border': 'var(--vscode-editorWidget-border)',
'editorWidget-resizeBorder': 'var(--vscode-editorWidget-resizeBorder)',
'editorSuggestWidget-background': 'var(--vscode-editorSuggestWidget-background)',
'editorSuggestWidget-border': 'var(--vscode-editorSuggestWidget-border)',
'editorSuggestWidget-foreground': 'var(--vscode-editorSuggestWidget-foreground)',
'editorSuggestWidget-highlightForeground': 'var(--vscode-editorSuggestWidget-highlightForeground)',
'editorSuggestWidget-selectedBackground': 'var(--vscode-editorSuggestWidget-selectedBackground)',
'editorHoverWidget-foreground': 'var(--vscode-editorHoverWidget-foreground)',
'editorHoverWidget-background': 'var(--vscode-editorHoverWidget-background)',
'editorHoverWidget-border': 'var(--vscode-editorHoverWidget-border)',
'editorHoverWidget-statusBarBackground': 'var(--vscode-editorHoverWidget-statusBarBackground)',
'debugExceptionWidget-background': 'var(--vscode-debugExceptionWidget-background)',
'debugExceptionWidget-border': 'var(--vscode-debugExceptionWidget-border)',
'editorMarkerNavigation-background': 'var(--vscode-editorMarkerNavigation-background)',
'editorMarkerNavigationError-background': 'var(--vscode-editorMarkerNavigationError-background)',
'editorMarkerNavigationWarning-background': 'var(--vscode-editorMarkerNavigationWarning-background)',
'editorMarkerNavigationInfo-background': 'var(--vscode-editorMarkerNavigationInfo-background)',
'peekView-border': 'var(--vscode-peekView-border)',
'peekViewEditor-background': 'var(--vscode-peekViewEditor-background)',
'peekViewEditorGutter-background': 'var(--vscode-peekViewEditorGutter-background)',
'peekViewEditor-matchHighlightBackground': 'var(--vscode-peekViewEditor-matchHighlightBackground)',
'peekViewEditor-matchHighlightBorder': 'var(--vscode-peekViewEditor-matchHighlightBorder)',
'peekViewResult-background': 'var(--vscode-peekViewResult-background)',
'peekViewResult-fileForeground': 'var(--vscode-peekViewResult-fileForeground)',
'peekViewResult-lineForeground': 'var(--vscode-peekViewResult-lineForeground)',
'peekViewResult-matchHighlightBackground': 'var(--vscode-peekViewResult-matchHighlightBackground)',
'peekViewResult-selectionBackground': 'var(--vscode-peekViewResult-selectionBackground)',
'peekViewResult-selectionForeground': 'var(--vscode-peekViewResult-selectionForeground)',
'peekViewTitle-background': 'var(--vscode-peekViewTitle-background)',
'peekViewTitleDescription-foreground': 'var(--vscode-peekViewTitleDescription-foreground)',
'peekViewTitleLabel-foreground': 'var(--vscode-peekViewTitleLabel-foreground)',
'merge-currentHeaderBackground': 'var(--vscode-merge-currentHeaderBackground)',
'merge-currentContentBackground': 'var(--vscode-merge-currentContentBackground)',
'merge-incomingHeaderBackground': 'var(--vscode-merge-incomingHeaderBackground)',
'merge-incomingContentBackground': 'var(--vscode-merge-incomingContentBackground)',
'merge-border': 'var(--vscode-merge-border)',
'merge-commonContentBackground': 'var(--vscode-merge-commonContentBackground)',
'merge-commonHeaderBackground': 'var(--vscode-merge-commonHeaderBackground)',
'editorOverviewRuler-currentContentForeground': 'var(--vscode-editorOverviewRuler-currentContentForeground)',
'editorOverviewRuler-incomingContentForeground':
'var(--vscode-editorOverviewRuler-incomingContentForeground)',
'editorOverviewRuler-commonContentForeground': 'var(--vscode-editorOverviewRuler-commonContentForeground)',
'panel-background': 'var(--vscode-panel-background)',
'panel-border': 'var(--vscode-panel-border)',
'panel-dropBorder': 'var(--vscode-panel-dropBorder)',
'panelTitle-activeBorder': 'var(--vscode-panelTitle-activeBorder)',
'panelTitle-activeForeground': 'var(--vscode-panelTitle-activeForeground)',
'panelTitle-inactiveForeground': 'var(--vscode-panelTitle-inactiveForeground)',
'panelInput-border': 'var(--vscode-panelInput-border)',
'panelSection-border': 'var(--vscode-panelSection-border)',
'panelSection-dropBackground': 'var(--vscode-panelSection-dropBackground)',
'panelSectionHeader-background': 'var(--vscode-panelSectionHeader-background)',
'panelSectionHeader-foreground': 'var(--vscode-panelSectionHeader-foreground)',
'panelSectionHeader-border': 'var(--vscode-panelSectionHeader-border)',
'imagePreview-border': 'var(--vscode-imagePreview-border)',
'statusBar-background': 'var(--vscode-statusBar-background)',
'statusBar-foreground': 'var(--vscode-statusBar-foreground)',
'statusBar-border': 'var(--vscode-statusBar-border)',
'statusBar-debuggingBackground': 'var(--vscode-statusBar-debuggingBackground)',
'statusBar-debuggingForeground': 'var(--vscode-statusBar-debuggingForeground)',
'statusBar-debuggingBorder': 'var(--vscode-statusBar-debuggingBorder)',
'statusBar-noFolderForeground': 'var(--vscode-statusBar-noFolderForeground)',
'statusBar-noFolderBackground': 'var(--vscode-statusBar-noFolderBackground)',
'statusBar-noFolderBorder': 'var(--vscode-statusBar-noFolderBorder)',
'statusBarItem-activeBackground': 'var(--vscode-statusBarItem-activeBackground)',
'statusBarItem-hoverBackground': 'var(--vscode-statusBarItem-hoverBackground)',
'statusBarItem-prominentForeground': 'var(--vscode-statusBarItem-prominentForeground)',
'statusBarItem-prominentBackground': 'var(--vscode-statusBarItem-prominentBackground)',
'statusBarItem-prominentHoverBackground': 'var(--vscode-statusBarItem-prominentHoverBackground)',
'statusBarItem-remoteBackground': 'var(--vscode-statusBarItem-remoteBackground)',
'statusBarItem-remoteForeground': 'var(--vscode-statusBarItem-remoteForeground)',
'statusBarItem-errorBackground': 'var(--vscode-statusBarItem-errorBackground)',
'statusBarItem-errorForeground': 'var(--vscode-statusBarItem-errorForeground)',
'titleBar-activeBackground': 'var(--vscode-titleBar-activeBackground)',
'titleBar-activeForeground': 'var(--vscode-titleBar-activeForeground)',
'titleBar-inactiveBackground': 'var(--vscode-titleBar-inactiveBackground)',
'titleBar-inactiveForeground': 'var(--vscode-titleBar-inactiveForeground)',
'titleBar-border': 'var(--vscode-titleBar-border)',
'menubar-selectionForeground': 'var(--vscode-menubar-selectionForeground)',
'menubar-selectionBackground': 'var(--vscode-menubar-selectionBackground)',
'menubar-selectionBorder': 'var(--vscode-menubar-selectionBorder)',
'menu-foreground': 'var(--vscode-menu-foreground)',
'menu-background': 'var(--vscode-menu-background)',
'menu-selectionForeground': 'var(--vscode-menu-selectionForeground)',
'menu-selectionBackground': 'var(--vscode-menu-selectionBackground)',
'menu-selectionBorder': 'var(--vscode-menu-selectionBorder)',
'menu-separatorBackground': 'var(--vscode-menu-separatorBackground)',
'menu-border': 'var(--vscode-menu-border)',
'notificationCenter-border': 'var(--vscode-notificationCenter-border)',
'notificationCenterHeader-foreground': 'var(--vscode-notificationCenterHeader-foreground)',
'notificationCenterHeader-background': 'var(--vscode-notificationCenterHeader-background)',
'notificationToast-border': 'var(--vscode-notificationToast-border)',
'notifications-foreground': 'var(--vscode-notifications-foreground)',
'notifications-background': 'var(--vscode-notifications-background)',
'notifications-border': 'var(--vscode-notifications-border)',
'notificationLink-foreground': 'var(--vscode-notificationLink-foreground)',
'notificationsErrorIcon-foreground': 'var(--vscode-notificationsErrorIcon-foreground)',
'notificationsWarningIcon-foreground': 'var(--vscode-notificationsWarningIcon-foreground)',
'notificationsInfoIcon-foreground': 'var(--vscode-notificationsInfoIcon-foreground)',
'extensionButton-prominentForeground': 'var(--vscode-extensionButton-prominentForeground)',
'extensionButton-prominentBackground': 'var(--vscode-extensionButton-prominentBackground)',
'extensionButton-prominentHoverBackground': 'var(--vscode-extensionButton-prominentHoverBackground)',
'extensionBadge-remoteBackground': 'var(--vscode-extensionBadge-remoteBackground)',
'extensionBadge-remoteForeground': 'var(--vscode-extensionBadge-remoteForeground)',
'pickerGroup-border': 'var(--vscode-pickerGroup-border)',
'pickerGroup-foreground': 'var(--vscode-pickerGroup-foreground)',
'quickInput-background': 'var(--vscode-quickInput-background)',
'quickInput-foreground': 'var(--vscode-quickInput-foreground)',
'quickInputTitle-background': 'var(--vscode-quickInputTitle-background)',
'terminal-background': 'var(--vscode-terminal-background)',
'terminal-border': 'var(--vscode-terminal-border)',
'terminal-foreground': 'var(--vscode-terminal-foreground)',
'terminal-ansiBlack': 'var(--vscode-terminal-ansiBlack)',
'terminal-ansiBlue': 'var(--vscode-terminal-ansiBlue)',
'terminal-ansiBrightBlack': 'var(--vscode-terminal-ansiBrightBlack)',
'terminal-ansiBrightBlue': 'var(--vscode-terminal-ansiBrightBlue)',
'terminal-ansiBrightCyan': 'var(--vscode-terminal-ansiBrightCyan)',
'terminal-ansiBrightGreen': 'var(--vscode-terminal-ansiBrightGreen)',
'terminal-ansiBrightMagenta': 'var(--vscode-terminal-ansiBrightMagenta)',
'terminal-ansiBrightRed': 'var(--vscode-terminal-ansiBrightRed)',
'terminal-ansiBrightWhite': 'var(--vscode-terminal-ansiBrightWhite)',
'terminal-ansiBrightYellow': 'var(--vscode-terminal-ansiBrightYellow)',
'terminal-ansiCyan': 'var(--vscode-terminal-ansiCyan)',
'terminal-ansiGreen': 'var(--vscode-terminal-ansiGreen)',
'terminal-ansiMagenta': 'var(--vscode-terminal-ansiMagenta)',
'terminal-ansiRed': 'var(--vscode-terminal-ansiRed)',
'terminal-ansiWhite': 'var(--vscode-terminal-ansiWhite)',
'terminal-ansiYellow': 'var(--vscode-terminal-ansiYellow)',
'terminal-selectionBackground': 'var(--vscode-terminal-selectionBackground)',
'terminalCursor-background': 'var(--vscode-terminalCursor-background)',
'terminalCursor-foreground': 'var(--vscode-terminalCursor-foreground)',
'debugToolBar-background': 'var(--vscode-debugToolBar-background)',
'debugToolBar-border': 'var(--vscode-debugToolBar-border)',
'editor-stackFrameHighlightBackground': 'var(--vscode-editor-stackFrameHighlightBackground)',
'editor-focusedStackFrameHighlightBackground': 'var(--vscode-editor-focusedStackFrameHighlightBackground)',
'debugView-exceptionLabelForeground': 'var(--vscode-debugView-exceptionLabelForeground)',
'debugView-exceptionLabelBackground': 'var(--vscode-debugView-exceptionLabelBackground)',
'debugView-stateLabelForeground': 'var(--vscode-debugView-stateLabelForeground)',
'debugView-stateLabelBackground': 'var(--vscode-debugView-stateLabelBackground)',
'debugView-valueChangedHighlight': 'var(--vscode-debugView-valueChangedHighlight)',
'debugTokenExpression-name': 'var(--vscode-debugTokenExpression-name)',
'debugTokenExpression-value': 'var(--vscode-debugTokenExpression-value)',
'debugTokenExpression-string': 'var(--vscode-debugTokenExpression-string)',
'debugTokenExpression-boolean': 'var(--vscode-debugTokenExpression-boolean)',
'debugTokenExpression-number': 'var(--vscode-debugTokenExpression-number)',
'debugTokenExpression-error': 'var(--vscode-debugTokenExpression-error)',
'testing-iconFailed': 'var(--vscode-testing-iconFailed)',
'testing-iconErrored': 'var(--vscode-testing-iconErrored)',
'testing-iconPassed': 'var(--vscode-testing-iconPassed)',
'testing-runAction': 'var(--vscode-testing-runAction)',
'testing-iconQueued': 'var(--vscode-testing-iconQueued)',
'testing-iconUnset': 'var(--vscode-testing-iconUnset)',
'testing-iconSkipped': 'var(--vscode-testing-iconSkipped)',
'testing-peekBorder': 'var(--vscode-testing-peekBorder)',
'testing-message-error-decorationForeground': 'var(--vscode-testing-message-error-decorationForeground)',
'testing-message-error-lineBackground': 'var(--vscode-testing-message-error-lineBackground)',
'testing-message-warning-decorationForeground': 'var(--vscode-testing-message-warning-decorationForeground)',
'testing-message-warning-lineBackground': 'var(--vscode-testing-message-warning-lineBackground)',
'testing-message-info-decorationForeground': 'var(--vscode-testing-message-info-decorationForeground)',
'testing-message-info-lineBackground': 'var(--vscode-testing-message-info-lineBackground)',
'testing-message-hint-decorationForeground': 'var(--vscode-testing-message-hint-decorationForeground)',
'testing-message-hint-lineBackground': 'var(--vscode-testing-message-hint-lineBackground)',
'welcomePage-background': 'var(--vscode-welcomePage-background)',
'welcomePage-buttonBackground': 'var(--vscode-welcomePage-buttonBackground)',
'welcomePage-buttonHoverBackground': 'var(--vscode-welcomePage-buttonHoverBackground)',
'welcomePage-progress-background': 'var(--vscode-welcomePage-progress-background)',
'welcomePage-progress-foreground': 'var(--vscode-welcomePage-progress-foreground)',
'walkThrough-embeddedEditorBackground': 'var(--vscode-walkThrough-embeddedEditorBackground)',
'scm-providerBorder': 'var(--vscode-scm-providerBorder)',
'gitDecoration-addedResourceForeground': 'var(--vscode-gitDecoration-addedResourceForeground)',
'gitDecoration-modifiedResourceForeground': 'var(--vscode-gitDecoration-modifiedResourceForeground)',
'gitDecoration-stageModifiedResourceForeground':
'var(--vscode-gitDecoration-stageModifiedResourceForeground)',
'gitDecoration-deletedResourceForeground': 'var(--vscode-gitDecoration-deletedResourceForeground)',
'gitDecoration-stageDeletedResourceForeground': 'var(--vscode-gitDecoration-stageDeletedResourceForeground)',
'gitDecoration-untrackedResourceForeground': 'var(--vscode-gitDecoration-untrackedResourceForeground)',
'gitDecoration-ignoredResourceForeground': 'var(--vscode-gitDecoration-ignoredResourceForeground)',
'gitDecoration-conflictingResourceForeground': 'var(--vscode-gitDecoration-conflictingResourceForeground)',
'gitDecoration-submoduleResourceForeground': 'var(--vscode-gitDecoration-submoduleResourceForeground)',
'settings-headerForeground': 'var(--vscode-settings-headerForeground)',
'settings-modifiedItemIndicator': 'var(--vscode-settings-modifiedItemIndicator)',
'settings-dropdownBackground': 'var(--vscode-settings-dropdownBackground)',
'settings-dropdownForeground': 'var(--vscode-settings-dropdownForeground)',
'settings-dropdownBorder': 'var(--vscode-settings-dropdownBorder)',
'settings-dropdownListBorder': 'var(--vscode-settings-dropdownListBorder)',
'settings-checkboxBackground': 'var(--vscode-settings-checkboxBackground)',
'settings-checkboxForeground': 'var(--vscode-settings-checkboxForeground)',
'settings-checkboxBorder': 'var(--vscode-settings-checkboxBorder)',
'settings-textInputBackground': 'var(--vscode-settings-textInputBackground)',
'settings-textInputForeground': 'var(--vscode-settings-textInputForeground)',
'settings-textInputBorder': 'var(--vscode-settings-textInputBorder)',
'settings-numberInputBackground': 'var(--vscode-settings-numberInputBackground)',
'settings-numberInputForeground': 'var(--vscode-settings-numberInputForeground)',
'settings-numberInputBorder': 'var(--vscode-settings-numberInputBorder)',
'settings-focusedRowBackground': 'var(--vscode-settings-focusedRowBackground)',
'notebook-focusedRowBorder': 'var(--vscode-notebook-focusedRowBorder)',
'notebook-rowHoverBackground': 'var(--vscode-notebook-rowHoverBackground)',
'breadcrumb-foreground': 'var(--vscode-breadcrumb-foreground)',
'breadcrumb-background': 'var(--vscode-breadcrumb-background)',
'breadcrumb-focusForeground': 'var(--vscode-breadcrumb-focusForeground)',
'breadcrumb-activeSelectionForeground': 'var(--vscode-breadcrumb-activeSelectionForeground)',
'breadcrumbPicker-background': 'var(--vscode-breadcrumbPicker-background)',
'editor-snippetTabstopHighlightBackground': 'var(--vscode-editor-snippetTabstopHighlightBackground)',
'editor-snippetTabstopHighlightBorder': 'var(--vscode-editor-snippetTabstopHighlightBorder)',
'editor-snippetFinalTabstopHighlightBackground':
'var(--vscode-editor-snippetFinalTabstopHighlightBackground)',
'editor-snippetFinalTabstopHighlightBorder': 'var(--vscode-editor-snippetFinalTabstopHighlightBorder)',
'symbolIcon-arrayForeground': 'var(--vscode-symbolIcon-arrayForeground)',
'symbolIcon-booleanForeground': 'var(--vscode-symbolIcon-booleanForeground)',
'symbolIcon-classForeground': 'var(--vscode-symbolIcon-classForeground)',
'symbolIcon-colorForeground': 'var(--vscode-symbolIcon-colorForeground)',
'symbolIcon-constantForeground': 'var(--vscode-symbolIcon-constantForeground)',
'symbolIcon-constructorForeground': 'var(--vscode-symbolIcon-constructorForeground)',
'symbolIcon-enumeratorForeground': 'var(--vscode-symbolIcon-enumeratorForeground)',
'symbolIcon-enumeratorMemberForeground': 'var(--vscode-symbolIcon-enumeratorMemberForeground)',
'symbolIcon-eventForeground': 'var(--vscode-symbolIcon-eventForeground)',
'symbolIcon-fieldForeground': 'var(--vscode-symbolIcon-fieldForeground)',
'symbolIcon-fileForeground': 'var(--vscode-symbolIcon-fileForeground)',
'symbolIcon-folderForeground': 'var(--vscode-symbolIcon-folderForeground)',
'symbolIcon-functionForeground': 'var(--vscode-symbolIcon-functionForeground)',
'symbolIcon-interfaceForeground': 'var(--vscode-symbolIcon-interfaceForeground)',
'symbolIcon-keyForeground': 'var(--vscode-symbolIcon-keyForeground)',
'symbolIcon-keywordForeground': 'var(--vscode-symbolIcon-keywordForeground)',
'symbolIcon-methodForeground': 'var(--vscode-symbolIcon-methodForeground)',
'symbolIcon-moduleForeground': 'var(--vscode-symbolIcon-moduleForeground)',
'symbolIcon-namespaceForeground': 'var(--vscode-symbolIcon-namespaceForeground)',
'symbolIcon-nullForeground': 'var(--vscode-symbolIcon-nullForeground)',
'symbolIcon-numberForeground': 'var(--vscode-symbolIcon-numberForeground)',
'symbolIcon-objectForeground': 'var(--vscode-symbolIcon-objectForeground)',
'symbolIcon-operatorForeground': 'var(--vscode-symbolIcon-operatorForeground)',
'symbolIcon-packageForeground': 'var(--vscode-symbolIcon-packageForeground)',
'symbolIcon-propertyForeground': 'var(--vscode-symbolIcon-propertyForeground)',
'symbolIcon-referenceForeground': 'var(--vscode-symbolIcon-referenceForeground)',
'symbolIcon-snippetForeground': 'var(--vscode-symbolIcon-snippetForeground)',
'symbolIcon-stringForeground': 'var(--vscode-symbolIcon-stringForeground)',
'symbolIcon-structForeground': 'var(--vscode-symbolIcon-structForeground)',
'symbolIcon-textForeground': 'var(--vscode-symbolIcon-textForeground)',
'symbolIcon-typeParameterForeground': 'var(--vscode-symbolIcon-typeParameterForeground)',
'symbolIcon-unitForeground': 'var(--vscode-symbolIcon-unitForeground)',
'symbolIcon-variableForeground': 'var(--vscode-symbolIcon-variableForeground)',
'debugIcon-breakpointForeground': 'var(--vscode-debugIcon-breakpointForeground)',
'debugIcon-breakpointDisabledForeground': 'var(--vscode-debugIcon-breakpointDisabledForeground)',
'debugIcon-breakpointUnverifiedForeground': 'var(--vscode-debugIcon-breakpointUnverifiedForeground)',
'debugIcon-breakpointCurrentStackframeForeground':
'var(--vscode-debugIcon-breakpointCurrentStackframeForeground)',
'debugIcon-breakpointStackframeForeground': 'var(--vscode-debugIcon-breakpointStackframeForeground)',
'debugIcon-startForeground': 'var(--vscode-debugIcon-startForeground)',
'debugIcon-pauseForeground': 'var(--vscode-debugIcon-pauseForeground)',
'debugIcon-stopForeground': 'var(--vscode-debugIcon-stopForeground)',
'debugIcon-disconnectForeground': 'var(--vscode-debugIcon-disconnectForeground)',
'debugIcon-restartForeground': 'var(--vscode-debugIcon-restartForeground)',
'debugIcon-stepOverForeground': 'var(--vscode-debugIcon-stepOverForeground)',
'debugIcon-stepIntoForeground': 'var(--vscode-debugIcon-stepIntoForeground)',
'debugIcon-stepOutForeground': 'var(--vscode-debugIcon-stepOutForeground)',
'debugIcon-continueForeground': 'var(--vscode-debugIcon-continueForeground)',
'debugIcon-stepBackForeground': 'var(--vscode-debugIcon-stepBackForeground)',
'debugConsole-infoForeground': 'var(--vscode-debugConsole-infoForeground)',
'debugConsole-warningForeground': 'var(--vscode-debugConsole-warningForeground)',
'debugConsole-errorForeground': 'var(--vscode-debugConsole-errorForeground)',
'debugConsole-sourceForeground': 'var(--vscode-debugConsole-sourceForeground)',
'debugConsoleInputIcon-foreground': 'var(--vscode-debugConsoleInputIcon-foreground)',
'notebook-cellBorderColor': 'var(--vscode-notebook-cellBorderColor)',
'notebook-focusedEditorBorder': 'var(--vscode-notebook-focusedEditorBorder)',
'notebookStatusSuccessIcon-foreground': 'var(--vscode-notebookStatusSuccessIcon-foreground)',
'notebookStatusErrorIcon-foreground': 'var(--vscode-notebookStatusErrorIcon-foreground)',
'notebookStatusRunningIcon-foreground': 'var(--vscode-notebookStatusRunningIcon-foreground)',
'notebook-outputContainerBackgroundColor': 'var(--vscode-notebook-outputContainerBackgroundColor)',
'notebook-cellToolbarSeparator': 'var(--vscode-notebook-cellToolbarSeparator)',
'notebook-focusedCellBackground': 'var(--vscode-notebook-focusedCellBackground)',
'notebook-cellHoverBackground': 'var(--vscode-notebook-cellHoverBackground)',
'notebook-focusedCellBorder': 'var(--vscode-notebook-focusedCellBorder)',
'notebook-focusedCellShadow': 'var(--vscode-notebook-focusedCellShadow)',
'notebook-selectedCellBorder': 'var(--vscode-notebook-selectedCellBorder)',
'notebook-cellStatusBarItemHoverBackground': 'var(--vscode-notebook-cellStatusBarItemHoverBackground)',
'notebook-cellInsertionIndicator': 'var(--vscode-notebook-cellInsertionIndicator)',
'notebookScrollbarSlider-background': 'var(--vscode-notebookScrollbarSlider-background)',
'notebookScrollbarSlider-hoverBackground': 'var(--vscode-notebookScrollbarSlider-hoverBackground)',
'notebookScrollbarSlider-activeBackground': 'var(--vscode-notebookScrollbarSlider-activeBackground)',
'notebook-symbolHighlightBackground': 'var(--vscode-notebook-symbolHighlightBackground)',
'notebook-inactiveFocusedCellBorder': 'var(--vscode-notebook-inactiveFocusedCellBorder)',
'charts-foreground': 'var(--vscode-charts-foreground)',
'charts-lines': 'var(--vscode-charts-lines)',
'charts-red': 'var(--vscode-charts-red)',
'charts-blue': 'var(--vscode-charts-blue)',
'charts-yellow': 'var(--vscode-charts-yellow)',
'charts-orange': 'var(--vscode-charts-orange)',
'charts-green': 'var(--vscode-charts-green)',
'charts-purple': 'var(--vscode-charts-purple)',
},
},
},
},
})