@brimveyn/aimux-config 0.4.4 → 0.4.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.
- package/package.json +1 -1
- package/src/actions.ts +11 -8
- package/src/defaults.ts +3 -2
- package/src/house-themes.ts +44 -302
- package/src/index.ts +20 -16
- package/src/palette-to-shiki.ts +134 -0
- package/src/palette-utils.ts +92 -0
- package/src/resolver.ts +0 -1
- package/src/themes/opencode.ts +1460 -0
- package/src/themes.ts +18 -88
- package/src/types.ts +46 -131
- package/src/normalize-theme.ts +0 -260
- package/src/themes/generated/andromeeda.ts +0 -346
- package/src/themes/generated/aurora-x.ts +0 -603
- package/src/themes/generated/ayu-dark.ts +0 -817
- package/src/themes/generated/ayu-light.ts +0 -817
- package/src/themes/generated/ayu-mirage.ts +0 -817
- package/src/themes/generated/catppuccin-frappe.ts +0 -2041
- package/src/themes/generated/catppuccin-latte.ts +0 -2041
- package/src/themes/generated/catppuccin-macchiato.ts +0 -2041
- package/src/themes/generated/catppuccin-mocha.ts +0 -2041
- package/src/themes/generated/dark-plus.ts +0 -614
- package/src/themes/generated/dracula-soft.ts +0 -947
- package/src/themes/generated/dracula.ts +0 -947
- package/src/themes/generated/everforest-dark.ts +0 -2246
- package/src/themes/generated/everforest-light.ts +0 -2246
- package/src/themes/generated/github-dark-default.ts +0 -605
- package/src/themes/generated/github-dark-dimmed.ts +0 -605
- package/src/themes/generated/github-dark-high-contrast.ts +0 -608
- package/src/themes/generated/github-dark.ts +0 -519
- package/src/themes/generated/github-light-default.ts +0 -602
- package/src/themes/generated/github-light-high-contrast.ts +0 -604
- package/src/themes/generated/github-light.ts +0 -515
- package/src/themes/generated/gruvbox-dark-hard.ts +0 -1124
- package/src/themes/generated/gruvbox-dark-medium.ts +0 -1124
- package/src/themes/generated/gruvbox-dark-soft.ts +0 -1124
- package/src/themes/generated/gruvbox-light-hard.ts +0 -1124
- package/src/themes/generated/gruvbox-light-medium.ts +0 -1124
- package/src/themes/generated/gruvbox-light-soft.ts +0 -1124
- package/src/themes/generated/horizon-bright.ts +0 -420
- package/src/themes/generated/horizon.ts +0 -418
- package/src/themes/generated/houston.ts +0 -1819
- package/src/themes/generated/index.ts +0 -140
- package/src/themes/generated/kanagawa-dragon.ts +0 -753
- package/src/themes/generated/kanagawa-lotus.ts +0 -753
- package/src/themes/generated/kanagawa-wave.ts +0 -753
- package/src/themes/generated/laserwave.ts +0 -489
- package/src/themes/generated/light-plus.ts +0 -639
- package/src/themes/generated/material-theme-darker.ts +0 -759
- package/src/themes/generated/material-theme-lighter.ts +0 -759
- package/src/themes/generated/material-theme-ocean.ts +0 -759
- package/src/themes/generated/material-theme-palenight.ts +0 -759
- package/src/themes/generated/material-theme.ts +0 -759
- package/src/themes/generated/min-dark.ts +0 -326
- package/src/themes/generated/min-light.ts +0 -331
- package/src/themes/generated/monokai.ts +0 -463
- package/src/themes/generated/night-owl-light.ts +0 -1526
- package/src/themes/generated/night-owl.ts +0 -1628
- package/src/themes/generated/nord.ts +0 -1277
- package/src/themes/generated/one-dark-pro.ts +0 -1920
- package/src/themes/generated/one-light.ts +0 -1599
- package/src/themes/generated/plastic.ts +0 -315
- package/src/themes/generated/poimandres.ts +0 -1233
- package/src/themes/generated/red.ts +0 -395
- package/src/themes/generated/rose-pine-dawn.ts +0 -696
- package/src/themes/generated/rose-pine-moon.ts +0 -696
- package/src/themes/generated/rose-pine.ts +0 -696
- package/src/themes/generated/slack-dark.ts +0 -594
- package/src/themes/generated/slack-ochin.ts +0 -461
- package/src/themes/generated/snazzy-light.ts +0 -1254
- package/src/themes/generated/solarized-dark.ts +0 -387
- package/src/themes/generated/solarized-light.ts +0 -379
- package/src/themes/generated/synthwave-84.ts +0 -751
- package/src/themes/generated/tokyo-night.ts +0 -1420
- package/src/themes/generated/vesper.ts +0 -578
- package/src/themes/generated/vitesse-black.ts +0 -629
- package/src/themes/generated/vitesse-dark.ts +0 -629
- package/src/themes/generated/vitesse-light.ts +0 -627
|
@@ -1,594 +0,0 @@
|
|
|
1
|
-
// @generated by scripts/generate-themes.ts. DO NOT EDIT.
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
|
|
4
|
-
import type { Theme } from '../../types'
|
|
5
|
-
|
|
6
|
-
export const theme: Theme = {
|
|
7
|
-
bg: '#222222',
|
|
8
|
-
colors: {
|
|
9
|
-
'activityBar.background': '#222222',
|
|
10
|
-
'activityBarBadge.background': '#1D978D',
|
|
11
|
-
'button.background': '#0077B5',
|
|
12
|
-
'button.foreground': '#FFF',
|
|
13
|
-
'button.hoverBackground': '#005076',
|
|
14
|
-
'contrastBorder': '#555555',
|
|
15
|
-
'debugExceptionWidget.background': '#141414',
|
|
16
|
-
'debugExceptionWidget.border': '#FFF',
|
|
17
|
-
'debugToolBar.background': '#141414',
|
|
18
|
-
'descriptionForeground': '#7a7a7a',
|
|
19
|
-
'diffEditor.insertedLineBackground': '#463c24',
|
|
20
|
-
'diffEditor.removedLineBackground': '#4a4a4a',
|
|
21
|
-
'editor.background': '#222222',
|
|
22
|
-
'editor.foreground': '#E6E6E6',
|
|
23
|
-
'editor.inactiveSelectionBackground': '#3a3d41',
|
|
24
|
-
'editor.lineHighlightBackground': '#141414',
|
|
25
|
-
'editor.lineHighlightBorder': '#141414',
|
|
26
|
-
'editor.selectionBackground': '#3c3c3c',
|
|
27
|
-
'editor.selectionHighlightBackground': '#add6ff',
|
|
28
|
-
'editorCursor.foreground': '#E6E6E6',
|
|
29
|
-
'editorError.foreground': '#f38ba8',
|
|
30
|
-
'editorGroup.border': '#484848',
|
|
31
|
-
'editorGroupHeader.tabsBackground': '#181818',
|
|
32
|
-
'editorIndentGuide.activeBackground': '#707070',
|
|
33
|
-
'editorIndentGuide.background': '#404040',
|
|
34
|
-
'editorLineNumber.foreground': '#7a7a7a',
|
|
35
|
-
'editorLink.activeForeground': '#0077B5',
|
|
36
|
-
'editorSuggestWidget.selectedBackground': '#0077B5',
|
|
37
|
-
'editorWarning.foreground': '#f6c177',
|
|
38
|
-
'editorWidget.background': '#222222',
|
|
39
|
-
'errorForeground': '#f38ba8',
|
|
40
|
-
'extensionButton.prominentBackground': '#0077B5',
|
|
41
|
-
'extensionButton.prominentForeground': '#FFF',
|
|
42
|
-
'extensionButton.prominentHoverBackground': '#005076',
|
|
43
|
-
'focusBorder': '#0077B5',
|
|
44
|
-
'foreground': '#E6E6E6',
|
|
45
|
-
'gitDecoration.addedResourceForeground': '#ECB22E',
|
|
46
|
-
'gitDecoration.conflictingResourceForeground': '#FFF',
|
|
47
|
-
'gitDecoration.deletedResourceForeground': '#FFF',
|
|
48
|
-
'gitDecoration.ignoredResourceForeground': '#877583',
|
|
49
|
-
'gitDecoration.modifiedResourceForeground': '#ECB22E',
|
|
50
|
-
'gitDecoration.untrackedResourceForeground': '#ECB22E',
|
|
51
|
-
'input.background': '#181818',
|
|
52
|
-
'input.border': '#0077B5',
|
|
53
|
-
'input.foreground': '#E6E6E6',
|
|
54
|
-
'input.placeholderForeground': '#7A7A7A',
|
|
55
|
-
'list.activeSelectionBackground': '#222222',
|
|
56
|
-
'list.activeSelectionForeground': '#E6E6E6',
|
|
57
|
-
'list.dropBackground': '#383b3d',
|
|
58
|
-
'list.focusBackground': '#0077B5',
|
|
59
|
-
'list.hoverBackground': '#222222',
|
|
60
|
-
'menu.background': '#252526',
|
|
61
|
-
'menu.foreground': '#E6E6E6',
|
|
62
|
-
'notificationLink.foreground': '#0077B5',
|
|
63
|
-
'panel.background': '#222222',
|
|
64
|
-
'panel.border': '#484848',
|
|
65
|
-
'settings.numberInputBackground': '#292929',
|
|
66
|
-
'settings.textInputBackground': '#292929',
|
|
67
|
-
'sideBar.background': '#181818',
|
|
68
|
-
'sideBar.foreground': '#E6E6E6',
|
|
69
|
-
'sideBarSectionHeader.background': '#222222',
|
|
70
|
-
'sideBarSectionHeader.foreground': '#a1a1a1',
|
|
71
|
-
'sideBarTitle.foreground': '#E6E6E6',
|
|
72
|
-
'statusBar.background': '#222222',
|
|
73
|
-
'statusBar.debuggingBackground': '#1D978D',
|
|
74
|
-
'statusBar.noFolderBackground': '#141414',
|
|
75
|
-
'terminal.ansiBlue': '#0077B5',
|
|
76
|
-
'terminal.ansiCyan': '#0077B5',
|
|
77
|
-
'terminal.ansiGreen': '#ECB22E',
|
|
78
|
-
'terminal.ansiMagenta': '#0077B5',
|
|
79
|
-
'terminal.ansiRed': '#f38ba8',
|
|
80
|
-
'terminal.ansiYellow': '#f6c177',
|
|
81
|
-
'textLink.activeForeground': '#0077B5',
|
|
82
|
-
'textLink.foreground': '#0077B5',
|
|
83
|
-
'titleBar.activeBackground': '#222222',
|
|
84
|
-
'titleBar.activeForeground': '#E6E6E6',
|
|
85
|
-
'titleBar.inactiveBackground': '#222222',
|
|
86
|
-
'titleBar.inactiveForeground': '#7A7A7A',
|
|
87
|
-
},
|
|
88
|
-
displayName: 'Slack Dark',
|
|
89
|
-
fg: '#E6E6E6',
|
|
90
|
-
name: 'slack-dark',
|
|
91
|
-
settings: [
|
|
92
|
-
{
|
|
93
|
-
settings: {
|
|
94
|
-
background: '#222222',
|
|
95
|
-
foreground: '#E6E6E6',
|
|
96
|
-
},
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
scope: ['meta.embedded', 'source.groovy.embedded'],
|
|
100
|
-
settings: {
|
|
101
|
-
foreground: '#D4D4D4',
|
|
102
|
-
},
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
scope: 'emphasis',
|
|
106
|
-
settings: {
|
|
107
|
-
fontStyle: 'italic',
|
|
108
|
-
},
|
|
109
|
-
},
|
|
110
|
-
{
|
|
111
|
-
scope: 'strong',
|
|
112
|
-
settings: {
|
|
113
|
-
fontStyle: 'bold',
|
|
114
|
-
},
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
scope: 'header',
|
|
118
|
-
settings: {
|
|
119
|
-
foreground: '#000080',
|
|
120
|
-
},
|
|
121
|
-
},
|
|
122
|
-
{
|
|
123
|
-
scope: 'comment',
|
|
124
|
-
settings: {
|
|
125
|
-
foreground: '#6A9955',
|
|
126
|
-
},
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
scope: 'constant.language',
|
|
130
|
-
settings: {
|
|
131
|
-
foreground: '#569cd6',
|
|
132
|
-
},
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
scope: ['constant.numeric'],
|
|
136
|
-
settings: {
|
|
137
|
-
foreground: '#b5cea8',
|
|
138
|
-
},
|
|
139
|
-
},
|
|
140
|
-
{
|
|
141
|
-
scope: 'constant.regexp',
|
|
142
|
-
settings: {
|
|
143
|
-
foreground: '#646695',
|
|
144
|
-
},
|
|
145
|
-
},
|
|
146
|
-
{
|
|
147
|
-
scope: 'entity.name.tag',
|
|
148
|
-
settings: {
|
|
149
|
-
foreground: '#569cd6',
|
|
150
|
-
},
|
|
151
|
-
},
|
|
152
|
-
{
|
|
153
|
-
scope: 'entity.name.tag.css',
|
|
154
|
-
settings: {
|
|
155
|
-
foreground: '#d7ba7d',
|
|
156
|
-
},
|
|
157
|
-
},
|
|
158
|
-
{
|
|
159
|
-
scope: 'entity.other.attribute-name',
|
|
160
|
-
settings: {
|
|
161
|
-
foreground: '#9cdcfe',
|
|
162
|
-
},
|
|
163
|
-
},
|
|
164
|
-
{
|
|
165
|
-
scope: [
|
|
166
|
-
'entity.other.attribute-name.class.css',
|
|
167
|
-
'entity.other.attribute-name.class.mixin.css',
|
|
168
|
-
'entity.other.attribute-name.id.css',
|
|
169
|
-
'entity.other.attribute-name.parent-selector.css',
|
|
170
|
-
'entity.other.attribute-name.pseudo-class.css',
|
|
171
|
-
'entity.other.attribute-name.pseudo-element.css',
|
|
172
|
-
'source.css.less entity.other.attribute-name.id',
|
|
173
|
-
'entity.other.attribute-name.attribute.scss',
|
|
174
|
-
'entity.other.attribute-name.scss',
|
|
175
|
-
],
|
|
176
|
-
settings: {
|
|
177
|
-
foreground: '#d7ba7d',
|
|
178
|
-
},
|
|
179
|
-
},
|
|
180
|
-
{
|
|
181
|
-
scope: 'invalid',
|
|
182
|
-
settings: {
|
|
183
|
-
foreground: '#f44747',
|
|
184
|
-
},
|
|
185
|
-
},
|
|
186
|
-
{
|
|
187
|
-
scope: 'markup.underline',
|
|
188
|
-
settings: {
|
|
189
|
-
fontStyle: 'underline',
|
|
190
|
-
},
|
|
191
|
-
},
|
|
192
|
-
{
|
|
193
|
-
scope: 'markup.bold',
|
|
194
|
-
settings: {
|
|
195
|
-
fontStyle: 'bold',
|
|
196
|
-
foreground: '#569cd6',
|
|
197
|
-
},
|
|
198
|
-
},
|
|
199
|
-
{
|
|
200
|
-
scope: 'markup.heading',
|
|
201
|
-
settings: {
|
|
202
|
-
fontStyle: 'bold',
|
|
203
|
-
foreground: '#569cd6',
|
|
204
|
-
},
|
|
205
|
-
},
|
|
206
|
-
{
|
|
207
|
-
scope: 'markup.italic',
|
|
208
|
-
settings: {
|
|
209
|
-
fontStyle: 'italic',
|
|
210
|
-
},
|
|
211
|
-
},
|
|
212
|
-
{
|
|
213
|
-
scope: 'markup.inserted',
|
|
214
|
-
settings: {
|
|
215
|
-
foreground: '#b5cea8',
|
|
216
|
-
},
|
|
217
|
-
},
|
|
218
|
-
{
|
|
219
|
-
scope: 'markup.deleted',
|
|
220
|
-
settings: {
|
|
221
|
-
foreground: '#ce9178',
|
|
222
|
-
},
|
|
223
|
-
},
|
|
224
|
-
{
|
|
225
|
-
scope: 'markup.changed',
|
|
226
|
-
settings: {
|
|
227
|
-
foreground: '#569cd6',
|
|
228
|
-
},
|
|
229
|
-
},
|
|
230
|
-
{
|
|
231
|
-
scope: 'punctuation.definition.quote.begin.markdown',
|
|
232
|
-
settings: {
|
|
233
|
-
foreground: '#6A9955',
|
|
234
|
-
},
|
|
235
|
-
},
|
|
236
|
-
{
|
|
237
|
-
scope: 'punctuation.definition.list.begin.markdown',
|
|
238
|
-
settings: {
|
|
239
|
-
foreground: '#6796e6',
|
|
240
|
-
},
|
|
241
|
-
},
|
|
242
|
-
{
|
|
243
|
-
scope: 'markup.inline.raw',
|
|
244
|
-
settings: {
|
|
245
|
-
foreground: '#ce9178',
|
|
246
|
-
},
|
|
247
|
-
},
|
|
248
|
-
{
|
|
249
|
-
scope: 'punctuation.definition.tag',
|
|
250
|
-
settings: {
|
|
251
|
-
foreground: '#808080',
|
|
252
|
-
},
|
|
253
|
-
},
|
|
254
|
-
{
|
|
255
|
-
scope: 'meta.preprocessor',
|
|
256
|
-
settings: {
|
|
257
|
-
foreground: '#569cd6',
|
|
258
|
-
},
|
|
259
|
-
},
|
|
260
|
-
{
|
|
261
|
-
scope: 'meta.preprocessor.string',
|
|
262
|
-
settings: {
|
|
263
|
-
foreground: '#ce9178',
|
|
264
|
-
},
|
|
265
|
-
},
|
|
266
|
-
{
|
|
267
|
-
scope: 'meta.preprocessor.numeric',
|
|
268
|
-
settings: {
|
|
269
|
-
foreground: '#b5cea8',
|
|
270
|
-
},
|
|
271
|
-
},
|
|
272
|
-
{
|
|
273
|
-
scope: 'meta.structure.dictionary.key.python',
|
|
274
|
-
settings: {
|
|
275
|
-
foreground: '#9cdcfe',
|
|
276
|
-
},
|
|
277
|
-
},
|
|
278
|
-
{
|
|
279
|
-
scope: 'meta.diff.header',
|
|
280
|
-
settings: {
|
|
281
|
-
foreground: '#569cd6',
|
|
282
|
-
},
|
|
283
|
-
},
|
|
284
|
-
{
|
|
285
|
-
scope: 'storage',
|
|
286
|
-
settings: {
|
|
287
|
-
foreground: '#569cd6',
|
|
288
|
-
},
|
|
289
|
-
},
|
|
290
|
-
{
|
|
291
|
-
scope: 'storage.type',
|
|
292
|
-
settings: {
|
|
293
|
-
foreground: '#569cd6',
|
|
294
|
-
},
|
|
295
|
-
},
|
|
296
|
-
{
|
|
297
|
-
scope: 'storage.modifier',
|
|
298
|
-
settings: {
|
|
299
|
-
foreground: '#569cd6',
|
|
300
|
-
},
|
|
301
|
-
},
|
|
302
|
-
{
|
|
303
|
-
scope: 'string',
|
|
304
|
-
settings: {
|
|
305
|
-
foreground: '#ce9178',
|
|
306
|
-
},
|
|
307
|
-
},
|
|
308
|
-
{
|
|
309
|
-
scope: 'string.tag',
|
|
310
|
-
settings: {
|
|
311
|
-
foreground: '#ce9178',
|
|
312
|
-
},
|
|
313
|
-
},
|
|
314
|
-
{
|
|
315
|
-
scope: 'string.value',
|
|
316
|
-
settings: {
|
|
317
|
-
foreground: '#ce9178',
|
|
318
|
-
},
|
|
319
|
-
},
|
|
320
|
-
{
|
|
321
|
-
scope: 'string.regexp',
|
|
322
|
-
settings: {
|
|
323
|
-
foreground: '#d16969',
|
|
324
|
-
},
|
|
325
|
-
},
|
|
326
|
-
{
|
|
327
|
-
scope: [
|
|
328
|
-
'punctuation.definition.template-expression.begin',
|
|
329
|
-
'punctuation.definition.template-expression.end',
|
|
330
|
-
'punctuation.section.embedded',
|
|
331
|
-
],
|
|
332
|
-
settings: {
|
|
333
|
-
foreground: '#569cd6',
|
|
334
|
-
},
|
|
335
|
-
},
|
|
336
|
-
{
|
|
337
|
-
scope: ['meta.template.expression'],
|
|
338
|
-
settings: {
|
|
339
|
-
foreground: '#d4d4d4',
|
|
340
|
-
},
|
|
341
|
-
},
|
|
342
|
-
{
|
|
343
|
-
scope: [
|
|
344
|
-
'support.type.vendored.property-name',
|
|
345
|
-
'support.type.property-name',
|
|
346
|
-
'variable.css',
|
|
347
|
-
'variable.scss',
|
|
348
|
-
'variable.other.less',
|
|
349
|
-
'source.coffee.embedded',
|
|
350
|
-
],
|
|
351
|
-
settings: {
|
|
352
|
-
foreground: '#9cdcfe',
|
|
353
|
-
},
|
|
354
|
-
},
|
|
355
|
-
{
|
|
356
|
-
scope: 'keyword',
|
|
357
|
-
settings: {
|
|
358
|
-
foreground: '#569cd6',
|
|
359
|
-
},
|
|
360
|
-
},
|
|
361
|
-
{
|
|
362
|
-
scope: 'keyword.control',
|
|
363
|
-
settings: {
|
|
364
|
-
foreground: '#569cd6',
|
|
365
|
-
},
|
|
366
|
-
},
|
|
367
|
-
{
|
|
368
|
-
scope: 'keyword.operator',
|
|
369
|
-
settings: {
|
|
370
|
-
foreground: '#d4d4d4',
|
|
371
|
-
},
|
|
372
|
-
},
|
|
373
|
-
{
|
|
374
|
-
scope: [
|
|
375
|
-
'keyword.operator.new',
|
|
376
|
-
'keyword.operator.expression',
|
|
377
|
-
'keyword.operator.cast',
|
|
378
|
-
'keyword.operator.sizeof',
|
|
379
|
-
'keyword.operator.instanceof',
|
|
380
|
-
'keyword.operator.logical.python',
|
|
381
|
-
],
|
|
382
|
-
settings: {
|
|
383
|
-
foreground: '#569cd6',
|
|
384
|
-
},
|
|
385
|
-
},
|
|
386
|
-
{
|
|
387
|
-
scope: 'keyword.other.unit',
|
|
388
|
-
settings: {
|
|
389
|
-
foreground: '#b5cea8',
|
|
390
|
-
},
|
|
391
|
-
},
|
|
392
|
-
{
|
|
393
|
-
scope: ['punctuation.section.embedded.begin.php', 'punctuation.section.embedded.end.php'],
|
|
394
|
-
settings: {
|
|
395
|
-
foreground: '#569cd6',
|
|
396
|
-
},
|
|
397
|
-
},
|
|
398
|
-
{
|
|
399
|
-
scope: 'support.function.git-rebase',
|
|
400
|
-
settings: {
|
|
401
|
-
foreground: '#9cdcfe',
|
|
402
|
-
},
|
|
403
|
-
},
|
|
404
|
-
{
|
|
405
|
-
scope: 'constant.sha.git-rebase',
|
|
406
|
-
settings: {
|
|
407
|
-
foreground: '#b5cea8',
|
|
408
|
-
},
|
|
409
|
-
},
|
|
410
|
-
{
|
|
411
|
-
scope: [
|
|
412
|
-
'storage.modifier.import.java',
|
|
413
|
-
'variable.language.wildcard.java',
|
|
414
|
-
'storage.modifier.package.java',
|
|
415
|
-
],
|
|
416
|
-
settings: {
|
|
417
|
-
foreground: '#d4d4d4',
|
|
418
|
-
},
|
|
419
|
-
},
|
|
420
|
-
{
|
|
421
|
-
scope: 'variable.language',
|
|
422
|
-
settings: {
|
|
423
|
-
foreground: '#569cd6',
|
|
424
|
-
},
|
|
425
|
-
},
|
|
426
|
-
{
|
|
427
|
-
scope: ['entity.name.function', 'support.function', 'support.constant.handlebars'],
|
|
428
|
-
settings: {
|
|
429
|
-
foreground: '#DCDCAA',
|
|
430
|
-
},
|
|
431
|
-
},
|
|
432
|
-
{
|
|
433
|
-
scope: [
|
|
434
|
-
'meta.return-type',
|
|
435
|
-
'support.class',
|
|
436
|
-
'support.type',
|
|
437
|
-
'entity.name.type',
|
|
438
|
-
'entity.name.class',
|
|
439
|
-
'storage.type.numeric.go',
|
|
440
|
-
'storage.type.byte.go',
|
|
441
|
-
'storage.type.boolean.go',
|
|
442
|
-
'storage.type.string.go',
|
|
443
|
-
'storage.type.uintptr.go',
|
|
444
|
-
'storage.type.error.go',
|
|
445
|
-
'storage.type.rune.go',
|
|
446
|
-
'storage.type.cs',
|
|
447
|
-
'storage.type.generic.cs',
|
|
448
|
-
'storage.type.modifier.cs',
|
|
449
|
-
'storage.type.variable.cs',
|
|
450
|
-
'storage.type.annotation.java',
|
|
451
|
-
'storage.type.generic.java',
|
|
452
|
-
'storage.type.java',
|
|
453
|
-
'storage.type.object.array.java',
|
|
454
|
-
'storage.type.primitive.array.java',
|
|
455
|
-
'storage.type.primitive.java',
|
|
456
|
-
'storage.type.token.java',
|
|
457
|
-
'storage.type.groovy',
|
|
458
|
-
'storage.type.annotation.groovy',
|
|
459
|
-
'storage.type.parameters.groovy',
|
|
460
|
-
'storage.type.generic.groovy',
|
|
461
|
-
'storage.type.object.array.groovy',
|
|
462
|
-
'storage.type.primitive.array.groovy',
|
|
463
|
-
'storage.type.primitive.groovy',
|
|
464
|
-
],
|
|
465
|
-
settings: {
|
|
466
|
-
foreground: '#4EC9B0',
|
|
467
|
-
},
|
|
468
|
-
},
|
|
469
|
-
{
|
|
470
|
-
scope: [
|
|
471
|
-
'meta.type.cast.expr',
|
|
472
|
-
'meta.type.new.expr',
|
|
473
|
-
'support.constant.math',
|
|
474
|
-
'support.constant.dom',
|
|
475
|
-
'support.constant.json',
|
|
476
|
-
'entity.other.inherited-class',
|
|
477
|
-
],
|
|
478
|
-
settings: {
|
|
479
|
-
foreground: '#4EC9B0',
|
|
480
|
-
},
|
|
481
|
-
},
|
|
482
|
-
{
|
|
483
|
-
scope: 'keyword.control',
|
|
484
|
-
settings: {
|
|
485
|
-
foreground: '#C586C0',
|
|
486
|
-
},
|
|
487
|
-
},
|
|
488
|
-
{
|
|
489
|
-
scope: [
|
|
490
|
-
'variable',
|
|
491
|
-
'meta.definition.variable.name',
|
|
492
|
-
'support.variable',
|
|
493
|
-
'entity.name.variable',
|
|
494
|
-
],
|
|
495
|
-
settings: {
|
|
496
|
-
foreground: '#9CDCFE',
|
|
497
|
-
},
|
|
498
|
-
},
|
|
499
|
-
{
|
|
500
|
-
scope: ['meta.object-literal.key'],
|
|
501
|
-
settings: {
|
|
502
|
-
foreground: '#9CDCFE',
|
|
503
|
-
},
|
|
504
|
-
},
|
|
505
|
-
{
|
|
506
|
-
scope: [
|
|
507
|
-
'support.constant.property-value',
|
|
508
|
-
'support.constant.font-name',
|
|
509
|
-
'support.constant.media-type',
|
|
510
|
-
'support.constant.media',
|
|
511
|
-
'constant.other.color.rgb-value',
|
|
512
|
-
'constant.other.rgb-value',
|
|
513
|
-
'support.constant.color',
|
|
514
|
-
],
|
|
515
|
-
settings: {
|
|
516
|
-
foreground: '#CE9178',
|
|
517
|
-
},
|
|
518
|
-
},
|
|
519
|
-
{
|
|
520
|
-
scope: [
|
|
521
|
-
'punctuation.definition.group.regexp',
|
|
522
|
-
'punctuation.definition.group.assertion.regexp',
|
|
523
|
-
'punctuation.definition.character-class.regexp',
|
|
524
|
-
'punctuation.character.set.begin.regexp',
|
|
525
|
-
'punctuation.character.set.end.regexp',
|
|
526
|
-
'keyword.operator.negation.regexp',
|
|
527
|
-
'support.other.parenthesis.regexp',
|
|
528
|
-
],
|
|
529
|
-
settings: {
|
|
530
|
-
foreground: '#CE9178',
|
|
531
|
-
},
|
|
532
|
-
},
|
|
533
|
-
{
|
|
534
|
-
scope: [
|
|
535
|
-
'constant.character.character-class.regexp',
|
|
536
|
-
'constant.other.character-class.set.regexp',
|
|
537
|
-
'constant.other.character-class.regexp',
|
|
538
|
-
'constant.character.set.regexp',
|
|
539
|
-
],
|
|
540
|
-
settings: {
|
|
541
|
-
foreground: '#d16969',
|
|
542
|
-
},
|
|
543
|
-
},
|
|
544
|
-
{
|
|
545
|
-
scope: ['keyword.operator.or.regexp', 'keyword.control.anchor.regexp'],
|
|
546
|
-
settings: {
|
|
547
|
-
foreground: '#DCDCAA',
|
|
548
|
-
},
|
|
549
|
-
},
|
|
550
|
-
{
|
|
551
|
-
scope: 'keyword.operator.quantifier.regexp',
|
|
552
|
-
settings: {
|
|
553
|
-
foreground: '#d7ba7d',
|
|
554
|
-
},
|
|
555
|
-
},
|
|
556
|
-
{
|
|
557
|
-
scope: 'constant.character',
|
|
558
|
-
settings: {
|
|
559
|
-
foreground: '#569cd6',
|
|
560
|
-
},
|
|
561
|
-
},
|
|
562
|
-
{
|
|
563
|
-
scope: 'constant.character.escape',
|
|
564
|
-
settings: {
|
|
565
|
-
foreground: '#d7ba7d',
|
|
566
|
-
},
|
|
567
|
-
},
|
|
568
|
-
{
|
|
569
|
-
scope: 'token.info-token',
|
|
570
|
-
settings: {
|
|
571
|
-
foreground: '#6796e6',
|
|
572
|
-
},
|
|
573
|
-
},
|
|
574
|
-
{
|
|
575
|
-
scope: 'token.warn-token',
|
|
576
|
-
settings: {
|
|
577
|
-
foreground: '#cd9731',
|
|
578
|
-
},
|
|
579
|
-
},
|
|
580
|
-
{
|
|
581
|
-
scope: 'token.error-token',
|
|
582
|
-
settings: {
|
|
583
|
-
foreground: '#f44747',
|
|
584
|
-
},
|
|
585
|
-
},
|
|
586
|
-
{
|
|
587
|
-
scope: 'token.debug-token',
|
|
588
|
-
settings: {
|
|
589
|
-
foreground: '#b267e6',
|
|
590
|
-
},
|
|
591
|
-
},
|
|
592
|
-
],
|
|
593
|
-
type: 'dark',
|
|
594
|
-
}
|