@mantine/code-highlight 9.0.0-alpha.4 → 9.0.0-alpha.6

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 (74) hide show
  1. package/cjs/CodeHighlight/CodeHighlight.cjs +130 -169
  2. package/cjs/CodeHighlight/CodeHighlight.cjs.map +1 -1
  3. package/cjs/CodeHighlight/CodeHighlight.context.cjs +7 -10
  4. package/cjs/CodeHighlight/CodeHighlight.context.cjs.map +1 -1
  5. package/cjs/CodeHighlight/CodeHighlightControl/CodeHighlightControl.cjs +31 -40
  6. package/cjs/CodeHighlight/CodeHighlightControl/CodeHighlightControl.cjs.map +1 -1
  7. package/cjs/CodeHighlight/CopyCodeButton/CopyCodeButton.cjs +19 -26
  8. package/cjs/CodeHighlight/CopyCodeButton/CopyCodeButton.cjs.map +1 -1
  9. package/cjs/CodeHighlight/CopyCodeButton/CopyIcon.cjs +30 -28
  10. package/cjs/CodeHighlight/CopyCodeButton/CopyIcon.cjs.map +1 -1
  11. package/cjs/CodeHighlight/ExpandCodeButton/ExpandCodeButton.cjs +16 -24
  12. package/cjs/CodeHighlight/ExpandCodeButton/ExpandCodeButton.cjs.map +1 -1
  13. package/cjs/CodeHighlight/ExpandCodeButton/ExpandIcon.cjs +40 -35
  14. package/cjs/CodeHighlight/ExpandCodeButton/ExpandIcon.cjs.map +1 -1
  15. package/cjs/CodeHighlight/InlineCodeHighlight.cjs +38 -37
  16. package/cjs/CodeHighlight/InlineCodeHighlight.cjs.map +1 -1
  17. package/cjs/CodeHighlight.module.cjs +22 -0
  18. package/cjs/CodeHighlight.module.cjs.map +1 -0
  19. package/cjs/CodeHighlightProvider/CodeHighlightProvider.cjs +26 -27
  20. package/cjs/CodeHighlightProvider/CodeHighlightProvider.cjs.map +1 -1
  21. package/cjs/CodeHighlightProvider/adapters/highlight-js-adapter.cjs +12 -14
  22. package/cjs/CodeHighlightProvider/adapters/highlight-js-adapter.cjs.map +1 -1
  23. package/cjs/CodeHighlightProvider/adapters/plain-text-adapter.cjs +8 -7
  24. package/cjs/CodeHighlightProvider/adapters/plain-text-adapter.cjs.map +1 -1
  25. package/cjs/CodeHighlightProvider/adapters/shiki-adapter.cjs +34 -42
  26. package/cjs/CodeHighlightProvider/adapters/shiki-adapter.cjs.map +1 -1
  27. package/cjs/CodeHighlightProvider/adapters/shiki-themes.cjs +1131 -1234
  28. package/cjs/CodeHighlightProvider/adapters/shiki-themes.cjs.map +1 -1
  29. package/cjs/CodeHighlightTabs/CodeHighlightTabs.cjs +103 -134
  30. package/cjs/CodeHighlightTabs/CodeHighlightTabs.cjs.map +1 -1
  31. package/cjs/CodeHighlightTabs/FileIcon.cjs +18 -14
  32. package/cjs/CodeHighlightTabs/FileIcon.cjs.map +1 -1
  33. package/cjs/_virtual/_rolldown/runtime.cjs +24 -0
  34. package/cjs/index.cjs +21 -26
  35. package/esm/CodeHighlight/CodeHighlight.context.mjs +7 -8
  36. package/esm/CodeHighlight/CodeHighlight.context.mjs.map +1 -1
  37. package/esm/CodeHighlight/CodeHighlight.mjs +126 -161
  38. package/esm/CodeHighlight/CodeHighlight.mjs.map +1 -1
  39. package/esm/CodeHighlight/CodeHighlightControl/CodeHighlightControl.mjs +29 -37
  40. package/esm/CodeHighlight/CodeHighlightControl/CodeHighlightControl.mjs.map +1 -1
  41. package/esm/CodeHighlight/CopyCodeButton/CopyCodeButton.mjs +18 -24
  42. package/esm/CodeHighlight/CopyCodeButton/CopyCodeButton.mjs.map +1 -1
  43. package/esm/CodeHighlight/CopyCodeButton/CopyIcon.mjs +29 -26
  44. package/esm/CodeHighlight/CopyCodeButton/CopyIcon.mjs.map +1 -1
  45. package/esm/CodeHighlight/ExpandCodeButton/ExpandCodeButton.mjs +15 -22
  46. package/esm/CodeHighlight/ExpandCodeButton/ExpandCodeButton.mjs.map +1 -1
  47. package/esm/CodeHighlight/ExpandCodeButton/ExpandIcon.mjs +39 -33
  48. package/esm/CodeHighlight/ExpandCodeButton/ExpandIcon.mjs.map +1 -1
  49. package/esm/CodeHighlight/InlineCodeHighlight.mjs +36 -34
  50. package/esm/CodeHighlight/InlineCodeHighlight.mjs.map +1 -1
  51. package/esm/CodeHighlight.module.mjs +22 -0
  52. package/esm/CodeHighlight.module.mjs.map +1 -0
  53. package/esm/CodeHighlightProvider/CodeHighlightProvider.mjs +24 -23
  54. package/esm/CodeHighlightProvider/CodeHighlightProvider.mjs.map +1 -1
  55. package/esm/CodeHighlightProvider/adapters/highlight-js-adapter.mjs +12 -12
  56. package/esm/CodeHighlightProvider/adapters/highlight-js-adapter.mjs.map +1 -1
  57. package/esm/CodeHighlightProvider/adapters/plain-text-adapter.mjs +8 -5
  58. package/esm/CodeHighlightProvider/adapters/plain-text-adapter.mjs.map +1 -1
  59. package/esm/CodeHighlightProvider/adapters/shiki-adapter.mjs +34 -40
  60. package/esm/CodeHighlightProvider/adapters/shiki-adapter.mjs.map +1 -1
  61. package/esm/CodeHighlightProvider/adapters/shiki-themes.mjs +1131 -1232
  62. package/esm/CodeHighlightProvider/adapters/shiki-themes.mjs.map +1 -1
  63. package/esm/CodeHighlightTabs/CodeHighlightTabs.mjs +101 -131
  64. package/esm/CodeHighlightTabs/CodeHighlightTabs.mjs.map +1 -1
  65. package/esm/CodeHighlightTabs/FileIcon.mjs +17 -12
  66. package/esm/CodeHighlightTabs/FileIcon.mjs.map +1 -1
  67. package/esm/index.mjs +10 -10
  68. package/package.json +7 -7
  69. package/cjs/CodeHighlight.module.css.cjs +0 -7
  70. package/cjs/CodeHighlight.module.css.cjs.map +0 -1
  71. package/cjs/index.cjs.map +0 -1
  72. package/esm/CodeHighlight.module.css.mjs +0 -5
  73. package/esm/CodeHighlight.module.css.mjs.map +0 -1
  74. package/esm/index.mjs.map +0 -1
@@ -1,1237 +1,1136 @@
1
+ //#region packages/@mantine/code-highlight/src/CodeHighlightProvider/adapters/shiki-themes.ts
1
2
  const light = {
2
- colors: {
3
- "activityBar.activeBorder": "#fd8c73",
4
- "activityBar.background": "#ffffff",
5
- "activityBar.border": "#d0d7de",
6
- "activityBar.foreground": "#1f2328",
7
- "activityBar.inactiveForeground": "#656d76",
8
- "activityBarBadge.background": "#0969da",
9
- "activityBarBadge.foreground": "#ffffff",
10
- "badge.background": "#0969da",
11
- "badge.foreground": "#ffffff",
12
- "breadcrumb.activeSelectionForeground": "#656d76",
13
- "breadcrumb.focusForeground": "#1f2328",
14
- "breadcrumb.foreground": "#656d76",
15
- "breadcrumbPicker.background": "#ffffff",
16
- "button.background": "#1f883d",
17
- "button.foreground": "#ffffff",
18
- "button.hoverBackground": "#1a7f37",
19
- "button.secondaryBackground": "#ebecf0",
20
- "button.secondaryForeground": "#24292f",
21
- "button.secondaryHoverBackground": "#f3f4f6",
22
- "checkbox.background": "#f6f8fa",
23
- "checkbox.border": "#d0d7de",
24
- "debugConsole.errorForeground": "#cf222e",
25
- "debugConsole.infoForeground": "#57606a",
26
- "debugConsole.sourceForeground": "#9a6700",
27
- "debugConsole.warningForeground": "#7d4e00",
28
- "debugConsoleInputIcon.foreground": "#6639ba",
29
- "debugIcon.breakpointForeground": "#cf222e",
30
- "debugTokenExpression.boolean": "#116329",
31
- "debugTokenExpression.error": "#a40e26",
32
- "debugTokenExpression.name": "#0550ae",
33
- "debugTokenExpression.number": "#116329",
34
- "debugTokenExpression.string": "#0a3069",
35
- "debugTokenExpression.value": "#0a3069",
36
- "debugToolBar.background": "#ffffff",
37
- descriptionForeground: "#656d76",
38
- "diffEditor.insertedLineBackground": "#aceebb4d",
39
- "diffEditor.insertedTextBackground": "#6fdd8b80",
40
- "diffEditor.removedLineBackground": "#ffcecb4d",
41
- "diffEditor.removedTextBackground": "#ff818266",
42
- "dropdown.background": "#ffffff",
43
- "dropdown.border": "#d0d7de",
44
- "dropdown.foreground": "#1f2328",
45
- "dropdown.listBackground": "#ffffff",
46
- "editor.background": "#ffffff",
47
- "editor.findMatchBackground": "#bf8700",
48
- "editor.findMatchHighlightBackground": "#fae17d80",
49
- "editor.focusedStackFrameHighlightBackground": "#4ac26b66",
50
- "editor.foldBackground": "#6e77811a",
51
- "editor.foreground": "#1f2328",
52
- "editor.lineHighlightBackground": "#eaeef280",
53
- "editor.linkedEditingBackground": "#0969da12",
54
- "editor.selectionHighlightBackground": "#4ac26b40",
55
- "editor.stackFrameHighlightBackground": "#d4a72c66",
56
- "editor.wordHighlightBackground": "#eaeef280",
57
- "editor.wordHighlightBorder": "#afb8c199",
58
- "editor.wordHighlightStrongBackground": "#afb8c14d",
59
- "editor.wordHighlightStrongBorder": "#afb8c199",
60
- "editorBracketHighlight.foreground1": "#0969da",
61
- "editorBracketHighlight.foreground2": "#1a7f37",
62
- "editorBracketHighlight.foreground3": "#9a6700",
63
- "editorBracketHighlight.foreground4": "#cf222e",
64
- "editorBracketHighlight.foreground5": "#bf3989",
65
- "editorBracketHighlight.foreground6": "#8250df",
66
- "editorBracketHighlight.unexpectedBracket.foreground": "#656d76",
67
- "editorBracketMatch.background": "#4ac26b40",
68
- "editorBracketMatch.border": "#4ac26b99",
69
- "editorCursor.foreground": "#0969da",
70
- "editorGroup.border": "#d0d7de",
71
- "editorGroupHeader.tabsBackground": "#f6f8fa",
72
- "editorGroupHeader.tabsBorder": "#d0d7de",
73
- "editorGutter.addedBackground": "#4ac26b66",
74
- "editorGutter.deletedBackground": "#ff818266",
75
- "editorGutter.modifiedBackground": "#d4a72c66",
76
- "editorIndentGuide.activeBackground": "#1f23283d",
77
- "editorIndentGuide.background": "#1f23281f",
78
- "editorInlayHint.background": "#afb8c133",
79
- "editorInlayHint.foreground": "#656d76",
80
- "editorInlayHint.paramBackground": "#afb8c133",
81
- "editorInlayHint.paramForeground": "#656d76",
82
- "editorInlayHint.typeBackground": "#afb8c133",
83
- "editorInlayHint.typeForeground": "#656d76",
84
- "editorLineNumber.activeForeground": "#1f2328",
85
- "editorLineNumber.foreground": "#8c959f",
86
- "editorOverviewRuler.border": "#ffffff",
87
- "editorWhitespace.foreground": "#afb8c1",
88
- "editorWidget.background": "#ffffff",
89
- errorForeground: "#cf222e",
90
- focusBorder: "#0969da",
91
- foreground: "#1f2328",
92
- "gitDecoration.addedResourceForeground": "#1a7f37",
93
- "gitDecoration.conflictingResourceForeground": "#bc4c00",
94
- "gitDecoration.deletedResourceForeground": "#cf222e",
95
- "gitDecoration.ignoredResourceForeground": "#6e7781",
96
- "gitDecoration.modifiedResourceForeground": "#9a6700",
97
- "gitDecoration.submoduleResourceForeground": "#656d76",
98
- "gitDecoration.untrackedResourceForeground": "#1a7f37",
99
- "icon.foreground": "#656d76",
100
- "input.background": "#ffffff",
101
- "input.border": "#d0d7de",
102
- "input.foreground": "#1f2328",
103
- "input.placeholderForeground": "#6e7781",
104
- "keybindingLabel.foreground": "#1f2328",
105
- "list.activeSelectionBackground": "#afb8c133",
106
- "list.activeSelectionForeground": "#1f2328",
107
- "list.focusBackground": "#ddf4ff",
108
- "list.focusForeground": "#1f2328",
109
- "list.highlightForeground": "#0969da",
110
- "list.hoverBackground": "#eaeef280",
111
- "list.hoverForeground": "#1f2328",
112
- "list.inactiveFocusBackground": "#ddf4ff",
113
- "list.inactiveSelectionBackground": "#afb8c133",
114
- "list.inactiveSelectionForeground": "#1f2328",
115
- "minimapSlider.activeBackground": "#8c959f47",
116
- "minimapSlider.background": "#8c959f33",
117
- "minimapSlider.hoverBackground": "#8c959f3d",
118
- "notificationCenterHeader.background": "#f6f8fa",
119
- "notificationCenterHeader.foreground": "#656d76",
120
- "notifications.background": "#ffffff",
121
- "notifications.border": "#d0d7de",
122
- "notifications.foreground": "#1f2328",
123
- "notificationsErrorIcon.foreground": "#cf222e",
124
- "notificationsInfoIcon.foreground": "#0969da",
125
- "notificationsWarningIcon.foreground": "#9a6700",
126
- "panel.background": "#f6f8fa",
127
- "panel.border": "#d0d7de",
128
- "panelInput.border": "#d0d7de",
129
- "panelTitle.activeBorder": "#fd8c73",
130
- "panelTitle.activeForeground": "#1f2328",
131
- "panelTitle.inactiveForeground": "#656d76",
132
- "pickerGroup.border": "#d0d7de",
133
- "pickerGroup.foreground": "#656d76",
134
- "progressBar.background": "#0969da",
135
- "quickInput.background": "#ffffff",
136
- "quickInput.foreground": "#1f2328",
137
- "scrollbar.shadow": "#6e778133",
138
- "scrollbarSlider.activeBackground": "#8c959f47",
139
- "scrollbarSlider.background": "#8c959f33",
140
- "scrollbarSlider.hoverBackground": "#8c959f3d",
141
- "settings.headerForeground": "#1f2328",
142
- "settings.modifiedItemIndicator": "#d4a72c66",
143
- "sideBar.background": "#f6f8fa",
144
- "sideBar.border": "#d0d7de",
145
- "sideBar.foreground": "#1f2328",
146
- "sideBarSectionHeader.background": "#f6f8fa",
147
- "sideBarSectionHeader.border": "#d0d7de",
148
- "sideBarSectionHeader.foreground": "#1f2328",
149
- "sideBarTitle.foreground": "#1f2328",
150
- "statusBar.background": "#ffffff",
151
- "statusBar.border": "#d0d7de",
152
- "statusBar.debuggingBackground": "#cf222e",
153
- "statusBar.debuggingForeground": "#ffffff",
154
- "statusBar.focusBorder": "#0969da80",
155
- "statusBar.foreground": "#656d76",
156
- "statusBar.noFolderBackground": "#ffffff",
157
- "statusBarItem.activeBackground": "#1f23281f",
158
- "statusBarItem.focusBorder": "#0969da",
159
- "statusBarItem.hoverBackground": "#1f232814",
160
- "statusBarItem.prominentBackground": "#afb8c133",
161
- "statusBarItem.remoteBackground": "#eaeef2",
162
- "statusBarItem.remoteForeground": "#1f2328",
163
- "symbolIcon.arrayForeground": "#953800",
164
- "symbolIcon.booleanForeground": "#0550ae",
165
- "symbolIcon.classForeground": "#953800",
166
- "symbolIcon.colorForeground": "#0a3069",
167
- "symbolIcon.constantForeground": "#116329",
168
- "symbolIcon.constructorForeground": "#3e1f79",
169
- "symbolIcon.enumeratorForeground": "#953800",
170
- "symbolIcon.enumeratorMemberForeground": "#0550ae",
171
- "symbolIcon.eventForeground": "#57606a",
172
- "symbolIcon.fieldForeground": "#953800",
173
- "symbolIcon.fileForeground": "#7d4e00",
174
- "symbolIcon.folderForeground": "#7d4e00",
175
- "symbolIcon.functionForeground": "#6639ba",
176
- "symbolIcon.interfaceForeground": "#953800",
177
- "symbolIcon.keyForeground": "#0550ae",
178
- "symbolIcon.keywordForeground": "#a40e26",
179
- "symbolIcon.methodForeground": "#6639ba",
180
- "symbolIcon.moduleForeground": "#a40e26",
181
- "symbolIcon.namespaceForeground": "#a40e26",
182
- "symbolIcon.nullForeground": "#0550ae",
183
- "symbolIcon.numberForeground": "#116329",
184
- "symbolIcon.objectForeground": "#953800",
185
- "symbolIcon.operatorForeground": "#0a3069",
186
- "symbolIcon.packageForeground": "#953800",
187
- "symbolIcon.propertyForeground": "#953800",
188
- "symbolIcon.referenceForeground": "#0550ae",
189
- "symbolIcon.snippetForeground": "#0550ae",
190
- "symbolIcon.stringForeground": "#0a3069",
191
- "symbolIcon.structForeground": "#953800",
192
- "symbolIcon.textForeground": "#0a3069",
193
- "symbolIcon.typeParameterForeground": "#0a3069",
194
- "symbolIcon.unitForeground": "#0550ae",
195
- "symbolIcon.variableForeground": "#953800",
196
- "tab.activeBackground": "#ffffff",
197
- "tab.activeBorder": "#ffffff",
198
- "tab.activeBorderTop": "#fd8c73",
199
- "tab.activeForeground": "#1f2328",
200
- "tab.border": "#d0d7de",
201
- "tab.hoverBackground": "#ffffff",
202
- "tab.inactiveBackground": "#f6f8fa",
203
- "tab.inactiveForeground": "#656d76",
204
- "tab.unfocusedActiveBorder": "#ffffff",
205
- "tab.unfocusedActiveBorderTop": "#d0d7de",
206
- "tab.unfocusedHoverBackground": "#eaeef280",
207
- "terminal.ansiBlack": "#24292f",
208
- "terminal.ansiBlue": "#0969da",
209
- "terminal.ansiBrightBlack": "#57606a",
210
- "terminal.ansiBrightBlue": "#218bff",
211
- "terminal.ansiBrightCyan": "#3192aa",
212
- "terminal.ansiBrightGreen": "#1a7f37",
213
- "terminal.ansiBrightMagenta": "#a475f9",
214
- "terminal.ansiBrightRed": "#a40e26",
215
- "terminal.ansiBrightWhite": "#8c959f",
216
- "terminal.ansiBrightYellow": "#633c01",
217
- "terminal.ansiCyan": "#1b7c83",
218
- "terminal.ansiGreen": "#116329",
219
- "terminal.ansiMagenta": "#8250df",
220
- "terminal.ansiRed": "#cf222e",
221
- "terminal.ansiWhite": "#6e7781",
222
- "terminal.ansiYellow": "#4d2d00",
223
- "terminal.foreground": "#1f2328",
224
- "textBlockQuote.background": "#f6f8fa",
225
- "textBlockQuote.border": "#d0d7de",
226
- "textCodeBlock.background": "#afb8c133",
227
- "textLink.activeForeground": "#0969da",
228
- "textLink.foreground": "#0969da",
229
- "textPreformat.foreground": "#656d76",
230
- "textSeparator.foreground": "#d8dee4",
231
- "titleBar.activeBackground": "#ffffff",
232
- "titleBar.activeForeground": "#656d76",
233
- "titleBar.border": "#d0d7de",
234
- "titleBar.inactiveBackground": "#f6f8fa",
235
- "titleBar.inactiveForeground": "#656d76",
236
- "tree.indentGuidesStroke": "#d8dee4",
237
- "welcomePage.buttonBackground": "#f6f8fa",
238
- "welcomePage.buttonHoverBackground": "#f3f4f6"
239
- },
240
- displayName: "GitHub Light Default",
241
- semanticHighlighting: true,
242
- tokenColors: [
243
- {
244
- scope: ["comment", "punctuation.definition.comment", "string.comment"],
245
- settings: {
246
- foreground: "#6e7781"
247
- }
248
- },
249
- {
250
- scope: ["constant.other.placeholder", "constant.character"],
251
- settings: {
252
- foreground: "#cf222e"
253
- }
254
- },
255
- {
256
- scope: [
257
- "constant",
258
- "entity.name.constant",
259
- "variable.other.constant",
260
- "variable.other.enummember",
261
- "variable.language",
262
- "entity"
263
- ],
264
- settings: {
265
- foreground: "#0550ae"
266
- }
267
- },
268
- {
269
- scope: ["entity.name", "meta.export.default", "meta.definition.variable"],
270
- settings: {
271
- foreground: "#953800"
272
- }
273
- },
274
- {
275
- scope: [
276
- "variable.parameter.function",
277
- "meta.jsx.children",
278
- "meta.block",
279
- "meta.tag.attributes",
280
- "entity.name.constant",
281
- "meta.object.member",
282
- "meta.embedded.expression"
283
- ],
284
- settings: {
285
- foreground: "#1f2328"
286
- }
287
- },
288
- {
289
- scope: "entity.name.function",
290
- settings: {
291
- foreground: "#8250df"
292
- }
293
- },
294
- {
295
- scope: ["entity.name.tag", "support.class.component"],
296
- settings: {
297
- foreground: "#116329"
298
- }
299
- },
300
- {
301
- scope: "keyword",
302
- settings: {
303
- foreground: "#cf222e"
304
- }
305
- },
306
- {
307
- scope: ["storage", "storage.type"],
308
- settings: {
309
- foreground: "#cf222e"
310
- }
311
- },
312
- {
313
- scope: ["storage.modifier.package", "storage.modifier.import", "storage.type.java"],
314
- settings: {
315
- foreground: "#1f2328"
316
- }
317
- },
318
- {
319
- scope: ["string", "string punctuation.section.embedded source"],
320
- settings: {
321
- foreground: "#0a3069"
322
- }
323
- },
324
- {
325
- scope: "support",
326
- settings: {
327
- foreground: "#0550ae"
328
- }
329
- },
330
- {
331
- scope: "meta.property-name",
332
- settings: {
333
- foreground: "#0550ae"
334
- }
335
- },
336
- {
337
- scope: "variable",
338
- settings: {
339
- foreground: "#953800"
340
- }
341
- },
342
- {
343
- scope: "variable.other",
344
- settings: {
345
- foreground: "#1f2328"
346
- }
347
- },
348
- {
349
- scope: "invalid.broken",
350
- settings: {
351
- fontStyle: "italic",
352
- foreground: "#82071e"
353
- }
354
- },
355
- {
356
- scope: "invalid.deprecated",
357
- settings: {
358
- fontStyle: "italic",
359
- foreground: "#82071e"
360
- }
361
- },
362
- {
363
- scope: "invalid.illegal",
364
- settings: {
365
- fontStyle: "italic",
366
- foreground: "#82071e"
367
- }
368
- },
369
- {
370
- scope: "invalid.unimplemented",
371
- settings: {
372
- fontStyle: "italic",
373
- foreground: "#82071e"
374
- }
375
- },
376
- {
377
- scope: "carriage-return",
378
- settings: {
379
- background: "#cf222e",
380
- content: "^M",
381
- fontStyle: "italic underline",
382
- foreground: "#f6f8fa"
383
- }
384
- },
385
- {
386
- scope: "message.error",
387
- settings: {
388
- foreground: "#82071e"
389
- }
390
- },
391
- {
392
- scope: "string variable",
393
- settings: {
394
- foreground: "#0550ae"
395
- }
396
- },
397
- {
398
- scope: ["source.regexp", "string.regexp"],
399
- settings: {
400
- foreground: "#0a3069"
401
- }
402
- },
403
- {
404
- scope: [
405
- "string.regexp.character-class",
406
- "string.regexp constant.character.escape",
407
- "string.regexp source.ruby.embedded",
408
- "string.regexp string.regexp.arbitrary-repitition"
409
- ],
410
- settings: {
411
- foreground: "#0a3069"
412
- }
413
- },
414
- {
415
- scope: "string.regexp constant.character.escape",
416
- settings: {
417
- fontStyle: "bold",
418
- foreground: "#116329"
419
- }
420
- },
421
- {
422
- scope: "support.constant",
423
- settings: {
424
- foreground: "#0550ae"
425
- }
426
- },
427
- {
428
- scope: "support.variable",
429
- settings: {
430
- foreground: "#0550ae"
431
- }
432
- },
433
- {
434
- scope: "support.type.property-name.json",
435
- settings: {
436
- foreground: "#116329"
437
- }
438
- },
439
- {
440
- scope: "meta.module-reference",
441
- settings: {
442
- foreground: "#0550ae"
443
- }
444
- },
445
- {
446
- scope: "punctuation.definition.list.begin.markdown",
447
- settings: {
448
- foreground: "#953800"
449
- }
450
- },
451
- {
452
- scope: ["markup.heading", "markup.heading entity.name"],
453
- settings: {
454
- fontStyle: "bold",
455
- foreground: "#0550ae"
456
- }
457
- },
458
- {
459
- scope: "markup.quote",
460
- settings: {
461
- foreground: "#116329"
462
- }
463
- },
464
- {
465
- scope: "markup.italic",
466
- settings: {
467
- fontStyle: "italic",
468
- foreground: "#1f2328"
469
- }
470
- },
471
- {
472
- scope: "markup.bold",
473
- settings: {
474
- fontStyle: "bold",
475
- foreground: "#1f2328"
476
- }
477
- },
478
- {
479
- scope: ["markup.underline"],
480
- settings: {
481
- fontStyle: "underline"
482
- }
483
- },
484
- {
485
- scope: ["markup.strikethrough"],
486
- settings: {
487
- fontStyle: "strikethrough"
488
- }
489
- },
490
- {
491
- scope: "markup.inline.raw",
492
- settings: {
493
- foreground: "#0550ae"
494
- }
495
- },
496
- {
497
- scope: ["markup.deleted", "meta.diff.header.from-file", "punctuation.definition.deleted"],
498
- settings: {
499
- background: "#ffebe9",
500
- foreground: "#82071e"
501
- }
502
- },
503
- {
504
- scope: ["punctuation.section.embedded"],
505
- settings: {
506
- foreground: "#cf222e"
507
- }
508
- },
509
- {
510
- scope: ["markup.inserted", "meta.diff.header.to-file", "punctuation.definition.inserted"],
511
- settings: {
512
- background: "#dafbe1",
513
- foreground: "#116329"
514
- }
515
- },
516
- {
517
- scope: ["markup.changed", "punctuation.definition.changed"],
518
- settings: {
519
- background: "#ffd8b5",
520
- foreground: "#953800"
521
- }
522
- },
523
- {
524
- scope: ["markup.ignored", "markup.untracked"],
525
- settings: {
526
- background: "#0550ae",
527
- foreground: "#eaeef2"
528
- }
529
- },
530
- {
531
- scope: "meta.diff.range",
532
- settings: {
533
- fontStyle: "bold",
534
- foreground: "#8250df"
535
- }
536
- },
537
- {
538
- scope: "meta.diff.header",
539
- settings: {
540
- foreground: "#0550ae"
541
- }
542
- },
543
- {
544
- scope: "meta.separator",
545
- settings: {
546
- fontStyle: "bold",
547
- foreground: "#0550ae"
548
- }
549
- },
550
- {
551
- scope: "meta.output",
552
- settings: {
553
- foreground: "#0550ae"
554
- }
555
- },
556
- {
557
- scope: [
558
- "brackethighlighter.tag",
559
- "brackethighlighter.curly",
560
- "brackethighlighter.round",
561
- "brackethighlighter.square",
562
- "brackethighlighter.angle",
563
- "brackethighlighter.quote"
564
- ],
565
- settings: {
566
- foreground: "#57606a"
567
- }
568
- },
569
- {
570
- scope: "brackethighlighter.unmatched",
571
- settings: {
572
- foreground: "#82071e"
573
- }
574
- },
575
- {
576
- scope: ["constant.other.reference.link", "string.other.link"],
577
- settings: {
578
- foreground: "#0a3069"
579
- }
580
- }
581
- ],
582
- type: "light"
3
+ colors: {
4
+ "activityBar.activeBorder": "#fd8c73",
5
+ "activityBar.background": "#ffffff",
6
+ "activityBar.border": "#d0d7de",
7
+ "activityBar.foreground": "#1f2328",
8
+ "activityBar.inactiveForeground": "#656d76",
9
+ "activityBarBadge.background": "#0969da",
10
+ "activityBarBadge.foreground": "#ffffff",
11
+ "badge.background": "#0969da",
12
+ "badge.foreground": "#ffffff",
13
+ "breadcrumb.activeSelectionForeground": "#656d76",
14
+ "breadcrumb.focusForeground": "#1f2328",
15
+ "breadcrumb.foreground": "#656d76",
16
+ "breadcrumbPicker.background": "#ffffff",
17
+ "button.background": "#1f883d",
18
+ "button.foreground": "#ffffff",
19
+ "button.hoverBackground": "#1a7f37",
20
+ "button.secondaryBackground": "#ebecf0",
21
+ "button.secondaryForeground": "#24292f",
22
+ "button.secondaryHoverBackground": "#f3f4f6",
23
+ "checkbox.background": "#f6f8fa",
24
+ "checkbox.border": "#d0d7de",
25
+ "debugConsole.errorForeground": "#cf222e",
26
+ "debugConsole.infoForeground": "#57606a",
27
+ "debugConsole.sourceForeground": "#9a6700",
28
+ "debugConsole.warningForeground": "#7d4e00",
29
+ "debugConsoleInputIcon.foreground": "#6639ba",
30
+ "debugIcon.breakpointForeground": "#cf222e",
31
+ "debugTokenExpression.boolean": "#116329",
32
+ "debugTokenExpression.error": "#a40e26",
33
+ "debugTokenExpression.name": "#0550ae",
34
+ "debugTokenExpression.number": "#116329",
35
+ "debugTokenExpression.string": "#0a3069",
36
+ "debugTokenExpression.value": "#0a3069",
37
+ "debugToolBar.background": "#ffffff",
38
+ descriptionForeground: "#656d76",
39
+ "diffEditor.insertedLineBackground": "#aceebb4d",
40
+ "diffEditor.insertedTextBackground": "#6fdd8b80",
41
+ "diffEditor.removedLineBackground": "#ffcecb4d",
42
+ "diffEditor.removedTextBackground": "#ff818266",
43
+ "dropdown.background": "#ffffff",
44
+ "dropdown.border": "#d0d7de",
45
+ "dropdown.foreground": "#1f2328",
46
+ "dropdown.listBackground": "#ffffff",
47
+ "editor.background": "#ffffff",
48
+ "editor.findMatchBackground": "#bf8700",
49
+ "editor.findMatchHighlightBackground": "#fae17d80",
50
+ "editor.focusedStackFrameHighlightBackground": "#4ac26b66",
51
+ "editor.foldBackground": "#6e77811a",
52
+ "editor.foreground": "#1f2328",
53
+ "editor.lineHighlightBackground": "#eaeef280",
54
+ "editor.linkedEditingBackground": "#0969da12",
55
+ "editor.selectionHighlightBackground": "#4ac26b40",
56
+ "editor.stackFrameHighlightBackground": "#d4a72c66",
57
+ "editor.wordHighlightBackground": "#eaeef280",
58
+ "editor.wordHighlightBorder": "#afb8c199",
59
+ "editor.wordHighlightStrongBackground": "#afb8c14d",
60
+ "editor.wordHighlightStrongBorder": "#afb8c199",
61
+ "editorBracketHighlight.foreground1": "#0969da",
62
+ "editorBracketHighlight.foreground2": "#1a7f37",
63
+ "editorBracketHighlight.foreground3": "#9a6700",
64
+ "editorBracketHighlight.foreground4": "#cf222e",
65
+ "editorBracketHighlight.foreground5": "#bf3989",
66
+ "editorBracketHighlight.foreground6": "#8250df",
67
+ "editorBracketHighlight.unexpectedBracket.foreground": "#656d76",
68
+ "editorBracketMatch.background": "#4ac26b40",
69
+ "editorBracketMatch.border": "#4ac26b99",
70
+ "editorCursor.foreground": "#0969da",
71
+ "editorGroup.border": "#d0d7de",
72
+ "editorGroupHeader.tabsBackground": "#f6f8fa",
73
+ "editorGroupHeader.tabsBorder": "#d0d7de",
74
+ "editorGutter.addedBackground": "#4ac26b66",
75
+ "editorGutter.deletedBackground": "#ff818266",
76
+ "editorGutter.modifiedBackground": "#d4a72c66",
77
+ "editorIndentGuide.activeBackground": "#1f23283d",
78
+ "editorIndentGuide.background": "#1f23281f",
79
+ "editorInlayHint.background": "#afb8c133",
80
+ "editorInlayHint.foreground": "#656d76",
81
+ "editorInlayHint.paramBackground": "#afb8c133",
82
+ "editorInlayHint.paramForeground": "#656d76",
83
+ "editorInlayHint.typeBackground": "#afb8c133",
84
+ "editorInlayHint.typeForeground": "#656d76",
85
+ "editorLineNumber.activeForeground": "#1f2328",
86
+ "editorLineNumber.foreground": "#8c959f",
87
+ "editorOverviewRuler.border": "#ffffff",
88
+ "editorWhitespace.foreground": "#afb8c1",
89
+ "editorWidget.background": "#ffffff",
90
+ errorForeground: "#cf222e",
91
+ focusBorder: "#0969da",
92
+ foreground: "#1f2328",
93
+ "gitDecoration.addedResourceForeground": "#1a7f37",
94
+ "gitDecoration.conflictingResourceForeground": "#bc4c00",
95
+ "gitDecoration.deletedResourceForeground": "#cf222e",
96
+ "gitDecoration.ignoredResourceForeground": "#6e7781",
97
+ "gitDecoration.modifiedResourceForeground": "#9a6700",
98
+ "gitDecoration.submoduleResourceForeground": "#656d76",
99
+ "gitDecoration.untrackedResourceForeground": "#1a7f37",
100
+ "icon.foreground": "#656d76",
101
+ "input.background": "#ffffff",
102
+ "input.border": "#d0d7de",
103
+ "input.foreground": "#1f2328",
104
+ "input.placeholderForeground": "#6e7781",
105
+ "keybindingLabel.foreground": "#1f2328",
106
+ "list.activeSelectionBackground": "#afb8c133",
107
+ "list.activeSelectionForeground": "#1f2328",
108
+ "list.focusBackground": "#ddf4ff",
109
+ "list.focusForeground": "#1f2328",
110
+ "list.highlightForeground": "#0969da",
111
+ "list.hoverBackground": "#eaeef280",
112
+ "list.hoverForeground": "#1f2328",
113
+ "list.inactiveFocusBackground": "#ddf4ff",
114
+ "list.inactiveSelectionBackground": "#afb8c133",
115
+ "list.inactiveSelectionForeground": "#1f2328",
116
+ "minimapSlider.activeBackground": "#8c959f47",
117
+ "minimapSlider.background": "#8c959f33",
118
+ "minimapSlider.hoverBackground": "#8c959f3d",
119
+ "notificationCenterHeader.background": "#f6f8fa",
120
+ "notificationCenterHeader.foreground": "#656d76",
121
+ "notifications.background": "#ffffff",
122
+ "notifications.border": "#d0d7de",
123
+ "notifications.foreground": "#1f2328",
124
+ "notificationsErrorIcon.foreground": "#cf222e",
125
+ "notificationsInfoIcon.foreground": "#0969da",
126
+ "notificationsWarningIcon.foreground": "#9a6700",
127
+ "panel.background": "#f6f8fa",
128
+ "panel.border": "#d0d7de",
129
+ "panelInput.border": "#d0d7de",
130
+ "panelTitle.activeBorder": "#fd8c73",
131
+ "panelTitle.activeForeground": "#1f2328",
132
+ "panelTitle.inactiveForeground": "#656d76",
133
+ "pickerGroup.border": "#d0d7de",
134
+ "pickerGroup.foreground": "#656d76",
135
+ "progressBar.background": "#0969da",
136
+ "quickInput.background": "#ffffff",
137
+ "quickInput.foreground": "#1f2328",
138
+ "scrollbar.shadow": "#6e778133",
139
+ "scrollbarSlider.activeBackground": "#8c959f47",
140
+ "scrollbarSlider.background": "#8c959f33",
141
+ "scrollbarSlider.hoverBackground": "#8c959f3d",
142
+ "settings.headerForeground": "#1f2328",
143
+ "settings.modifiedItemIndicator": "#d4a72c66",
144
+ "sideBar.background": "#f6f8fa",
145
+ "sideBar.border": "#d0d7de",
146
+ "sideBar.foreground": "#1f2328",
147
+ "sideBarSectionHeader.background": "#f6f8fa",
148
+ "sideBarSectionHeader.border": "#d0d7de",
149
+ "sideBarSectionHeader.foreground": "#1f2328",
150
+ "sideBarTitle.foreground": "#1f2328",
151
+ "statusBar.background": "#ffffff",
152
+ "statusBar.border": "#d0d7de",
153
+ "statusBar.debuggingBackground": "#cf222e",
154
+ "statusBar.debuggingForeground": "#ffffff",
155
+ "statusBar.focusBorder": "#0969da80",
156
+ "statusBar.foreground": "#656d76",
157
+ "statusBar.noFolderBackground": "#ffffff",
158
+ "statusBarItem.activeBackground": "#1f23281f",
159
+ "statusBarItem.focusBorder": "#0969da",
160
+ "statusBarItem.hoverBackground": "#1f232814",
161
+ "statusBarItem.prominentBackground": "#afb8c133",
162
+ "statusBarItem.remoteBackground": "#eaeef2",
163
+ "statusBarItem.remoteForeground": "#1f2328",
164
+ "symbolIcon.arrayForeground": "#953800",
165
+ "symbolIcon.booleanForeground": "#0550ae",
166
+ "symbolIcon.classForeground": "#953800",
167
+ "symbolIcon.colorForeground": "#0a3069",
168
+ "symbolIcon.constantForeground": "#116329",
169
+ "symbolIcon.constructorForeground": "#3e1f79",
170
+ "symbolIcon.enumeratorForeground": "#953800",
171
+ "symbolIcon.enumeratorMemberForeground": "#0550ae",
172
+ "symbolIcon.eventForeground": "#57606a",
173
+ "symbolIcon.fieldForeground": "#953800",
174
+ "symbolIcon.fileForeground": "#7d4e00",
175
+ "symbolIcon.folderForeground": "#7d4e00",
176
+ "symbolIcon.functionForeground": "#6639ba",
177
+ "symbolIcon.interfaceForeground": "#953800",
178
+ "symbolIcon.keyForeground": "#0550ae",
179
+ "symbolIcon.keywordForeground": "#a40e26",
180
+ "symbolIcon.methodForeground": "#6639ba",
181
+ "symbolIcon.moduleForeground": "#a40e26",
182
+ "symbolIcon.namespaceForeground": "#a40e26",
183
+ "symbolIcon.nullForeground": "#0550ae",
184
+ "symbolIcon.numberForeground": "#116329",
185
+ "symbolIcon.objectForeground": "#953800",
186
+ "symbolIcon.operatorForeground": "#0a3069",
187
+ "symbolIcon.packageForeground": "#953800",
188
+ "symbolIcon.propertyForeground": "#953800",
189
+ "symbolIcon.referenceForeground": "#0550ae",
190
+ "symbolIcon.snippetForeground": "#0550ae",
191
+ "symbolIcon.stringForeground": "#0a3069",
192
+ "symbolIcon.structForeground": "#953800",
193
+ "symbolIcon.textForeground": "#0a3069",
194
+ "symbolIcon.typeParameterForeground": "#0a3069",
195
+ "symbolIcon.unitForeground": "#0550ae",
196
+ "symbolIcon.variableForeground": "#953800",
197
+ "tab.activeBackground": "#ffffff",
198
+ "tab.activeBorder": "#ffffff",
199
+ "tab.activeBorderTop": "#fd8c73",
200
+ "tab.activeForeground": "#1f2328",
201
+ "tab.border": "#d0d7de",
202
+ "tab.hoverBackground": "#ffffff",
203
+ "tab.inactiveBackground": "#f6f8fa",
204
+ "tab.inactiveForeground": "#656d76",
205
+ "tab.unfocusedActiveBorder": "#ffffff",
206
+ "tab.unfocusedActiveBorderTop": "#d0d7de",
207
+ "tab.unfocusedHoverBackground": "#eaeef280",
208
+ "terminal.ansiBlack": "#24292f",
209
+ "terminal.ansiBlue": "#0969da",
210
+ "terminal.ansiBrightBlack": "#57606a",
211
+ "terminal.ansiBrightBlue": "#218bff",
212
+ "terminal.ansiBrightCyan": "#3192aa",
213
+ "terminal.ansiBrightGreen": "#1a7f37",
214
+ "terminal.ansiBrightMagenta": "#a475f9",
215
+ "terminal.ansiBrightRed": "#a40e26",
216
+ "terminal.ansiBrightWhite": "#8c959f",
217
+ "terminal.ansiBrightYellow": "#633c01",
218
+ "terminal.ansiCyan": "#1b7c83",
219
+ "terminal.ansiGreen": "#116329",
220
+ "terminal.ansiMagenta": "#8250df",
221
+ "terminal.ansiRed": "#cf222e",
222
+ "terminal.ansiWhite": "#6e7781",
223
+ "terminal.ansiYellow": "#4d2d00",
224
+ "terminal.foreground": "#1f2328",
225
+ "textBlockQuote.background": "#f6f8fa",
226
+ "textBlockQuote.border": "#d0d7de",
227
+ "textCodeBlock.background": "#afb8c133",
228
+ "textLink.activeForeground": "#0969da",
229
+ "textLink.foreground": "#0969da",
230
+ "textPreformat.foreground": "#656d76",
231
+ "textSeparator.foreground": "#d8dee4",
232
+ "titleBar.activeBackground": "#ffffff",
233
+ "titleBar.activeForeground": "#656d76",
234
+ "titleBar.border": "#d0d7de",
235
+ "titleBar.inactiveBackground": "#f6f8fa",
236
+ "titleBar.inactiveForeground": "#656d76",
237
+ "tree.indentGuidesStroke": "#d8dee4",
238
+ "welcomePage.buttonBackground": "#f6f8fa",
239
+ "welcomePage.buttonHoverBackground": "#f3f4f6"
240
+ },
241
+ displayName: "GitHub Light Default",
242
+ semanticHighlighting: true,
243
+ tokenColors: [
244
+ {
245
+ scope: [
246
+ "comment",
247
+ "punctuation.definition.comment",
248
+ "string.comment"
249
+ ],
250
+ settings: { foreground: "#6e7781" }
251
+ },
252
+ {
253
+ scope: ["constant.other.placeholder", "constant.character"],
254
+ settings: { foreground: "#cf222e" }
255
+ },
256
+ {
257
+ scope: [
258
+ "constant",
259
+ "entity.name.constant",
260
+ "variable.other.constant",
261
+ "variable.other.enummember",
262
+ "variable.language",
263
+ "entity"
264
+ ],
265
+ settings: { foreground: "#0550ae" }
266
+ },
267
+ {
268
+ scope: [
269
+ "entity.name",
270
+ "meta.export.default",
271
+ "meta.definition.variable"
272
+ ],
273
+ settings: { foreground: "#953800" }
274
+ },
275
+ {
276
+ scope: [
277
+ "variable.parameter.function",
278
+ "meta.jsx.children",
279
+ "meta.block",
280
+ "meta.tag.attributes",
281
+ "entity.name.constant",
282
+ "meta.object.member",
283
+ "meta.embedded.expression"
284
+ ],
285
+ settings: { foreground: "#1f2328" }
286
+ },
287
+ {
288
+ scope: "entity.name.function",
289
+ settings: { foreground: "#8250df" }
290
+ },
291
+ {
292
+ scope: ["entity.name.tag", "support.class.component"],
293
+ settings: { foreground: "#116329" }
294
+ },
295
+ {
296
+ scope: "keyword",
297
+ settings: { foreground: "#cf222e" }
298
+ },
299
+ {
300
+ scope: ["storage", "storage.type"],
301
+ settings: { foreground: "#cf222e" }
302
+ },
303
+ {
304
+ scope: [
305
+ "storage.modifier.package",
306
+ "storage.modifier.import",
307
+ "storage.type.java"
308
+ ],
309
+ settings: { foreground: "#1f2328" }
310
+ },
311
+ {
312
+ scope: ["string", "string punctuation.section.embedded source"],
313
+ settings: { foreground: "#0a3069" }
314
+ },
315
+ {
316
+ scope: "support",
317
+ settings: { foreground: "#0550ae" }
318
+ },
319
+ {
320
+ scope: "meta.property-name",
321
+ settings: { foreground: "#0550ae" }
322
+ },
323
+ {
324
+ scope: "variable",
325
+ settings: { foreground: "#953800" }
326
+ },
327
+ {
328
+ scope: "variable.other",
329
+ settings: { foreground: "#1f2328" }
330
+ },
331
+ {
332
+ scope: "invalid.broken",
333
+ settings: {
334
+ fontStyle: "italic",
335
+ foreground: "#82071e"
336
+ }
337
+ },
338
+ {
339
+ scope: "invalid.deprecated",
340
+ settings: {
341
+ fontStyle: "italic",
342
+ foreground: "#82071e"
343
+ }
344
+ },
345
+ {
346
+ scope: "invalid.illegal",
347
+ settings: {
348
+ fontStyle: "italic",
349
+ foreground: "#82071e"
350
+ }
351
+ },
352
+ {
353
+ scope: "invalid.unimplemented",
354
+ settings: {
355
+ fontStyle: "italic",
356
+ foreground: "#82071e"
357
+ }
358
+ },
359
+ {
360
+ scope: "carriage-return",
361
+ settings: {
362
+ background: "#cf222e",
363
+ content: "^M",
364
+ fontStyle: "italic underline",
365
+ foreground: "#f6f8fa"
366
+ }
367
+ },
368
+ {
369
+ scope: "message.error",
370
+ settings: { foreground: "#82071e" }
371
+ },
372
+ {
373
+ scope: "string variable",
374
+ settings: { foreground: "#0550ae" }
375
+ },
376
+ {
377
+ scope: ["source.regexp", "string.regexp"],
378
+ settings: { foreground: "#0a3069" }
379
+ },
380
+ {
381
+ scope: [
382
+ "string.regexp.character-class",
383
+ "string.regexp constant.character.escape",
384
+ "string.regexp source.ruby.embedded",
385
+ "string.regexp string.regexp.arbitrary-repitition"
386
+ ],
387
+ settings: { foreground: "#0a3069" }
388
+ },
389
+ {
390
+ scope: "string.regexp constant.character.escape",
391
+ settings: {
392
+ fontStyle: "bold",
393
+ foreground: "#116329"
394
+ }
395
+ },
396
+ {
397
+ scope: "support.constant",
398
+ settings: { foreground: "#0550ae" }
399
+ },
400
+ {
401
+ scope: "support.variable",
402
+ settings: { foreground: "#0550ae" }
403
+ },
404
+ {
405
+ scope: "support.type.property-name.json",
406
+ settings: { foreground: "#116329" }
407
+ },
408
+ {
409
+ scope: "meta.module-reference",
410
+ settings: { foreground: "#0550ae" }
411
+ },
412
+ {
413
+ scope: "punctuation.definition.list.begin.markdown",
414
+ settings: { foreground: "#953800" }
415
+ },
416
+ {
417
+ scope: ["markup.heading", "markup.heading entity.name"],
418
+ settings: {
419
+ fontStyle: "bold",
420
+ foreground: "#0550ae"
421
+ }
422
+ },
423
+ {
424
+ scope: "markup.quote",
425
+ settings: { foreground: "#116329" }
426
+ },
427
+ {
428
+ scope: "markup.italic",
429
+ settings: {
430
+ fontStyle: "italic",
431
+ foreground: "#1f2328"
432
+ }
433
+ },
434
+ {
435
+ scope: "markup.bold",
436
+ settings: {
437
+ fontStyle: "bold",
438
+ foreground: "#1f2328"
439
+ }
440
+ },
441
+ {
442
+ scope: ["markup.underline"],
443
+ settings: { fontStyle: "underline" }
444
+ },
445
+ {
446
+ scope: ["markup.strikethrough"],
447
+ settings: { fontStyle: "strikethrough" }
448
+ },
449
+ {
450
+ scope: "markup.inline.raw",
451
+ settings: { foreground: "#0550ae" }
452
+ },
453
+ {
454
+ scope: [
455
+ "markup.deleted",
456
+ "meta.diff.header.from-file",
457
+ "punctuation.definition.deleted"
458
+ ],
459
+ settings: {
460
+ background: "#ffebe9",
461
+ foreground: "#82071e"
462
+ }
463
+ },
464
+ {
465
+ scope: ["punctuation.section.embedded"],
466
+ settings: { foreground: "#cf222e" }
467
+ },
468
+ {
469
+ scope: [
470
+ "markup.inserted",
471
+ "meta.diff.header.to-file",
472
+ "punctuation.definition.inserted"
473
+ ],
474
+ settings: {
475
+ background: "#dafbe1",
476
+ foreground: "#116329"
477
+ }
478
+ },
479
+ {
480
+ scope: ["markup.changed", "punctuation.definition.changed"],
481
+ settings: {
482
+ background: "#ffd8b5",
483
+ foreground: "#953800"
484
+ }
485
+ },
486
+ {
487
+ scope: ["markup.ignored", "markup.untracked"],
488
+ settings: {
489
+ background: "#0550ae",
490
+ foreground: "#eaeef2"
491
+ }
492
+ },
493
+ {
494
+ scope: "meta.diff.range",
495
+ settings: {
496
+ fontStyle: "bold",
497
+ foreground: "#8250df"
498
+ }
499
+ },
500
+ {
501
+ scope: "meta.diff.header",
502
+ settings: { foreground: "#0550ae" }
503
+ },
504
+ {
505
+ scope: "meta.separator",
506
+ settings: {
507
+ fontStyle: "bold",
508
+ foreground: "#0550ae"
509
+ }
510
+ },
511
+ {
512
+ scope: "meta.output",
513
+ settings: { foreground: "#0550ae" }
514
+ },
515
+ {
516
+ scope: [
517
+ "brackethighlighter.tag",
518
+ "brackethighlighter.curly",
519
+ "brackethighlighter.round",
520
+ "brackethighlighter.square",
521
+ "brackethighlighter.angle",
522
+ "brackethighlighter.quote"
523
+ ],
524
+ settings: { foreground: "#57606a" }
525
+ },
526
+ {
527
+ scope: "brackethighlighter.unmatched",
528
+ settings: { foreground: "#82071e" }
529
+ },
530
+ {
531
+ scope: ["constant.other.reference.link", "string.other.link"],
532
+ settings: { foreground: "#0a3069" }
533
+ }
534
+ ],
535
+ type: "light"
583
536
  };
584
537
  const dark = {
585
- type: "dark",
586
- colors: {
587
- "dropdown.background": "#525252",
588
- "list.activeSelectionBackground": "#707070",
589
- "quickInputList.focusBackground": "#707070",
590
- "list.inactiveSelectionBackground": "#4e4e4e",
591
- "list.hoverBackground": "#444444",
592
- "list.highlightForeground": "#e58520",
593
- "button.background": "#565656",
594
- "editor.background": "#1e1e1e",
595
- "editor.foreground": "#c5c8c6",
596
- "editor.selectionBackground": "#676b7180",
597
- "minimap.selectionHighlight": "#676b7180",
598
- "editor.selectionHighlightBackground": "#575b6180",
599
- "editor.lineHighlightBackground": "#303030",
600
- "editorLineNumber.activeForeground": "#949494",
601
- "editor.wordHighlightBackground": "#4747a180",
602
- "editor.wordHighlightStrongBackground": "#6767ce80",
603
- "editorCursor.foreground": "#c07020",
604
- "editorWhitespace.foreground": "#505037",
605
- "editorIndentGuide.background": "#505037",
606
- "editorIndentGuide.activeBackground": "#707057",
607
- "editorGroupHeader.tabsBackground": "#282828",
608
- "tab.inactiveBackground": "#404040",
609
- "tab.border": "#303030",
610
- "tab.inactiveForeground": "#d8d8d8",
611
- "tab.lastPinnedBorder": "#505050",
612
- "peekView.border": "#3655b5",
613
- "panelTitle.activeForeground": "#ffffff",
614
- "statusBar.background": "#505050",
615
- "statusBar.debuggingBackground": "#505050",
616
- "statusBar.noFolderBackground": "#505050",
617
- "titleBar.activeBackground": "#505050",
618
- "statusBarItem.remoteBackground": "#3655b5",
619
- "ports.iconRunningProcessForeground": "#CCCCCC",
620
- "activityBar.background": "#353535",
621
- "activityBar.foreground": "#ffffff",
622
- "activityBarBadge.background": "#3655b5",
623
- "sideBar.background": "#272727",
624
- "sideBarSectionHeader.background": "#505050",
625
- "menu.background": "#272727",
626
- "menu.foreground": "#CCCCCC",
627
- "pickerGroup.foreground": "#b0b0b0",
628
- "inputOption.activeBorder": "#3655b5",
629
- focusBorder: "#3655b5",
630
- "terminal.ansiBlack": "#1e1e1e",
631
- "terminal.ansiRed": "#C4265E",
632
- // the bright color with ~75% transparent on the background
633
- "terminal.ansiGreen": "#86B42B",
634
- "terminal.ansiYellow": "#B3B42B",
635
- "terminal.ansiBlue": "#6A7EC8",
636
- "terminal.ansiMagenta": "#8C6BC8",
637
- "terminal.ansiCyan": "#56ADBC",
638
- "terminal.ansiWhite": "#e3e3dd",
639
- "terminal.ansiBrightBlack": "#666666",
640
- "terminal.ansiBrightRed": "#f92672",
641
- "terminal.ansiBrightGreen": "#A6E22E",
642
- "terminal.ansiBrightYellow": "#e2e22e",
643
- // hue shifted #A6E22E
644
- "terminal.ansiBrightBlue": "#819aff",
645
- // hue shifted #AE81FF
646
- "terminal.ansiBrightMagenta": "#AE81FF",
647
- "terminal.ansiBrightCyan": "#66D9EF",
648
- "terminal.ansiBrightWhite": "#f8f8f2",
649
- "terminal.inactiveSelectionBackground": "#676b7140"
650
- },
651
- tokenColors: [
652
- {
653
- settings: {
654
- foreground: "#C5C8C6"
655
- }
656
- },
657
- {
658
- scope: ["meta.embedded", "source.groovy.embedded", "variable.legacy.builtin.python"],
659
- settings: {
660
- foreground: "#C5C8C6"
661
- }
662
- },
663
- {
664
- name: "Comment",
665
- scope: "comment",
666
- settings: {
667
- fontStyle: "",
668
- foreground: "#9A9B99"
669
- }
670
- },
671
- {
672
- name: "String",
673
- scope: "string",
674
- settings: {
675
- fontStyle: "",
676
- foreground: "#9AA83A"
677
- }
678
- },
679
- {
680
- name: "String Embedded Source",
681
- scope: "string source",
682
- settings: {
683
- fontStyle: "",
684
- foreground: "#D08442"
685
- }
686
- },
687
- {
688
- name: "Number",
689
- scope: "constant.numeric",
690
- settings: {
691
- fontStyle: "",
692
- foreground: "#6089B4"
693
- }
694
- },
695
- {
696
- name: "Built-in constant",
697
- scope: "constant.language",
698
- settings: {
699
- fontStyle: "",
700
- foreground: "#408080"
701
- }
702
- },
703
- {
704
- name: "User-defined constant",
705
- scope: "constant.character, constant.other",
706
- settings: {
707
- fontStyle: "",
708
- foreground: "#8080FF"
709
- }
710
- },
711
- {
712
- name: "Keyword",
713
- scope: "keyword",
714
- settings: {
715
- fontStyle: "",
716
- foreground: "#6089B4"
717
- }
718
- },
719
- {
720
- name: "Support",
721
- scope: "support",
722
- settings: {
723
- fontStyle: "",
724
- foreground: "#C7444A"
725
- }
726
- },
727
- {
728
- name: "Storage",
729
- scope: "storage",
730
- settings: {
731
- fontStyle: "",
732
- foreground: "#9872A2"
733
- }
734
- },
735
- {
736
- name: "Class name",
737
- scope: "entity.name.class, entity.name.type, entity.name.namespace, entity.name.scope-resolution",
738
- settings: {
739
- fontStyle: "",
740
- foreground: "#9B0000"
741
- }
742
- },
743
- {
744
- name: "Inherited class",
745
- scope: "entity.other.inherited-class",
746
- settings: {
747
- fontStyle: "",
748
- foreground: "#C7444A"
749
- }
750
- },
751
- {
752
- name: "Function name",
753
- scope: "entity.name.function",
754
- settings: {
755
- fontStyle: "",
756
- foreground: "#CE6700"
757
- }
758
- },
759
- {
760
- name: "Function argument",
761
- scope: "variable.parameter",
762
- settings: {
763
- fontStyle: "",
764
- foreground: "#6089B4"
765
- }
766
- },
767
- {
768
- name: "Tag name",
769
- scope: "entity.name.tag",
770
- settings: {
771
- fontStyle: "",
772
- foreground: "#9872A2"
773
- }
774
- },
775
- {
776
- name: "Tag attribute",
777
- scope: "entity.other.attribute-name",
778
- settings: {
779
- fontStyle: "",
780
- foreground: "#9872A2"
781
- }
782
- },
783
- {
784
- name: "Library function",
785
- scope: "support.function",
786
- settings: {
787
- fontStyle: "",
788
- foreground: "#9872A2"
789
- }
790
- },
791
- {
792
- name: "Keyword",
793
- scope: "keyword",
794
- settings: {
795
- fontStyle: "",
796
- foreground: "#676867"
797
- }
798
- },
799
- {
800
- name: "Class Variable",
801
- scope: "variable.other, variable.js, punctuation.separator.variable",
802
- settings: {
803
- fontStyle: "",
804
- foreground: "#6089B4"
805
- }
806
- },
807
- {
808
- name: "Meta Brace",
809
- scope: "punctuation.section.embedded -(source string source punctuation.section.embedded), meta.brace.erb.html",
810
- settings: {
811
- fontStyle: "",
812
- foreground: "#008200"
813
- }
814
- },
815
- {
816
- name: "Invalid",
817
- scope: "invalid",
818
- settings: {
819
- fontStyle: "",
820
- foreground: "#FF0B00"
821
- }
822
- },
823
- {
824
- name: "Normal Variable",
825
- scope: "variable.other.php, variable.other.normal",
826
- settings: {
827
- fontStyle: "",
828
- foreground: "#6089B4"
829
- }
830
- },
831
- {
832
- name: "Function Object",
833
- scope: "meta.function-call.object",
834
- settings: {
835
- fontStyle: "",
836
- foreground: "#9872A2"
837
- }
838
- },
839
- {
840
- name: "Function Call Variable",
841
- scope: "variable.other.property",
842
- settings: {
843
- fontStyle: "",
844
- foreground: "#9872A2"
845
- }
846
- },
847
- {
848
- name: "Keyword Control / Special",
849
- scope: [
850
- "keyword.control",
851
- "keyword.operator.new.cpp",
852
- "keyword.operator.delete.cpp",
853
- "keyword.other.using",
854
- "keyword.other.directive.using",
855
- "keyword.other.operator"
856
- ],
857
- settings: {
858
- fontStyle: "",
859
- foreground: "#9872A2"
860
- }
861
- },
862
- {
863
- name: "Tag",
864
- scope: "meta.tag",
865
- settings: {
866
- fontStyle: "",
867
- foreground: "#D0B344"
868
- }
869
- },
870
- {
871
- name: "Tag Name",
872
- scope: "entity.name.tag",
873
- settings: {
874
- fontStyle: "",
875
- foreground: "#6089B4"
876
- }
877
- },
878
- {
879
- name: "Doctype",
880
- scope: "meta.doctype, meta.tag.sgml-declaration.doctype, meta.tag.sgml.doctype",
881
- settings: {
882
- fontStyle: "",
883
- foreground: "#9AA83A"
884
- }
885
- },
886
- {
887
- name: "Tag Inline Source",
888
- scope: "meta.tag.inline source, text.html.php.source",
889
- settings: {
890
- fontStyle: "",
891
- foreground: "#9AA83A"
892
- }
893
- },
894
- {
895
- name: "Tag Other",
896
- scope: "meta.tag.other, entity.name.tag.style, entity.name.tag.script, meta.tag.block.script, source.js.embedded punctuation.definition.tag.html, source.css.embedded punctuation.definition.tag.html",
897
- settings: {
898
- fontStyle: "",
899
- foreground: "#9872A2"
900
- }
901
- },
902
- {
903
- name: "Tag Attribute",
904
- scope: "entity.other.attribute-name, meta.tag punctuation.definition.string",
905
- settings: {
906
- fontStyle: "",
907
- foreground: "#D0B344"
908
- }
909
- },
910
- {
911
- name: "Tag Value",
912
- scope: "meta.tag string -source -punctuation, text source text meta.tag string -punctuation",
913
- settings: {
914
- fontStyle: "",
915
- foreground: "#6089B4"
916
- }
917
- },
918
- {
919
- name: "Meta Brace",
920
- scope: "punctuation.section.embedded -(source string source punctuation.section.embedded), meta.brace.erb.html",
921
- settings: {
922
- fontStyle: "",
923
- foreground: "#D0B344"
924
- }
925
- },
926
- {
927
- name: "HTML ID",
928
- scope: "meta.toc-list.id",
929
- settings: {
930
- foreground: "#9AA83A"
931
- }
932
- },
933
- {
934
- name: "HTML String",
935
- scope: "string.quoted.double.html, punctuation.definition.string.begin.html, punctuation.definition.string.end.html, punctuation.definition.string.end.html source, string.quoted.double.html source",
936
- settings: {
937
- fontStyle: "",
938
- foreground: "#9AA83A"
939
- }
940
- },
941
- {
942
- name: "HTML Tags",
943
- scope: "punctuation.definition.tag.html, punctuation.definition.tag.begin, punctuation.definition.tag.end",
944
- settings: {
945
- fontStyle: "",
946
- foreground: "#6089B4"
947
- }
948
- },
949
- {
950
- name: "CSS ID",
951
- scope: "meta.selector entity.other.attribute-name.id",
952
- settings: {
953
- fontStyle: "",
954
- foreground: "#9872A2"
955
- }
956
- },
957
- {
958
- name: "CSS Property Name",
959
- scope: "source.css support.type.property-name",
960
- settings: {
961
- fontStyle: "",
962
- foreground: "#676867"
963
- }
964
- },
965
- {
966
- name: "CSS Property Value",
967
- scope: "meta.property-group support.constant.property-value, meta.property-value support.constant.property-value",
968
- settings: {
969
- fontStyle: "",
970
- foreground: "#C7444A"
971
- }
972
- },
973
- {
974
- name: "JavaScript Variable",
975
- scope: "variable.language.js",
976
- settings: {
977
- foreground: "#CC555A"
978
- }
979
- },
980
- {
981
- name: "Template Definition",
982
- scope: ["punctuation.definition.template-expression", "punctuation.section.embedded.coffee"],
983
- settings: {
984
- foreground: "#D08442"
985
- }
986
- },
987
- {
988
- name: "Reset JavaScript string interpolation expression",
989
- scope: ["meta.template.expression"],
990
- settings: {
991
- foreground: "#C5C8C6"
992
- }
993
- },
994
- {
995
- name: "PHP Function Call",
996
- scope: "meta.function-call.object.php",
997
- settings: {
998
- fontStyle: "",
999
- foreground: "#D0B344"
1000
- }
1001
- },
1002
- {
1003
- name: "PHP Single Quote HMTL Fix",
1004
- scope: "punctuation.definition.string.end.php, punctuation.definition.string.begin.php",
1005
- settings: {
1006
- foreground: "#9AA83A"
1007
- }
1008
- },
1009
- {
1010
- name: "PHP Parenthesis HMTL Fix",
1011
- scope: "source.php.embedded.line.html",
1012
- settings: {
1013
- foreground: "#676867"
1014
- }
1015
- },
1016
- {
1017
- name: "PHP Punctuation Embedded",
1018
- scope: "punctuation.section.embedded.begin.php, punctuation.section.embedded.end.php",
1019
- settings: {
1020
- fontStyle: "",
1021
- foreground: "#D08442"
1022
- }
1023
- },
1024
- {
1025
- name: "Ruby Symbol",
1026
- scope: "constant.other.symbol.ruby",
1027
- settings: {
1028
- fontStyle: "",
1029
- foreground: "#9AA83A"
1030
- }
1031
- },
1032
- {
1033
- name: "Ruby Variable",
1034
- scope: "variable.language.ruby",
1035
- settings: {
1036
- fontStyle: "",
1037
- foreground: "#D0B344"
1038
- }
1039
- },
1040
- {
1041
- name: "Ruby Special Method",
1042
- scope: "keyword.other.special-method.ruby",
1043
- settings: {
1044
- fontStyle: "",
1045
- foreground: "#D9B700"
1046
- }
1047
- },
1048
- {
1049
- name: "Ruby Embedded Source",
1050
- scope: ["punctuation.section.embedded.begin.ruby", "punctuation.section.embedded.end.ruby"],
1051
- settings: {
1052
- foreground: "#D08442"
1053
- }
1054
- },
1055
- {
1056
- name: "SQL",
1057
- scope: "keyword.other.DML.sql",
1058
- settings: {
1059
- fontStyle: "",
1060
- foreground: "#D0B344"
1061
- }
1062
- },
1063
- {
1064
- name: "diff: header",
1065
- scope: "meta.diff, meta.diff.header",
1066
- settings: {
1067
- fontStyle: "italic",
1068
- foreground: "#E0EDDD"
1069
- }
1070
- },
1071
- {
1072
- name: "diff: deleted",
1073
- scope: "markup.deleted",
1074
- settings: {
1075
- fontStyle: "",
1076
- foreground: "#dc322f"
1077
- }
1078
- },
1079
- {
1080
- name: "diff: changed",
1081
- scope: "markup.changed",
1082
- settings: {
1083
- fontStyle: "",
1084
- foreground: "#cb4b16"
1085
- }
1086
- },
1087
- {
1088
- name: "diff: inserted",
1089
- scope: "markup.inserted",
1090
- settings: {
1091
- foreground: "#219186"
1092
- }
1093
- },
1094
- {
1095
- name: "Markup Quote",
1096
- scope: "markup.quote",
1097
- settings: {
1098
- foreground: "#9872A2"
1099
- }
1100
- },
1101
- {
1102
- name: "Markup Lists",
1103
- scope: "markup.list",
1104
- settings: {
1105
- foreground: "#9AA83A"
1106
- }
1107
- },
1108
- {
1109
- name: "Markup Styling",
1110
- scope: "markup.bold, markup.italic",
1111
- settings: {
1112
- foreground: "#6089B4"
1113
- }
1114
- },
1115
- {
1116
- name: "Markup Inline",
1117
- scope: "markup.inline.raw",
1118
- settings: {
1119
- fontStyle: "",
1120
- foreground: "#FF0080"
1121
- }
1122
- },
1123
- {
1124
- name: "Markup Headings",
1125
- scope: "markup.heading",
1126
- settings: {
1127
- foreground: "#D0B344"
1128
- }
1129
- },
1130
- {
1131
- name: "Markup Setext Header",
1132
- scope: "markup.heading.setext",
1133
- settings: {
1134
- fontStyle: "",
1135
- foreground: "#D0B344"
1136
- }
1137
- },
1138
- {
1139
- name: "Markdown Headings",
1140
- scope: "markup.heading.markdown",
1141
- settings: {
1142
- fontStyle: "bold"
1143
- }
1144
- },
1145
- {
1146
- name: "Markdown Quote",
1147
- scope: "markup.quote.markdown",
1148
- settings: {
1149
- fontStyle: "italic",
1150
- foreground: ""
1151
- }
1152
- },
1153
- {
1154
- name: "Markdown Bold",
1155
- scope: "markup.bold.markdown",
1156
- settings: {
1157
- fontStyle: "bold"
1158
- }
1159
- },
1160
- {
1161
- name: "Markdown Link Title/Description",
1162
- scope: "string.other.link.title.markdown,string.other.link.description.markdown",
1163
- settings: {
1164
- foreground: "#AE81FF"
1165
- }
1166
- },
1167
- {
1168
- name: "Markdown Underline Link/Image",
1169
- scope: "markup.underline.link.markdown,markup.underline.link.image.markdown",
1170
- settings: {
1171
- foreground: ""
1172
- }
1173
- },
1174
- {
1175
- name: "Markdown Emphasis",
1176
- scope: "markup.italic.markdown",
1177
- settings: {
1178
- fontStyle: "italic"
1179
- }
1180
- },
1181
- {
1182
- scope: "markup.strikethrough",
1183
- settings: {
1184
- fontStyle: "strikethrough"
1185
- }
1186
- },
1187
- {
1188
- name: "Markdown Punctuation Definition Link",
1189
- scope: "markup.list.unnumbered.markdown, markup.list.numbered.markdown",
1190
- settings: {
1191
- foreground: ""
1192
- }
1193
- },
1194
- {
1195
- name: "Markdown List Punctuation",
1196
- scope: ["punctuation.definition.list.begin.markdown"],
1197
- settings: {
1198
- foreground: ""
1199
- }
1200
- },
1201
- {
1202
- scope: "token.info-token",
1203
- settings: {
1204
- foreground: "#6796e6"
1205
- }
1206
- },
1207
- {
1208
- scope: "token.warn-token",
1209
- settings: {
1210
- foreground: "#cd9731"
1211
- }
1212
- },
1213
- {
1214
- scope: "token.error-token",
1215
- settings: {
1216
- foreground: "#f44747"
1217
- }
1218
- },
1219
- {
1220
- scope: "token.debug-token",
1221
- settings: {
1222
- foreground: "#b267e6"
1223
- }
1224
- },
1225
- {
1226
- name: "this.self",
1227
- scope: "variable.language",
1228
- settings: {
1229
- foreground: "#c7444a"
1230
- }
1231
- }
1232
- ],
1233
- semanticHighlighting: true
538
+ type: "dark",
539
+ colors: {
540
+ "dropdown.background": "#525252",
541
+ "list.activeSelectionBackground": "#707070",
542
+ "quickInputList.focusBackground": "#707070",
543
+ "list.inactiveSelectionBackground": "#4e4e4e",
544
+ "list.hoverBackground": "#444444",
545
+ "list.highlightForeground": "#e58520",
546
+ "button.background": "#565656",
547
+ "editor.background": "#1e1e1e",
548
+ "editor.foreground": "#c5c8c6",
549
+ "editor.selectionBackground": "#676b7180",
550
+ "minimap.selectionHighlight": "#676b7180",
551
+ "editor.selectionHighlightBackground": "#575b6180",
552
+ "editor.lineHighlightBackground": "#303030",
553
+ "editorLineNumber.activeForeground": "#949494",
554
+ "editor.wordHighlightBackground": "#4747a180",
555
+ "editor.wordHighlightStrongBackground": "#6767ce80",
556
+ "editorCursor.foreground": "#c07020",
557
+ "editorWhitespace.foreground": "#505037",
558
+ "editorIndentGuide.background": "#505037",
559
+ "editorIndentGuide.activeBackground": "#707057",
560
+ "editorGroupHeader.tabsBackground": "#282828",
561
+ "tab.inactiveBackground": "#404040",
562
+ "tab.border": "#303030",
563
+ "tab.inactiveForeground": "#d8d8d8",
564
+ "tab.lastPinnedBorder": "#505050",
565
+ "peekView.border": "#3655b5",
566
+ "panelTitle.activeForeground": "#ffffff",
567
+ "statusBar.background": "#505050",
568
+ "statusBar.debuggingBackground": "#505050",
569
+ "statusBar.noFolderBackground": "#505050",
570
+ "titleBar.activeBackground": "#505050",
571
+ "statusBarItem.remoteBackground": "#3655b5",
572
+ "ports.iconRunningProcessForeground": "#CCCCCC",
573
+ "activityBar.background": "#353535",
574
+ "activityBar.foreground": "#ffffff",
575
+ "activityBarBadge.background": "#3655b5",
576
+ "sideBar.background": "#272727",
577
+ "sideBarSectionHeader.background": "#505050",
578
+ "menu.background": "#272727",
579
+ "menu.foreground": "#CCCCCC",
580
+ "pickerGroup.foreground": "#b0b0b0",
581
+ "inputOption.activeBorder": "#3655b5",
582
+ focusBorder: "#3655b5",
583
+ "terminal.ansiBlack": "#1e1e1e",
584
+ "terminal.ansiRed": "#C4265E",
585
+ "terminal.ansiGreen": "#86B42B",
586
+ "terminal.ansiYellow": "#B3B42B",
587
+ "terminal.ansiBlue": "#6A7EC8",
588
+ "terminal.ansiMagenta": "#8C6BC8",
589
+ "terminal.ansiCyan": "#56ADBC",
590
+ "terminal.ansiWhite": "#e3e3dd",
591
+ "terminal.ansiBrightBlack": "#666666",
592
+ "terminal.ansiBrightRed": "#f92672",
593
+ "terminal.ansiBrightGreen": "#A6E22E",
594
+ "terminal.ansiBrightYellow": "#e2e22e",
595
+ "terminal.ansiBrightBlue": "#819aff",
596
+ "terminal.ansiBrightMagenta": "#AE81FF",
597
+ "terminal.ansiBrightCyan": "#66D9EF",
598
+ "terminal.ansiBrightWhite": "#f8f8f2",
599
+ "terminal.inactiveSelectionBackground": "#676b7140"
600
+ },
601
+ tokenColors: [
602
+ { settings: { foreground: "#C5C8C6" } },
603
+ {
604
+ scope: [
605
+ "meta.embedded",
606
+ "source.groovy.embedded",
607
+ "variable.legacy.builtin.python"
608
+ ],
609
+ settings: { foreground: "#C5C8C6" }
610
+ },
611
+ {
612
+ name: "Comment",
613
+ scope: "comment",
614
+ settings: {
615
+ fontStyle: "",
616
+ foreground: "#9A9B99"
617
+ }
618
+ },
619
+ {
620
+ name: "String",
621
+ scope: "string",
622
+ settings: {
623
+ fontStyle: "",
624
+ foreground: "#9AA83A"
625
+ }
626
+ },
627
+ {
628
+ name: "String Embedded Source",
629
+ scope: "string source",
630
+ settings: {
631
+ fontStyle: "",
632
+ foreground: "#D08442"
633
+ }
634
+ },
635
+ {
636
+ name: "Number",
637
+ scope: "constant.numeric",
638
+ settings: {
639
+ fontStyle: "",
640
+ foreground: "#6089B4"
641
+ }
642
+ },
643
+ {
644
+ name: "Built-in constant",
645
+ scope: "constant.language",
646
+ settings: {
647
+ fontStyle: "",
648
+ foreground: "#408080"
649
+ }
650
+ },
651
+ {
652
+ name: "User-defined constant",
653
+ scope: "constant.character, constant.other",
654
+ settings: {
655
+ fontStyle: "",
656
+ foreground: "#8080FF"
657
+ }
658
+ },
659
+ {
660
+ name: "Keyword",
661
+ scope: "keyword",
662
+ settings: {
663
+ fontStyle: "",
664
+ foreground: "#6089B4"
665
+ }
666
+ },
667
+ {
668
+ name: "Support",
669
+ scope: "support",
670
+ settings: {
671
+ fontStyle: "",
672
+ foreground: "#C7444A"
673
+ }
674
+ },
675
+ {
676
+ name: "Storage",
677
+ scope: "storage",
678
+ settings: {
679
+ fontStyle: "",
680
+ foreground: "#9872A2"
681
+ }
682
+ },
683
+ {
684
+ name: "Class name",
685
+ scope: "entity.name.class, entity.name.type, entity.name.namespace, entity.name.scope-resolution",
686
+ settings: {
687
+ fontStyle: "",
688
+ foreground: "#9B0000"
689
+ }
690
+ },
691
+ {
692
+ name: "Inherited class",
693
+ scope: "entity.other.inherited-class",
694
+ settings: {
695
+ fontStyle: "",
696
+ foreground: "#C7444A"
697
+ }
698
+ },
699
+ {
700
+ name: "Function name",
701
+ scope: "entity.name.function",
702
+ settings: {
703
+ fontStyle: "",
704
+ foreground: "#CE6700"
705
+ }
706
+ },
707
+ {
708
+ name: "Function argument",
709
+ scope: "variable.parameter",
710
+ settings: {
711
+ fontStyle: "",
712
+ foreground: "#6089B4"
713
+ }
714
+ },
715
+ {
716
+ name: "Tag name",
717
+ scope: "entity.name.tag",
718
+ settings: {
719
+ fontStyle: "",
720
+ foreground: "#9872A2"
721
+ }
722
+ },
723
+ {
724
+ name: "Tag attribute",
725
+ scope: "entity.other.attribute-name",
726
+ settings: {
727
+ fontStyle: "",
728
+ foreground: "#9872A2"
729
+ }
730
+ },
731
+ {
732
+ name: "Library function",
733
+ scope: "support.function",
734
+ settings: {
735
+ fontStyle: "",
736
+ foreground: "#9872A2"
737
+ }
738
+ },
739
+ {
740
+ name: "Keyword",
741
+ scope: "keyword",
742
+ settings: {
743
+ fontStyle: "",
744
+ foreground: "#676867"
745
+ }
746
+ },
747
+ {
748
+ name: "Class Variable",
749
+ scope: "variable.other, variable.js, punctuation.separator.variable",
750
+ settings: {
751
+ fontStyle: "",
752
+ foreground: "#6089B4"
753
+ }
754
+ },
755
+ {
756
+ name: "Meta Brace",
757
+ scope: "punctuation.section.embedded -(source string source punctuation.section.embedded), meta.brace.erb.html",
758
+ settings: {
759
+ fontStyle: "",
760
+ foreground: "#008200"
761
+ }
762
+ },
763
+ {
764
+ name: "Invalid",
765
+ scope: "invalid",
766
+ settings: {
767
+ fontStyle: "",
768
+ foreground: "#FF0B00"
769
+ }
770
+ },
771
+ {
772
+ name: "Normal Variable",
773
+ scope: "variable.other.php, variable.other.normal",
774
+ settings: {
775
+ fontStyle: "",
776
+ foreground: "#6089B4"
777
+ }
778
+ },
779
+ {
780
+ name: "Function Object",
781
+ scope: "meta.function-call.object",
782
+ settings: {
783
+ fontStyle: "",
784
+ foreground: "#9872A2"
785
+ }
786
+ },
787
+ {
788
+ name: "Function Call Variable",
789
+ scope: "variable.other.property",
790
+ settings: {
791
+ fontStyle: "",
792
+ foreground: "#9872A2"
793
+ }
794
+ },
795
+ {
796
+ name: "Keyword Control / Special",
797
+ scope: [
798
+ "keyword.control",
799
+ "keyword.operator.new.cpp",
800
+ "keyword.operator.delete.cpp",
801
+ "keyword.other.using",
802
+ "keyword.other.directive.using",
803
+ "keyword.other.operator"
804
+ ],
805
+ settings: {
806
+ fontStyle: "",
807
+ foreground: "#9872A2"
808
+ }
809
+ },
810
+ {
811
+ name: "Tag",
812
+ scope: "meta.tag",
813
+ settings: {
814
+ fontStyle: "",
815
+ foreground: "#D0B344"
816
+ }
817
+ },
818
+ {
819
+ name: "Tag Name",
820
+ scope: "entity.name.tag",
821
+ settings: {
822
+ fontStyle: "",
823
+ foreground: "#6089B4"
824
+ }
825
+ },
826
+ {
827
+ name: "Doctype",
828
+ scope: "meta.doctype, meta.tag.sgml-declaration.doctype, meta.tag.sgml.doctype",
829
+ settings: {
830
+ fontStyle: "",
831
+ foreground: "#9AA83A"
832
+ }
833
+ },
834
+ {
835
+ name: "Tag Inline Source",
836
+ scope: "meta.tag.inline source, text.html.php.source",
837
+ settings: {
838
+ fontStyle: "",
839
+ foreground: "#9AA83A"
840
+ }
841
+ },
842
+ {
843
+ name: "Tag Other",
844
+ scope: "meta.tag.other, entity.name.tag.style, entity.name.tag.script, meta.tag.block.script, source.js.embedded punctuation.definition.tag.html, source.css.embedded punctuation.definition.tag.html",
845
+ settings: {
846
+ fontStyle: "",
847
+ foreground: "#9872A2"
848
+ }
849
+ },
850
+ {
851
+ name: "Tag Attribute",
852
+ scope: "entity.other.attribute-name, meta.tag punctuation.definition.string",
853
+ settings: {
854
+ fontStyle: "",
855
+ foreground: "#D0B344"
856
+ }
857
+ },
858
+ {
859
+ name: "Tag Value",
860
+ scope: "meta.tag string -source -punctuation, text source text meta.tag string -punctuation",
861
+ settings: {
862
+ fontStyle: "",
863
+ foreground: "#6089B4"
864
+ }
865
+ },
866
+ {
867
+ name: "Meta Brace",
868
+ scope: "punctuation.section.embedded -(source string source punctuation.section.embedded), meta.brace.erb.html",
869
+ settings: {
870
+ fontStyle: "",
871
+ foreground: "#D0B344"
872
+ }
873
+ },
874
+ {
875
+ name: "HTML ID",
876
+ scope: "meta.toc-list.id",
877
+ settings: { foreground: "#9AA83A" }
878
+ },
879
+ {
880
+ name: "HTML String",
881
+ scope: "string.quoted.double.html, punctuation.definition.string.begin.html, punctuation.definition.string.end.html, punctuation.definition.string.end.html source, string.quoted.double.html source",
882
+ settings: {
883
+ fontStyle: "",
884
+ foreground: "#9AA83A"
885
+ }
886
+ },
887
+ {
888
+ name: "HTML Tags",
889
+ scope: "punctuation.definition.tag.html, punctuation.definition.tag.begin, punctuation.definition.tag.end",
890
+ settings: {
891
+ fontStyle: "",
892
+ foreground: "#6089B4"
893
+ }
894
+ },
895
+ {
896
+ name: "CSS ID",
897
+ scope: "meta.selector entity.other.attribute-name.id",
898
+ settings: {
899
+ fontStyle: "",
900
+ foreground: "#9872A2"
901
+ }
902
+ },
903
+ {
904
+ name: "CSS Property Name",
905
+ scope: "source.css support.type.property-name",
906
+ settings: {
907
+ fontStyle: "",
908
+ foreground: "#676867"
909
+ }
910
+ },
911
+ {
912
+ name: "CSS Property Value",
913
+ scope: "meta.property-group support.constant.property-value, meta.property-value support.constant.property-value",
914
+ settings: {
915
+ fontStyle: "",
916
+ foreground: "#C7444A"
917
+ }
918
+ },
919
+ {
920
+ name: "JavaScript Variable",
921
+ scope: "variable.language.js",
922
+ settings: { foreground: "#CC555A" }
923
+ },
924
+ {
925
+ name: "Template Definition",
926
+ scope: ["punctuation.definition.template-expression", "punctuation.section.embedded.coffee"],
927
+ settings: { foreground: "#D08442" }
928
+ },
929
+ {
930
+ name: "Reset JavaScript string interpolation expression",
931
+ scope: ["meta.template.expression"],
932
+ settings: { foreground: "#C5C8C6" }
933
+ },
934
+ {
935
+ name: "PHP Function Call",
936
+ scope: "meta.function-call.object.php",
937
+ settings: {
938
+ fontStyle: "",
939
+ foreground: "#D0B344"
940
+ }
941
+ },
942
+ {
943
+ name: "PHP Single Quote HMTL Fix",
944
+ scope: "punctuation.definition.string.end.php, punctuation.definition.string.begin.php",
945
+ settings: { foreground: "#9AA83A" }
946
+ },
947
+ {
948
+ name: "PHP Parenthesis HMTL Fix",
949
+ scope: "source.php.embedded.line.html",
950
+ settings: { foreground: "#676867" }
951
+ },
952
+ {
953
+ name: "PHP Punctuation Embedded",
954
+ scope: "punctuation.section.embedded.begin.php, punctuation.section.embedded.end.php",
955
+ settings: {
956
+ fontStyle: "",
957
+ foreground: "#D08442"
958
+ }
959
+ },
960
+ {
961
+ name: "Ruby Symbol",
962
+ scope: "constant.other.symbol.ruby",
963
+ settings: {
964
+ fontStyle: "",
965
+ foreground: "#9AA83A"
966
+ }
967
+ },
968
+ {
969
+ name: "Ruby Variable",
970
+ scope: "variable.language.ruby",
971
+ settings: {
972
+ fontStyle: "",
973
+ foreground: "#D0B344"
974
+ }
975
+ },
976
+ {
977
+ name: "Ruby Special Method",
978
+ scope: "keyword.other.special-method.ruby",
979
+ settings: {
980
+ fontStyle: "",
981
+ foreground: "#D9B700"
982
+ }
983
+ },
984
+ {
985
+ name: "Ruby Embedded Source",
986
+ scope: ["punctuation.section.embedded.begin.ruby", "punctuation.section.embedded.end.ruby"],
987
+ settings: { foreground: "#D08442" }
988
+ },
989
+ {
990
+ name: "SQL",
991
+ scope: "keyword.other.DML.sql",
992
+ settings: {
993
+ fontStyle: "",
994
+ foreground: "#D0B344"
995
+ }
996
+ },
997
+ {
998
+ name: "diff: header",
999
+ scope: "meta.diff, meta.diff.header",
1000
+ settings: {
1001
+ fontStyle: "italic",
1002
+ foreground: "#E0EDDD"
1003
+ }
1004
+ },
1005
+ {
1006
+ name: "diff: deleted",
1007
+ scope: "markup.deleted",
1008
+ settings: {
1009
+ fontStyle: "",
1010
+ foreground: "#dc322f"
1011
+ }
1012
+ },
1013
+ {
1014
+ name: "diff: changed",
1015
+ scope: "markup.changed",
1016
+ settings: {
1017
+ fontStyle: "",
1018
+ foreground: "#cb4b16"
1019
+ }
1020
+ },
1021
+ {
1022
+ name: "diff: inserted",
1023
+ scope: "markup.inserted",
1024
+ settings: { foreground: "#219186" }
1025
+ },
1026
+ {
1027
+ name: "Markup Quote",
1028
+ scope: "markup.quote",
1029
+ settings: { foreground: "#9872A2" }
1030
+ },
1031
+ {
1032
+ name: "Markup Lists",
1033
+ scope: "markup.list",
1034
+ settings: { foreground: "#9AA83A" }
1035
+ },
1036
+ {
1037
+ name: "Markup Styling",
1038
+ scope: "markup.bold, markup.italic",
1039
+ settings: { foreground: "#6089B4" }
1040
+ },
1041
+ {
1042
+ name: "Markup Inline",
1043
+ scope: "markup.inline.raw",
1044
+ settings: {
1045
+ fontStyle: "",
1046
+ foreground: "#FF0080"
1047
+ }
1048
+ },
1049
+ {
1050
+ name: "Markup Headings",
1051
+ scope: "markup.heading",
1052
+ settings: { foreground: "#D0B344" }
1053
+ },
1054
+ {
1055
+ name: "Markup Setext Header",
1056
+ scope: "markup.heading.setext",
1057
+ settings: {
1058
+ fontStyle: "",
1059
+ foreground: "#D0B344"
1060
+ }
1061
+ },
1062
+ {
1063
+ name: "Markdown Headings",
1064
+ scope: "markup.heading.markdown",
1065
+ settings: { fontStyle: "bold" }
1066
+ },
1067
+ {
1068
+ name: "Markdown Quote",
1069
+ scope: "markup.quote.markdown",
1070
+ settings: {
1071
+ fontStyle: "italic",
1072
+ foreground: ""
1073
+ }
1074
+ },
1075
+ {
1076
+ name: "Markdown Bold",
1077
+ scope: "markup.bold.markdown",
1078
+ settings: { fontStyle: "bold" }
1079
+ },
1080
+ {
1081
+ name: "Markdown Link Title/Description",
1082
+ scope: "string.other.link.title.markdown,string.other.link.description.markdown",
1083
+ settings: { foreground: "#AE81FF" }
1084
+ },
1085
+ {
1086
+ name: "Markdown Underline Link/Image",
1087
+ scope: "markup.underline.link.markdown,markup.underline.link.image.markdown",
1088
+ settings: { foreground: "" }
1089
+ },
1090
+ {
1091
+ name: "Markdown Emphasis",
1092
+ scope: "markup.italic.markdown",
1093
+ settings: { fontStyle: "italic" }
1094
+ },
1095
+ {
1096
+ scope: "markup.strikethrough",
1097
+ settings: { fontStyle: "strikethrough" }
1098
+ },
1099
+ {
1100
+ name: "Markdown Punctuation Definition Link",
1101
+ scope: "markup.list.unnumbered.markdown, markup.list.numbered.markdown",
1102
+ settings: { foreground: "" }
1103
+ },
1104
+ {
1105
+ name: "Markdown List Punctuation",
1106
+ scope: ["punctuation.definition.list.begin.markdown"],
1107
+ settings: { foreground: "" }
1108
+ },
1109
+ {
1110
+ scope: "token.info-token",
1111
+ settings: { foreground: "#6796e6" }
1112
+ },
1113
+ {
1114
+ scope: "token.warn-token",
1115
+ settings: { foreground: "#cd9731" }
1116
+ },
1117
+ {
1118
+ scope: "token.error-token",
1119
+ settings: { foreground: "#f44747" }
1120
+ },
1121
+ {
1122
+ scope: "token.debug-token",
1123
+ settings: { foreground: "#b267e6" }
1124
+ },
1125
+ {
1126
+ name: "this.self",
1127
+ scope: "variable.language",
1128
+ settings: { foreground: "#c7444a" }
1129
+ }
1130
+ ],
1131
+ semanticHighlighting: true
1234
1132
  };
1235
-
1133
+ //#endregion
1236
1134
  export { dark, light };
1237
- //# sourceMappingURL=shiki-themes.mjs.map
1135
+
1136
+ //# sourceMappingURL=shiki-themes.mjs.map