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