@orchidui/dashboard 0.0.1 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +0 -0
- package/dist/Dashboard/Card/OcCard.js +4 -0
- package/dist/Dashboard/Charts/BarChart/OcBarChart.js +5 -0
- package/dist/Dashboard/Charts/BarRaceChart/OcBarRaceChart.js +5 -0
- package/dist/Dashboard/Charts/LineChart/OcLineChart.js +5 -0
- package/dist/Dashboard/Charts/PieChart/OcPieChart.js +5 -0
- package/dist/Dashboard/CodeBlock/customTheme.js +1090 -0
- package/dist/Dashboard/ColorPicker/components/converters.js +100 -0
- package/dist/Dashboard/DataTable/utils/editColumnsUtils.js +29 -0
- package/dist/Dashboard/TextEditor/QuillEditor.js +5 -0
- package/dist/Dashboard/composables/useChart.js +25 -0
- package/dist/OcBarChart-CgKo9rAM.js +116 -0
- package/dist/OcBarRaceChart-Cu4K9WI5.js +140 -0
- package/dist/OcCard-w0EuBfr4.js +216 -0
- package/dist/OcCodeBlock-chTpuRDc.js +63 -0
- package/dist/OcLineChart-dAL6sRiP.js +161 -0
- package/dist/OcPieChart-Kn-CkXip.js +136 -0
- package/dist/QuillEditor-CEkhRyf0.js +7729 -0
- package/dist/index.js +4355 -1
- package/dist/style.css +1 -0
- package/package.json +8 -5
|
@@ -0,0 +1,1090 @@
|
|
|
1
|
+
const e = {
|
|
2
|
+
name: "Custom Theme",
|
|
3
|
+
base: "custom-theme",
|
|
4
|
+
colors: {
|
|
5
|
+
focusBorder: "#00000000",
|
|
6
|
+
foreground: "#393a34",
|
|
7
|
+
descriptionForeground: "#393a3490",
|
|
8
|
+
errorForeground: "#ab5959",
|
|
9
|
+
"textLink.foreground": "#1c6b48",
|
|
10
|
+
"textLink.activeForeground": "#1c6b48",
|
|
11
|
+
"textBlockQuote.background": "transparent",
|
|
12
|
+
"textBlockQuote.border": "#f0f0f0",
|
|
13
|
+
"textCodeBlock.background": "transparent",
|
|
14
|
+
"textPreformat.foreground": "#586069",
|
|
15
|
+
"textSeparator.foreground": "#d1d5da",
|
|
16
|
+
"button.background": "#1c6b48",
|
|
17
|
+
"button.foreground": "transparent",
|
|
18
|
+
"button.hoverBackground": "#1c6b48",
|
|
19
|
+
"checkbox.background": "#f7f7f7",
|
|
20
|
+
"checkbox.border": "#d1d5da",
|
|
21
|
+
"dropdown.background": "transparent",
|
|
22
|
+
"dropdown.border": "#f0f0f0",
|
|
23
|
+
"dropdown.foreground": "#393a34",
|
|
24
|
+
"dropdown.listBackground": "#f7f7f7",
|
|
25
|
+
"input.background": "#f7f7f7",
|
|
26
|
+
"input.border": "#f0f0f0",
|
|
27
|
+
"input.foreground": "#393a34",
|
|
28
|
+
"input.placeholderForeground": "#393a3490",
|
|
29
|
+
"inputOption.activeBackground": "#393a3450",
|
|
30
|
+
"badge.foreground": "transparent",
|
|
31
|
+
"badge.background": "#393a3490",
|
|
32
|
+
"progressBar.background": "#1c6b48",
|
|
33
|
+
"titleBar.activeForeground": "#4e4f47",
|
|
34
|
+
"titleBar.activeBackground": "transparent",
|
|
35
|
+
"titleBar.inactiveForeground": "#6a737d",
|
|
36
|
+
"titleBar.inactiveBackground": "transparent",
|
|
37
|
+
"titleBar.border": "#f7f7f7",
|
|
38
|
+
"activityBar.foreground": "#393a34",
|
|
39
|
+
"activityBar.inactiveForeground": "#393a3450",
|
|
40
|
+
"activityBar.background": "transparent",
|
|
41
|
+
"activityBarBadge.foreground": "transparent",
|
|
42
|
+
"activityBarBadge.background": "#4e4f47",
|
|
43
|
+
"activityBar.activeBorder": "#1c6b48",
|
|
44
|
+
"activityBar.border": "#f0f0f0",
|
|
45
|
+
"sideBar.foreground": "#4e4f47",
|
|
46
|
+
"sideBar.background": "transparent",
|
|
47
|
+
"sideBar.border": "#f0f0f0",
|
|
48
|
+
"sideBarTitle.foreground": "#393a34",
|
|
49
|
+
"sideBarSectionHeader.foreground": "#393a34",
|
|
50
|
+
"sideBarSectionHeader.background": "transparent",
|
|
51
|
+
"sideBarSectionHeader.border": "#f0f0f0",
|
|
52
|
+
"list.hoverForeground": "#393a34",
|
|
53
|
+
"list.inactiveSelectionForeground": "#393a34",
|
|
54
|
+
"list.activeSelectionForeground": "#393a34",
|
|
55
|
+
"list.hoverBackground": "#f7f7f7",
|
|
56
|
+
"list.inactiveSelectionBackground": "#f7f7f7",
|
|
57
|
+
"list.activeSelectionBackground": "#f7f7f7",
|
|
58
|
+
"list.inactiveFocusBackground": "transparent",
|
|
59
|
+
"list.focusBackground": "#f7f7f7",
|
|
60
|
+
"list.highlightForeground": "#1c6b48",
|
|
61
|
+
"tree.indentGuidesStroke": "#e1e4e8",
|
|
62
|
+
"notificationCenterHeader.foreground": "#6a737d",
|
|
63
|
+
"notificationCenterHeader.background": "transparent",
|
|
64
|
+
"notifications.foreground": "#393a34",
|
|
65
|
+
"notifications.background": "transparent",
|
|
66
|
+
"notifications.border": "#f0f0f0",
|
|
67
|
+
"notificationsErrorIcon.foreground": "#ab5959",
|
|
68
|
+
"notificationsWarningIcon.foreground": "#a65e2b",
|
|
69
|
+
"notificationsInfoIcon.foreground": "#296aa3",
|
|
70
|
+
"pickerGroup.border": "#f0f0f0",
|
|
71
|
+
"pickerGroup.foreground": "#393a34",
|
|
72
|
+
"quickInput.background": "transparent",
|
|
73
|
+
"quickInput.foreground": "#393a34",
|
|
74
|
+
"quickInputList.focusBackground": "#f7f7f7",
|
|
75
|
+
"statusBar.foreground": "#4e4f47",
|
|
76
|
+
"statusBar.background": "transparent",
|
|
77
|
+
"statusBar.border": "#f0f0f0",
|
|
78
|
+
"statusBar.noFolderBackground": "transparent",
|
|
79
|
+
"statusBar.debuggingBackground": "#f7f7f7",
|
|
80
|
+
"statusBar.debuggingForeground": "#4e4f47",
|
|
81
|
+
"statusBarItem.prominentBackground": "#f7f7f7",
|
|
82
|
+
"editorGroupHeader.tabsBackground": "transparent",
|
|
83
|
+
"editorGroupHeader.tabsBorder": "#f0f0f0",
|
|
84
|
+
"editorGroup.border": "#f0f0f0",
|
|
85
|
+
"tab.activeForeground": "#393a34",
|
|
86
|
+
"tab.inactiveForeground": "#6a737d",
|
|
87
|
+
"tab.inactiveBackground": "transparent",
|
|
88
|
+
"tab.activeBackground": "transparent",
|
|
89
|
+
"tab.hoverBackground": "#f7f7f7",
|
|
90
|
+
"tab.unfocusedHoverBackground": "transparent",
|
|
91
|
+
"tab.border": "#f0f0f0",
|
|
92
|
+
"tab.unfocusedActiveBorderTop": "#f0f0f0",
|
|
93
|
+
"tab.activeBorder": "#f0f0f0",
|
|
94
|
+
"tab.unfocusedActiveBorder": "#f0f0f0",
|
|
95
|
+
"tab.activeBorderTop": "#393a3490",
|
|
96
|
+
"breadcrumb.foreground": "#6a737d",
|
|
97
|
+
"breadcrumb.focusForeground": "#393a34",
|
|
98
|
+
"breadcrumb.background": "#f7f7f7",
|
|
99
|
+
"breadcrumb.activeSelectionForeground": "#22222215",
|
|
100
|
+
"breadcrumbPicker.background": "transparent",
|
|
101
|
+
"editor.foreground": "#ab5e3f",
|
|
102
|
+
"editor.background": "transparent",
|
|
103
|
+
"editorWidget.background": "transparent",
|
|
104
|
+
"editor.foldBackground": "#22222210",
|
|
105
|
+
"editor.lineHighlightBackground": "#f7f7f7",
|
|
106
|
+
"editorLineNumber.foreground": "#393a3450",
|
|
107
|
+
"editorLineNumber.activeForeground": "#4e4f47",
|
|
108
|
+
"editorIndentGuide.background": "#00000015",
|
|
109
|
+
"editorIndentGuide.activeBackground": "#00000030",
|
|
110
|
+
"editorWhitespace.foreground": "#00000015",
|
|
111
|
+
"editor.findMatchBackground": "#e6cc7744",
|
|
112
|
+
"editor.findMatchHighlightBackground": "#e6cc7766",
|
|
113
|
+
"editor.inactiveSelectionBackground": "#22222208",
|
|
114
|
+
"editor.selectionBackground": "#22222215",
|
|
115
|
+
"editor.selectionHighlightBackground": "#22222208",
|
|
116
|
+
"editor.wordHighlightBackground": "#1c6b4805",
|
|
117
|
+
"editor.wordHighlightStrongBackground": "#1c6b4810",
|
|
118
|
+
"editorBracketMatch.background": "#1c6b4820",
|
|
119
|
+
"diffEditor.insertedTextBackground": "#1c6b4815",
|
|
120
|
+
"diffEditor.removedTextBackground": "#ab595910",
|
|
121
|
+
"scrollbar.shadow": "#6a737d33",
|
|
122
|
+
"scrollbarSlider.background": "#393a3410",
|
|
123
|
+
"scrollbarSlider.hoverBackground": "#393a3450",
|
|
124
|
+
"scrollbarSlider.activeBackground": "#393a3450",
|
|
125
|
+
"editorOverviewRuler.border": "#fff",
|
|
126
|
+
"panel.background": "transparent",
|
|
127
|
+
"panel.border": "#f0f0f0",
|
|
128
|
+
"panelTitle.activeBorder": "#1c6b48",
|
|
129
|
+
"panelTitle.activeForeground": "#393a34",
|
|
130
|
+
"panelTitle.inactiveForeground": "#6a737d",
|
|
131
|
+
"panelInput.border": "#e1e4e8",
|
|
132
|
+
"terminal.foreground": "#393a34",
|
|
133
|
+
"terminal.selectionBackground": "#22222215",
|
|
134
|
+
"terminal.ansiBrightBlack": "#aaaaaa",
|
|
135
|
+
"terminal.ansiBrightBlue": "#296aa3",
|
|
136
|
+
"terminal.ansiBrightCyan": "#2993a3",
|
|
137
|
+
"terminal.ansiBrightGreen": "#1e754f",
|
|
138
|
+
"terminal.ansiBrightMagenta": "#a13865",
|
|
139
|
+
"terminal.ansiBrightRed": "#ab5959",
|
|
140
|
+
"terminal.ansiBrightWhite": "#dddddd",
|
|
141
|
+
"terminal.ansiBrightYellow": "#bda437",
|
|
142
|
+
"terminal.ansiBlack": "#121212",
|
|
143
|
+
"terminal.ansiBlue": "#296aa3",
|
|
144
|
+
"terminal.ansiCyan": "#2993a3",
|
|
145
|
+
"terminal.ansiGreen": "#1e754f",
|
|
146
|
+
"terminal.ansiMagenta": "#a13865",
|
|
147
|
+
"terminal.ansiRed": "#ab5959",
|
|
148
|
+
"terminal.ansiWhite": "#dbd7caee",
|
|
149
|
+
"terminal.ansiYellow": "#bda437",
|
|
150
|
+
"gitDecoration.addedResourceForeground": "#1e754f",
|
|
151
|
+
"gitDecoration.modifiedResourceForeground": "#296aa3",
|
|
152
|
+
"gitDecoration.deletedResourceForeground": "#ab5959",
|
|
153
|
+
"gitDecoration.untrackedResourceForeground": "#2993a3",
|
|
154
|
+
"gitDecoration.ignoredResourceForeground": "#393a3450",
|
|
155
|
+
"gitDecoration.conflictingResourceForeground": "#a65e2b",
|
|
156
|
+
"gitDecoration.submoduleResourceForeground": "#393a3490",
|
|
157
|
+
"editorGutter.modifiedBackground": "#296aa3",
|
|
158
|
+
"editorGutter.addedBackground": "#1e754f",
|
|
159
|
+
"editorGutter.deletedBackground": "#ab5959",
|
|
160
|
+
"editorBracketHighlight.foreground1": "#2993a3",
|
|
161
|
+
"editorBracketHighlight.foreground2": "#1e754f",
|
|
162
|
+
"editorBracketHighlight.foreground3": "#a65e2b",
|
|
163
|
+
"editorBracketHighlight.foreground4": "#a13865",
|
|
164
|
+
"editorBracketHighlight.foreground5": "#bda437",
|
|
165
|
+
"editorBracketHighlight.foreground6": "#296aa3",
|
|
166
|
+
"debugToolBar.background": "transparent",
|
|
167
|
+
"editor.stackFrameHighlightBackground": "#fffbdd",
|
|
168
|
+
"editor.focusedStackFrameHighlightBackground": "#fff5b1",
|
|
169
|
+
"peekViewEditor.background": "transparent",
|
|
170
|
+
"peekViewResult.background": "transparent",
|
|
171
|
+
"settings.headerForeground": "#393a34",
|
|
172
|
+
"settings.modifiedItemIndicator": "#1c6b48",
|
|
173
|
+
"welcomePage.buttonBackground": "#f6f8fa",
|
|
174
|
+
"welcomePage.buttonHoverBackground": "#e1e4e8",
|
|
175
|
+
"problemsErrorIcon.foreground": "#ab5959",
|
|
176
|
+
"problemsWarningIcon.foreground": "#a65e2b",
|
|
177
|
+
"problemsInfoIcon.foreground": "#296aa3",
|
|
178
|
+
"editorError.foreground": "#ab5959",
|
|
179
|
+
"editorWarning.foreground": "#a65e2b",
|
|
180
|
+
"editorInfo.foreground": "#296aa3",
|
|
181
|
+
"editorHint.foreground": "#1e754f",
|
|
182
|
+
"editorGutter.commentRangeForeground": "#393a3450",
|
|
183
|
+
"editorGutter.foldingControlForeground": "#393a3490",
|
|
184
|
+
"editorInlayHint.foreground": "#C0C5CE",
|
|
185
|
+
"editorInlayHint.background": "#00000000",
|
|
186
|
+
"editorStickyScroll.background": "#f7f7f7",
|
|
187
|
+
"editorStickyScrollHover.background": "#f7f7f7",
|
|
188
|
+
"menu.separatorBackground": "#f0f0f0"
|
|
189
|
+
},
|
|
190
|
+
semanticHighlighting: !0,
|
|
191
|
+
semanticTokenColors: {
|
|
192
|
+
namespace: "#b05a78",
|
|
193
|
+
property: "#D08770",
|
|
194
|
+
interface: "#2e808f",
|
|
195
|
+
type: "#2e808f",
|
|
196
|
+
class: "#5a6aa6"
|
|
197
|
+
},
|
|
198
|
+
tokenColors: [
|
|
199
|
+
{
|
|
200
|
+
scope: ["comment", "punctuation.definition.comment", "string.comment"],
|
|
201
|
+
settings: {
|
|
202
|
+
foreground: "#a0ada0"
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
scope: [
|
|
207
|
+
"delimiter.bracket",
|
|
208
|
+
"delimiter",
|
|
209
|
+
"invalid.illegal.character-not-allowed-here.html",
|
|
210
|
+
"keyword.operator.rest",
|
|
211
|
+
"keyword.operator.spread",
|
|
212
|
+
"keyword.operator.type.annotation",
|
|
213
|
+
"keyword.operator.relational",
|
|
214
|
+
"keyword.operator.assignment",
|
|
215
|
+
"meta.brace",
|
|
216
|
+
"meta.tag.block.any.html",
|
|
217
|
+
"meta.tag.inline.any.html",
|
|
218
|
+
"meta.tag.structure.input.void.html",
|
|
219
|
+
"meta.type.annotation",
|
|
220
|
+
"meta.embedded.block.github-actions-expression",
|
|
221
|
+
"storage.type.function.arrow",
|
|
222
|
+
"keyword.operator.type",
|
|
223
|
+
"meta.objectliteral.ts",
|
|
224
|
+
"punctuation"
|
|
225
|
+
],
|
|
226
|
+
settings: {
|
|
227
|
+
foreground: "#C0C5CE"
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
scope: ["constant", "entity.name.constant", "variable.language", "meta.definition.variable"],
|
|
232
|
+
settings: {
|
|
233
|
+
foreground: "#a65e2b"
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
scope: ["entity", "entity.name"],
|
|
238
|
+
settings: {
|
|
239
|
+
foreground: "#59873a"
|
|
240
|
+
}
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
scope: "variable.parameter.function",
|
|
244
|
+
settings: {
|
|
245
|
+
foreground: "#393a34"
|
|
246
|
+
}
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
scope: ["entity.name.tag", "tag.html"],
|
|
250
|
+
settings: {
|
|
251
|
+
foreground: "#1e754f"
|
|
252
|
+
}
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
scope: "entity.name.function",
|
|
256
|
+
settings: {
|
|
257
|
+
foreground: "#59873a"
|
|
258
|
+
}
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
scope: ["keyword", "storage.type.class.jsdoc"],
|
|
262
|
+
settings: {
|
|
263
|
+
foreground: "#1e754f"
|
|
264
|
+
}
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
scope: [
|
|
268
|
+
"storage",
|
|
269
|
+
"storage.type",
|
|
270
|
+
"support.type.builtin",
|
|
271
|
+
"constant.language.undefined",
|
|
272
|
+
"constant.language.null"
|
|
273
|
+
],
|
|
274
|
+
settings: {
|
|
275
|
+
foreground: "#ab5959"
|
|
276
|
+
}
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
scope: [
|
|
280
|
+
"text.html.derivative",
|
|
281
|
+
"storage.modifier.package",
|
|
282
|
+
"storage.modifier.import",
|
|
283
|
+
"storage.type.java"
|
|
284
|
+
],
|
|
285
|
+
settings: {
|
|
286
|
+
foreground: "#393a34"
|
|
287
|
+
}
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
scope: ["string", "string punctuation.section.embedded source", "attribute.value"],
|
|
291
|
+
settings: {
|
|
292
|
+
foreground: "#A3BE8C"
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
scope: "punctuation.support.type.property-name",
|
|
297
|
+
settings: {
|
|
298
|
+
foreground: "#D08770"
|
|
299
|
+
}
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
scope: "punctuation.definition.string",
|
|
303
|
+
settings: {
|
|
304
|
+
foreground: "#A3BE8C"
|
|
305
|
+
}
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
scope: "support",
|
|
309
|
+
settings: {
|
|
310
|
+
foreground: "#D08770"
|
|
311
|
+
}
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
scope: [
|
|
315
|
+
"property",
|
|
316
|
+
"meta.property-name",
|
|
317
|
+
"meta.object-literal.key",
|
|
318
|
+
"entity.name.tag.yaml",
|
|
319
|
+
"attribute.name"
|
|
320
|
+
],
|
|
321
|
+
settings: {
|
|
322
|
+
foreground: "#D08770"
|
|
323
|
+
}
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
scope: ["entity.other.attribute-name", "invalid.deprecated.entity.other.attribute-name.html"],
|
|
327
|
+
settings: {
|
|
328
|
+
foreground: "#b07d48"
|
|
329
|
+
}
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
scope: ["variable", "identifier"],
|
|
333
|
+
settings: {
|
|
334
|
+
foreground: "#b07d48"
|
|
335
|
+
}
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
scope: ["support.type.primitive", "entity.name.type"],
|
|
339
|
+
settings: {
|
|
340
|
+
foreground: "#2e8f82"
|
|
341
|
+
}
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
scope: "namespace",
|
|
345
|
+
settings: {
|
|
346
|
+
foreground: "#b05a78"
|
|
347
|
+
}
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
scope: ["keyword.operator", "keyword.operator.assignment.compound", "meta.var.expr.ts"],
|
|
351
|
+
settings: {
|
|
352
|
+
foreground: "#ab5959"
|
|
353
|
+
}
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
scope: "invalid.broken",
|
|
357
|
+
settings: {
|
|
358
|
+
foreground: "#D08770"
|
|
359
|
+
}
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
scope: "invalid.deprecated",
|
|
363
|
+
settings: {
|
|
364
|
+
foreground: "#D08770"
|
|
365
|
+
}
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
scope: "invalid.illegal",
|
|
369
|
+
settings: {
|
|
370
|
+
foreground: "#D08770"
|
|
371
|
+
}
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
scope: "invalid.unimplemented",
|
|
375
|
+
settings: {
|
|
376
|
+
foreground: "#D08770"
|
|
377
|
+
}
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
scope: "carriage-return",
|
|
381
|
+
settings: {
|
|
382
|
+
fontStyle: "italic underline",
|
|
383
|
+
background: "#d73a49",
|
|
384
|
+
foreground: "#fafbfc",
|
|
385
|
+
content: "^M"
|
|
386
|
+
}
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
scope: "message.error",
|
|
390
|
+
settings: {
|
|
391
|
+
foreground: "#D08770"
|
|
392
|
+
}
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
scope: "string variable",
|
|
396
|
+
settings: {
|
|
397
|
+
foreground: "#A3BE8C"
|
|
398
|
+
}
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
scope: ["source.regexp", "string.regexp"],
|
|
402
|
+
settings: {
|
|
403
|
+
foreground: "#ab5e3f"
|
|
404
|
+
}
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
scope: [
|
|
408
|
+
"string.regexp.character-class",
|
|
409
|
+
"string.regexp constant.character.escape",
|
|
410
|
+
"string.regexp source.ruby.embedded",
|
|
411
|
+
"string.regexp string.regexp.arbitrary-repitition"
|
|
412
|
+
],
|
|
413
|
+
settings: {
|
|
414
|
+
foreground: "#A3BE8C"
|
|
415
|
+
}
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
scope: "string.regexp constant.character.escape",
|
|
419
|
+
settings: {
|
|
420
|
+
foreground: "#bda437"
|
|
421
|
+
}
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
scope: ["support.constant"],
|
|
425
|
+
settings: {
|
|
426
|
+
foreground: "#a65e2b"
|
|
427
|
+
}
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
scope: ["constant.numeric", "number"],
|
|
431
|
+
settings: {
|
|
432
|
+
foreground: "#D08770"
|
|
433
|
+
}
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
scope: ["keyword.other.unit"],
|
|
437
|
+
settings: {
|
|
438
|
+
foreground: "#ab5959"
|
|
439
|
+
}
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
scope: ["constant.language.boolean", "constant.language"],
|
|
443
|
+
settings: {
|
|
444
|
+
foreground: "#1e754f"
|
|
445
|
+
}
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
scope: "meta.module-reference",
|
|
449
|
+
settings: {
|
|
450
|
+
foreground: "#1c6b48"
|
|
451
|
+
}
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
scope: "punctuation.definition.list.begin.markdown",
|
|
455
|
+
settings: {
|
|
456
|
+
foreground: "#a65e2b"
|
|
457
|
+
}
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
scope: ["markup.heading", "markup.heading entity.name"],
|
|
461
|
+
settings: {
|
|
462
|
+
fontStyle: "bold",
|
|
463
|
+
foreground: "#1c6b48"
|
|
464
|
+
}
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
scope: "markup.quote",
|
|
468
|
+
settings: {
|
|
469
|
+
foreground: "#2e808f"
|
|
470
|
+
}
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
scope: "markup.italic",
|
|
474
|
+
settings: {
|
|
475
|
+
fontStyle: "italic",
|
|
476
|
+
foreground: "#393a34"
|
|
477
|
+
}
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
scope: "markup.bold",
|
|
481
|
+
settings: {
|
|
482
|
+
fontStyle: "bold",
|
|
483
|
+
foreground: "#393a34"
|
|
484
|
+
}
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
scope: "markup.raw",
|
|
488
|
+
settings: {
|
|
489
|
+
foreground: "#1c6b48"
|
|
490
|
+
}
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
scope: ["markup.deleted", "meta.diff.header.from-file", "punctuation.definition.deleted"],
|
|
494
|
+
settings: {
|
|
495
|
+
background: "#ffeef0",
|
|
496
|
+
foreground: "#D08770"
|
|
497
|
+
}
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
scope: ["markup.inserted", "meta.diff.header.to-file", "punctuation.definition.inserted"],
|
|
501
|
+
settings: {
|
|
502
|
+
background: "#f0fff4",
|
|
503
|
+
foreground: "#22863a"
|
|
504
|
+
}
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
scope: ["markup.changed", "punctuation.definition.changed"],
|
|
508
|
+
settings: {
|
|
509
|
+
background: "#ffebda",
|
|
510
|
+
foreground: "#e36209"
|
|
511
|
+
}
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
scope: ["markup.ignored", "markup.untracked"],
|
|
515
|
+
settings: {
|
|
516
|
+
foreground: "#f6f8fa",
|
|
517
|
+
background: "#005cc5"
|
|
518
|
+
}
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
scope: "meta.diff.range",
|
|
522
|
+
settings: {
|
|
523
|
+
foreground: "#6f42c1",
|
|
524
|
+
fontStyle: "bold"
|
|
525
|
+
}
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
scope: "meta.diff.header",
|
|
529
|
+
settings: {
|
|
530
|
+
foreground: "#005cc5"
|
|
531
|
+
}
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
scope: "meta.separator",
|
|
535
|
+
settings: {
|
|
536
|
+
fontStyle: "bold",
|
|
537
|
+
foreground: "#005cc5"
|
|
538
|
+
}
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
scope: "meta.output",
|
|
542
|
+
settings: {
|
|
543
|
+
foreground: "#005cc5"
|
|
544
|
+
}
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
scope: [
|
|
548
|
+
"brackethighlighter.tag",
|
|
549
|
+
"brackethighlighter.curly",
|
|
550
|
+
"brackethighlighter.round",
|
|
551
|
+
"brackethighlighter.square",
|
|
552
|
+
"brackethighlighter.angle",
|
|
553
|
+
"brackethighlighter.quote"
|
|
554
|
+
],
|
|
555
|
+
settings: {
|
|
556
|
+
foreground: "#586069"
|
|
557
|
+
}
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
scope: "brackethighlighter.unmatched",
|
|
561
|
+
settings: {
|
|
562
|
+
foreground: "#D08770"
|
|
563
|
+
}
|
|
564
|
+
},
|
|
565
|
+
{
|
|
566
|
+
scope: [
|
|
567
|
+
"constant.other.reference.link",
|
|
568
|
+
"string.other.link",
|
|
569
|
+
"punctuation.definition.string.begin.markdown",
|
|
570
|
+
"punctuation.definition.string.end.markdown"
|
|
571
|
+
],
|
|
572
|
+
settings: {
|
|
573
|
+
foreground: "#A3BE8C"
|
|
574
|
+
}
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
scope: ["markup.underline.link.markdown", "markup.underline.link.image.markdown"],
|
|
578
|
+
settings: {
|
|
579
|
+
foreground: "#393a3490",
|
|
580
|
+
fontStyle: "underline"
|
|
581
|
+
}
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
scope: ["type.identifier"],
|
|
585
|
+
settings: {
|
|
586
|
+
foreground: "#5a6aa6"
|
|
587
|
+
}
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
scope: ["entity.other.attribute-name.html.vue"],
|
|
591
|
+
settings: {
|
|
592
|
+
foreground: "#59873a"
|
|
593
|
+
}
|
|
594
|
+
},
|
|
595
|
+
{
|
|
596
|
+
scope: ["invalid.illegal.unrecognized-tag.html"],
|
|
597
|
+
settings: {
|
|
598
|
+
fontStyle: "normal"
|
|
599
|
+
}
|
|
600
|
+
}
|
|
601
|
+
],
|
|
602
|
+
rules: [
|
|
603
|
+
{
|
|
604
|
+
token: "comment",
|
|
605
|
+
foreground: "a0ada0"
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
token: "punctuation.definition.comment",
|
|
609
|
+
foreground: "a0ada0"
|
|
610
|
+
},
|
|
611
|
+
{
|
|
612
|
+
token: "string.comment",
|
|
613
|
+
foreground: "a0ada0"
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
token: "delimiter.bracket",
|
|
617
|
+
foreground: "999999"
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
token: "delimiter",
|
|
621
|
+
foreground: "999999"
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
token: "invalid.illegal.character-not-allowed-here.html",
|
|
625
|
+
foreground: "999999"
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
token: "keyword.operator.rest",
|
|
629
|
+
foreground: "999999"
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
token: "keyword.operator.spread",
|
|
633
|
+
foreground: "999999"
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
token: "keyword.operator.type.annotation",
|
|
637
|
+
foreground: "999999"
|
|
638
|
+
},
|
|
639
|
+
{
|
|
640
|
+
token: "keyword.operator.relational",
|
|
641
|
+
foreground: "999999"
|
|
642
|
+
},
|
|
643
|
+
{
|
|
644
|
+
token: "keyword.operator.assignment",
|
|
645
|
+
foreground: "999999"
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
token: "meta.brace",
|
|
649
|
+
foreground: "999999"
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
token: "meta.tag.block.any.html",
|
|
653
|
+
foreground: "999999"
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
token: "meta.tag.inline.any.html",
|
|
657
|
+
foreground: "999999"
|
|
658
|
+
},
|
|
659
|
+
{
|
|
660
|
+
token: "meta.tag.structure.input.void.html",
|
|
661
|
+
foreground: "999999"
|
|
662
|
+
},
|
|
663
|
+
{
|
|
664
|
+
token: "meta.type.annotation",
|
|
665
|
+
foreground: "999999"
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
token: "meta.embedded.block.github-actions-expression",
|
|
669
|
+
foreground: "999999"
|
|
670
|
+
},
|
|
671
|
+
{
|
|
672
|
+
token: "storage.type.function.arrow",
|
|
673
|
+
foreground: "999999"
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
token: "keyword.operator.type",
|
|
677
|
+
foreground: "999999"
|
|
678
|
+
},
|
|
679
|
+
{
|
|
680
|
+
token: "meta.objectliteral.ts",
|
|
681
|
+
foreground: "999999"
|
|
682
|
+
},
|
|
683
|
+
{
|
|
684
|
+
token: "punctuation",
|
|
685
|
+
foreground: "999999"
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
token: "constant",
|
|
689
|
+
foreground: "a65e2b"
|
|
690
|
+
},
|
|
691
|
+
{
|
|
692
|
+
token: "entity.name.constant",
|
|
693
|
+
foreground: "a65e2b"
|
|
694
|
+
},
|
|
695
|
+
{
|
|
696
|
+
token: "variable.language",
|
|
697
|
+
foreground: "a65e2b"
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
token: "meta.definition.variable",
|
|
701
|
+
foreground: "a65e2b"
|
|
702
|
+
},
|
|
703
|
+
{
|
|
704
|
+
token: "entity",
|
|
705
|
+
foreground: "59873a"
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
token: "entity.name",
|
|
709
|
+
foreground: "59873a"
|
|
710
|
+
},
|
|
711
|
+
{
|
|
712
|
+
token: "variable.parameter.function",
|
|
713
|
+
foreground: "393a34"
|
|
714
|
+
},
|
|
715
|
+
{
|
|
716
|
+
token: "entity.name.tag",
|
|
717
|
+
foreground: "1e754f"
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
token: "tag.html",
|
|
721
|
+
foreground: "1e754f"
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
token: "entity.name.function",
|
|
725
|
+
foreground: "59873a"
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
token: "keyword",
|
|
729
|
+
foreground: "1e754f"
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
token: "storage.type.class.jsdoc",
|
|
733
|
+
foreground: "1e754f"
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
token: "storage",
|
|
737
|
+
foreground: "ab5959"
|
|
738
|
+
},
|
|
739
|
+
{
|
|
740
|
+
token: "storage.type",
|
|
741
|
+
foreground: "ab5959"
|
|
742
|
+
},
|
|
743
|
+
{
|
|
744
|
+
token: "support.type.builtin",
|
|
745
|
+
foreground: "ab5959"
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
token: "constant.language.undefined",
|
|
749
|
+
foreground: "ab5959"
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
token: "constant.language.null",
|
|
753
|
+
foreground: "ab5959"
|
|
754
|
+
},
|
|
755
|
+
{
|
|
756
|
+
token: "text.html.derivative",
|
|
757
|
+
foreground: "393a34"
|
|
758
|
+
},
|
|
759
|
+
{
|
|
760
|
+
token: "storage.modifier.package",
|
|
761
|
+
foreground: "393a34"
|
|
762
|
+
},
|
|
763
|
+
{
|
|
764
|
+
token: "storage.modifier.import",
|
|
765
|
+
foreground: "393a34"
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
token: "storage.type.java",
|
|
769
|
+
foreground: "393a34"
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
token: "string",
|
|
773
|
+
foreground: "b56959"
|
|
774
|
+
},
|
|
775
|
+
{
|
|
776
|
+
token: "string punctuation.section.embedded source",
|
|
777
|
+
foreground: "b56959"
|
|
778
|
+
},
|
|
779
|
+
{
|
|
780
|
+
token: "attribute.value",
|
|
781
|
+
foreground: "b56959"
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
token: "punctuation.definition.string",
|
|
785
|
+
foreground: "b5695999"
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
token: "punctuation.support.type.property-name",
|
|
789
|
+
foreground: "b5695999"
|
|
790
|
+
},
|
|
791
|
+
{
|
|
792
|
+
token: "support",
|
|
793
|
+
foreground: "998418"
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
token: "property",
|
|
797
|
+
foreground: "998418"
|
|
798
|
+
},
|
|
799
|
+
{
|
|
800
|
+
token: "meta.property-name",
|
|
801
|
+
foreground: "998418"
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
token: "meta.object-literal.key",
|
|
805
|
+
foreground: "998418"
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
token: "entity.name.tag.yaml",
|
|
809
|
+
foreground: "998418"
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
token: "attribute.name",
|
|
813
|
+
foreground: "998418"
|
|
814
|
+
},
|
|
815
|
+
{
|
|
816
|
+
token: "entity.other.attribute-name",
|
|
817
|
+
foreground: "b07d48"
|
|
818
|
+
},
|
|
819
|
+
{
|
|
820
|
+
token: "invalid.deprecated.entity.other.attribute-name.html",
|
|
821
|
+
foreground: "b07d48"
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
token: "variable",
|
|
825
|
+
foreground: "b07d48"
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
token: "identifier",
|
|
829
|
+
foreground: "b07d48"
|
|
830
|
+
},
|
|
831
|
+
{
|
|
832
|
+
token: "support.type.primitive",
|
|
833
|
+
foreground: "2e8f82"
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
token: "entity.name.type",
|
|
837
|
+
foreground: "2e8f82"
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
token: "namespace",
|
|
841
|
+
foreground: "b05a78"
|
|
842
|
+
},
|
|
843
|
+
{
|
|
844
|
+
token: "keyword.operator",
|
|
845
|
+
foreground: "ab5959"
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
token: "keyword.operator.assignment.compound",
|
|
849
|
+
foreground: "ab5959"
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
token: "meta.var.expr.ts",
|
|
853
|
+
foreground: "ab5959"
|
|
854
|
+
},
|
|
855
|
+
{
|
|
856
|
+
token: "invalid.broken",
|
|
857
|
+
foreground: "b31d28"
|
|
858
|
+
},
|
|
859
|
+
{
|
|
860
|
+
token: "invalid.deprecated",
|
|
861
|
+
foreground: "b31d28"
|
|
862
|
+
},
|
|
863
|
+
{
|
|
864
|
+
token: "invalid.illegal",
|
|
865
|
+
foreground: "b31d28"
|
|
866
|
+
},
|
|
867
|
+
{
|
|
868
|
+
token: "invalid.unimplemented",
|
|
869
|
+
foreground: "b31d28"
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
token: "carriage-return",
|
|
873
|
+
foreground: "fafbfc"
|
|
874
|
+
},
|
|
875
|
+
{
|
|
876
|
+
token: "message.error",
|
|
877
|
+
foreground: "b31d28"
|
|
878
|
+
},
|
|
879
|
+
{
|
|
880
|
+
token: "string variable",
|
|
881
|
+
foreground: "b56959"
|
|
882
|
+
},
|
|
883
|
+
{
|
|
884
|
+
token: "source.regexp",
|
|
885
|
+
foreground: "ab5e3f"
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
token: "string.regexp",
|
|
889
|
+
foreground: "ab5e3f"
|
|
890
|
+
},
|
|
891
|
+
{
|
|
892
|
+
token: "string.regexp.character-class",
|
|
893
|
+
foreground: "b56959"
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
token: "string.regexp constant.character.escape",
|
|
897
|
+
foreground: "b56959"
|
|
898
|
+
},
|
|
899
|
+
{
|
|
900
|
+
token: "string.regexp source.ruby.embedded",
|
|
901
|
+
foreground: "b56959"
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
token: "string.regexp string.regexp.arbitrary-repitition",
|
|
905
|
+
foreground: "b56959"
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
token: "string.regexp constant.character.escape",
|
|
909
|
+
foreground: "bda437"
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
token: "support.constant",
|
|
913
|
+
foreground: "a65e2b"
|
|
914
|
+
},
|
|
915
|
+
{
|
|
916
|
+
token: "constant.numeric",
|
|
917
|
+
foreground: "2f798a"
|
|
918
|
+
},
|
|
919
|
+
{
|
|
920
|
+
token: "number",
|
|
921
|
+
foreground: "2f798a"
|
|
922
|
+
},
|
|
923
|
+
{
|
|
924
|
+
token: "keyword.other.unit",
|
|
925
|
+
foreground: "ab5959"
|
|
926
|
+
},
|
|
927
|
+
{
|
|
928
|
+
token: "constant.language.boolean",
|
|
929
|
+
foreground: "1e754f"
|
|
930
|
+
},
|
|
931
|
+
{
|
|
932
|
+
token: "constant.language",
|
|
933
|
+
foreground: "1e754f"
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
token: "meta.module-reference",
|
|
937
|
+
foreground: "1c6b48"
|
|
938
|
+
},
|
|
939
|
+
{
|
|
940
|
+
token: "punctuation.definition.list.begin.markdown",
|
|
941
|
+
foreground: "a65e2b"
|
|
942
|
+
},
|
|
943
|
+
{
|
|
944
|
+
token: "markup.heading",
|
|
945
|
+
foreground: "1c6b48"
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
token: "markup.heading entity.name",
|
|
949
|
+
foreground: "1c6b48"
|
|
950
|
+
},
|
|
951
|
+
{
|
|
952
|
+
token: "markup.quote",
|
|
953
|
+
foreground: "2e808f"
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
token: "markup.italic",
|
|
957
|
+
foreground: "393a34"
|
|
958
|
+
},
|
|
959
|
+
{
|
|
960
|
+
token: "markup.bold",
|
|
961
|
+
foreground: "393a34"
|
|
962
|
+
},
|
|
963
|
+
{
|
|
964
|
+
token: "markup.raw",
|
|
965
|
+
foreground: "1c6b48"
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
token: "markup.deleted",
|
|
969
|
+
foreground: "b31d28"
|
|
970
|
+
},
|
|
971
|
+
{
|
|
972
|
+
token: "meta.diff.header.from-file",
|
|
973
|
+
foreground: "b31d28"
|
|
974
|
+
},
|
|
975
|
+
{
|
|
976
|
+
token: "punctuation.definition.deleted",
|
|
977
|
+
foreground: "b31d28"
|
|
978
|
+
},
|
|
979
|
+
{
|
|
980
|
+
token: "markup.inserted",
|
|
981
|
+
foreground: "22863a"
|
|
982
|
+
},
|
|
983
|
+
{
|
|
984
|
+
token: "meta.diff.header.to-file",
|
|
985
|
+
foreground: "22863a"
|
|
986
|
+
},
|
|
987
|
+
{
|
|
988
|
+
token: "punctuation.definition.inserted",
|
|
989
|
+
foreground: "22863a"
|
|
990
|
+
},
|
|
991
|
+
{
|
|
992
|
+
token: "markup.changed",
|
|
993
|
+
foreground: "e36209"
|
|
994
|
+
},
|
|
995
|
+
{
|
|
996
|
+
token: "punctuation.definition.changed",
|
|
997
|
+
foreground: "e36209"
|
|
998
|
+
},
|
|
999
|
+
{
|
|
1000
|
+
token: "markup.ignored",
|
|
1001
|
+
foreground: "f6f8fa"
|
|
1002
|
+
},
|
|
1003
|
+
{
|
|
1004
|
+
token: "markup.untracked",
|
|
1005
|
+
foreground: "f6f8fa"
|
|
1006
|
+
},
|
|
1007
|
+
{
|
|
1008
|
+
token: "meta.diff.range",
|
|
1009
|
+
foreground: "6f42c1"
|
|
1010
|
+
},
|
|
1011
|
+
{
|
|
1012
|
+
token: "meta.diff.header",
|
|
1013
|
+
foreground: "005cc5"
|
|
1014
|
+
},
|
|
1015
|
+
{
|
|
1016
|
+
token: "meta.separator",
|
|
1017
|
+
foreground: "005cc5"
|
|
1018
|
+
},
|
|
1019
|
+
{
|
|
1020
|
+
token: "meta.output",
|
|
1021
|
+
foreground: "005cc5"
|
|
1022
|
+
},
|
|
1023
|
+
{
|
|
1024
|
+
token: "brackethighlighter.tag",
|
|
1025
|
+
foreground: "586069"
|
|
1026
|
+
},
|
|
1027
|
+
{
|
|
1028
|
+
token: "brackethighlighter.curly",
|
|
1029
|
+
foreground: "586069"
|
|
1030
|
+
},
|
|
1031
|
+
{
|
|
1032
|
+
token: "brackethighlighter.round",
|
|
1033
|
+
foreground: "586069"
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
1036
|
+
token: "brackethighlighter.square",
|
|
1037
|
+
foreground: "586069"
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
token: "brackethighlighter.angle",
|
|
1041
|
+
foreground: "586069"
|
|
1042
|
+
},
|
|
1043
|
+
{
|
|
1044
|
+
token: "brackethighlighter.quote",
|
|
1045
|
+
foreground: "586069"
|
|
1046
|
+
},
|
|
1047
|
+
{
|
|
1048
|
+
token: "brackethighlighter.unmatched",
|
|
1049
|
+
foreground: "b31d28"
|
|
1050
|
+
},
|
|
1051
|
+
{
|
|
1052
|
+
token: "constant.other.reference.link",
|
|
1053
|
+
foreground: "b56959"
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
token: "string.other.link",
|
|
1057
|
+
foreground: "b56959"
|
|
1058
|
+
},
|
|
1059
|
+
{
|
|
1060
|
+
token: "punctuation.definition.string.begin.markdown",
|
|
1061
|
+
foreground: "b56959"
|
|
1062
|
+
},
|
|
1063
|
+
{
|
|
1064
|
+
token: "punctuation.definition.string.end.markdown",
|
|
1065
|
+
foreground: "b56959"
|
|
1066
|
+
},
|
|
1067
|
+
{
|
|
1068
|
+
token: "markup.underline.link.markdown",
|
|
1069
|
+
foreground: "393a3490"
|
|
1070
|
+
},
|
|
1071
|
+
{
|
|
1072
|
+
token: "markup.underline.link.image.markdown",
|
|
1073
|
+
foreground: "393a3490"
|
|
1074
|
+
},
|
|
1075
|
+
{
|
|
1076
|
+
token: "type.identifier",
|
|
1077
|
+
foreground: "5a6aa6"
|
|
1078
|
+
},
|
|
1079
|
+
{
|
|
1080
|
+
token: "entity.other.attribute-name.html.vue",
|
|
1081
|
+
foreground: "59873a"
|
|
1082
|
+
},
|
|
1083
|
+
{
|
|
1084
|
+
token: "invalid.illegal.unrecognized-tag.html"
|
|
1085
|
+
}
|
|
1086
|
+
]
|
|
1087
|
+
};
|
|
1088
|
+
export {
|
|
1089
|
+
e as default
|
|
1090
|
+
};
|