@brimveyn/aimux-config 0.4.0 → 0.4.2
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 +47 -0
- package/src/defaults.ts +3 -0
- package/src/index.ts +9 -1
- package/src/normalize-theme.ts +260 -0
- package/src/themes/generated/andromeeda.ts +346 -0
- package/src/themes/generated/aurora-x.ts +603 -0
- package/src/themes/generated/ayu-dark.ts +817 -0
- package/src/themes/generated/ayu-light.ts +817 -0
- package/src/themes/generated/ayu-mirage.ts +817 -0
- package/src/themes/generated/catppuccin-frappe.ts +2041 -0
- package/src/themes/generated/catppuccin-latte.ts +2041 -0
- package/src/themes/generated/catppuccin-macchiato.ts +2041 -0
- package/src/themes/generated/catppuccin-mocha.ts +2041 -0
- package/src/themes/generated/dark-plus.ts +614 -0
- package/src/themes/generated/dracula-soft.ts +947 -0
- package/src/themes/generated/dracula.ts +947 -0
- package/src/themes/generated/everforest-dark.ts +2246 -0
- package/src/themes/generated/everforest-light.ts +2246 -0
- package/src/themes/generated/github-dark-default.ts +605 -0
- package/src/themes/generated/github-dark-dimmed.ts +605 -0
- package/src/themes/generated/github-dark-high-contrast.ts +608 -0
- package/src/themes/generated/github-dark.ts +519 -0
- package/src/themes/generated/github-light-default.ts +602 -0
- package/src/themes/generated/github-light-high-contrast.ts +604 -0
- package/src/themes/generated/github-light.ts +515 -0
- package/src/themes/generated/gruvbox-dark-hard.ts +1124 -0
- package/src/themes/generated/gruvbox-dark-medium.ts +1124 -0
- package/src/themes/generated/gruvbox-dark-soft.ts +1124 -0
- package/src/themes/generated/gruvbox-light-hard.ts +1124 -0
- package/src/themes/generated/gruvbox-light-medium.ts +1124 -0
- package/src/themes/generated/gruvbox-light-soft.ts +1124 -0
- package/src/themes/generated/horizon-bright.ts +420 -0
- package/src/themes/generated/horizon.ts +418 -0
- package/src/themes/generated/houston.ts +1819 -0
- package/src/themes/generated/index.ts +140 -0
- package/src/themes/generated/kanagawa-dragon.ts +753 -0
- package/src/themes/generated/kanagawa-lotus.ts +753 -0
- package/src/themes/generated/kanagawa-wave.ts +753 -0
- package/src/themes/generated/laserwave.ts +489 -0
- package/src/themes/generated/light-plus.ts +639 -0
- package/src/themes/generated/material-theme-darker.ts +759 -0
- package/src/themes/generated/material-theme-lighter.ts +759 -0
- package/src/themes/generated/material-theme-ocean.ts +759 -0
- package/src/themes/generated/material-theme-palenight.ts +759 -0
- package/src/themes/generated/material-theme.ts +759 -0
- package/src/themes/generated/min-dark.ts +326 -0
- package/src/themes/generated/min-light.ts +331 -0
- package/src/themes/generated/monokai.ts +463 -0
- package/src/themes/generated/night-owl-light.ts +1526 -0
- package/src/themes/generated/night-owl.ts +1628 -0
- package/src/themes/generated/nord.ts +1277 -0
- package/src/themes/generated/one-dark-pro.ts +1920 -0
- package/src/themes/generated/one-light.ts +1599 -0
- package/src/themes/generated/plastic.ts +315 -0
- package/src/themes/generated/poimandres.ts +1233 -0
- package/src/themes/generated/red.ts +395 -0
- package/src/themes/generated/rose-pine-dawn.ts +696 -0
- package/src/themes/generated/rose-pine-moon.ts +696 -0
- package/src/themes/generated/rose-pine.ts +696 -0
- package/src/themes/generated/slack-dark.ts +594 -0
- package/src/themes/generated/slack-ochin.ts +461 -0
- package/src/themes/generated/snazzy-light.ts +1254 -0
- package/src/themes/generated/solarized-dark.ts +387 -0
- package/src/themes/generated/solarized-light.ts +379 -0
- package/src/themes/generated/synthwave-84.ts +751 -0
- package/src/themes/generated/tokyo-night.ts +1420 -0
- package/src/themes/generated/vesper.ts +578 -0
- package/src/themes/generated/vitesse-black.ts +629 -0
- package/src/themes/generated/vitesse-dark.ts +629 -0
- package/src/themes/generated/vitesse-light.ts +627 -0
- package/src/themes.ts +57 -10
- package/src/types.ts +29 -4
- package/src/themes.generated.ts +0 -59794
|
@@ -0,0 +1,759 @@
|
|
|
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: '#FAFAFA',
|
|
8
|
+
colors: {
|
|
9
|
+
'activityBar.activeBorder': '#80CBC4',
|
|
10
|
+
'activityBar.background': '#FAFAFA',
|
|
11
|
+
'activityBar.border': '#FAFAFA',
|
|
12
|
+
'activityBar.dropBackground': '#E53935',
|
|
13
|
+
'activityBar.foreground': '#90A4AE',
|
|
14
|
+
'activityBarBadge.background': '#80CBC4',
|
|
15
|
+
'activityBarBadge.foreground': '#000000',
|
|
16
|
+
'badge.background': '#CCD7DA',
|
|
17
|
+
'badge.foreground': '#90A4AE',
|
|
18
|
+
'breadcrumb.activeSelectionForeground': '#80CBC4',
|
|
19
|
+
'breadcrumb.background': '#FAFAFA',
|
|
20
|
+
'breadcrumb.focusForeground': '#90A4AE',
|
|
21
|
+
'breadcrumb.foreground': '#758a95',
|
|
22
|
+
'breadcrumbPicker.background': '#FAFAFA',
|
|
23
|
+
'button.background': '#80CBC4',
|
|
24
|
+
'button.foreground': '#ffffff',
|
|
25
|
+
'contrastBorder': '#000000',
|
|
26
|
+
'debugConsole.errorForeground': '#E53935',
|
|
27
|
+
'debugConsole.infoForeground': '#39ADB5',
|
|
28
|
+
'debugConsole.warningForeground': '#E2931D',
|
|
29
|
+
'debugToolBar.background': '#FAFAFA',
|
|
30
|
+
'descriptionForeground': '#CFD8DC',
|
|
31
|
+
'diffEditor.insertedLineBackground': '#e7eedd',
|
|
32
|
+
'diffEditor.insertedTextBackground': '#39ADB5',
|
|
33
|
+
'diffEditor.removedLineBackground': '#f6d7d7',
|
|
34
|
+
'diffEditor.removedTextBackground': '#FF5370',
|
|
35
|
+
'dropdown.background': '#FAFAFA',
|
|
36
|
+
'dropdown.border': '#000000',
|
|
37
|
+
'editor.background': '#FAFAFA',
|
|
38
|
+
'editor.findMatchBackground': '#000000',
|
|
39
|
+
'editor.findMatchBorder': '#80CBC4',
|
|
40
|
+
'editor.findMatchHighlight': '#90A4AE',
|
|
41
|
+
'editor.findMatchHighlightBackground': '#000000',
|
|
42
|
+
'editor.findMatchHighlightBorder': '#000000',
|
|
43
|
+
'editor.findRangeHighlightBackground': '#E2931D',
|
|
44
|
+
'editor.foreground': '#90A4AE',
|
|
45
|
+
'editor.lineHighlightBackground': '#CCD7DA',
|
|
46
|
+
'editor.lineHighlightBorder': '#CCD7DA',
|
|
47
|
+
'editor.rangeHighlightBackground': '#FFFFFF',
|
|
48
|
+
'editor.selectionBackground': '#80CBC4',
|
|
49
|
+
'editor.selectionHighlightBackground': '#272727',
|
|
50
|
+
'editor.wordHighlightBackground': '#FF5370',
|
|
51
|
+
'editor.wordHighlightStrongBackground': '#91B859',
|
|
52
|
+
'editorBracketMatch.background': '#FAFAFA',
|
|
53
|
+
'editorBracketMatch.border': '#272727',
|
|
54
|
+
'editorCursor.foreground': '#272727',
|
|
55
|
+
'editorError.foreground': '#E53935',
|
|
56
|
+
'editorGroup.border': '#000000',
|
|
57
|
+
'editorGroup.dropBackground': '#E53935',
|
|
58
|
+
'editorGroup.focusedEmptyBorder': '#E53935',
|
|
59
|
+
'editorGroupHeader.tabsBackground': '#FAFAFA',
|
|
60
|
+
'editorGutter.addedBackground': '#91B859',
|
|
61
|
+
'editorGutter.deletedBackground': '#E53935',
|
|
62
|
+
'editorGutter.modifiedBackground': '#6182B8',
|
|
63
|
+
'editorHoverWidget.background': '#FAFAFA',
|
|
64
|
+
'editorHoverWidget.border': '#000000',
|
|
65
|
+
'editorIndentGuide.activeBackground': '#B0BEC5',
|
|
66
|
+
'editorIndentGuide.background': '#B0BEC5',
|
|
67
|
+
'editorInfo.foreground': '#6182B8',
|
|
68
|
+
'editorLineNumber.activeForeground': '#758a95',
|
|
69
|
+
'editorLineNumber.foreground': '#CFD8DC',
|
|
70
|
+
'editorLink.activeForeground': '#90A4AE',
|
|
71
|
+
'editorMarkerNavigation.background': '#90A4AE',
|
|
72
|
+
'editorOverviewRuler.border': '#FAFAFA',
|
|
73
|
+
'editorOverviewRuler.errorForeground': '#E53935',
|
|
74
|
+
'editorOverviewRuler.findMatchForeground': '#80CBC4',
|
|
75
|
+
'editorOverviewRuler.infoForeground': '#6182B8',
|
|
76
|
+
'editorOverviewRuler.warningForeground': '#E2931D',
|
|
77
|
+
'editorRuler.foreground': '#B0BEC5',
|
|
78
|
+
'editorSuggestWidget.background': '#FAFAFA',
|
|
79
|
+
'editorSuggestWidget.border': '#000000',
|
|
80
|
+
'editorSuggestWidget.foreground': '#90A4AE',
|
|
81
|
+
'editorSuggestWidget.highlightForeground': '#80CBC4',
|
|
82
|
+
'editorSuggestWidget.selectedBackground': '#CCD7DA',
|
|
83
|
+
'editorWarning.foreground': '#E2931D',
|
|
84
|
+
'editorWhitespace.foreground': '#90A4AE',
|
|
85
|
+
'editorWidget.background': '#FAFAFA',
|
|
86
|
+
'editorWidget.border': '#80CBC4',
|
|
87
|
+
'editorWidget.resizeBorder': '#80CBC4',
|
|
88
|
+
'errorForeground': '#E53935',
|
|
89
|
+
'extensionBadge.remoteForeground': '#90A4AE',
|
|
90
|
+
'extensionButton.prominentBackground': '#91B859',
|
|
91
|
+
'extensionButton.prominentForeground': '#90A4AE',
|
|
92
|
+
'extensionButton.prominentHoverBackground': '#91B859',
|
|
93
|
+
'focusBorder': '#FFFFFF',
|
|
94
|
+
'foreground': '#90A4AE',
|
|
95
|
+
'gitDecoration.addedResourceForeground': '#91B859',
|
|
96
|
+
'gitDecoration.conflictingResourceForeground': '#E2931D',
|
|
97
|
+
'gitDecoration.deletedResourceForeground': '#E53935',
|
|
98
|
+
'gitDecoration.ignoredResourceForeground': '#758a95',
|
|
99
|
+
'gitDecoration.modifiedResourceForeground': '#6182B8',
|
|
100
|
+
'gitDecoration.untrackedResourceForeground': '#91B859',
|
|
101
|
+
'input.background': '#EEEEEE',
|
|
102
|
+
'input.border': '#000000',
|
|
103
|
+
'input.foreground': '#90A4AE',
|
|
104
|
+
'input.placeholderForeground': '#90A4AE',
|
|
105
|
+
'inputOption.activeBackground': '#90A4AE',
|
|
106
|
+
'inputOption.activeBorder': '#90A4AE',
|
|
107
|
+
'inputValidation.errorBorder': '#E53935',
|
|
108
|
+
'inputValidation.infoBorder': '#6182B8',
|
|
109
|
+
'inputValidation.warningBorder': '#E2931D',
|
|
110
|
+
'list.activeSelectionBackground': '#FAFAFA',
|
|
111
|
+
'list.activeSelectionForeground': '#80CBC4',
|
|
112
|
+
'list.dropBackground': '#E53935',
|
|
113
|
+
'list.focusBackground': '#90A4AE',
|
|
114
|
+
'list.focusForeground': '#90A4AE',
|
|
115
|
+
'list.highlightForeground': '#80CBC4',
|
|
116
|
+
'list.hoverBackground': '#FAFAFA',
|
|
117
|
+
'list.hoverForeground': '#B1C7D3',
|
|
118
|
+
'list.inactiveSelectionBackground': '#CCD7DA',
|
|
119
|
+
'list.inactiveSelectionForeground': '#80CBC4',
|
|
120
|
+
'listFilterWidget.background': '#CCD7DA',
|
|
121
|
+
'listFilterWidget.noMatchesOutline': '#CCD7DA',
|
|
122
|
+
'listFilterWidget.outline': '#CCD7DA',
|
|
123
|
+
'menu.background': '#FAFAFA',
|
|
124
|
+
'menu.foreground': '#90A4AE',
|
|
125
|
+
'menu.selectionBackground': '#CCD7DA',
|
|
126
|
+
'menu.selectionBorder': '#CCD7DA',
|
|
127
|
+
'menu.selectionForeground': '#80CBC4',
|
|
128
|
+
'menu.separatorBackground': '#90A4AE',
|
|
129
|
+
'menubar.selectionBackground': '#CCD7DA',
|
|
130
|
+
'menubar.selectionBorder': '#CCD7DA',
|
|
131
|
+
'menubar.selectionForeground': '#80CBC4',
|
|
132
|
+
'notebook.focusedCellBorder': '#80CBC4',
|
|
133
|
+
'notebook.inactiveFocusedCellBorder': '#80CBC4',
|
|
134
|
+
'notificationLink.foreground': '#80CBC4',
|
|
135
|
+
'notifications.background': '#FAFAFA',
|
|
136
|
+
'notifications.foreground': '#90A4AE',
|
|
137
|
+
'panel.background': '#FAFAFA',
|
|
138
|
+
'panel.border': '#FAFAFA',
|
|
139
|
+
'panel.dropBackground': '#90A4AE',
|
|
140
|
+
'panelTitle.activeBorder': '#80CBC4',
|
|
141
|
+
'panelTitle.activeForeground': '#000000',
|
|
142
|
+
'panelTitle.inactiveForeground': '#90A4AE',
|
|
143
|
+
'peekView.border': '#000000',
|
|
144
|
+
'peekViewEditor.background': '#EEEEEE',
|
|
145
|
+
'peekViewEditor.matchHighlightBackground': '#80CBC4',
|
|
146
|
+
'peekViewEditorGutter.background': '#EEEEEE',
|
|
147
|
+
'peekViewResult.background': '#EEEEEE',
|
|
148
|
+
'peekViewResult.matchHighlightBackground': '#80CBC4',
|
|
149
|
+
'peekViewResult.selectionBackground': '#758a95',
|
|
150
|
+
'peekViewTitle.background': '#EEEEEE',
|
|
151
|
+
'peekViewTitleDescription.foreground': '#90A4AE',
|
|
152
|
+
'pickerGroup.border': '#FFFFFF',
|
|
153
|
+
'pickerGroup.foreground': '#80CBC4',
|
|
154
|
+
'progressBar.background': '#80CBC4',
|
|
155
|
+
'quickInput.background': '#FAFAFA',
|
|
156
|
+
'quickInput.foreground': '#758a95',
|
|
157
|
+
'quickInput.list.focusBackground': '#90A4AE',
|
|
158
|
+
'sash.hoverBorder': '#80CBC4',
|
|
159
|
+
'scrollbar.shadow': '#000000',
|
|
160
|
+
'scrollbarSlider.activeBackground': '#80CBC4',
|
|
161
|
+
'scrollbarSlider.background': '#90A4AE',
|
|
162
|
+
'scrollbarSlider.hoverBackground': '#90A4AE',
|
|
163
|
+
'selection.background': '#CCD7DA',
|
|
164
|
+
'settings.checkboxBackground': '#FAFAFA',
|
|
165
|
+
'settings.checkboxForeground': '#90A4AE',
|
|
166
|
+
'settings.dropdownBackground': '#FAFAFA',
|
|
167
|
+
'settings.dropdownForeground': '#90A4AE',
|
|
168
|
+
'settings.headerForeground': '#80CBC4',
|
|
169
|
+
'settings.modifiedItemIndicator': '#80CBC4',
|
|
170
|
+
'settings.numberInputBackground': '#FAFAFA',
|
|
171
|
+
'settings.numberInputForeground': '#90A4AE',
|
|
172
|
+
'settings.textInputBackground': '#FAFAFA',
|
|
173
|
+
'settings.textInputForeground': '#90A4AE',
|
|
174
|
+
'sideBar.background': '#FAFAFA',
|
|
175
|
+
'sideBar.border': '#FAFAFA',
|
|
176
|
+
'sideBar.foreground': '#758a95',
|
|
177
|
+
'sideBarSectionHeader.background': '#FAFAFA',
|
|
178
|
+
'sideBarSectionHeader.border': '#FAFAFA',
|
|
179
|
+
'sideBarSectionHeader.foreground': '#758a95',
|
|
180
|
+
'sideBarTitle.foreground': '#90A4AE',
|
|
181
|
+
'statusBar.background': '#FAFAFA',
|
|
182
|
+
'statusBar.border': '#FAFAFA',
|
|
183
|
+
'statusBar.debuggingBackground': '#9C3EDA',
|
|
184
|
+
'statusBar.debuggingForeground': '#FFFFFF',
|
|
185
|
+
'statusBar.foreground': '#7E939E',
|
|
186
|
+
'statusBar.noFolderBackground': '#FAFAFA',
|
|
187
|
+
'statusBarItem.activeBackground': '#E53935',
|
|
188
|
+
'statusBarItem.hoverBackground': '#90A4AE',
|
|
189
|
+
'statusBarItem.remoteBackground': '#80CBC4',
|
|
190
|
+
'statusBarItem.remoteForeground': '#000000',
|
|
191
|
+
'tab.activeBackground': '#FAFAFA',
|
|
192
|
+
'tab.activeBorder': '#80CBC4',
|
|
193
|
+
'tab.activeForeground': '#000000',
|
|
194
|
+
'tab.activeModifiedBorder': '#758a95',
|
|
195
|
+
'tab.border': '#FAFAFA',
|
|
196
|
+
'tab.inactiveBackground': '#FAFAFA',
|
|
197
|
+
'tab.inactiveForeground': '#758a95',
|
|
198
|
+
'tab.inactiveModifiedBorder': '#89221f',
|
|
199
|
+
'tab.unfocusedActiveBorder': '#90A4AE',
|
|
200
|
+
'tab.unfocusedActiveForeground': '#90A4AE',
|
|
201
|
+
'tab.unfocusedActiveModifiedBorder': '#b72d2a',
|
|
202
|
+
'tab.unfocusedInactiveModifiedBorder': '#89221f',
|
|
203
|
+
'terminal.ansiBlack': '#000000',
|
|
204
|
+
'terminal.ansiBlue': '#6182B8',
|
|
205
|
+
'terminal.ansiBrightBlack': '#90A4AE',
|
|
206
|
+
'terminal.ansiBrightBlue': '#6182B8',
|
|
207
|
+
'terminal.ansiBrightCyan': '#39ADB5',
|
|
208
|
+
'terminal.ansiBrightGreen': '#91B859',
|
|
209
|
+
'terminal.ansiBrightMagenta': '#9C3EDA',
|
|
210
|
+
'terminal.ansiBrightRed': '#E53935',
|
|
211
|
+
'terminal.ansiBrightWhite': '#FFFFFF',
|
|
212
|
+
'terminal.ansiBrightYellow': '#E2931D',
|
|
213
|
+
'terminal.ansiCyan': '#39ADB5',
|
|
214
|
+
'terminal.ansiGreen': '#91B859',
|
|
215
|
+
'terminal.ansiMagenta': '#9C3EDA',
|
|
216
|
+
'terminal.ansiRed': '#E53935',
|
|
217
|
+
'terminal.ansiWhite': '#FFFFFF',
|
|
218
|
+
'terminal.ansiYellow': '#E2931D',
|
|
219
|
+
'terminalCursor.background': '#000000',
|
|
220
|
+
'terminalCursor.foreground': '#E2931D',
|
|
221
|
+
'textLink.activeForeground': '#90A4AE',
|
|
222
|
+
'textLink.foreground': '#80CBC4',
|
|
223
|
+
'titleBar.activeBackground': '#FAFAFA',
|
|
224
|
+
'titleBar.activeForeground': '#90A4AE',
|
|
225
|
+
'titleBar.border': '#FAFAFA',
|
|
226
|
+
'titleBar.inactiveBackground': '#FAFAFA',
|
|
227
|
+
'titleBar.inactiveForeground': '#758a95',
|
|
228
|
+
'tree.indentGuidesStroke': '#B0BEC5',
|
|
229
|
+
'widget.shadow': '#000000',
|
|
230
|
+
},
|
|
231
|
+
displayName: 'Material Theme Lighter',
|
|
232
|
+
fg: '#90A4AE',
|
|
233
|
+
name: 'material-theme-lighter',
|
|
234
|
+
semanticHighlighting: true,
|
|
235
|
+
settings: [
|
|
236
|
+
{
|
|
237
|
+
settings: {
|
|
238
|
+
background: '#FAFAFA',
|
|
239
|
+
foreground: '#90A4AE',
|
|
240
|
+
},
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
scope: 'string',
|
|
244
|
+
settings: {
|
|
245
|
+
foreground: '#91B859',
|
|
246
|
+
},
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
scope: 'punctuation, constant.other.symbol',
|
|
250
|
+
settings: {
|
|
251
|
+
foreground: '#39ADB5',
|
|
252
|
+
},
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
scope: 'constant.character.escape, text.html constant.character.entity.named',
|
|
256
|
+
settings: {
|
|
257
|
+
foreground: '#90A4AE',
|
|
258
|
+
},
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
scope: 'constant.language.boolean',
|
|
262
|
+
settings: {
|
|
263
|
+
foreground: '#FF5370',
|
|
264
|
+
},
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
scope: 'constant.numeric',
|
|
268
|
+
settings: {
|
|
269
|
+
foreground: '#F76D47',
|
|
270
|
+
},
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
scope:
|
|
274
|
+
'variable, variable.parameter, support.variable, variable.language, support.constant, meta.definition.variable entity.name.function, meta.function-call.arguments',
|
|
275
|
+
settings: {
|
|
276
|
+
foreground: '#90A4AE',
|
|
277
|
+
},
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
scope: 'keyword.other',
|
|
281
|
+
settings: {
|
|
282
|
+
foreground: '#F76D47',
|
|
283
|
+
},
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
scope: 'keyword, modifier, variable.language.this, support.type.object, constant.language',
|
|
287
|
+
settings: {
|
|
288
|
+
foreground: '#39ADB5',
|
|
289
|
+
},
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
scope: 'entity.name.function, support.function',
|
|
293
|
+
settings: {
|
|
294
|
+
foreground: '#6182B8',
|
|
295
|
+
},
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
scope: 'storage.type, storage.modifier, storage.control',
|
|
299
|
+
settings: {
|
|
300
|
+
foreground: '#9C3EDA',
|
|
301
|
+
},
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
scope: 'support.module, support.node',
|
|
305
|
+
settings: {
|
|
306
|
+
fontStyle: 'italic',
|
|
307
|
+
foreground: '#E53935',
|
|
308
|
+
},
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
scope: 'support.type, constant.other.key',
|
|
312
|
+
settings: {
|
|
313
|
+
foreground: '#E2931D',
|
|
314
|
+
},
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
scope: 'entity.name.type, entity.other.inherited-class, entity.other',
|
|
318
|
+
settings: {
|
|
319
|
+
foreground: '#E2931D',
|
|
320
|
+
},
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
scope: 'comment',
|
|
324
|
+
settings: {
|
|
325
|
+
fontStyle: 'italic',
|
|
326
|
+
foreground: '#90A4AE',
|
|
327
|
+
},
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
scope: 'comment punctuation.definition.comment, string.quoted.docstring',
|
|
331
|
+
settings: {
|
|
332
|
+
fontStyle: 'italic',
|
|
333
|
+
foreground: '#90A4AE',
|
|
334
|
+
},
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
scope: 'punctuation',
|
|
338
|
+
settings: {
|
|
339
|
+
foreground: '#39ADB5',
|
|
340
|
+
},
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
scope: 'entity.name, entity.name.type.class, support.type, support.class, meta.use',
|
|
344
|
+
settings: {
|
|
345
|
+
foreground: '#E2931D',
|
|
346
|
+
},
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
scope: 'variable.object.property, meta.field.declaration entity.name.function',
|
|
350
|
+
settings: {
|
|
351
|
+
foreground: '#E53935',
|
|
352
|
+
},
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
scope: 'meta.definition.method entity.name.function',
|
|
356
|
+
settings: {
|
|
357
|
+
foreground: '#E53935',
|
|
358
|
+
},
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
scope: 'meta.function entity.name.function',
|
|
362
|
+
settings: {
|
|
363
|
+
foreground: '#6182B8',
|
|
364
|
+
},
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
scope:
|
|
368
|
+
'template.expression.begin, template.expression.end, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end',
|
|
369
|
+
settings: {
|
|
370
|
+
foreground: '#39ADB5',
|
|
371
|
+
},
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
scope: 'meta.embedded, source.groovy.embedded, meta.template.expression',
|
|
375
|
+
settings: {
|
|
376
|
+
foreground: '#90A4AE',
|
|
377
|
+
},
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
scope: 'entity.name.tag.yaml',
|
|
381
|
+
settings: {
|
|
382
|
+
foreground: '#E53935',
|
|
383
|
+
},
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
scope:
|
|
387
|
+
'meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json',
|
|
388
|
+
settings: {
|
|
389
|
+
foreground: '#E53935',
|
|
390
|
+
},
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
scope: 'constant.language.json',
|
|
394
|
+
settings: {
|
|
395
|
+
foreground: '#39ADB5',
|
|
396
|
+
},
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
scope: 'entity.other.attribute-name.class',
|
|
400
|
+
settings: {
|
|
401
|
+
foreground: '#E2931D',
|
|
402
|
+
},
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
scope: 'entity.other.attribute-name.id',
|
|
406
|
+
settings: {
|
|
407
|
+
foreground: '#F76D47',
|
|
408
|
+
},
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
scope: 'source.css entity.name.tag',
|
|
412
|
+
settings: {
|
|
413
|
+
foreground: '#E2931D',
|
|
414
|
+
},
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
scope: 'support.type.property-name.css',
|
|
418
|
+
settings: {
|
|
419
|
+
foreground: '#8796B0',
|
|
420
|
+
},
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
scope: 'meta.tag, punctuation.definition.tag',
|
|
424
|
+
settings: {
|
|
425
|
+
foreground: '#39ADB5',
|
|
426
|
+
},
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
scope: 'entity.name.tag',
|
|
430
|
+
settings: {
|
|
431
|
+
foreground: '#E53935',
|
|
432
|
+
},
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
scope: 'entity.other.attribute-name',
|
|
436
|
+
settings: {
|
|
437
|
+
foreground: '#9C3EDA',
|
|
438
|
+
},
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
scope: 'punctuation.definition.entity.html',
|
|
442
|
+
settings: {
|
|
443
|
+
foreground: '#90A4AE',
|
|
444
|
+
},
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
scope: 'markup.heading',
|
|
448
|
+
settings: {
|
|
449
|
+
foreground: '#39ADB5',
|
|
450
|
+
},
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
scope: 'text.html.markdown meta.link.inline, meta.link.reference',
|
|
454
|
+
settings: {
|
|
455
|
+
foreground: '#E53935',
|
|
456
|
+
},
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
scope: 'text.html.markdown beginning.punctuation.definition.list',
|
|
460
|
+
settings: {
|
|
461
|
+
foreground: '#39ADB5',
|
|
462
|
+
},
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
scope: 'markup.italic',
|
|
466
|
+
settings: {
|
|
467
|
+
fontStyle: 'italic',
|
|
468
|
+
foreground: '#E53935',
|
|
469
|
+
},
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
scope: 'markup.bold',
|
|
473
|
+
settings: {
|
|
474
|
+
fontStyle: 'bold',
|
|
475
|
+
foreground: '#E53935',
|
|
476
|
+
},
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
scope: 'markup.bold markup.italic, markup.italic markup.bold',
|
|
480
|
+
settings: {
|
|
481
|
+
fontStyle: 'italic bold',
|
|
482
|
+
foreground: '#E53935',
|
|
483
|
+
},
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
scope: 'markup.fenced_code.block.markdown punctuation.definition.markdown',
|
|
487
|
+
settings: {
|
|
488
|
+
foreground: '#91B859',
|
|
489
|
+
},
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
scope: 'markup.inline.raw.string.markdown',
|
|
493
|
+
settings: {
|
|
494
|
+
foreground: '#91B859',
|
|
495
|
+
},
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
scope: 'keyword.other.definition.ini',
|
|
499
|
+
settings: {
|
|
500
|
+
foreground: '#E53935',
|
|
501
|
+
},
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
scope: 'entity.name.section.group-title.ini',
|
|
505
|
+
settings: {
|
|
506
|
+
foreground: '#39ADB5',
|
|
507
|
+
},
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
scope: 'source.cs meta.class.identifier storage.type',
|
|
511
|
+
settings: {
|
|
512
|
+
foreground: '#E2931D',
|
|
513
|
+
},
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
scope: 'source.cs meta.method.identifier entity.name.function',
|
|
517
|
+
settings: {
|
|
518
|
+
foreground: '#E53935',
|
|
519
|
+
},
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
scope: 'source.cs meta.method-call meta.method, source.cs entity.name.function',
|
|
523
|
+
settings: {
|
|
524
|
+
foreground: '#6182B8',
|
|
525
|
+
},
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
scope: 'source.cs storage.type',
|
|
529
|
+
settings: {
|
|
530
|
+
foreground: '#E2931D',
|
|
531
|
+
},
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
scope: 'source.cs meta.method.return-type',
|
|
535
|
+
settings: {
|
|
536
|
+
foreground: '#E2931D',
|
|
537
|
+
},
|
|
538
|
+
},
|
|
539
|
+
{
|
|
540
|
+
scope: 'source.cs meta.preprocessor',
|
|
541
|
+
settings: {
|
|
542
|
+
foreground: '#90A4AE',
|
|
543
|
+
},
|
|
544
|
+
},
|
|
545
|
+
{
|
|
546
|
+
scope: 'source.cs entity.name.type.namespace',
|
|
547
|
+
settings: {
|
|
548
|
+
foreground: '#90A4AE',
|
|
549
|
+
},
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
scope: 'meta.jsx.children, SXNested',
|
|
553
|
+
settings: {
|
|
554
|
+
foreground: '#90A4AE',
|
|
555
|
+
},
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
scope: 'support.class.component',
|
|
559
|
+
settings: {
|
|
560
|
+
foreground: '#E2931D',
|
|
561
|
+
},
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
scope: 'source.cpp meta.block variable.other',
|
|
565
|
+
settings: {
|
|
566
|
+
foreground: '#90A4AE',
|
|
567
|
+
},
|
|
568
|
+
},
|
|
569
|
+
{
|
|
570
|
+
scope: 'source.python meta.member.access.python',
|
|
571
|
+
settings: {
|
|
572
|
+
foreground: '#E53935',
|
|
573
|
+
},
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
scope: 'source.python meta.function-call.python, meta.function-call.arguments',
|
|
577
|
+
settings: {
|
|
578
|
+
foreground: '#6182B8',
|
|
579
|
+
},
|
|
580
|
+
},
|
|
581
|
+
{
|
|
582
|
+
scope: 'meta.block',
|
|
583
|
+
settings: {
|
|
584
|
+
foreground: '#E53935',
|
|
585
|
+
},
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
scope: 'entity.name.function.call',
|
|
589
|
+
settings: {
|
|
590
|
+
foreground: '#6182B8',
|
|
591
|
+
},
|
|
592
|
+
},
|
|
593
|
+
{
|
|
594
|
+
scope: 'source.php support.other.namespace, source.php meta.use support.class',
|
|
595
|
+
settings: {
|
|
596
|
+
foreground: '#90A4AE',
|
|
597
|
+
},
|
|
598
|
+
},
|
|
599
|
+
{
|
|
600
|
+
scope: 'constant.keyword',
|
|
601
|
+
settings: {
|
|
602
|
+
fontStyle: 'italic',
|
|
603
|
+
foreground: '#39ADB5',
|
|
604
|
+
},
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
scope: 'entity.name.function',
|
|
608
|
+
settings: {
|
|
609
|
+
foreground: '#6182B8',
|
|
610
|
+
},
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
settings: {
|
|
614
|
+
background: '#FAFAFA',
|
|
615
|
+
foreground: '#90A4AE',
|
|
616
|
+
},
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
scope: ['constant.other.placeholder'],
|
|
620
|
+
settings: {
|
|
621
|
+
foreground: '#E53935',
|
|
622
|
+
},
|
|
623
|
+
},
|
|
624
|
+
{
|
|
625
|
+
scope: ['markup.deleted'],
|
|
626
|
+
settings: {
|
|
627
|
+
foreground: '#E53935',
|
|
628
|
+
},
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
scope: ['markup.inserted'],
|
|
632
|
+
settings: {
|
|
633
|
+
foreground: '#91B859',
|
|
634
|
+
},
|
|
635
|
+
},
|
|
636
|
+
{
|
|
637
|
+
scope: ['markup.underline'],
|
|
638
|
+
settings: {
|
|
639
|
+
fontStyle: 'underline',
|
|
640
|
+
},
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
scope: ['keyword.control'],
|
|
644
|
+
settings: {
|
|
645
|
+
fontStyle: 'italic',
|
|
646
|
+
foreground: '#39ADB5',
|
|
647
|
+
},
|
|
648
|
+
},
|
|
649
|
+
{
|
|
650
|
+
scope: ['variable.parameter'],
|
|
651
|
+
settings: {
|
|
652
|
+
fontStyle: 'italic',
|
|
653
|
+
},
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
scope: ['variable.parameter.function.language.special.self.python'],
|
|
657
|
+
settings: {
|
|
658
|
+
fontStyle: 'italic',
|
|
659
|
+
foreground: '#E53935',
|
|
660
|
+
},
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
scope: ['constant.character.format.placeholder.other.python'],
|
|
664
|
+
settings: {
|
|
665
|
+
foreground: '#F76D47',
|
|
666
|
+
},
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
scope: ['markup.quote'],
|
|
670
|
+
settings: {
|
|
671
|
+
fontStyle: 'italic',
|
|
672
|
+
foreground: '#39ADB5',
|
|
673
|
+
},
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
scope: ['markup.fenced_code.block'],
|
|
677
|
+
settings: {
|
|
678
|
+
foreground: '#90A4AE90',
|
|
679
|
+
},
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
scope: ['punctuation.definition.quote'],
|
|
683
|
+
settings: {
|
|
684
|
+
foreground: '#FF5370',
|
|
685
|
+
},
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
scope: ['meta.structure.dictionary.json support.type.property-name.json'],
|
|
689
|
+
settings: {
|
|
690
|
+
foreground: '#9C3EDA',
|
|
691
|
+
},
|
|
692
|
+
},
|
|
693
|
+
{
|
|
694
|
+
scope: [
|
|
695
|
+
'meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json',
|
|
696
|
+
],
|
|
697
|
+
settings: {
|
|
698
|
+
foreground: '#E2931D',
|
|
699
|
+
},
|
|
700
|
+
},
|
|
701
|
+
{
|
|
702
|
+
scope: [
|
|
703
|
+
'meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json',
|
|
704
|
+
],
|
|
705
|
+
settings: {
|
|
706
|
+
foreground: '#F76D47',
|
|
707
|
+
},
|
|
708
|
+
},
|
|
709
|
+
{
|
|
710
|
+
scope: [
|
|
711
|
+
'meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json',
|
|
712
|
+
],
|
|
713
|
+
settings: {
|
|
714
|
+
foreground: '#E53935',
|
|
715
|
+
},
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
scope: [
|
|
719
|
+
'meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json',
|
|
720
|
+
],
|
|
721
|
+
settings: {
|
|
722
|
+
foreground: '#916b53',
|
|
723
|
+
},
|
|
724
|
+
},
|
|
725
|
+
{
|
|
726
|
+
scope: [
|
|
727
|
+
'meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json',
|
|
728
|
+
],
|
|
729
|
+
settings: {
|
|
730
|
+
foreground: '#6182B8',
|
|
731
|
+
},
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
scope: [
|
|
735
|
+
'meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json',
|
|
736
|
+
],
|
|
737
|
+
settings: {
|
|
738
|
+
foreground: '#FF5370',
|
|
739
|
+
},
|
|
740
|
+
},
|
|
741
|
+
{
|
|
742
|
+
scope: [
|
|
743
|
+
'meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json',
|
|
744
|
+
],
|
|
745
|
+
settings: {
|
|
746
|
+
foreground: '#9C3EDA',
|
|
747
|
+
},
|
|
748
|
+
},
|
|
749
|
+
{
|
|
750
|
+
scope: [
|
|
751
|
+
'meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json',
|
|
752
|
+
],
|
|
753
|
+
settings: {
|
|
754
|
+
foreground: '#91B859',
|
|
755
|
+
},
|
|
756
|
+
},
|
|
757
|
+
],
|
|
758
|
+
type: 'light',
|
|
759
|
+
}
|