@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,326 @@
|
|
|
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: '#1f1f1f',
|
|
8
|
+
colors: {
|
|
9
|
+
'activityBar.background': '#1A1A1A',
|
|
10
|
+
'activityBar.foreground': '#7D7D7D',
|
|
11
|
+
'activityBarBadge.background': '#383838',
|
|
12
|
+
'badge.background': '#383838',
|
|
13
|
+
'badge.foreground': '#C1C1C1',
|
|
14
|
+
'button.background': '#333',
|
|
15
|
+
'contrastBorder': '#525252',
|
|
16
|
+
'debugIcon.breakpointCurrentStackframeForeground': '#79b8ff',
|
|
17
|
+
'debugIcon.breakpointDisabledForeground': '#848484',
|
|
18
|
+
'debugIcon.breakpointForeground': '#FF7A84',
|
|
19
|
+
'debugIcon.breakpointStackframeForeground': '#79b8ff',
|
|
20
|
+
'debugIcon.breakpointUnverifiedForeground': '#848484',
|
|
21
|
+
'debugIcon.continueForeground': '#FF7A84',
|
|
22
|
+
'debugIcon.disconnectForeground': '#FF7A84',
|
|
23
|
+
'debugIcon.pauseForeground': '#FF7A84',
|
|
24
|
+
'debugIcon.restartForeground': '#79b8ff',
|
|
25
|
+
'debugIcon.startForeground': '#79b8ff',
|
|
26
|
+
'debugIcon.stepBackForeground': '#FF7A84',
|
|
27
|
+
'debugIcon.stepIntoForeground': '#FF7A84',
|
|
28
|
+
'debugIcon.stepOutForeground': '#FF7A84',
|
|
29
|
+
'debugIcon.stepOverForeground': '#FF7A84',
|
|
30
|
+
'debugIcon.stopForeground': '#79b8ff',
|
|
31
|
+
'descriptionForeground': '#727272',
|
|
32
|
+
'diffEditor.insertedLineBackground': '#32403e',
|
|
33
|
+
'diffEditor.insertedTextBackground': '#3a632a',
|
|
34
|
+
'diffEditor.removedLineBackground': '#453238',
|
|
35
|
+
'diffEditor.removedTextBackground': '#880638',
|
|
36
|
+
'editor.background': '#1f1f1f',
|
|
37
|
+
'editor.foreground': '#b392f0',
|
|
38
|
+
'editor.lineHighlightBackground': '#272727',
|
|
39
|
+
'editor.lineHighlightBorder': '#303030',
|
|
40
|
+
'editor.selectionBackground': '#393939',
|
|
41
|
+
'editorCursor.foreground': '#b392f0',
|
|
42
|
+
'editorError.foreground': '#f38ba8',
|
|
43
|
+
'editorGroup.border': '#454545',
|
|
44
|
+
'editorGroupHeader.tabsBackground': '#1A1A1A',
|
|
45
|
+
'editorGroupHeader.tabsBorder': '#1A1A1A',
|
|
46
|
+
'editorIndentGuide.activeBackground': '#383838',
|
|
47
|
+
'editorIndentGuide.background': '#2A2A2A',
|
|
48
|
+
'editorLineNumber.foreground': '#727272',
|
|
49
|
+
'editorRuler.foreground': '#2A2A2A',
|
|
50
|
+
'editorSuggestWidget.background': '#1A1A1A',
|
|
51
|
+
'editorWarning.foreground': '#f6c177',
|
|
52
|
+
'editorWidget.background': '#1A1A1A',
|
|
53
|
+
'errorForeground': '#f38ba8',
|
|
54
|
+
'focusBorder': '#444',
|
|
55
|
+
'foreground': '#888888',
|
|
56
|
+
'gitDecoration.addedResourceForeground': '#8bd5ca',
|
|
57
|
+
'gitDecoration.deletedResourceForeground': '#f38ba8',
|
|
58
|
+
'gitDecoration.ignoredResourceForeground': '#444444',
|
|
59
|
+
'gitDecoration.modifiedResourceForeground': '#f6c177',
|
|
60
|
+
'gitDecoration.untrackedResourceForeground': '#8bd5ca',
|
|
61
|
+
'input.background': '#2A2A2A',
|
|
62
|
+
'input.border': '#444',
|
|
63
|
+
'input.foreground': '#E0E0E0',
|
|
64
|
+
'inputOption.activeBackground': '#3a3a3a',
|
|
65
|
+
'list.activeSelectionBackground': '#212121',
|
|
66
|
+
'list.activeSelectionForeground': '#F5F5F5',
|
|
67
|
+
'list.focusBackground': '#292929',
|
|
68
|
+
'list.highlightForeground': '#EAEAEA',
|
|
69
|
+
'list.hoverBackground': '#262626',
|
|
70
|
+
'list.hoverForeground': '#9E9E9E',
|
|
71
|
+
'list.inactiveSelectionBackground': '#212121',
|
|
72
|
+
'list.inactiveSelectionForeground': '#F5F5F5',
|
|
73
|
+
'panel.background': '#1f1f1f',
|
|
74
|
+
'panel.border': '#454545',
|
|
75
|
+
'panelTitle.activeBorder': '#1f1f1f',
|
|
76
|
+
'panelTitle.activeForeground': '#FAFAFA',
|
|
77
|
+
'panelTitle.inactiveForeground': '#484848',
|
|
78
|
+
'peekView.border': '#444',
|
|
79
|
+
'peekViewEditor.background': '#242424',
|
|
80
|
+
'pickerGroup.border': '#363636',
|
|
81
|
+
'pickerGroup.foreground': '#EAEAEA',
|
|
82
|
+
'progressBar.background': '#FAFAFA',
|
|
83
|
+
'scrollbar.shadow': '#1f1f1f',
|
|
84
|
+
'sideBar.background': '#1A1A1A',
|
|
85
|
+
'sideBar.foreground': '#888888',
|
|
86
|
+
'sideBarSectionHeader.background': '#202020',
|
|
87
|
+
'sideBarSectionHeader.foreground': '#7f6aa7',
|
|
88
|
+
'statusBar.background': '#1A1A1A',
|
|
89
|
+
'statusBar.debuggingBackground': '#1A1A1A',
|
|
90
|
+
'statusBar.foreground': '#7E7E7E',
|
|
91
|
+
'statusBar.noFolderBackground': '#1A1A1A',
|
|
92
|
+
'statusBarItem.prominentBackground': '#fafafa',
|
|
93
|
+
'statusBarItem.remoteBackground': '#1a1a1a',
|
|
94
|
+
'statusBarItem.remoteForeground': '#7E7E7E',
|
|
95
|
+
'symbolIcon.classForeground': '#FF9800',
|
|
96
|
+
'symbolIcon.constructorForeground': '#b392f0',
|
|
97
|
+
'symbolIcon.enumeratorForeground': '#FF9800',
|
|
98
|
+
'symbolIcon.enumeratorMemberForeground': '#79b8ff',
|
|
99
|
+
'symbolIcon.eventForeground': '#FF9800',
|
|
100
|
+
'symbolIcon.fieldForeground': '#79b8ff',
|
|
101
|
+
'symbolIcon.functionForeground': '#b392f0',
|
|
102
|
+
'symbolIcon.interfaceForeground': '#79b8ff',
|
|
103
|
+
'symbolIcon.methodForeground': '#b392f0',
|
|
104
|
+
'symbolIcon.variableForeground': '#79b8ff',
|
|
105
|
+
'tab.activeBorder': '#1e1e1e',
|
|
106
|
+
'tab.activeForeground': '#FAFAFA',
|
|
107
|
+
'tab.border': '#1A1A1A',
|
|
108
|
+
'tab.inactiveBackground': '#1A1A1A',
|
|
109
|
+
'tab.inactiveForeground': '#727272',
|
|
110
|
+
'terminal.ansiBlue': '#CCC',
|
|
111
|
+
'terminal.ansiBrightBlack': '#5c5c5c',
|
|
112
|
+
'terminal.ansiCyan': '#CCC',
|
|
113
|
+
'terminal.ansiGreen': '#8bd5ca',
|
|
114
|
+
'terminal.ansiMagenta': '#fafafa',
|
|
115
|
+
'terminal.ansiRed': '#f38ba8',
|
|
116
|
+
'terminal.ansiYellow': '#f6c177',
|
|
117
|
+
'textLink.activeForeground': '#fafafa',
|
|
118
|
+
'textLink.foreground': '#CCC',
|
|
119
|
+
'titleBar.activeBackground': '#1A1A1A',
|
|
120
|
+
'titleBar.border': '#000000',
|
|
121
|
+
},
|
|
122
|
+
displayName: 'Min Dark',
|
|
123
|
+
fg: '#b392f0',
|
|
124
|
+
name: 'min-dark',
|
|
125
|
+
semanticHighlighting: true,
|
|
126
|
+
settings: [
|
|
127
|
+
{
|
|
128
|
+
settings: {
|
|
129
|
+
foreground: '#b392f0',
|
|
130
|
+
},
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
scope: [
|
|
134
|
+
'support.function',
|
|
135
|
+
'keyword.operator.accessor',
|
|
136
|
+
'meta.group.braces.round.function.arguments',
|
|
137
|
+
'meta.template.expression',
|
|
138
|
+
'markup.fenced_code meta.embedded.block',
|
|
139
|
+
],
|
|
140
|
+
settings: {
|
|
141
|
+
foreground: '#b392f0',
|
|
142
|
+
},
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
scope: 'emphasis',
|
|
146
|
+
settings: {
|
|
147
|
+
fontStyle: 'italic',
|
|
148
|
+
},
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
scope: ['strong', 'markup.heading.markdown', 'markup.bold.markdown'],
|
|
152
|
+
settings: {
|
|
153
|
+
fontStyle: 'bold',
|
|
154
|
+
foreground: '#FF7A84',
|
|
155
|
+
},
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
scope: ['markup.italic.markdown'],
|
|
159
|
+
settings: {
|
|
160
|
+
fontStyle: 'italic',
|
|
161
|
+
},
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
scope: 'meta.link.inline.markdown',
|
|
165
|
+
settings: {
|
|
166
|
+
fontStyle: 'underline',
|
|
167
|
+
foreground: '#1976D2',
|
|
168
|
+
},
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
scope: ['string', 'markup.fenced_code', 'markup.inline'],
|
|
172
|
+
settings: {
|
|
173
|
+
foreground: '#9db1c5',
|
|
174
|
+
},
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
scope: ['comment', 'string.quoted.docstring.multi'],
|
|
178
|
+
settings: {
|
|
179
|
+
foreground: '#6b737c',
|
|
180
|
+
},
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
scope: [
|
|
184
|
+
'constant.language',
|
|
185
|
+
'variable.language.this',
|
|
186
|
+
'variable.other.object',
|
|
187
|
+
'variable.other.class',
|
|
188
|
+
'variable.other.constant',
|
|
189
|
+
'meta.property-name',
|
|
190
|
+
'support',
|
|
191
|
+
'string.other.link.title.markdown',
|
|
192
|
+
],
|
|
193
|
+
settings: {
|
|
194
|
+
foreground: '#79b8ff',
|
|
195
|
+
},
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
scope: [
|
|
199
|
+
'constant.numeric',
|
|
200
|
+
'constant.other.placeholder',
|
|
201
|
+
'constant.character.format.placeholder',
|
|
202
|
+
'meta.property-value',
|
|
203
|
+
'keyword.other.unit',
|
|
204
|
+
'keyword.other.template',
|
|
205
|
+
'entity.name.tag.yaml',
|
|
206
|
+
'entity.other.attribute-name',
|
|
207
|
+
'support.type.property-name.json',
|
|
208
|
+
],
|
|
209
|
+
settings: {
|
|
210
|
+
foreground: '#f8f8f8',
|
|
211
|
+
},
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
scope: [
|
|
215
|
+
'keyword',
|
|
216
|
+
'storage.modifier',
|
|
217
|
+
'storage.type',
|
|
218
|
+
'storage.control.clojure',
|
|
219
|
+
'entity.name.function.clojure',
|
|
220
|
+
'support.function.node',
|
|
221
|
+
'punctuation.separator.key-value',
|
|
222
|
+
'punctuation.definition.template-expression',
|
|
223
|
+
],
|
|
224
|
+
settings: {
|
|
225
|
+
foreground: '#f97583',
|
|
226
|
+
},
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
scope: 'variable.parameter.function',
|
|
230
|
+
settings: {
|
|
231
|
+
foreground: '#FF9800',
|
|
232
|
+
},
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
scope: [
|
|
236
|
+
'entity.name.type',
|
|
237
|
+
'entity.other.inherited-class',
|
|
238
|
+
'meta.function-call',
|
|
239
|
+
'meta.instance.constructor',
|
|
240
|
+
'entity.other.attribute-name',
|
|
241
|
+
'entity.name.function',
|
|
242
|
+
'constant.keyword.clojure',
|
|
243
|
+
],
|
|
244
|
+
settings: {
|
|
245
|
+
foreground: '#b392f0',
|
|
246
|
+
},
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
scope: [
|
|
250
|
+
'entity.name.tag',
|
|
251
|
+
'string.quoted',
|
|
252
|
+
'string.regexp',
|
|
253
|
+
'string.interpolated',
|
|
254
|
+
'string.template',
|
|
255
|
+
'string.unquoted.plain.out.yaml',
|
|
256
|
+
'keyword.other.template',
|
|
257
|
+
],
|
|
258
|
+
settings: {
|
|
259
|
+
foreground: '#ffab70',
|
|
260
|
+
},
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
scope: 'token.info-token',
|
|
264
|
+
settings: {
|
|
265
|
+
foreground: '#316bcd',
|
|
266
|
+
},
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
scope: 'token.warn-token',
|
|
270
|
+
settings: {
|
|
271
|
+
foreground: '#cd9731',
|
|
272
|
+
},
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
scope: 'token.error-token',
|
|
276
|
+
settings: {
|
|
277
|
+
foreground: '#cd3131',
|
|
278
|
+
},
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
scope: 'token.debug-token',
|
|
282
|
+
settings: {
|
|
283
|
+
foreground: '#800080',
|
|
284
|
+
},
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
scope: [
|
|
288
|
+
'punctuation.definition.arguments',
|
|
289
|
+
'punctuation.definition.dict',
|
|
290
|
+
'punctuation.separator',
|
|
291
|
+
'meta.function-call.arguments',
|
|
292
|
+
],
|
|
293
|
+
settings: {
|
|
294
|
+
foreground: '#bbbbbb',
|
|
295
|
+
},
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
scope: 'markup.underline.link',
|
|
299
|
+
settings: {
|
|
300
|
+
foreground: '#ffab70',
|
|
301
|
+
},
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
scope: ['beginning.punctuation.definition.list.markdown'],
|
|
305
|
+
settings: {
|
|
306
|
+
foreground: '#FF7A84',
|
|
307
|
+
},
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
scope: 'punctuation.definition.metadata.markdown',
|
|
311
|
+
settings: {
|
|
312
|
+
foreground: '#ffab70',
|
|
313
|
+
},
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
scope: [
|
|
317
|
+
'punctuation.definition.string.begin.markdown',
|
|
318
|
+
'punctuation.definition.string.end.markdown',
|
|
319
|
+
],
|
|
320
|
+
settings: {
|
|
321
|
+
foreground: '#79b8ff',
|
|
322
|
+
},
|
|
323
|
+
},
|
|
324
|
+
],
|
|
325
|
+
type: 'dark',
|
|
326
|
+
}
|
|
@@ -0,0 +1,331 @@
|
|
|
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: '#ffffff',
|
|
8
|
+
colors: {
|
|
9
|
+
'activityBar.background': '#f6f6f6',
|
|
10
|
+
'activityBar.foreground': '#9E9E9E',
|
|
11
|
+
'activityBarBadge.background': '#616161',
|
|
12
|
+
'badge.background': '#E0E0E0',
|
|
13
|
+
'badge.foreground': '#616161',
|
|
14
|
+
'button.background': '#757575',
|
|
15
|
+
'button.hoverBackground': '#616161',
|
|
16
|
+
'contrastBorder': '#ffffff',
|
|
17
|
+
'debugIcon.breakpointCurrentStackframeForeground': '#1976D2',
|
|
18
|
+
'debugIcon.breakpointDisabledForeground': '#848484',
|
|
19
|
+
'debugIcon.breakpointForeground': '#D32F2F',
|
|
20
|
+
'debugIcon.breakpointStackframeForeground': '#1976D2',
|
|
21
|
+
'debugIcon.continueForeground': '#6f42c1',
|
|
22
|
+
'debugIcon.disconnectForeground': '#6f42c1',
|
|
23
|
+
'debugIcon.pauseForeground': '#6f42c1',
|
|
24
|
+
'debugIcon.restartForeground': '#1976D2',
|
|
25
|
+
'debugIcon.startForeground': '#1976D2',
|
|
26
|
+
'debugIcon.stepBackForeground': '#6f42c1',
|
|
27
|
+
'debugIcon.stepIntoForeground': '#6f42c1',
|
|
28
|
+
'debugIcon.stepOutForeground': '#6f42c1',
|
|
29
|
+
'debugIcon.stepOverForeground': '#6f42c1',
|
|
30
|
+
'debugIcon.stopForeground': '#1976D2',
|
|
31
|
+
'descriptionForeground': '#CCC',
|
|
32
|
+
'diffEditor.insertedLineBackground': '#e7f6d1',
|
|
33
|
+
'diffEditor.insertedTextBackground': '#b7e7a4',
|
|
34
|
+
'diffEditor.removedLineBackground': '#f7dada',
|
|
35
|
+
'diffEditor.removedTextBackground': '#e597af',
|
|
36
|
+
'editor.background': '#ffffff',
|
|
37
|
+
'editor.foreground': '#212121',
|
|
38
|
+
'editor.lineHighlightBackground': '#ffffff',
|
|
39
|
+
'editor.lineHighlightBorder': '#f2f2f2',
|
|
40
|
+
'editor.selectionBackground': '#ffffff',
|
|
41
|
+
'editorBracketMatch.background': '#E7F3FF',
|
|
42
|
+
'editorBracketMatch.border': '#c8e1ff',
|
|
43
|
+
'editorCursor.foreground': '#212121',
|
|
44
|
+
'editorError.foreground': '#D32F2F',
|
|
45
|
+
'editorGroup.border': '#f4f4f4',
|
|
46
|
+
'editorGroupHeader.tabsBackground': '#f6f6f6',
|
|
47
|
+
'editorGroupHeader.tabsBorder': '#fff',
|
|
48
|
+
'editorIndentGuide.background': '#EEE',
|
|
49
|
+
'editorLineNumber.activeForeground': '#757575',
|
|
50
|
+
'editorLineNumber.foreground': '#CCC',
|
|
51
|
+
'editorSuggestWidget.background': '#F3F3F3',
|
|
52
|
+
'editorWarning.foreground': '#f29718',
|
|
53
|
+
'editorWidget.background': '#f6f6f6',
|
|
54
|
+
'errorForeground': '#D32F2F',
|
|
55
|
+
'extensionButton.prominentBackground': '#000000',
|
|
56
|
+
'extensionButton.prominentHoverBackground': '#000000',
|
|
57
|
+
'focusBorder': '#D0D0D0',
|
|
58
|
+
'foreground': '#757575',
|
|
59
|
+
'gitDecoration.addedResourceForeground': '#77cc00',
|
|
60
|
+
'gitDecoration.deletedResourceForeground': '#D32F2F',
|
|
61
|
+
'gitDecoration.ignoredResourceForeground': '#AAAAAA',
|
|
62
|
+
'gitDecoration.modifiedResourceForeground': '#f29718',
|
|
63
|
+
'gitDecoration.untrackedResourceForeground': '#77cc00',
|
|
64
|
+
'input.background': '#f5f5f5',
|
|
65
|
+
'input.border': '#E9E9E9',
|
|
66
|
+
'input.foreground': '#212121',
|
|
67
|
+
'inputOption.activeBackground': '#EDEDED',
|
|
68
|
+
'list.activeSelectionBackground': '#EEE',
|
|
69
|
+
'list.activeSelectionForeground': '#212121',
|
|
70
|
+
'list.focusBackground': '#ddd',
|
|
71
|
+
'list.focusForeground': '#212121',
|
|
72
|
+
'list.highlightForeground': '#212121',
|
|
73
|
+
'list.hoverBackground': '#EEE',
|
|
74
|
+
'list.inactiveSelectionBackground': '#E0E0E0',
|
|
75
|
+
'list.inactiveSelectionForeground': '#212121',
|
|
76
|
+
'panel.background': '#fff',
|
|
77
|
+
'panel.border': '#f4f4f4',
|
|
78
|
+
'panelTitle.activeBorder': '#fff',
|
|
79
|
+
'panelTitle.inactiveForeground': '#BDBDBD',
|
|
80
|
+
'peekView.border': '#E0E0E0',
|
|
81
|
+
'peekViewEditor.background': '#f8f8f8',
|
|
82
|
+
'pickerGroup.foreground': '#000',
|
|
83
|
+
'progressBar.background': '#000',
|
|
84
|
+
'scrollbar.shadow': '#FFF',
|
|
85
|
+
'sideBar.background': '#f6f6f6',
|
|
86
|
+
'sideBar.border': '#f6f6f6',
|
|
87
|
+
'sideBar.foreground': '#212121',
|
|
88
|
+
'sideBarSectionHeader.background': '#EEE',
|
|
89
|
+
'sideBarSectionHeader.foreground': '#6f6f6f',
|
|
90
|
+
'sideBarTitle.foreground': '#999',
|
|
91
|
+
'statusBar.background': '#f6f6f6',
|
|
92
|
+
'statusBar.border': '#f6f6f6',
|
|
93
|
+
'statusBar.debuggingBackground': '#f6f6f6',
|
|
94
|
+
'statusBar.foreground': '#7E7E7E',
|
|
95
|
+
'statusBar.noFolderBackground': '#f6f6f6',
|
|
96
|
+
'statusBarItem.prominentBackground': '#000000',
|
|
97
|
+
'statusBarItem.remoteBackground': '#f6f6f6',
|
|
98
|
+
'statusBarItem.remoteForeground': '#7E7E7E',
|
|
99
|
+
'symbolIcon.classForeground': '#dd8500',
|
|
100
|
+
'symbolIcon.constructorForeground': '#6f42c1',
|
|
101
|
+
'symbolIcon.enumeratorForeground': '#dd8500',
|
|
102
|
+
'symbolIcon.enumeratorMemberForeground': '#1976D2',
|
|
103
|
+
'symbolIcon.eventForeground': '#dd8500',
|
|
104
|
+
'symbolIcon.fieldForeground': '#1976D2',
|
|
105
|
+
'symbolIcon.functionForeground': '#6f42c1',
|
|
106
|
+
'symbolIcon.interfaceForeground': '#1976D2',
|
|
107
|
+
'symbolIcon.methodForeground': '#6f42c1',
|
|
108
|
+
'symbolIcon.variableForeground': '#1976D2',
|
|
109
|
+
'tab.activeBorder': '#FFF',
|
|
110
|
+
'tab.activeForeground': '#424242',
|
|
111
|
+
'tab.border': '#f6f6f6',
|
|
112
|
+
'tab.inactiveBackground': '#f6f6f6',
|
|
113
|
+
'tab.inactiveForeground': '#BDBDBD',
|
|
114
|
+
'tab.unfocusedActiveBorder': '#fff',
|
|
115
|
+
'terminal.ansiBlack': '#333',
|
|
116
|
+
'terminal.ansiBlue': '#e0e0e0',
|
|
117
|
+
'terminal.ansiBrightBlack': '#a1a1a1',
|
|
118
|
+
'terminal.ansiBrightBlue': '#6871ff',
|
|
119
|
+
'terminal.ansiBrightCyan': '#57d9ad',
|
|
120
|
+
'terminal.ansiBrightGreen': '#a3d900',
|
|
121
|
+
'terminal.ansiBrightMagenta': '#a37acc',
|
|
122
|
+
'terminal.ansiBrightRed': '#d6656a',
|
|
123
|
+
'terminal.ansiBrightWhite': '#7E7E7E',
|
|
124
|
+
'terminal.ansiBrightYellow': '#e7c547',
|
|
125
|
+
'terminal.ansiCyan': '#4dbf99',
|
|
126
|
+
'terminal.ansiGreen': '#77cc00',
|
|
127
|
+
'terminal.ansiMagenta': '#9966cc',
|
|
128
|
+
'terminal.ansiRed': '#D32F2F',
|
|
129
|
+
'terminal.ansiWhite': '#c7c7c7',
|
|
130
|
+
'terminal.ansiYellow': '#f29718',
|
|
131
|
+
'terminal.background': '#fff',
|
|
132
|
+
'textLink.activeForeground': '#000',
|
|
133
|
+
'textLink.foreground': '#000',
|
|
134
|
+
'titleBar.activeBackground': '#f6f6f6',
|
|
135
|
+
'titleBar.border': '#FFFFFF',
|
|
136
|
+
'titleBar.inactiveBackground': '#f6f6f6',
|
|
137
|
+
},
|
|
138
|
+
displayName: 'Min Light',
|
|
139
|
+
fg: '#212121',
|
|
140
|
+
name: 'min-light',
|
|
141
|
+
settings: [
|
|
142
|
+
{
|
|
143
|
+
settings: {
|
|
144
|
+
foreground: '#24292eff',
|
|
145
|
+
},
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
scope: [
|
|
149
|
+
'keyword.operator.accessor',
|
|
150
|
+
'meta.group.braces.round.function.arguments',
|
|
151
|
+
'meta.template.expression',
|
|
152
|
+
'markup.fenced_code meta.embedded.block',
|
|
153
|
+
],
|
|
154
|
+
settings: {
|
|
155
|
+
foreground: '#24292eff',
|
|
156
|
+
},
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
scope: 'emphasis',
|
|
160
|
+
settings: {
|
|
161
|
+
fontStyle: 'italic',
|
|
162
|
+
},
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
scope: ['strong', 'markup.heading.markdown', 'markup.bold.markdown'],
|
|
166
|
+
settings: {
|
|
167
|
+
fontStyle: 'bold',
|
|
168
|
+
},
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
scope: ['markup.italic.markdown'],
|
|
172
|
+
settings: {
|
|
173
|
+
fontStyle: 'italic',
|
|
174
|
+
},
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
scope: 'meta.link.inline.markdown',
|
|
178
|
+
settings: {
|
|
179
|
+
fontStyle: 'underline',
|
|
180
|
+
foreground: '#1976D2',
|
|
181
|
+
},
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
scope: ['string', 'markup.fenced_code', 'markup.inline'],
|
|
185
|
+
settings: {
|
|
186
|
+
foreground: '#2b5581',
|
|
187
|
+
},
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
scope: ['comment', 'string.quoted.docstring.multi'],
|
|
191
|
+
settings: {
|
|
192
|
+
foreground: '#c2c3c5',
|
|
193
|
+
},
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
scope: [
|
|
197
|
+
'constant.numeric',
|
|
198
|
+
'constant.language',
|
|
199
|
+
'constant.other.placeholder',
|
|
200
|
+
'constant.character.format.placeholder',
|
|
201
|
+
'variable.language.this',
|
|
202
|
+
'variable.other.object',
|
|
203
|
+
'variable.other.class',
|
|
204
|
+
'variable.other.constant',
|
|
205
|
+
'meta.property-name',
|
|
206
|
+
'meta.property-value',
|
|
207
|
+
'support',
|
|
208
|
+
],
|
|
209
|
+
settings: {
|
|
210
|
+
foreground: '#1976D2',
|
|
211
|
+
},
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
scope: [
|
|
215
|
+
'keyword',
|
|
216
|
+
'storage.modifier',
|
|
217
|
+
'storage.type',
|
|
218
|
+
'storage.control.clojure',
|
|
219
|
+
'entity.name.function.clojure',
|
|
220
|
+
'entity.name.tag.yaml',
|
|
221
|
+
'support.function.node',
|
|
222
|
+
'support.type.property-name.json',
|
|
223
|
+
'punctuation.separator.key-value',
|
|
224
|
+
'punctuation.definition.template-expression',
|
|
225
|
+
],
|
|
226
|
+
settings: {
|
|
227
|
+
foreground: '#D32F2F',
|
|
228
|
+
},
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
scope: 'variable.parameter.function',
|
|
232
|
+
settings: {
|
|
233
|
+
foreground: '#FF9800',
|
|
234
|
+
},
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
scope: [
|
|
238
|
+
'support.function',
|
|
239
|
+
'entity.name.type',
|
|
240
|
+
'entity.other.inherited-class',
|
|
241
|
+
'meta.function-call',
|
|
242
|
+
'meta.instance.constructor',
|
|
243
|
+
'entity.other.attribute-name',
|
|
244
|
+
'entity.name.function',
|
|
245
|
+
'constant.keyword.clojure',
|
|
246
|
+
],
|
|
247
|
+
settings: {
|
|
248
|
+
foreground: '#6f42c1',
|
|
249
|
+
},
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
scope: [
|
|
253
|
+
'entity.name.tag',
|
|
254
|
+
'string.quoted',
|
|
255
|
+
'string.regexp',
|
|
256
|
+
'string.interpolated',
|
|
257
|
+
'string.template',
|
|
258
|
+
'string.unquoted.plain.out.yaml',
|
|
259
|
+
'keyword.other.template',
|
|
260
|
+
],
|
|
261
|
+
settings: {
|
|
262
|
+
foreground: '#22863a',
|
|
263
|
+
},
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
scope: 'token.info-token',
|
|
267
|
+
settings: {
|
|
268
|
+
foreground: '#316bcd',
|
|
269
|
+
},
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
scope: 'token.warn-token',
|
|
273
|
+
settings: {
|
|
274
|
+
foreground: '#cd9731',
|
|
275
|
+
},
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
scope: 'token.error-token',
|
|
279
|
+
settings: {
|
|
280
|
+
foreground: '#cd3131',
|
|
281
|
+
},
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
scope: 'token.debug-token',
|
|
285
|
+
settings: {
|
|
286
|
+
foreground: '#800080',
|
|
287
|
+
},
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
scope: ['strong', 'markup.heading.markdown', 'markup.bold.markdown'],
|
|
291
|
+
settings: {
|
|
292
|
+
foreground: '#6f42c1',
|
|
293
|
+
},
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
scope: [
|
|
297
|
+
'punctuation.definition.arguments',
|
|
298
|
+
'punctuation.definition.dict',
|
|
299
|
+
'punctuation.separator',
|
|
300
|
+
'meta.function-call.arguments',
|
|
301
|
+
],
|
|
302
|
+
settings: {
|
|
303
|
+
foreground: '#212121',
|
|
304
|
+
},
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
scope: ['markup.underline.link', 'punctuation.definition.metadata.markdown'],
|
|
308
|
+
settings: {
|
|
309
|
+
foreground: '#22863a',
|
|
310
|
+
},
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
scope: ['beginning.punctuation.definition.list.markdown'],
|
|
314
|
+
settings: {
|
|
315
|
+
foreground: '#6f42c1',
|
|
316
|
+
},
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
scope: [
|
|
320
|
+
'punctuation.definition.string.begin.markdown',
|
|
321
|
+
'punctuation.definition.string.end.markdown',
|
|
322
|
+
'string.other.link.title.markdown',
|
|
323
|
+
'string.other.link.description.markdown',
|
|
324
|
+
],
|
|
325
|
+
settings: {
|
|
326
|
+
foreground: '#d32f2f',
|
|
327
|
+
},
|
|
328
|
+
},
|
|
329
|
+
],
|
|
330
|
+
type: 'light',
|
|
331
|
+
}
|