@codingame/monaco-vscode-theme-defaults-default-extension 1.81.8-next.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dark_modern.json +134 -0
- package/dark_plus.json +203 -0
- package/dark_vs.json +404 -0
- package/document-dark.svg +3 -0
- package/document-light.svg +3 -0
- package/folder-dark.svg +3 -0
- package/folder-light.svg +3 -0
- package/folder-open-dark.svg +4 -0
- package/folder-open-light.svg +4 -0
- package/hc_black.json +463 -0
- package/hc_light.json +566 -0
- package/index.js +24 -0
- package/light_modern.json +146 -0
- package/light_plus.json +205 -0
- package/light_vs.json +433 -0
- package/package.json +22 -0
- package/root-folder-dark.svg +5 -0
- package/root-folder-light.svg +5 -0
- package/root-folder-open-dark.svg +5 -0
- package/root-folder-open-light.svg +5 -0
- package/vs_minimal-icon-theme.json +68 -0
package/hc_light.json
ADDED
|
@@ -0,0 +1,566 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "vscode://schemas/color-theme",
|
|
3
|
+
"name": "Light High Contrast",
|
|
4
|
+
"tokenColors": [
|
|
5
|
+
{
|
|
6
|
+
"scope": ["meta.embedded", "source.groovy.embedded"],
|
|
7
|
+
"settings": {
|
|
8
|
+
"foreground": "#292929"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"scope": "emphasis",
|
|
13
|
+
"settings": {
|
|
14
|
+
"fontStyle": "italic"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"scope": "strong",
|
|
19
|
+
"settings": {
|
|
20
|
+
"fontStyle": "bold"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"scope": "meta.diff.header",
|
|
25
|
+
"settings": {
|
|
26
|
+
"foreground": "#062F4A"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"scope": "comment",
|
|
31
|
+
"settings": {
|
|
32
|
+
"foreground": "#515151"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"scope": "constant.language",
|
|
37
|
+
"settings": {
|
|
38
|
+
"foreground": "#0F4A85"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"scope": [
|
|
43
|
+
"constant.numeric",
|
|
44
|
+
"variable.other.enummember",
|
|
45
|
+
"keyword.operator.plus.exponent",
|
|
46
|
+
"keyword.operator.minus.exponent"
|
|
47
|
+
],
|
|
48
|
+
"settings": {
|
|
49
|
+
"foreground": "#096d48"
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"scope": "constant.regexp",
|
|
54
|
+
"settings": {
|
|
55
|
+
"foreground": "#811F3F"
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"scope": "entity.name.tag",
|
|
60
|
+
"settings": {
|
|
61
|
+
"foreground": "#0F4A85"
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"scope": "entity.name.selector",
|
|
66
|
+
"settings": {
|
|
67
|
+
"foreground": "#0F4A85"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"scope": "entity.other.attribute-name",
|
|
72
|
+
"settings": {
|
|
73
|
+
"foreground": "#264F78"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"scope": [
|
|
78
|
+
"entity.other.attribute-name.class.css",
|
|
79
|
+
"entity.other.attribute-name.class.mixin.css",
|
|
80
|
+
"entity.other.attribute-name.id.css",
|
|
81
|
+
"entity.other.attribute-name.parent-selector.css",
|
|
82
|
+
"entity.other.attribute-name.pseudo-class.css",
|
|
83
|
+
"entity.other.attribute-name.pseudo-element.css",
|
|
84
|
+
"source.css.less entity.other.attribute-name.id",
|
|
85
|
+
"entity.other.attribute-name.scss"
|
|
86
|
+
],
|
|
87
|
+
"settings": {
|
|
88
|
+
"foreground": "#0F4A85"
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"scope": "invalid",
|
|
93
|
+
"settings": {
|
|
94
|
+
"foreground": "#B5200D"
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"scope": "markup.underline",
|
|
99
|
+
"settings": {
|
|
100
|
+
"fontStyle": "underline"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"scope": "markup.bold",
|
|
105
|
+
"settings": {
|
|
106
|
+
"foreground": "#000080",
|
|
107
|
+
"fontStyle": "bold"
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"scope": "markup.heading",
|
|
112
|
+
"settings": {
|
|
113
|
+
"foreground": "#0F4A85",
|
|
114
|
+
"fontStyle": "bold"
|
|
115
|
+
}
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"scope": "markup.italic",
|
|
119
|
+
"settings": {
|
|
120
|
+
"fontStyle": "italic"
|
|
121
|
+
}
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"scope": "markup.strikethrough",
|
|
125
|
+
"settings": {
|
|
126
|
+
"fontStyle": "strikethrough"
|
|
127
|
+
}
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"scope": "markup.inserted",
|
|
131
|
+
"settings": {
|
|
132
|
+
"foreground": "#096d48"
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"scope": "markup.deleted",
|
|
137
|
+
"settings": {
|
|
138
|
+
"foreground": "#5A5A5A"
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"scope": "markup.changed",
|
|
143
|
+
"settings": {
|
|
144
|
+
"foreground": "#0451A5"
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"scope": [
|
|
149
|
+
"punctuation.definition.quote.begin.markdown",
|
|
150
|
+
"punctuation.definition.list.begin.markdown"
|
|
151
|
+
],
|
|
152
|
+
"settings": {
|
|
153
|
+
"foreground": "#0451A5"
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"scope": "markup.inline.raw",
|
|
158
|
+
"settings": {
|
|
159
|
+
"foreground": "#0F4A85"
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"scope": "punctuation.definition.tag",
|
|
164
|
+
"settings": {
|
|
165
|
+
"foreground": "#0F4A85"
|
|
166
|
+
}
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"scope": ["meta.preprocessor", "entity.name.function.preprocessor"],
|
|
170
|
+
"settings": {
|
|
171
|
+
"foreground": "#0F4A85"
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"scope": "meta.preprocessor.string",
|
|
176
|
+
"settings": {
|
|
177
|
+
"foreground": "#b5200d"
|
|
178
|
+
}
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"scope": "meta.preprocessor.numeric",
|
|
182
|
+
"settings": {
|
|
183
|
+
"foreground": "#096d48"
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"scope": "meta.structure.dictionary.key.python",
|
|
188
|
+
"settings": {
|
|
189
|
+
"foreground": "#0451A5"
|
|
190
|
+
}
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"scope": "storage",
|
|
194
|
+
"settings": {
|
|
195
|
+
"foreground": "#0F4A85"
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"scope": "storage.type",
|
|
200
|
+
"settings": {
|
|
201
|
+
"foreground": "#0F4A85"
|
|
202
|
+
}
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"scope": ["storage.modifier", "keyword.operator.noexcept"],
|
|
206
|
+
"settings": {
|
|
207
|
+
"foreground": "#0F4A85"
|
|
208
|
+
}
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"scope": ["string", "meta.embedded.assembly"],
|
|
212
|
+
"settings": {
|
|
213
|
+
"foreground": "#0F4A85"
|
|
214
|
+
}
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"scope": [
|
|
218
|
+
"string.comment.buffered.block.pug",
|
|
219
|
+
"string.quoted.pug",
|
|
220
|
+
"string.interpolated.pug",
|
|
221
|
+
"string.unquoted.plain.in.yaml",
|
|
222
|
+
"string.unquoted.plain.out.yaml",
|
|
223
|
+
"string.unquoted.block.yaml",
|
|
224
|
+
"string.quoted.single.yaml",
|
|
225
|
+
"string.quoted.double.xml",
|
|
226
|
+
"string.quoted.single.xml",
|
|
227
|
+
"string.unquoted.cdata.xml",
|
|
228
|
+
"string.quoted.double.html",
|
|
229
|
+
"string.quoted.single.html",
|
|
230
|
+
"string.unquoted.html",
|
|
231
|
+
"string.quoted.single.handlebars",
|
|
232
|
+
"string.quoted.double.handlebars"
|
|
233
|
+
],
|
|
234
|
+
"settings": {
|
|
235
|
+
"foreground": "#0F4A85"
|
|
236
|
+
}
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"scope": "string.regexp",
|
|
240
|
+
"settings": {
|
|
241
|
+
"foreground": "#811F3F"
|
|
242
|
+
}
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"scope": [
|
|
246
|
+
"punctuation.definition.template-expression.begin",
|
|
247
|
+
"punctuation.definition.template-expression.end",
|
|
248
|
+
"punctuation.section.embedded"
|
|
249
|
+
],
|
|
250
|
+
"settings": {
|
|
251
|
+
"foreground": "#0F4A85"
|
|
252
|
+
}
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"scope": ["meta.template.expression"],
|
|
256
|
+
"settings": {
|
|
257
|
+
"foreground": "#000000"
|
|
258
|
+
}
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"scope": [
|
|
262
|
+
"support.constant.property-value",
|
|
263
|
+
"support.constant.font-name",
|
|
264
|
+
"support.constant.media-type",
|
|
265
|
+
"support.constant.media",
|
|
266
|
+
"constant.other.color.rgb-value",
|
|
267
|
+
"constant.other.rgb-value",
|
|
268
|
+
"support.constant.color"
|
|
269
|
+
],
|
|
270
|
+
"settings": {
|
|
271
|
+
"foreground": "#0451A5"
|
|
272
|
+
}
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"scope": [
|
|
276
|
+
"support.type.vendored.property-name",
|
|
277
|
+
"support.type.property-name",
|
|
278
|
+
"variable.css",
|
|
279
|
+
"variable.scss",
|
|
280
|
+
"variable.other.less",
|
|
281
|
+
"source.coffee.embedded"
|
|
282
|
+
],
|
|
283
|
+
"settings": {
|
|
284
|
+
"foreground": "#264F78"
|
|
285
|
+
}
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"scope": ["support.type.property-name.json"],
|
|
289
|
+
"settings": {
|
|
290
|
+
"foreground": "#0451A5"
|
|
291
|
+
}
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"scope": "keyword",
|
|
295
|
+
"settings": {
|
|
296
|
+
"foreground": "#0F4A85"
|
|
297
|
+
}
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"scope": "keyword.control",
|
|
301
|
+
"settings": {
|
|
302
|
+
"foreground": "#0F4A85"
|
|
303
|
+
}
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"scope": "keyword.operator",
|
|
307
|
+
"settings": {
|
|
308
|
+
"foreground": "#000000"
|
|
309
|
+
}
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"scope": [
|
|
313
|
+
"keyword.operator.new",
|
|
314
|
+
"keyword.operator.expression",
|
|
315
|
+
"keyword.operator.cast",
|
|
316
|
+
"keyword.operator.sizeof",
|
|
317
|
+
"keyword.operator.alignof",
|
|
318
|
+
"keyword.operator.typeid",
|
|
319
|
+
"keyword.operator.alignas",
|
|
320
|
+
"keyword.operator.instanceof",
|
|
321
|
+
"keyword.operator.logical.python",
|
|
322
|
+
"keyword.operator.wordlike"
|
|
323
|
+
],
|
|
324
|
+
"settings": {
|
|
325
|
+
"foreground": "#0F4A85"
|
|
326
|
+
}
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"scope": "keyword.other.unit",
|
|
330
|
+
"settings": {
|
|
331
|
+
"foreground": "#096d48"
|
|
332
|
+
}
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"scope": [
|
|
336
|
+
"punctuation.section.embedded.begin.php",
|
|
337
|
+
"punctuation.section.embedded.end.php"
|
|
338
|
+
],
|
|
339
|
+
"settings": {
|
|
340
|
+
"foreground": "#0F4A85"
|
|
341
|
+
}
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"scope": "support.function.git-rebase",
|
|
345
|
+
"settings": {
|
|
346
|
+
"foreground": "#0451A5"
|
|
347
|
+
}
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"scope": "constant.sha.git-rebase",
|
|
351
|
+
"settings": {
|
|
352
|
+
"foreground": "#096d48"
|
|
353
|
+
}
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"scope": [
|
|
357
|
+
"storage.modifier.import.java",
|
|
358
|
+
"variable.language.wildcard.java",
|
|
359
|
+
"storage.modifier.package.java"
|
|
360
|
+
],
|
|
361
|
+
"settings": {
|
|
362
|
+
"foreground": "#000000"
|
|
363
|
+
}
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"scope": "variable.language",
|
|
367
|
+
"settings": {
|
|
368
|
+
"foreground": "#0F4A85"
|
|
369
|
+
}
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"scope": [
|
|
373
|
+
"entity.name.function",
|
|
374
|
+
"support.function",
|
|
375
|
+
"support.constant.handlebars",
|
|
376
|
+
"source.powershell variable.other.member",
|
|
377
|
+
"entity.name.operator.custom-literal"
|
|
378
|
+
],
|
|
379
|
+
"settings": {
|
|
380
|
+
"foreground": "#5e2cbc"
|
|
381
|
+
}
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"scope": [
|
|
385
|
+
"support.class",
|
|
386
|
+
"support.type",
|
|
387
|
+
"entity.name.type",
|
|
388
|
+
"entity.name.namespace",
|
|
389
|
+
"entity.other.attribute",
|
|
390
|
+
"entity.name.scope-resolution",
|
|
391
|
+
"entity.name.class",
|
|
392
|
+
"storage.type.numeric.go",
|
|
393
|
+
"storage.type.byte.go",
|
|
394
|
+
"storage.type.boolean.go",
|
|
395
|
+
"storage.type.string.go",
|
|
396
|
+
"storage.type.uintptr.go",
|
|
397
|
+
"storage.type.error.go",
|
|
398
|
+
"storage.type.rune.go",
|
|
399
|
+
"storage.type.cs",
|
|
400
|
+
"storage.type.generic.cs",
|
|
401
|
+
"storage.type.modifier.cs",
|
|
402
|
+
"storage.type.variable.cs",
|
|
403
|
+
"storage.type.annotation.java",
|
|
404
|
+
"storage.type.generic.java",
|
|
405
|
+
"storage.type.java",
|
|
406
|
+
"storage.type.object.array.java",
|
|
407
|
+
"storage.type.primitive.array.java",
|
|
408
|
+
"storage.type.primitive.java",
|
|
409
|
+
"storage.type.token.java",
|
|
410
|
+
"storage.type.groovy",
|
|
411
|
+
"storage.type.annotation.groovy",
|
|
412
|
+
"storage.type.parameters.groovy",
|
|
413
|
+
"storage.type.generic.groovy",
|
|
414
|
+
"storage.type.object.array.groovy",
|
|
415
|
+
"storage.type.primitive.array.groovy",
|
|
416
|
+
"storage.type.primitive.groovy"
|
|
417
|
+
],
|
|
418
|
+
"settings": {
|
|
419
|
+
"foreground": "#185E73"
|
|
420
|
+
}
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"scope": [
|
|
424
|
+
"meta.type.cast.expr",
|
|
425
|
+
"meta.type.new.expr",
|
|
426
|
+
"support.constant.math",
|
|
427
|
+
"support.constant.dom",
|
|
428
|
+
"support.constant.json",
|
|
429
|
+
"entity.other.inherited-class"
|
|
430
|
+
],
|
|
431
|
+
"settings": {
|
|
432
|
+
"foreground": "#185E73"
|
|
433
|
+
}
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"scope": [
|
|
437
|
+
"keyword.control",
|
|
438
|
+
"source.cpp keyword.operator.new",
|
|
439
|
+
"source.cpp keyword.operator.delete",
|
|
440
|
+
"keyword.other.using",
|
|
441
|
+
"keyword.other.operator",
|
|
442
|
+
"entity.name.operator"
|
|
443
|
+
],
|
|
444
|
+
"settings": {
|
|
445
|
+
"foreground": "#b5200d"
|
|
446
|
+
}
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
"scope": [
|
|
450
|
+
"variable",
|
|
451
|
+
"meta.definition.variable.name",
|
|
452
|
+
"support.variable",
|
|
453
|
+
"entity.name.variable",
|
|
454
|
+
"constant.other.placeholder"
|
|
455
|
+
],
|
|
456
|
+
"settings": {
|
|
457
|
+
"foreground": "#001080"
|
|
458
|
+
}
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
"scope": ["variable.other.constant", "variable.other.enummember"],
|
|
462
|
+
"settings": {
|
|
463
|
+
"foreground": "#02715D"
|
|
464
|
+
}
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"scope": ["meta.object-literal.key"],
|
|
468
|
+
"settings": {
|
|
469
|
+
"foreground": "#001080"
|
|
470
|
+
}
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"scope": [
|
|
474
|
+
"support.constant.property-value",
|
|
475
|
+
"support.constant.font-name",
|
|
476
|
+
"support.constant.media-type",
|
|
477
|
+
"support.constant.media",
|
|
478
|
+
"constant.other.color.rgb-value",
|
|
479
|
+
"constant.other.rgb-value",
|
|
480
|
+
"support.constant.color"
|
|
481
|
+
],
|
|
482
|
+
"settings": {
|
|
483
|
+
"foreground": "#0451A5"
|
|
484
|
+
}
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
"scope": [
|
|
488
|
+
"punctuation.definition.group.regexp",
|
|
489
|
+
"punctuation.definition.group.assertion.regexp",
|
|
490
|
+
"punctuation.definition.character-class.regexp",
|
|
491
|
+
"punctuation.character.set.begin.regexp",
|
|
492
|
+
"punctuation.character.set.end.regexp",
|
|
493
|
+
"keyword.operator.negation.regexp",
|
|
494
|
+
"support.other.parenthesis.regexp"
|
|
495
|
+
],
|
|
496
|
+
"settings": {
|
|
497
|
+
"foreground": "#D16969"
|
|
498
|
+
}
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"scope": [
|
|
502
|
+
"constant.character.character-class.regexp",
|
|
503
|
+
"constant.other.character-class.set.regexp",
|
|
504
|
+
"constant.other.character-class.regexp",
|
|
505
|
+
"constant.character.set.regexp"
|
|
506
|
+
],
|
|
507
|
+
"settings": {
|
|
508
|
+
"foreground": "#811F3F"
|
|
509
|
+
}
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
"scope": "keyword.operator.quantifier.regexp",
|
|
513
|
+
"settings": {
|
|
514
|
+
"foreground": "#000000"
|
|
515
|
+
}
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
"scope": ["keyword.operator.or.regexp", "keyword.control.anchor.regexp"],
|
|
519
|
+
"settings": {
|
|
520
|
+
"foreground": "#EE0000"
|
|
521
|
+
}
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
"scope": "constant.character",
|
|
525
|
+
"settings": {
|
|
526
|
+
"foreground": "#0F4A85"
|
|
527
|
+
}
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
"scope": "constant.character.escape",
|
|
531
|
+
"settings": {
|
|
532
|
+
"foreground": "#EE0000"
|
|
533
|
+
}
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
"scope": "entity.name.label",
|
|
537
|
+
"settings": {
|
|
538
|
+
"foreground": "#000000"
|
|
539
|
+
}
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
"scope": "token.info-token",
|
|
543
|
+
"settings": {
|
|
544
|
+
"foreground": "#316BCD"
|
|
545
|
+
}
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"scope": "token.warn-token",
|
|
549
|
+
"settings": {
|
|
550
|
+
"foreground": "#CD9731"
|
|
551
|
+
}
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
"scope": "token.error-token",
|
|
555
|
+
"settings": {
|
|
556
|
+
"foreground": "#CD3131"
|
|
557
|
+
}
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
"scope": "token.debug-token",
|
|
561
|
+
"settings": {
|
|
562
|
+
"foreground": "#800080"
|
|
563
|
+
}
|
|
564
|
+
}
|
|
565
|
+
]
|
|
566
|
+
}
|
package/index.js
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { registerExtension } from 'vscode/extensions';
|
|
2
|
+
|
|
3
|
+
var manifest = {name:"theme-defaults",displayName:"Default Themes",description:"The default Visual Studio light and dark themes",categories:["Themes"],version:"1.0.0",publisher:"vscode",license:"MIT",engines:{vscode:"*"},contributes:{themes:[{id:"Default Dark+",label:"Dark+",uiTheme:"vs-dark",path:"./themes/dark_plus.json"},{id:"Default Dark Modern",label:"Dark Modern",uiTheme:"vs-dark",path:"./themes/dark_modern.json"},{id:"Default Light+",label:"Light+",uiTheme:"vs",path:"./themes/light_plus.json"},{id:"Default Light Modern",label:"Light Modern",uiTheme:"vs",path:"./themes/light_modern.json"},{id:"Visual Studio Dark",label:"Dark (Visual Studio)",uiTheme:"vs-dark",path:"./themes/dark_vs.json"},{id:"Visual Studio Light",label:"Light (Visual Studio)",uiTheme:"vs",path:"./themes/light_vs.json"},{id:"Default High Contrast",label:"Dark High Contrast",uiTheme:"hc-black",path:"./themes/hc_black.json"},{id:"Default High Contrast Light",label:"Light High Contrast",uiTheme:"hc-light",path:"./themes/hc_light.json"}],iconThemes:[{id:"vs-minimal",label:"Minimal (Visual Studio Code)",path:"./fileicons/vs_minimal-icon-theme.json"}]},repository:{type:"git",url:"https://github.com/microsoft/vscode.git"},main:undefined};
|
|
4
|
+
|
|
5
|
+
const { registerFileUrl } = registerExtension(manifest);
|
|
6
|
+
registerFileUrl('./themes/dark_plus.json', new URL('./dark_plus.json', import.meta.url).toString(), 'application/json');
|
|
7
|
+
registerFileUrl('./themes/dark_modern.json', new URL('./dark_modern.json', import.meta.url).toString(), 'application/json');
|
|
8
|
+
registerFileUrl('./themes/light_plus.json', new URL('./light_plus.json', import.meta.url).toString(), 'application/json');
|
|
9
|
+
registerFileUrl('./themes/light_modern.json', new URL('./light_modern.json', import.meta.url).toString(), 'application/json');
|
|
10
|
+
registerFileUrl('./themes/dark_vs.json', new URL('./dark_vs.json', import.meta.url).toString(), 'application/json');
|
|
11
|
+
registerFileUrl('./themes/light_vs.json', new URL('./light_vs.json', import.meta.url).toString(), 'application/json');
|
|
12
|
+
registerFileUrl('./themes/hc_black.json', new URL('./hc_black.json', import.meta.url).toString(), 'application/json');
|
|
13
|
+
registerFileUrl('./themes/hc_light.json', new URL('./hc_light.json', import.meta.url).toString(), 'application/json');
|
|
14
|
+
registerFileUrl('./fileicons/vs_minimal-icon-theme.json', new URL('./vs_minimal-icon-theme.json', import.meta.url).toString(), 'application/json');
|
|
15
|
+
registerFileUrl('fileicons/images/root-folder-dark.svg', new URL('./root-folder-dark.svg', import.meta.url).toString(), 'image/svg+xml');
|
|
16
|
+
registerFileUrl('fileicons/images/root-folder-open-dark.svg', new URL('./root-folder-open-dark.svg', import.meta.url).toString(), 'image/svg+xml');
|
|
17
|
+
registerFileUrl('fileicons/images/folder-dark.svg', new URL('./folder-dark.svg', import.meta.url).toString(), 'image/svg+xml');
|
|
18
|
+
registerFileUrl('fileicons/images/folder-open-dark.svg', new URL('./folder-open-dark.svg', import.meta.url).toString(), 'image/svg+xml');
|
|
19
|
+
registerFileUrl('fileicons/images/document-dark.svg', new URL('./document-dark.svg', import.meta.url).toString(), 'image/svg+xml');
|
|
20
|
+
registerFileUrl('fileicons/images/root-folder-light.svg', new URL('./root-folder-light.svg', import.meta.url).toString(), 'image/svg+xml');
|
|
21
|
+
registerFileUrl('fileicons/images/root-folder-open-light.svg', new URL('./root-folder-open-light.svg', import.meta.url).toString(), 'image/svg+xml');
|
|
22
|
+
registerFileUrl('fileicons/images/folder-light.svg', new URL('./folder-light.svg', import.meta.url).toString(), 'image/svg+xml');
|
|
23
|
+
registerFileUrl('fileicons/images/folder-open-light.svg', new URL('./folder-open-light.svg', import.meta.url).toString(), 'image/svg+xml');
|
|
24
|
+
registerFileUrl('fileicons/images/document-light.svg', new URL('./document-light.svg', import.meta.url).toString(), 'image/svg+xml');
|