@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/dark_vs.json
ADDED
|
@@ -0,0 +1,404 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "vscode://schemas/color-theme",
|
|
3
|
+
"name": "Dark (Visual Studio)",
|
|
4
|
+
"colors": {
|
|
5
|
+
"checkbox.border": "#6B6B6B",
|
|
6
|
+
"editor.background": "#1E1E1E",
|
|
7
|
+
"editor.foreground": "#D4D4D4",
|
|
8
|
+
"editor.inactiveSelectionBackground": "#3A3D41",
|
|
9
|
+
"editorIndentGuide.background": "#404040",
|
|
10
|
+
"editorIndentGuide.activeBackground": "#707070",
|
|
11
|
+
"editor.selectionHighlightBackground": "#ADD6FF26",
|
|
12
|
+
"list.dropBackground": "#383B3D",
|
|
13
|
+
"activityBarBadge.background": "#007ACC",
|
|
14
|
+
"sideBarTitle.foreground": "#BBBBBB",
|
|
15
|
+
"input.placeholderForeground": "#A6A6A6",
|
|
16
|
+
"menu.background": "#252526",
|
|
17
|
+
"menu.foreground": "#CCCCCC",
|
|
18
|
+
"menu.separatorBackground": "#454545",
|
|
19
|
+
"menu.border": "#454545",
|
|
20
|
+
"statusBarItem.remoteForeground": "#FFF",
|
|
21
|
+
"statusBarItem.remoteBackground": "#16825D",
|
|
22
|
+
"ports.iconRunningProcessForeground": "#369432",
|
|
23
|
+
"sideBarSectionHeader.background": "#0000",
|
|
24
|
+
"sideBarSectionHeader.border": "#ccc3",
|
|
25
|
+
"tab.lastPinnedBorder": "#ccc3",
|
|
26
|
+
"list.activeSelectionIconForeground": "#FFF",
|
|
27
|
+
"terminal.inactiveSelectionBackground": "#3A3D41",
|
|
28
|
+
"widget.border": "#303031",
|
|
29
|
+
},
|
|
30
|
+
"tokenColors": [
|
|
31
|
+
{
|
|
32
|
+
"scope": [
|
|
33
|
+
"meta.embedded",
|
|
34
|
+
"source.groovy.embedded",
|
|
35
|
+
"string meta.image.inline.markdown",
|
|
36
|
+
],
|
|
37
|
+
"settings": {
|
|
38
|
+
"foreground": "#D4D4D4"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"scope": "emphasis",
|
|
43
|
+
"settings": {
|
|
44
|
+
"fontStyle": "italic"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"scope": "strong",
|
|
49
|
+
"settings": {
|
|
50
|
+
"fontStyle": "bold"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"scope": "header",
|
|
55
|
+
"settings": {
|
|
56
|
+
"foreground": "#000080"
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"scope": "comment",
|
|
61
|
+
"settings": {
|
|
62
|
+
"foreground": "#6A9955"
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"scope": "constant.language",
|
|
67
|
+
"settings": {
|
|
68
|
+
"foreground": "#569cd6"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"scope": [
|
|
73
|
+
"constant.numeric",
|
|
74
|
+
"variable.other.enummember",
|
|
75
|
+
"keyword.operator.plus.exponent",
|
|
76
|
+
"keyword.operator.minus.exponent"
|
|
77
|
+
],
|
|
78
|
+
"settings": {
|
|
79
|
+
"foreground": "#b5cea8"
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"scope": "constant.regexp",
|
|
84
|
+
"settings": {
|
|
85
|
+
"foreground": "#646695"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"scope": "entity.name.tag",
|
|
90
|
+
"settings": {
|
|
91
|
+
"foreground": "#569cd6"
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"scope": "entity.name.tag.css",
|
|
96
|
+
"settings": {
|
|
97
|
+
"foreground": "#d7ba7d"
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"scope": "entity.other.attribute-name",
|
|
102
|
+
"settings": {
|
|
103
|
+
"foreground": "#9cdcfe"
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"scope": [
|
|
108
|
+
"entity.other.attribute-name.class.css",
|
|
109
|
+
"entity.other.attribute-name.class.mixin.css",
|
|
110
|
+
"entity.other.attribute-name.id.css",
|
|
111
|
+
"entity.other.attribute-name.parent-selector.css",
|
|
112
|
+
"entity.other.attribute-name.pseudo-class.css",
|
|
113
|
+
"entity.other.attribute-name.pseudo-element.css",
|
|
114
|
+
"source.css.less entity.other.attribute-name.id",
|
|
115
|
+
"entity.other.attribute-name.scss"
|
|
116
|
+
],
|
|
117
|
+
"settings": {
|
|
118
|
+
"foreground": "#d7ba7d"
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"scope": "invalid",
|
|
123
|
+
"settings": {
|
|
124
|
+
"foreground": "#f44747"
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"scope": "markup.underline",
|
|
129
|
+
"settings": {
|
|
130
|
+
"fontStyle": "underline"
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"scope": "markup.bold",
|
|
135
|
+
"settings": {
|
|
136
|
+
"fontStyle": "bold",
|
|
137
|
+
"foreground": "#569cd6"
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"scope": "markup.heading",
|
|
142
|
+
"settings": {
|
|
143
|
+
"fontStyle": "bold",
|
|
144
|
+
"foreground": "#569cd6"
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"scope": "markup.italic",
|
|
149
|
+
"settings": {
|
|
150
|
+
"fontStyle": "italic"
|
|
151
|
+
}
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"scope": "markup.strikethrough",
|
|
155
|
+
"settings": {
|
|
156
|
+
"fontStyle": "strikethrough"
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"scope": "markup.inserted",
|
|
161
|
+
"settings": {
|
|
162
|
+
"foreground": "#b5cea8"
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"scope": "markup.deleted",
|
|
167
|
+
"settings": {
|
|
168
|
+
"foreground": "#ce9178"
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"scope": "markup.changed",
|
|
173
|
+
"settings": {
|
|
174
|
+
"foreground": "#569cd6"
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"scope": "punctuation.definition.quote.begin.markdown",
|
|
179
|
+
"settings": {
|
|
180
|
+
"foreground": "#6A9955"
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"scope": "punctuation.definition.list.begin.markdown",
|
|
185
|
+
"settings": {
|
|
186
|
+
"foreground": "#6796e6"
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"scope": "markup.inline.raw",
|
|
191
|
+
"settings": {
|
|
192
|
+
"foreground": "#ce9178"
|
|
193
|
+
}
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"name": "brackets of XML/HTML tags",
|
|
197
|
+
"scope": "punctuation.definition.tag",
|
|
198
|
+
"settings": {
|
|
199
|
+
"foreground": "#808080"
|
|
200
|
+
}
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"scope": [
|
|
204
|
+
"meta.preprocessor",
|
|
205
|
+
"entity.name.function.preprocessor"
|
|
206
|
+
],
|
|
207
|
+
"settings": {
|
|
208
|
+
"foreground": "#569cd6"
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"scope": "meta.preprocessor.string",
|
|
213
|
+
"settings": {
|
|
214
|
+
"foreground": "#ce9178"
|
|
215
|
+
}
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"scope": "meta.preprocessor.numeric",
|
|
219
|
+
"settings": {
|
|
220
|
+
"foreground": "#b5cea8"
|
|
221
|
+
}
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"scope": "meta.structure.dictionary.key.python",
|
|
225
|
+
"settings": {
|
|
226
|
+
"foreground": "#9cdcfe"
|
|
227
|
+
}
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"scope": "meta.diff.header",
|
|
231
|
+
"settings": {
|
|
232
|
+
"foreground": "#569cd6"
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"scope": "storage",
|
|
237
|
+
"settings": {
|
|
238
|
+
"foreground": "#569cd6"
|
|
239
|
+
}
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"scope": "storage.type",
|
|
243
|
+
"settings": {
|
|
244
|
+
"foreground": "#569cd6"
|
|
245
|
+
}
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"scope": [
|
|
249
|
+
"storage.modifier",
|
|
250
|
+
"keyword.operator.noexcept"
|
|
251
|
+
],
|
|
252
|
+
"settings": {
|
|
253
|
+
"foreground": "#569cd6"
|
|
254
|
+
}
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"scope": [
|
|
258
|
+
"string",
|
|
259
|
+
"meta.embedded.assembly"
|
|
260
|
+
],
|
|
261
|
+
"settings": {
|
|
262
|
+
"foreground": "#ce9178"
|
|
263
|
+
}
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"scope": "string.tag",
|
|
267
|
+
"settings": {
|
|
268
|
+
"foreground": "#ce9178"
|
|
269
|
+
}
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"scope": "string.value",
|
|
273
|
+
"settings": {
|
|
274
|
+
"foreground": "#ce9178"
|
|
275
|
+
}
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"scope": "string.regexp",
|
|
279
|
+
"settings": {
|
|
280
|
+
"foreground": "#d16969"
|
|
281
|
+
}
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"name": "String interpolation",
|
|
285
|
+
"scope": [
|
|
286
|
+
"punctuation.definition.template-expression.begin",
|
|
287
|
+
"punctuation.definition.template-expression.end",
|
|
288
|
+
"punctuation.section.embedded"
|
|
289
|
+
],
|
|
290
|
+
"settings": {
|
|
291
|
+
"foreground": "#569cd6"
|
|
292
|
+
}
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"name": "Reset JavaScript string interpolation expression",
|
|
296
|
+
"scope": [
|
|
297
|
+
"meta.template.expression"
|
|
298
|
+
],
|
|
299
|
+
"settings": {
|
|
300
|
+
"foreground": "#d4d4d4"
|
|
301
|
+
}
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"scope": [
|
|
305
|
+
"support.type.vendored.property-name",
|
|
306
|
+
"support.type.property-name",
|
|
307
|
+
"variable.css",
|
|
308
|
+
"variable.scss",
|
|
309
|
+
"variable.other.less",
|
|
310
|
+
"source.coffee.embedded"
|
|
311
|
+
],
|
|
312
|
+
"settings": {
|
|
313
|
+
"foreground": "#9cdcfe"
|
|
314
|
+
}
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"scope": "keyword",
|
|
318
|
+
"settings": {
|
|
319
|
+
"foreground": "#569cd6"
|
|
320
|
+
}
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"scope": "keyword.control",
|
|
324
|
+
"settings": {
|
|
325
|
+
"foreground": "#569cd6"
|
|
326
|
+
}
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"scope": "keyword.operator",
|
|
330
|
+
"settings": {
|
|
331
|
+
"foreground": "#d4d4d4"
|
|
332
|
+
}
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"scope": [
|
|
336
|
+
"keyword.operator.new",
|
|
337
|
+
"keyword.operator.expression",
|
|
338
|
+
"keyword.operator.cast",
|
|
339
|
+
"keyword.operator.sizeof",
|
|
340
|
+
"keyword.operator.alignof",
|
|
341
|
+
"keyword.operator.typeid",
|
|
342
|
+
"keyword.operator.alignas",
|
|
343
|
+
"keyword.operator.instanceof",
|
|
344
|
+
"keyword.operator.logical.python",
|
|
345
|
+
"keyword.operator.wordlike"
|
|
346
|
+
],
|
|
347
|
+
"settings": {
|
|
348
|
+
"foreground": "#569cd6"
|
|
349
|
+
}
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"scope": "keyword.other.unit",
|
|
353
|
+
"settings": {
|
|
354
|
+
"foreground": "#b5cea8"
|
|
355
|
+
}
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
"scope": [
|
|
359
|
+
"punctuation.section.embedded.begin.php",
|
|
360
|
+
"punctuation.section.embedded.end.php"
|
|
361
|
+
],
|
|
362
|
+
"settings": {
|
|
363
|
+
"foreground": "#569cd6"
|
|
364
|
+
}
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"scope": "support.function.git-rebase",
|
|
368
|
+
"settings": {
|
|
369
|
+
"foreground": "#9cdcfe"
|
|
370
|
+
}
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"scope": "constant.sha.git-rebase",
|
|
374
|
+
"settings": {
|
|
375
|
+
"foreground": "#b5cea8"
|
|
376
|
+
}
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"name": "coloring of the Java import and package identifiers",
|
|
380
|
+
"scope": [
|
|
381
|
+
"storage.modifier.import.java",
|
|
382
|
+
"variable.language.wildcard.java",
|
|
383
|
+
"storage.modifier.package.java"
|
|
384
|
+
],
|
|
385
|
+
"settings": {
|
|
386
|
+
"foreground": "#d4d4d4"
|
|
387
|
+
}
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"name": "this.self",
|
|
391
|
+
"scope": "variable.language",
|
|
392
|
+
"settings": {
|
|
393
|
+
"foreground": "#569cd6"
|
|
394
|
+
}
|
|
395
|
+
}
|
|
396
|
+
],
|
|
397
|
+
"semanticHighlighting": true,
|
|
398
|
+
"semanticTokenColors": {
|
|
399
|
+
"newOperator": "#d4d4d4",
|
|
400
|
+
"stringLiteral": "#ce9178",
|
|
401
|
+
"customLiteral": "#D4D4D4",
|
|
402
|
+
"numberLiteral": "#b5cea8",
|
|
403
|
+
}
|
|
404
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 1L3 2V14L4 15H13L14 14V5L13.7071 4.29289L10.7071 1.29289L10 1H4ZM4 14V2L9 2V6H13V14H4ZM13 5L10 2V5L13 5Z" fill="#C5C5C5"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 1L3 2V14L4 15H13L14 14V5L13.7071 4.29289L10.7071 1.29289L10 1H4ZM4 14V2L9 2V6H13V14H4ZM13 5L10 2V5L13 5Z" fill="#424242"/>
|
|
3
|
+
</svg>
|
package/folder-dark.svg
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.01087 2.5L1.51087 2H6.50713L6.86068 2.14645L7.71349 2.99925H14.5011L15.0011 3.49925V8.99512L14.9903 9.00599V13.5021L14.4903 14.0021H1.5L1 13.5021V6.50735L1.01087 6.49648V2.5ZM14.0011 3.99925V5.00311H7.5005L7.14695 5.14956L6.28915 6.00735H2.01087V3H6.30002L7.15283 3.8528L7.50638 3.99925H14.0011ZM6.49626 7.00735H2.01087V7.49588H1.99963V11.4929H2V13.0021H13.9903V11.4929H13.9906V7.49588H13.9903V6.00311H7.70761L6.84981 6.8609L6.49626 7.00735Z" fill="#C5C5C5"/>
|
|
3
|
+
</svg>
|
package/folder-light.svg
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.01087 2.5L1.51087 2H6.50713L6.86068 2.14645L7.71349 2.99925H14.5011L15.0011 3.49925V8.99512L14.9903 9.00599V13.5021L14.4903 14.0021H1.5L1 13.5021V6.50735L1.01087 6.49648V2.5ZM14.0011 3.99925V5.00311H7.5005L7.14695 5.14956L6.28915 6.00735H2.01087V3H6.30002L7.15283 3.8528L7.50638 3.99925H14.0011ZM6.49626 7.00735H2.01087V7.49588H1.99963V11.4929H2V13.0021H13.9903V11.4929H13.9906V7.49588H13.9903V6.00311H7.70761L6.84981 6.8609L6.49626 7.00735Z" fill="#424242"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M13 3.5V6H12V4H6.5L6.146 3.854L5.293 3H1V10.418L0.025 13.342L0.5 14L0 13.5V2.5L0.5 2H5.5L5.854 2.146L6.707 3H12.5L13 3.5Z" fill="#C5C5C5"/>
|
|
3
|
+
<path d="M15.151 6H8.50002L8.14602 6.146L7.29302 7H2.50002L2.02502 7.342L0.0250244 13.342L0.500024 14L12.516 14L13 13.629L15.634 6.629L15.151 6ZM12.133 13L1.19302 13L2.86002 8H7.50002L7.85402 7.854L8.70702 7H14.5L12.133 13Z" fill="#C5C5C5"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M13 3.5V6H12V4H6.5L6.146 3.854L5.293 3H1V10.418L0.025 13.342L0.5 14L0 13.5V2.5L0.5 2H5.5L5.854 2.146L6.707 3H12.5L13 3.5Z" fill="#424242"/>
|
|
3
|
+
<path d="M15.151 6H8.50002L8.14602 6.146L7.29302 7H2.50002L2.02502 7.342L0.0250244 13.342L0.500024 14L12.516 14L13 13.629L15.634 6.629L15.151 6ZM12.133 13L1.19302 13L2.86002 8H7.50002L7.85402 7.854L8.70702 7H14.5L12.133 13Z" fill="#424242"/>
|
|
4
|
+
</svg>
|