@mantine/code-highlight 7.17.1 → 8.0.0-alpha.1

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 (86) hide show
  1. package/cjs/CodeHighlight/CodeHighlight.cjs +168 -0
  2. package/cjs/CodeHighlight/CodeHighlight.cjs.map +1 -0
  3. package/cjs/CodeHighlight/CodeHighlight.context.cjs +12 -0
  4. package/cjs/CodeHighlight/CodeHighlight.context.cjs.map +1 -0
  5. package/cjs/CodeHighlight/CodeHighlightControl/CodeHighlightControl.cjs +48 -0
  6. package/cjs/CodeHighlight/CodeHighlightControl/CodeHighlightControl.cjs.map +1 -0
  7. package/cjs/CodeHighlight/CopyCodeButton/CopyCodeButton.cjs +28 -0
  8. package/cjs/CodeHighlight/CopyCodeButton/CopyCodeButton.cjs.map +1 -0
  9. package/cjs/CodeHighlight/CopyCodeButton/CopyIcon.cjs +32 -0
  10. package/cjs/CodeHighlight/CopyCodeButton/CopyIcon.cjs.map +1 -0
  11. package/cjs/CodeHighlight/ExpandCodeButton/ExpandCodeButton.cjs +26 -0
  12. package/cjs/CodeHighlight/ExpandCodeButton/ExpandCodeButton.cjs.map +1 -0
  13. package/cjs/CodeHighlight/ExpandCodeButton/ExpandIcon.cjs +39 -0
  14. package/cjs/CodeHighlight/ExpandCodeButton/ExpandIcon.cjs.map +1 -0
  15. package/cjs/CodeHighlight/InlineCodeHighlight.cjs +40 -0
  16. package/cjs/CodeHighlight/InlineCodeHighlight.cjs.map +1 -0
  17. package/cjs/CodeHighlight.module.css.cjs +2 -2
  18. package/cjs/CodeHighlightProvider/CodeHighlightProvider.cjs +35 -0
  19. package/cjs/CodeHighlightProvider/CodeHighlightProvider.cjs.map +1 -0
  20. package/cjs/CodeHighlightProvider/adapters/highlight-js-adapter.cjs +17 -0
  21. package/cjs/CodeHighlightProvider/adapters/highlight-js-adapter.cjs.map +1 -0
  22. package/cjs/CodeHighlightProvider/adapters/plain-text-adapter.cjs +8 -0
  23. package/cjs/CodeHighlightProvider/adapters/plain-text-adapter.cjs.map +1 -0
  24. package/cjs/CodeHighlightProvider/adapters/shiki-adapter.cjs +42 -0
  25. package/cjs/CodeHighlightProvider/adapters/shiki-adapter.cjs.map +1 -0
  26. package/cjs/CodeHighlightProvider/adapters/shiki-themes.cjs +1240 -0
  27. package/cjs/CodeHighlightProvider/adapters/shiki-themes.cjs.map +1 -0
  28. package/cjs/CodeHighlightTabs/CodeHighlightTabs.cjs +127 -0
  29. package/cjs/CodeHighlightTabs/CodeHighlightTabs.cjs.map +1 -0
  30. package/cjs/CodeHighlightTabs/FileIcon.cjs +17 -0
  31. package/cjs/CodeHighlightTabs/FileIcon.cjs.map +1 -0
  32. package/cjs/index.cjs +16 -4
  33. package/cjs/index.cjs.map +1 -1
  34. package/esm/CodeHighlight/CodeHighlight.context.mjs +9 -0
  35. package/esm/CodeHighlight/CodeHighlight.context.mjs.map +1 -0
  36. package/esm/CodeHighlight/CodeHighlight.mjs +162 -0
  37. package/esm/CodeHighlight/CodeHighlight.mjs.map +1 -0
  38. package/esm/CodeHighlight/CodeHighlightControl/CodeHighlightControl.mjs +46 -0
  39. package/esm/CodeHighlight/CodeHighlightControl/CodeHighlightControl.mjs.map +1 -0
  40. package/esm/CodeHighlight/CopyCodeButton/CopyCodeButton.mjs +26 -0
  41. package/esm/CodeHighlight/CopyCodeButton/CopyCodeButton.mjs.map +1 -0
  42. package/esm/CodeHighlight/CopyCodeButton/CopyIcon.mjs +30 -0
  43. package/esm/CodeHighlight/CopyCodeButton/CopyIcon.mjs.map +1 -0
  44. package/esm/CodeHighlight/ExpandCodeButton/ExpandCodeButton.mjs +24 -0
  45. package/esm/CodeHighlight/ExpandCodeButton/ExpandCodeButton.mjs.map +1 -0
  46. package/esm/CodeHighlight/ExpandCodeButton/ExpandIcon.mjs +37 -0
  47. package/esm/CodeHighlight/ExpandCodeButton/ExpandIcon.mjs.map +1 -0
  48. package/esm/CodeHighlight/InlineCodeHighlight.mjs +38 -0
  49. package/esm/CodeHighlight/InlineCodeHighlight.mjs.map +1 -0
  50. package/esm/CodeHighlight.module.css.mjs +2 -2
  51. package/esm/CodeHighlightProvider/CodeHighlightProvider.mjs +30 -0
  52. package/esm/CodeHighlightProvider/CodeHighlightProvider.mjs.map +1 -0
  53. package/esm/CodeHighlightProvider/adapters/highlight-js-adapter.mjs +15 -0
  54. package/esm/CodeHighlightProvider/adapters/highlight-js-adapter.mjs.map +1 -0
  55. package/esm/CodeHighlightProvider/adapters/plain-text-adapter.mjs +6 -0
  56. package/esm/CodeHighlightProvider/adapters/plain-text-adapter.mjs.map +1 -0
  57. package/esm/CodeHighlightProvider/adapters/shiki-adapter.mjs +39 -0
  58. package/esm/CodeHighlightProvider/adapters/shiki-adapter.mjs.map +1 -0
  59. package/esm/CodeHighlightProvider/adapters/shiki-themes.mjs +1237 -0
  60. package/esm/CodeHighlightProvider/adapters/shiki-themes.mjs.map +1 -0
  61. package/esm/CodeHighlightTabs/CodeHighlightTabs.mjs +125 -0
  62. package/esm/CodeHighlightTabs/CodeHighlightTabs.mjs.map +1 -0
  63. package/esm/CodeHighlightTabs/FileIcon.mjs +15 -0
  64. package/esm/CodeHighlightTabs/FileIcon.mjs.map +1 -0
  65. package/esm/index.mjs +8 -3
  66. package/esm/index.mjs.map +1 -1
  67. package/lib/CodeHighlight/CodeHighlight.context.d.ts +11 -0
  68. package/lib/CodeHighlight/CodeHighlight.d.ts +66 -0
  69. package/lib/CodeHighlight/CodeHighlightControl/CodeHighlightControl.d.ts +33 -0
  70. package/lib/CodeHighlight/CopyCodeButton/CopyCodeButton.d.ts +10 -0
  71. package/lib/CodeHighlight/CopyCodeButton/CopyIcon.d.ts +8 -0
  72. package/lib/CodeHighlight/ExpandCodeButton/ExpandCodeButton.d.ts +11 -0
  73. package/lib/CodeHighlight/ExpandCodeButton/ExpandIcon.d.ts +8 -0
  74. package/lib/CodeHighlight/InlineCodeHighlight.d.ts +29 -0
  75. package/lib/CodeHighlightProvider/CodeHighlightProvider.d.ts +32 -0
  76. package/lib/CodeHighlightProvider/adapters/highlight-js-adapter.d.ts +2 -0
  77. package/lib/CodeHighlightProvider/adapters/plain-text-adapter.d.ts +2 -0
  78. package/lib/CodeHighlightProvider/adapters/shiki-adapter.d.ts +7 -0
  79. package/lib/CodeHighlightProvider/adapters/shiki-themes.d.ts +430 -0
  80. package/lib/CodeHighlightTabs/CodeHighlightTabs.d.ts +34 -0
  81. package/lib/CodeHighlightTabs/FileIcon.d.ts +9 -0
  82. package/lib/index.d.mts +12 -6
  83. package/lib/index.d.ts +12 -6
  84. package/package.json +4 -4
  85. package/styles.css +214 -190
  86. package/styles.layer.css +214 -190
@@ -0,0 +1,1240 @@
1
+ 'use strict';
2
+
3
+ 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"
585
+ };
586
+ 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
1236
+ };
1237
+
1238
+ exports.dark = dark;
1239
+ exports.light = light;
1240
+ //# sourceMappingURL=shiki-themes.cjs.map