@codingame/monaco-vscode-theme-defaults-default-extension 1.85.2 → 1.85.3

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.
Files changed (33) hide show
  1. package/index.js +21 -20
  2. package/package.json +2 -2
  3. package/resources/dark_modern.json +1 -0
  4. package/resources/dark_plus.json +1 -0
  5. package/resources/dark_vs.json +1 -0
  6. package/resources/hc_black.json +1 -0
  7. package/resources/hc_light.json +1 -0
  8. package/resources/light_modern.json +1 -0
  9. package/resources/light_plus.json +1 -0
  10. package/resources/light_vs.json +1 -0
  11. package/resources/package.json +1 -0
  12. package/resources/package.nls.json +1 -0
  13. package/resources/vs_minimal-icon-theme.json +1 -0
  14. package/dark_modern.json +0 -128
  15. package/dark_plus.json +0 -204
  16. package/dark_vs.json +0 -406
  17. package/hc_black.json +0 -466
  18. package/hc_light.json +0 -574
  19. package/light_modern.json +0 -145
  20. package/light_plus.json +0 -206
  21. package/light_vs.json +0 -435
  22. package/package.nls.json +0 -13
  23. package/vs_minimal-icon-theme.json +0 -68
  24. /package/{document-dark.svg → resources/document-dark.svg} +0 -0
  25. /package/{document-light.svg → resources/document-light.svg} +0 -0
  26. /package/{folder-dark.svg → resources/folder-dark.svg} +0 -0
  27. /package/{folder-light.svg → resources/folder-light.svg} +0 -0
  28. /package/{folder-open-dark.svg → resources/folder-open-dark.svg} +0 -0
  29. /package/{folder-open-light.svg → resources/folder-open-light.svg} +0 -0
  30. /package/{root-folder-dark.svg → resources/root-folder-dark.svg} +0 -0
  31. /package/{root-folder-light.svg → resources/root-folder-light.svg} +0 -0
  32. /package/{root-folder-open-dark.svg → resources/root-folder-open-dark.svg} +0 -0
  33. /package/{root-folder-open-light.svg → resources/root-folder-open-light.svg} +0 -0
package/light_plus.json DELETED
@@ -1,206 +0,0 @@
1
- {
2
- "$schema": "vscode://schemas/color-theme",
3
- "name": "Light+",
4
- "include": "./light_vs.json",
5
- "tokenColors": [ // adds rules to the light vs rules
6
- {
7
- "name": "Function declarations",
8
- "scope": [
9
- "entity.name.function",
10
- "support.function",
11
- "support.constant.handlebars",
12
- "source.powershell variable.other.member",
13
- "entity.name.operator.custom-literal" // See https://en.cppreference.com/w/cpp/language/user_literal
14
- ],
15
- "settings": {
16
- "foreground": "#795E26"
17
- }
18
- },
19
- {
20
- "name": "Types declaration and references",
21
- "scope": [
22
- "support.class",
23
- "support.type",
24
- "entity.name.type",
25
- "entity.name.namespace",
26
- "entity.other.attribute",
27
- "entity.name.scope-resolution",
28
- "entity.name.class",
29
- "storage.type.numeric.go",
30
- "storage.type.byte.go",
31
- "storage.type.boolean.go",
32
- "storage.type.string.go",
33
- "storage.type.uintptr.go",
34
- "storage.type.error.go",
35
- "storage.type.rune.go",
36
- "storage.type.cs",
37
- "storage.type.generic.cs",
38
- "storage.type.modifier.cs",
39
- "storage.type.variable.cs",
40
- "storage.type.annotation.java",
41
- "storage.type.generic.java",
42
- "storage.type.java",
43
- "storage.type.object.array.java",
44
- "storage.type.primitive.array.java",
45
- "storage.type.primitive.java",
46
- "storage.type.token.java",
47
- "storage.type.groovy",
48
- "storage.type.annotation.groovy",
49
- "storage.type.parameters.groovy",
50
- "storage.type.generic.groovy",
51
- "storage.type.object.array.groovy",
52
- "storage.type.primitive.array.groovy",
53
- "storage.type.primitive.groovy"
54
- ],
55
- "settings": {
56
- "foreground": "#267f99"
57
- }
58
- },
59
- {
60
- "name": "Types declaration and references, TS grammar specific",
61
- "scope": [
62
- "meta.type.cast.expr",
63
- "meta.type.new.expr",
64
- "support.constant.math",
65
- "support.constant.dom",
66
- "support.constant.json",
67
- "entity.other.inherited-class"
68
- ],
69
- "settings": {
70
- "foreground": "#267f99"
71
- }
72
- },
73
- {
74
- "name": "Control flow / Special keywords",
75
- "scope": [
76
- "keyword.control",
77
- "source.cpp keyword.operator.new",
78
- "source.cpp keyword.operator.delete",
79
- "keyword.other.using",
80
- "keyword.other.directive.using",
81
- "keyword.other.operator",
82
- "entity.name.operator"
83
- ],
84
- "settings": {
85
- "foreground": "#AF00DB"
86
- }
87
- },
88
- {
89
- "name": "Variable and parameter name",
90
- "scope": [
91
- "variable",
92
- "meta.definition.variable.name",
93
- "support.variable",
94
- "entity.name.variable",
95
- "constant.other.placeholder", // placeholders in strings
96
-
97
- ],
98
- "settings": {
99
- "foreground": "#001080"
100
- }
101
- },
102
- {
103
- "name": "Constants and enums",
104
- "scope": [
105
- "variable.other.constant",
106
- "variable.other.enummember"
107
- ],
108
- "settings": {
109
- "foreground": "#0070C1",
110
- }
111
- },
112
- {
113
- "name": "Object keys, TS grammar specific",
114
- "scope": [
115
- "meta.object-literal.key"
116
- ],
117
- "settings": {
118
- "foreground": "#001080"
119
- }
120
- },
121
- {
122
- "name": "CSS property value",
123
- "scope": [
124
- "support.constant.property-value",
125
- "support.constant.font-name",
126
- "support.constant.media-type",
127
- "support.constant.media",
128
- "constant.other.color.rgb-value",
129
- "constant.other.rgb-value",
130
- "support.constant.color"
131
- ],
132
- "settings": {
133
- "foreground": "#0451a5"
134
- }
135
- },
136
- {
137
- "name": "Regular expression groups",
138
- "scope": [
139
- "punctuation.definition.group.regexp",
140
- "punctuation.definition.group.assertion.regexp",
141
- "punctuation.definition.character-class.regexp",
142
- "punctuation.character.set.begin.regexp",
143
- "punctuation.character.set.end.regexp",
144
- "keyword.operator.negation.regexp",
145
- "support.other.parenthesis.regexp"
146
- ],
147
- "settings": {
148
- "foreground": "#d16969"
149
- }
150
- },
151
- {
152
- "scope": [
153
- "constant.character.character-class.regexp",
154
- "constant.other.character-class.set.regexp",
155
- "constant.other.character-class.regexp",
156
- "constant.character.set.regexp"
157
- ],
158
- "settings": {
159
- "foreground": "#811f3f"
160
- }
161
- },
162
- {
163
- "scope": "keyword.operator.quantifier.regexp",
164
- "settings": {
165
- "foreground": "#000000"
166
- }
167
- },
168
- {
169
- "scope": [
170
- "keyword.operator.or.regexp",
171
- "keyword.control.anchor.regexp"
172
- ],
173
- "settings": {
174
- "foreground": "#EE0000"
175
- }
176
- },
177
- {
178
- "scope": [
179
- "constant.character",
180
- "constant.other.option"
181
- ],
182
- "settings": {
183
- "foreground": "#0000ff"
184
- }
185
- },
186
- {
187
- "scope": "constant.character.escape",
188
- "settings": {
189
- "foreground": "#EE0000"
190
- }
191
- },
192
- {
193
- "scope": "entity.name.label",
194
- "settings": {
195
- "foreground": "#000000"
196
- }
197
- }
198
- ],
199
- "semanticHighlighting": true,
200
- "semanticTokenColors": {
201
- "newOperator": "#AF00DB",
202
- "stringLiteral": "#a31515",
203
- "customLiteral": "#795E26",
204
- "numberLiteral": "#098658",
205
- }
206
- }
package/light_vs.json DELETED
@@ -1,435 +0,0 @@
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.background1": "#D3D3D3",
10
- "editorIndentGuide.activeBackground1": "#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
- "actionBar.toggledBackground": "#dddddd"
35
- },
36
- "tokenColors": [
37
- {
38
- "scope": [
39
- "meta.embedded",
40
- "source.groovy.embedded",
41
- "string meta.image.inline.markdown",
42
- "variable.legacy.builtin.python"
43
- ],
44
- "settings": {
45
- "foreground": "#000000ff"
46
- }
47
- },
48
- {
49
- "scope": "emphasis",
50
- "settings": {
51
- "fontStyle": "italic"
52
- }
53
- },
54
- {
55
- "scope": "strong",
56
- "settings": {
57
- "fontStyle": "bold"
58
- }
59
- },
60
- {
61
- "scope": "meta.diff.header",
62
- "settings": {
63
- "foreground": "#000080"
64
- }
65
- },
66
- {
67
- "scope": "comment",
68
- "settings": {
69
- "foreground": "#008000"
70
- }
71
- },
72
- {
73
- "scope": "constant.language",
74
- "settings": {
75
- "foreground": "#0000ff"
76
- }
77
- },
78
- {
79
- "scope": [
80
- "constant.numeric",
81
- "variable.other.enummember",
82
- "keyword.operator.plus.exponent",
83
- "keyword.operator.minus.exponent"
84
- ],
85
- "settings": {
86
- "foreground": "#098658"
87
- }
88
- },
89
- {
90
- "scope": "constant.regexp",
91
- "settings": {
92
- "foreground": "#811f3f"
93
- }
94
- },
95
- {
96
- "name": "css tags in selectors, xml tags",
97
- "scope": "entity.name.tag",
98
- "settings": {
99
- "foreground": "#800000"
100
- }
101
- },
102
- {
103
- "scope": "entity.name.selector",
104
- "settings": {
105
- "foreground": "#800000"
106
- }
107
- },
108
- {
109
- "scope": "entity.other.attribute-name",
110
- "settings": {
111
- "foreground": "#e50000"
112
- }
113
- },
114
- {
115
- "scope": [
116
- "entity.other.attribute-name.class.css",
117
- "entity.other.attribute-name.class.mixin.css",
118
- "entity.other.attribute-name.id.css",
119
- "entity.other.attribute-name.parent-selector.css",
120
- "entity.other.attribute-name.pseudo-class.css",
121
- "entity.other.attribute-name.pseudo-element.css",
122
- "source.css.less entity.other.attribute-name.id",
123
- "entity.other.attribute-name.scss"
124
- ],
125
- "settings": {
126
- "foreground": "#800000"
127
- }
128
- },
129
- {
130
- "scope": "invalid",
131
- "settings": {
132
- "foreground": "#cd3131"
133
- }
134
- },
135
- {
136
- "scope": "markup.underline",
137
- "settings": {
138
- "fontStyle": "underline"
139
- }
140
- },
141
- {
142
- "scope": "markup.bold",
143
- "settings": {
144
- "fontStyle": "bold",
145
- "foreground": "#000080"
146
- }
147
- },
148
- {
149
- "scope": "markup.heading",
150
- "settings": {
151
- "fontStyle": "bold",
152
- "foreground": "#800000"
153
- }
154
- },
155
- {
156
- "scope": "markup.italic",
157
- "settings": {
158
- "fontStyle": "italic"
159
- }
160
- },
161
- {
162
- "scope": "markup.strikethrough",
163
- "settings": {
164
- "fontStyle": "strikethrough"
165
- }
166
- },
167
- {
168
- "scope": "markup.inserted",
169
- "settings": {
170
- "foreground": "#098658"
171
- }
172
- },
173
- {
174
- "scope": "markup.deleted",
175
- "settings": {
176
- "foreground": "#a31515"
177
- }
178
- },
179
- {
180
- "scope": "markup.changed",
181
- "settings": {
182
- "foreground": "#0451a5"
183
- }
184
- },
185
- {
186
- "scope": [
187
- "punctuation.definition.quote.begin.markdown",
188
- "punctuation.definition.list.begin.markdown"
189
- ],
190
- "settings": {
191
- "foreground": "#0451a5"
192
- }
193
- },
194
- {
195
- "scope": "markup.inline.raw",
196
- "settings": {
197
- "foreground": "#800000"
198
- }
199
- },
200
- {
201
- "name": "brackets of XML/HTML tags",
202
- "scope": "punctuation.definition.tag",
203
- "settings": {
204
- "foreground": "#800000"
205
- }
206
- },
207
- {
208
- "scope": [
209
- "meta.preprocessor",
210
- "entity.name.function.preprocessor"
211
- ],
212
- "settings": {
213
- "foreground": "#0000ff"
214
- }
215
- },
216
- {
217
- "scope": "meta.preprocessor.string",
218
- "settings": {
219
- "foreground": "#a31515"
220
- }
221
- },
222
- {
223
- "scope": "meta.preprocessor.numeric",
224
- "settings": {
225
- "foreground": "#098658"
226
- }
227
- },
228
- {
229
- "scope": "meta.structure.dictionary.key.python",
230
- "settings": {
231
- "foreground": "#0451a5"
232
- }
233
- },
234
- {
235
- "scope": "storage",
236
- "settings": {
237
- "foreground": "#0000ff"
238
- }
239
- },
240
- {
241
- "scope": "storage.type",
242
- "settings": {
243
- "foreground": "#0000ff"
244
- }
245
- },
246
- {
247
- "scope": [
248
- "storage.modifier",
249
- "keyword.operator.noexcept"
250
- ],
251
- "settings": {
252
- "foreground": "#0000ff"
253
- }
254
- },
255
- {
256
- "scope": [
257
- "string",
258
- "meta.embedded.assembly"
259
- ],
260
- "settings": {
261
- "foreground": "#a31515"
262
- }
263
- },
264
- {
265
- "scope": [
266
- "string.comment.buffered.block.pug",
267
- "string.quoted.pug",
268
- "string.interpolated.pug",
269
- "string.unquoted.plain.in.yaml",
270
- "string.unquoted.plain.out.yaml",
271
- "string.unquoted.block.yaml",
272
- "string.quoted.single.yaml",
273
- "string.quoted.double.xml",
274
- "string.quoted.single.xml",
275
- "string.unquoted.cdata.xml",
276
- "string.quoted.double.html",
277
- "string.quoted.single.html",
278
- "string.unquoted.html",
279
- "string.quoted.single.handlebars",
280
- "string.quoted.double.handlebars"
281
- ],
282
- "settings": {
283
- "foreground": "#0000ff"
284
- }
285
- },
286
- {
287
- "scope": "string.regexp",
288
- "settings": {
289
- "foreground": "#811f3f"
290
- }
291
- },
292
- {
293
- "name": "String interpolation",
294
- "scope": [
295
- "punctuation.definition.template-expression.begin",
296
- "punctuation.definition.template-expression.end",
297
- "punctuation.section.embedded"
298
- ],
299
- "settings": {
300
- "foreground": "#0000ff"
301
- }
302
- },
303
- {
304
- "name": "Reset JavaScript string interpolation expression",
305
- "scope": [
306
- "meta.template.expression"
307
- ],
308
- "settings": {
309
- "foreground": "#000000"
310
- }
311
- },
312
- {
313
- "scope": [
314
- "support.constant.property-value",
315
- "support.constant.font-name",
316
- "support.constant.media-type",
317
- "support.constant.media",
318
- "constant.other.color.rgb-value",
319
- "constant.other.rgb-value",
320
- "support.constant.color"
321
- ],
322
- "settings": {
323
- "foreground": "#0451a5"
324
- }
325
- },
326
- {
327
- "scope": [
328
- "support.type.vendored.property-name",
329
- "support.type.property-name",
330
- "variable.css",
331
- "variable.scss",
332
- "variable.other.less",
333
- "source.coffee.embedded"
334
- ],
335
- "settings": {
336
- "foreground": "#e50000"
337
- }
338
- },
339
- {
340
- "scope": [
341
- "support.type.property-name.json"
342
- ],
343
- "settings": {
344
- "foreground": "#0451a5"
345
- }
346
- },
347
- {
348
- "scope": "keyword",
349
- "settings": {
350
- "foreground": "#0000ff"
351
- }
352
- },
353
- {
354
- "scope": "keyword.control",
355
- "settings": {
356
- "foreground": "#0000ff"
357
- }
358
- },
359
- {
360
- "scope": "keyword.operator",
361
- "settings": {
362
- "foreground": "#000000"
363
- }
364
- },
365
- {
366
- "scope": [
367
- "keyword.operator.new",
368
- "keyword.operator.expression",
369
- "keyword.operator.cast",
370
- "keyword.operator.sizeof",
371
- "keyword.operator.alignof",
372
- "keyword.operator.typeid",
373
- "keyword.operator.alignas",
374
- "keyword.operator.instanceof",
375
- "keyword.operator.logical.python",
376
- "keyword.operator.wordlike"
377
- ],
378
- "settings": {
379
- "foreground": "#0000ff"
380
- }
381
- },
382
- {
383
- "scope": "keyword.other.unit",
384
- "settings": {
385
- "foreground": "#098658"
386
- }
387
- },
388
- {
389
- "scope": [
390
- "punctuation.section.embedded.begin.php",
391
- "punctuation.section.embedded.end.php"
392
- ],
393
- "settings": {
394
- "foreground": "#800000"
395
- }
396
- },
397
- {
398
- "scope": "support.function.git-rebase",
399
- "settings": {
400
- "foreground": "#0451a5"
401
- }
402
- },
403
- {
404
- "scope": "constant.sha.git-rebase",
405
- "settings": {
406
- "foreground": "#098658"
407
- }
408
- },
409
- {
410
- "name": "coloring of the Java import and package identifiers",
411
- "scope": [
412
- "storage.modifier.import.java",
413
- "variable.language.wildcard.java",
414
- "storage.modifier.package.java"
415
- ],
416
- "settings": {
417
- "foreground": "#000000"
418
- }
419
- },
420
- {
421
- "name": "this.self",
422
- "scope": "variable.language",
423
- "settings": {
424
- "foreground": "#0000ff"
425
- }
426
- }
427
- ],
428
- "semanticHighlighting": true,
429
- "semanticTokenColors": {
430
- "newOperator": "#0000ff",
431
- "stringLiteral": "#a31515",
432
- "customLiteral": "#000000",
433
- "numberLiteral": "#098658",
434
- }
435
- }
package/package.nls.json DELETED
@@ -1,13 +0,0 @@
1
- {
2
- "displayName": "Default Themes",
3
- "description": "The default Visual Studio light and dark themes",
4
- "darkPlusColorThemeLabel": "Dark+",
5
- "darkModernThemeLabel": "Dark Modern",
6
- "lightPlusColorThemeLabel": "Light+",
7
- "lightModernThemeLabel": "Light Modern",
8
- "darkColorThemeLabel": "Dark (Visual Studio)",
9
- "lightColorThemeLabel": "Light (Visual Studio)",
10
- "hcColorThemeLabel": "Dark High Contrast",
11
- "lightHcColorThemeLabel": "Light High Contrast",
12
- "minimalIconThemeLabel": "Minimal (Visual Studio Code)"
13
- }