@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/light_vs.json
ADDED
|
@@ -0,0 +1,433 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "vscode://schemas/color-theme",
|
|
3
|
+
"name": "Light (Visual Studio)",
|
|
4
|
+
"colors": {
|
|
5
|
+
"checkbox.border": "#919191",
|
|
6
|
+
"editor.background": "#FFFFFF",
|
|
7
|
+
"editor.foreground": "#000000",
|
|
8
|
+
"editor.inactiveSelectionBackground": "#E5EBF1",
|
|
9
|
+
"editorIndentGuide.background": "#D3D3D3",
|
|
10
|
+
"editorIndentGuide.activeBackground": "#939393",
|
|
11
|
+
"editor.selectionHighlightBackground": "#ADD6FF80",
|
|
12
|
+
"editorSuggestWidget.background": "#F3F3F3",
|
|
13
|
+
"activityBarBadge.background": "#007ACC",
|
|
14
|
+
"sideBarTitle.foreground": "#6F6F6F",
|
|
15
|
+
"list.hoverBackground": "#E8E8E8",
|
|
16
|
+
"menu.border": "#D4D4D4",
|
|
17
|
+
"input.placeholderForeground": "#767676",
|
|
18
|
+
"searchEditor.textInputBorder": "#CECECE",
|
|
19
|
+
"settings.textInputBorder": "#CECECE",
|
|
20
|
+
"settings.numberInputBorder": "#CECECE",
|
|
21
|
+
"statusBarItem.remoteForeground": "#FFF",
|
|
22
|
+
"statusBarItem.remoteBackground": "#16825D",
|
|
23
|
+
"ports.iconRunningProcessForeground": "#369432",
|
|
24
|
+
"sideBarSectionHeader.background": "#0000",
|
|
25
|
+
"sideBarSectionHeader.border": "#61616130",
|
|
26
|
+
"tab.lastPinnedBorder": "#61616130",
|
|
27
|
+
"notebook.cellBorderColor": "#E8E8E8",
|
|
28
|
+
"notebook.selectedCellBackground": "#c8ddf150",
|
|
29
|
+
"statusBarItem.errorBackground": "#c72e0f",
|
|
30
|
+
"list.activeSelectionIconForeground": "#FFF",
|
|
31
|
+
"list.focusAndSelectionOutline": "#90C2F9",
|
|
32
|
+
"terminal.inactiveSelectionBackground": "#E5EBF1",
|
|
33
|
+
"widget.border": "#d4d4d4"
|
|
34
|
+
},
|
|
35
|
+
"tokenColors": [
|
|
36
|
+
{
|
|
37
|
+
"scope": [
|
|
38
|
+
"meta.embedded",
|
|
39
|
+
"source.groovy.embedded",
|
|
40
|
+
"string meta.image.inline.markdown"
|
|
41
|
+
],
|
|
42
|
+
"settings": {
|
|
43
|
+
"foreground": "#000000ff"
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"scope": "emphasis",
|
|
48
|
+
"settings": {
|
|
49
|
+
"fontStyle": "italic"
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"scope": "strong",
|
|
54
|
+
"settings": {
|
|
55
|
+
"fontStyle": "bold"
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"scope": "meta.diff.header",
|
|
60
|
+
"settings": {
|
|
61
|
+
"foreground": "#000080"
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"scope": "comment",
|
|
66
|
+
"settings": {
|
|
67
|
+
"foreground": "#008000"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"scope": "constant.language",
|
|
72
|
+
"settings": {
|
|
73
|
+
"foreground": "#0000ff"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"scope": [
|
|
78
|
+
"constant.numeric",
|
|
79
|
+
"variable.other.enummember",
|
|
80
|
+
"keyword.operator.plus.exponent",
|
|
81
|
+
"keyword.operator.minus.exponent"
|
|
82
|
+
],
|
|
83
|
+
"settings": {
|
|
84
|
+
"foreground": "#098658"
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"scope": "constant.regexp",
|
|
89
|
+
"settings": {
|
|
90
|
+
"foreground": "#811f3f"
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"name": "css tags in selectors, xml tags",
|
|
95
|
+
"scope": "entity.name.tag",
|
|
96
|
+
"settings": {
|
|
97
|
+
"foreground": "#800000"
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"scope": "entity.name.selector",
|
|
102
|
+
"settings": {
|
|
103
|
+
"foreground": "#800000"
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"scope": "entity.other.attribute-name",
|
|
108
|
+
"settings": {
|
|
109
|
+
"foreground": "#e50000"
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"scope": [
|
|
114
|
+
"entity.other.attribute-name.class.css",
|
|
115
|
+
"entity.other.attribute-name.class.mixin.css",
|
|
116
|
+
"entity.other.attribute-name.id.css",
|
|
117
|
+
"entity.other.attribute-name.parent-selector.css",
|
|
118
|
+
"entity.other.attribute-name.pseudo-class.css",
|
|
119
|
+
"entity.other.attribute-name.pseudo-element.css",
|
|
120
|
+
"source.css.less entity.other.attribute-name.id",
|
|
121
|
+
"entity.other.attribute-name.scss"
|
|
122
|
+
],
|
|
123
|
+
"settings": {
|
|
124
|
+
"foreground": "#800000"
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"scope": "invalid",
|
|
129
|
+
"settings": {
|
|
130
|
+
"foreground": "#cd3131"
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"scope": "markup.underline",
|
|
135
|
+
"settings": {
|
|
136
|
+
"fontStyle": "underline"
|
|
137
|
+
}
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"scope": "markup.bold",
|
|
141
|
+
"settings": {
|
|
142
|
+
"fontStyle": "bold",
|
|
143
|
+
"foreground": "#000080"
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"scope": "markup.heading",
|
|
148
|
+
"settings": {
|
|
149
|
+
"fontStyle": "bold",
|
|
150
|
+
"foreground": "#800000"
|
|
151
|
+
}
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"scope": "markup.italic",
|
|
155
|
+
"settings": {
|
|
156
|
+
"fontStyle": "italic"
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"scope": "markup.strikethrough",
|
|
161
|
+
"settings": {
|
|
162
|
+
"fontStyle": "strikethrough"
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"scope": "markup.inserted",
|
|
167
|
+
"settings": {
|
|
168
|
+
"foreground": "#098658"
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"scope": "markup.deleted",
|
|
173
|
+
"settings": {
|
|
174
|
+
"foreground": "#a31515"
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"scope": "markup.changed",
|
|
179
|
+
"settings": {
|
|
180
|
+
"foreground": "#0451a5"
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"scope": [
|
|
185
|
+
"punctuation.definition.quote.begin.markdown",
|
|
186
|
+
"punctuation.definition.list.begin.markdown"
|
|
187
|
+
],
|
|
188
|
+
"settings": {
|
|
189
|
+
"foreground": "#0451a5"
|
|
190
|
+
}
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"scope": "markup.inline.raw",
|
|
194
|
+
"settings": {
|
|
195
|
+
"foreground": "#800000"
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"name": "brackets of XML/HTML tags",
|
|
200
|
+
"scope": "punctuation.definition.tag",
|
|
201
|
+
"settings": {
|
|
202
|
+
"foreground": "#800000"
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"scope": [
|
|
207
|
+
"meta.preprocessor",
|
|
208
|
+
"entity.name.function.preprocessor"
|
|
209
|
+
],
|
|
210
|
+
"settings": {
|
|
211
|
+
"foreground": "#0000ff"
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"scope": "meta.preprocessor.string",
|
|
216
|
+
"settings": {
|
|
217
|
+
"foreground": "#a31515"
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"scope": "meta.preprocessor.numeric",
|
|
222
|
+
"settings": {
|
|
223
|
+
"foreground": "#098658"
|
|
224
|
+
}
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"scope": "meta.structure.dictionary.key.python",
|
|
228
|
+
"settings": {
|
|
229
|
+
"foreground": "#0451a5"
|
|
230
|
+
}
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"scope": "storage",
|
|
234
|
+
"settings": {
|
|
235
|
+
"foreground": "#0000ff"
|
|
236
|
+
}
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"scope": "storage.type",
|
|
240
|
+
"settings": {
|
|
241
|
+
"foreground": "#0000ff"
|
|
242
|
+
}
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"scope": [
|
|
246
|
+
"storage.modifier",
|
|
247
|
+
"keyword.operator.noexcept"
|
|
248
|
+
],
|
|
249
|
+
"settings": {
|
|
250
|
+
"foreground": "#0000ff"
|
|
251
|
+
}
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"scope": [
|
|
255
|
+
"string",
|
|
256
|
+
"meta.embedded.assembly"
|
|
257
|
+
],
|
|
258
|
+
"settings": {
|
|
259
|
+
"foreground": "#a31515"
|
|
260
|
+
}
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"scope": [
|
|
264
|
+
"string.comment.buffered.block.pug",
|
|
265
|
+
"string.quoted.pug",
|
|
266
|
+
"string.interpolated.pug",
|
|
267
|
+
"string.unquoted.plain.in.yaml",
|
|
268
|
+
"string.unquoted.plain.out.yaml",
|
|
269
|
+
"string.unquoted.block.yaml",
|
|
270
|
+
"string.quoted.single.yaml",
|
|
271
|
+
"string.quoted.double.xml",
|
|
272
|
+
"string.quoted.single.xml",
|
|
273
|
+
"string.unquoted.cdata.xml",
|
|
274
|
+
"string.quoted.double.html",
|
|
275
|
+
"string.quoted.single.html",
|
|
276
|
+
"string.unquoted.html",
|
|
277
|
+
"string.quoted.single.handlebars",
|
|
278
|
+
"string.quoted.double.handlebars"
|
|
279
|
+
],
|
|
280
|
+
"settings": {
|
|
281
|
+
"foreground": "#0000ff"
|
|
282
|
+
}
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"scope": "string.regexp",
|
|
286
|
+
"settings": {
|
|
287
|
+
"foreground": "#811f3f"
|
|
288
|
+
}
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"name": "String interpolation",
|
|
292
|
+
"scope": [
|
|
293
|
+
"punctuation.definition.template-expression.begin",
|
|
294
|
+
"punctuation.definition.template-expression.end",
|
|
295
|
+
"punctuation.section.embedded"
|
|
296
|
+
],
|
|
297
|
+
"settings": {
|
|
298
|
+
"foreground": "#0000ff"
|
|
299
|
+
}
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"name": "Reset JavaScript string interpolation expression",
|
|
303
|
+
"scope": [
|
|
304
|
+
"meta.template.expression"
|
|
305
|
+
],
|
|
306
|
+
"settings": {
|
|
307
|
+
"foreground": "#000000"
|
|
308
|
+
}
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"scope": [
|
|
312
|
+
"support.constant.property-value",
|
|
313
|
+
"support.constant.font-name",
|
|
314
|
+
"support.constant.media-type",
|
|
315
|
+
"support.constant.media",
|
|
316
|
+
"constant.other.color.rgb-value",
|
|
317
|
+
"constant.other.rgb-value",
|
|
318
|
+
"support.constant.color"
|
|
319
|
+
],
|
|
320
|
+
"settings": {
|
|
321
|
+
"foreground": "#0451a5"
|
|
322
|
+
}
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"scope": [
|
|
326
|
+
"support.type.vendored.property-name",
|
|
327
|
+
"support.type.property-name",
|
|
328
|
+
"variable.css",
|
|
329
|
+
"variable.scss",
|
|
330
|
+
"variable.other.less",
|
|
331
|
+
"source.coffee.embedded"
|
|
332
|
+
],
|
|
333
|
+
"settings": {
|
|
334
|
+
"foreground": "#e50000"
|
|
335
|
+
}
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"scope": [
|
|
339
|
+
"support.type.property-name.json"
|
|
340
|
+
],
|
|
341
|
+
"settings": {
|
|
342
|
+
"foreground": "#0451a5"
|
|
343
|
+
}
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"scope": "keyword",
|
|
347
|
+
"settings": {
|
|
348
|
+
"foreground": "#0000ff"
|
|
349
|
+
}
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"scope": "keyword.control",
|
|
353
|
+
"settings": {
|
|
354
|
+
"foreground": "#0000ff"
|
|
355
|
+
}
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
"scope": "keyword.operator",
|
|
359
|
+
"settings": {
|
|
360
|
+
"foreground": "#000000"
|
|
361
|
+
}
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"scope": [
|
|
365
|
+
"keyword.operator.new",
|
|
366
|
+
"keyword.operator.expression",
|
|
367
|
+
"keyword.operator.cast",
|
|
368
|
+
"keyword.operator.sizeof",
|
|
369
|
+
"keyword.operator.alignof",
|
|
370
|
+
"keyword.operator.typeid",
|
|
371
|
+
"keyword.operator.alignas",
|
|
372
|
+
"keyword.operator.instanceof",
|
|
373
|
+
"keyword.operator.logical.python",
|
|
374
|
+
"keyword.operator.wordlike"
|
|
375
|
+
],
|
|
376
|
+
"settings": {
|
|
377
|
+
"foreground": "#0000ff"
|
|
378
|
+
}
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"scope": "keyword.other.unit",
|
|
382
|
+
"settings": {
|
|
383
|
+
"foreground": "#098658"
|
|
384
|
+
}
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"scope": [
|
|
388
|
+
"punctuation.section.embedded.begin.php",
|
|
389
|
+
"punctuation.section.embedded.end.php"
|
|
390
|
+
],
|
|
391
|
+
"settings": {
|
|
392
|
+
"foreground": "#800000"
|
|
393
|
+
}
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"scope": "support.function.git-rebase",
|
|
397
|
+
"settings": {
|
|
398
|
+
"foreground": "#0451a5"
|
|
399
|
+
}
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"scope": "constant.sha.git-rebase",
|
|
403
|
+
"settings": {
|
|
404
|
+
"foreground": "#098658"
|
|
405
|
+
}
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"name": "coloring of the Java import and package identifiers",
|
|
409
|
+
"scope": [
|
|
410
|
+
"storage.modifier.import.java",
|
|
411
|
+
"variable.language.wildcard.java",
|
|
412
|
+
"storage.modifier.package.java"
|
|
413
|
+
],
|
|
414
|
+
"settings": {
|
|
415
|
+
"foreground": "#000000"
|
|
416
|
+
}
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
"name": "this.self",
|
|
420
|
+
"scope": "variable.language",
|
|
421
|
+
"settings": {
|
|
422
|
+
"foreground": "#0000ff"
|
|
423
|
+
}
|
|
424
|
+
}
|
|
425
|
+
],
|
|
426
|
+
"semanticHighlighting": true,
|
|
427
|
+
"semanticTokenColors": {
|
|
428
|
+
"newOperator": "#0000ff",
|
|
429
|
+
"stringLiteral": "#a31515",
|
|
430
|
+
"customLiteral": "#000000",
|
|
431
|
+
"numberLiteral": "#098658",
|
|
432
|
+
}
|
|
433
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@codingame/monaco-vscode-theme-defaults-default-extension",
|
|
3
|
+
"version": "1.81.8-next.1",
|
|
4
|
+
"keywords": [],
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "CodinGame",
|
|
7
|
+
"url": "http://www.codingame.com"
|
|
8
|
+
},
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/CodinGame/monaco-vscode-api"
|
|
13
|
+
},
|
|
14
|
+
"type": "module",
|
|
15
|
+
"private": false,
|
|
16
|
+
"description": "Default VSCode extension designed to be used with @codingame/monaco-vscode-api",
|
|
17
|
+
"main": "index.js",
|
|
18
|
+
"module": "index.js",
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"vscode": "npm:@codingame/monaco-vscode-api@1.81.8-next.1"
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
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.51087 2L1.01087 2.5V6.24821C1.31813 5.99577 1.65323 5.77599 2.01087 5.59417V3H6.30003L7.15283 3.8528L7.50638 3.99925H14.0011V5.00311H7.50051L7.14695 5.14956L6.79587 5.50064C7.11147 5.64581 7.41097 5.81999 7.69096 6.01976L7.70761 6.00311H13.9903V7.49588H13.9906V11.4929H13.9903V13.0021H9.39923C9.21613 13.3599 8.99498 13.695 8.74113 14.0021H14.4903L14.9903 13.5021V9.00599L15.0011 8.99512V3.49925L14.5011 2.99925H7.71349L6.86069 2.14645L6.50713 2H1.51087Z" fill="#C5C5C5"/>
|
|
3
|
+
<path d="M6 10.5C6 11.3284 5.32843 12 4.5 12C3.67157 12 3 11.3284 3 10.5C3 9.67157 3.67157 9 4.5 9C5.32843 9 6 9.67157 6 10.5Z" fill="#C4C4C4"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 10.5C8 12.433 6.433 14 4.5 14C2.567 14 1 12.433 1 10.5C1 8.567 2.567 7 4.5 7C6.433 7 8 8.567 8 10.5ZM4.5 13C5.88071 13 7 11.8807 7 10.5C7 9.11929 5.88071 8 4.5 8C3.11929 8 2 9.11929 2 10.5C2 11.8807 3.11929 13 4.5 13Z" fill="#C4C4C4"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
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.51087 2L1.01087 2.5V6.24821C1.31813 5.99577 1.65323 5.77599 2.01087 5.59417V3H6.30003L7.15283 3.8528L7.50638 3.99925H14.0011V5.00311H7.50051L7.14695 5.14956L6.79587 5.50064C7.11147 5.64581 7.41097 5.81999 7.69096 6.01976L7.70761 6.00311H13.9903V7.49588H13.9906V11.4929H13.9903V13.0021H9.39923C9.21613 13.3599 8.99498 13.695 8.74113 14.0021H14.4903L14.9903 13.5021V9.00599L15.0011 8.99512V3.49925L14.5011 2.99925H7.71349L6.86069 2.14645L6.50713 2H1.51087Z" fill="#424242"/>
|
|
3
|
+
<path d="M6 10.5C6 11.3284 5.32843 12 4.5 12C3.67157 12 3 11.3284 3 10.5C3 9.67157 3.67157 9 4.5 9C5.32843 9 6 9.67157 6 10.5Z" fill="#424242"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 10.5C8 12.433 6.433 14 4.5 14C2.567 14 1 12.433 1 10.5C1 8.567 2.567 7 4.5 7C6.433 7 8 8.567 8 10.5ZM4.5 13C5.88071 13 7 11.8807 7 10.5C7 9.11929 5.88071 8 4.5 8C3.11929 8 2 9.11929 2 10.5C2 11.8807 3.11929 13 4.5 13Z" fill="#424242"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
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="M13 3.5V6H15.151L15.634 6.629L13 13.629L12.516 14L8.74284 14C8.99647 13.6929 9.2174 13.3578 9.4003 13L12.133 13L14.5 7H8.74284C8.52467 6.73583 8.2823 6.49238 8.01914 6.27304L8.14602 6.146L8.50002 6H12V4H6.5L6.146 3.854L5.293 3H1V6.25716C0.62057 6.57052 0.283885 6.93379 0 7.33692V2.5L0.5 2H5.5L5.854 2.146L6.707 3H12.5L13 3.5Z" fill="#C5C5C5"/>
|
|
3
|
+
<path d="M6 10.5C6 11.3284 5.32843 12 4.5 12C3.67157 12 3 11.3284 3 10.5C3 9.67157 3.67157 9 4.5 9C5.32843 9 6 9.67157 6 10.5Z" fill="#C4C4C4"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 10.5C8 12.433 6.433 14 4.5 14C2.567 14 1 12.433 1 10.5C1 8.567 2.567 7 4.5 7C6.433 7 8 8.567 8 10.5ZM4.5 13C5.88071 13 7 11.8807 7 10.5C7 9.11929 5.88071 8 4.5 8C3.11929 8 2 9.11929 2 10.5C2 11.8807 3.11929 13 4.5 13Z" fill="#C4C4C4"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
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="M13 3.5V6H15.151L15.634 6.629L13 13.629L12.516 14L8.74284 14C8.99647 13.6929 9.2174 13.3578 9.4003 13L12.133 13L14.5 7H8.74284C8.52467 6.73583 8.2823 6.49238 8.01914 6.27304L8.14602 6.146L8.50002 6H12V4H6.5L6.146 3.854L5.293 3H1V6.25716C0.62057 6.57052 0.283885 6.93379 0 7.33692V2.5L0.5 2H5.5L5.854 2.146L6.707 3H12.5L13 3.5Z" fill="#424242"/>
|
|
3
|
+
<path d="M6 10.5C6 11.3284 5.32843 12 4.5 12C3.67157 12 3 11.3284 3 10.5C3 9.67157 3.67157 9 4.5 9C5.32843 9 6 9.67157 6 10.5Z" fill="#424242"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 10.5C8 12.433 6.433 14 4.5 14C2.567 14 1 12.433 1 10.5C1 8.567 2.567 7 4.5 7C6.433 7 8 8.567 8 10.5ZM4.5 13C5.88071 13 7 11.8807 7 10.5C7 9.11929 5.88071 8 4.5 8C3.11929 8 2 9.11929 2 10.5C2 11.8807 3.11929 13 4.5 13Z" fill="#424242"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
{
|
|
2
|
+
"iconDefinitions": {
|
|
3
|
+
"_root_folder_dark": {
|
|
4
|
+
"iconPath": "./images/root-folder-dark.svg"
|
|
5
|
+
},
|
|
6
|
+
"_root_folder_open_dark": {
|
|
7
|
+
"iconPath": "./images/root-folder-open-dark.svg"
|
|
8
|
+
},
|
|
9
|
+
"_folder_dark": {
|
|
10
|
+
"iconPath": "./images/folder-dark.svg"
|
|
11
|
+
},
|
|
12
|
+
"_folder_open_dark": {
|
|
13
|
+
"iconPath": "./images/folder-open-dark.svg"
|
|
14
|
+
},
|
|
15
|
+
"_file_dark": {
|
|
16
|
+
"iconPath": "./images/document-dark.svg"
|
|
17
|
+
},
|
|
18
|
+
"_root_folder": {
|
|
19
|
+
"iconPath": "./images/root-folder-light.svg"
|
|
20
|
+
},
|
|
21
|
+
"_root_folder_open": {
|
|
22
|
+
"iconPath": "./images/root-folder-open-light.svg"
|
|
23
|
+
},
|
|
24
|
+
"_folder_light": {
|
|
25
|
+
"iconPath": "./images/folder-light.svg"
|
|
26
|
+
},
|
|
27
|
+
"_folder_open_light": {
|
|
28
|
+
"iconPath": "./images/folder-open-light.svg"
|
|
29
|
+
},
|
|
30
|
+
"_file_light": {
|
|
31
|
+
"iconPath": "./images/document-light.svg"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
|
|
35
|
+
"folderExpanded": "_folder_open_dark",
|
|
36
|
+
"folder": "_folder_dark",
|
|
37
|
+
"file": "_file_dark",
|
|
38
|
+
"rootFolderExpanded": "_root_folder_open_dark",
|
|
39
|
+
"rootFolder": "_root_folder_dark",
|
|
40
|
+
"fileExtensions": {
|
|
41
|
+
// icons by file extension
|
|
42
|
+
},
|
|
43
|
+
"fileNames": {
|
|
44
|
+
// icons by file name
|
|
45
|
+
},
|
|
46
|
+
"languageIds": {
|
|
47
|
+
// icons by language id
|
|
48
|
+
},
|
|
49
|
+
"light": {
|
|
50
|
+
"folderExpanded": "_folder_open_light",
|
|
51
|
+
"folder": "_folder_light",
|
|
52
|
+
"rootFolderExpanded": "_root_folder_open",
|
|
53
|
+
"rootFolder": "_root_folder",
|
|
54
|
+
"file": "_file_light",
|
|
55
|
+
"fileExtensions": {
|
|
56
|
+
// icons by file extension
|
|
57
|
+
},
|
|
58
|
+
"fileNames": {
|
|
59
|
+
// icons by file name
|
|
60
|
+
},
|
|
61
|
+
"languageIds": {
|
|
62
|
+
// icons by language id
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"highContrast": {
|
|
66
|
+
// overrides for high contrast
|
|
67
|
+
}
|
|
68
|
+
}
|