@codingame/monaco-vscode-theme-quietlight-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/index.js +6 -0
- package/package.json +22 -0
- package/quietlight-color-theme.json +537 -0
package/index.js
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { registerExtension } from 'vscode/extensions';
|
|
2
|
+
|
|
3
|
+
var manifest = {name:"theme-quietlight",displayName:"Quiet Light Theme",description:"Quiet light theme for Visual Studio Code",version:"1.0.0",publisher:"vscode",license:"MIT",engines:{vscode:"*"},contributes:{themes:[{id:"Quiet Light",label:"Quiet Light",uiTheme:"vs",path:"./themes/quietlight-color-theme.json"}]},repository:{type:"git",url:"https://github.com/microsoft/vscode.git"},main:undefined};
|
|
4
|
+
|
|
5
|
+
const { registerFileUrl } = registerExtension(manifest);
|
|
6
|
+
registerFileUrl('./themes/quietlight-color-theme.json', new URL('./quietlight-color-theme.json', import.meta.url).toString(), 'application/json');
|
package/package.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@codingame/monaco-vscode-theme-quietlight-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,537 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Quiet Light",
|
|
3
|
+
"tokenColors": [
|
|
4
|
+
{
|
|
5
|
+
"settings": {
|
|
6
|
+
"foreground": "#333333"
|
|
7
|
+
}
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"scope": [
|
|
11
|
+
"meta.embedded",
|
|
12
|
+
"source.groovy.embedded",
|
|
13
|
+
"string meta.image.inline.markdown"
|
|
14
|
+
],
|
|
15
|
+
"settings": {
|
|
16
|
+
"foreground": "#333333"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "Comments",
|
|
21
|
+
"scope": [
|
|
22
|
+
"comment",
|
|
23
|
+
"punctuation.definition.comment"
|
|
24
|
+
],
|
|
25
|
+
"settings": {
|
|
26
|
+
"fontStyle": "italic",
|
|
27
|
+
"foreground": "#AAAAAA"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "Comments: Preprocessor",
|
|
32
|
+
"scope": "comment.block.preprocessor",
|
|
33
|
+
"settings": {
|
|
34
|
+
"fontStyle": "",
|
|
35
|
+
"foreground": "#AAAAAA"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "Comments: Documentation",
|
|
40
|
+
"scope": [
|
|
41
|
+
"comment.documentation",
|
|
42
|
+
"comment.block.documentation",
|
|
43
|
+
"comment.block.documentation punctuation.definition.comment "
|
|
44
|
+
],
|
|
45
|
+
"settings": {
|
|
46
|
+
"foreground": "#448C27"
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "Invalid",
|
|
51
|
+
"scope": "invalid",
|
|
52
|
+
"settings": {
|
|
53
|
+
"foreground": "#cd3131"
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"name": "Invalid - Illegal",
|
|
58
|
+
"scope": "invalid.illegal",
|
|
59
|
+
"settings": {
|
|
60
|
+
"foreground": "#660000"
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"name": "Operators",
|
|
65
|
+
"scope": "keyword.operator",
|
|
66
|
+
"settings": {
|
|
67
|
+
"foreground": "#777777"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"name": "Keywords",
|
|
72
|
+
"scope": [
|
|
73
|
+
"keyword",
|
|
74
|
+
"storage"
|
|
75
|
+
],
|
|
76
|
+
"settings": {
|
|
77
|
+
"foreground": "#4B69C6"
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"name": "Types",
|
|
82
|
+
"scope": [
|
|
83
|
+
"storage.type",
|
|
84
|
+
"support.type"
|
|
85
|
+
],
|
|
86
|
+
"settings": {
|
|
87
|
+
"foreground": "#7A3E9D"
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "Language Constants",
|
|
92
|
+
"scope": [
|
|
93
|
+
"constant.language",
|
|
94
|
+
"support.constant",
|
|
95
|
+
"variable.language"
|
|
96
|
+
],
|
|
97
|
+
"settings": {
|
|
98
|
+
"foreground": "#9C5D27"
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"name": "Variables",
|
|
103
|
+
"scope": [
|
|
104
|
+
"variable",
|
|
105
|
+
"support.variable"
|
|
106
|
+
],
|
|
107
|
+
"settings": {
|
|
108
|
+
"foreground": "#7A3E9D"
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"name": "Functions",
|
|
113
|
+
"scope": [
|
|
114
|
+
"entity.name.function",
|
|
115
|
+
"support.function"
|
|
116
|
+
],
|
|
117
|
+
"settings": {
|
|
118
|
+
"fontStyle": "bold",
|
|
119
|
+
"foreground": "#AA3731"
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"name": "Classes",
|
|
124
|
+
"scope": [
|
|
125
|
+
"entity.name.type",
|
|
126
|
+
"entity.name.namespace",
|
|
127
|
+
"entity.name.scope-resolution",
|
|
128
|
+
"entity.other.inherited-class",
|
|
129
|
+
"support.class"
|
|
130
|
+
],
|
|
131
|
+
"settings": {
|
|
132
|
+
"fontStyle": "bold",
|
|
133
|
+
"foreground": "#7A3E9D"
|
|
134
|
+
}
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"name": "Exceptions",
|
|
138
|
+
"scope": "entity.name.exception",
|
|
139
|
+
"settings": {
|
|
140
|
+
"foreground": "#660000"
|
|
141
|
+
}
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"name": "Sections",
|
|
145
|
+
"scope": "entity.name.section",
|
|
146
|
+
"settings": {
|
|
147
|
+
"fontStyle": "bold"
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"name": "Numbers, Characters",
|
|
152
|
+
"scope": [
|
|
153
|
+
"constant.numeric",
|
|
154
|
+
"constant.character",
|
|
155
|
+
"constant"
|
|
156
|
+
],
|
|
157
|
+
"settings": {
|
|
158
|
+
"foreground": "#9C5D27"
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"name": "Strings",
|
|
163
|
+
"scope": "string",
|
|
164
|
+
"settings": {
|
|
165
|
+
"foreground": "#448C27"
|
|
166
|
+
}
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"name": "Strings: Escape Sequences",
|
|
170
|
+
"scope": "constant.character.escape",
|
|
171
|
+
"settings": {
|
|
172
|
+
"foreground": "#777777"
|
|
173
|
+
}
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"name": "Strings: Regular Expressions",
|
|
177
|
+
"scope": "string.regexp",
|
|
178
|
+
"settings": {
|
|
179
|
+
"foreground": "#4B69C6"
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"name": "Strings: Symbols",
|
|
184
|
+
"scope": "constant.other.symbol",
|
|
185
|
+
"settings": {
|
|
186
|
+
"foreground": "#9C5D27"
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"name": "Punctuation",
|
|
191
|
+
"scope": "punctuation",
|
|
192
|
+
"settings": {
|
|
193
|
+
"foreground": "#777777"
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"name": "HTML: Doctype Declaration",
|
|
198
|
+
"scope": [
|
|
199
|
+
"meta.tag.sgml.doctype",
|
|
200
|
+
"meta.tag.sgml.doctype string",
|
|
201
|
+
"meta.tag.sgml.doctype entity.name.tag",
|
|
202
|
+
"meta.tag.sgml punctuation.definition.tag.html"
|
|
203
|
+
],
|
|
204
|
+
"settings": {
|
|
205
|
+
"foreground": "#AAAAAA"
|
|
206
|
+
}
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"name": "HTML: Tags",
|
|
210
|
+
"scope": [
|
|
211
|
+
"meta.tag",
|
|
212
|
+
"punctuation.definition.tag.html",
|
|
213
|
+
"punctuation.definition.tag.begin.html",
|
|
214
|
+
"punctuation.definition.tag.end.html"
|
|
215
|
+
],
|
|
216
|
+
"settings": {
|
|
217
|
+
"foreground": "#91B3E0"
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"name": "HTML: Tag Names",
|
|
222
|
+
"scope": "entity.name.tag",
|
|
223
|
+
"settings": {
|
|
224
|
+
"foreground": "#4B69C6"
|
|
225
|
+
}
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"name": "HTML: Attribute Names",
|
|
229
|
+
"scope": [
|
|
230
|
+
"meta.tag entity.other.attribute-name",
|
|
231
|
+
"entity.other.attribute-name.html"
|
|
232
|
+
],
|
|
233
|
+
"settings": {
|
|
234
|
+
"fontStyle": "italic",
|
|
235
|
+
"foreground": "#8190A0"
|
|
236
|
+
}
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"name": "HTML: Entities",
|
|
240
|
+
"scope": [
|
|
241
|
+
"constant.character.entity",
|
|
242
|
+
"punctuation.definition.entity"
|
|
243
|
+
],
|
|
244
|
+
"settings": {
|
|
245
|
+
"foreground": "#9C5D27"
|
|
246
|
+
}
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"name": "CSS: Selectors",
|
|
250
|
+
"scope": [
|
|
251
|
+
"meta.selector",
|
|
252
|
+
"meta.selector entity",
|
|
253
|
+
"meta.selector entity punctuation",
|
|
254
|
+
"entity.name.tag.css"
|
|
255
|
+
],
|
|
256
|
+
"settings": {
|
|
257
|
+
"foreground": "#7A3E9D"
|
|
258
|
+
}
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"name": "CSS: Property Names",
|
|
262
|
+
"scope": [
|
|
263
|
+
"meta.property-name",
|
|
264
|
+
"support.type.property-name"
|
|
265
|
+
],
|
|
266
|
+
"settings": {
|
|
267
|
+
"foreground": "#9C5D27"
|
|
268
|
+
}
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"name": "CSS: Property Values",
|
|
272
|
+
"scope": [
|
|
273
|
+
"meta.property-value",
|
|
274
|
+
"meta.property-value constant.other",
|
|
275
|
+
"support.constant.property-value"
|
|
276
|
+
],
|
|
277
|
+
"settings": {
|
|
278
|
+
"foreground": "#448C27"
|
|
279
|
+
}
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"name": "CSS: Important Keyword",
|
|
283
|
+
"scope": "keyword.other.important",
|
|
284
|
+
"settings": {
|
|
285
|
+
"fontStyle": "bold"
|
|
286
|
+
}
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"name": "Markup: Changed",
|
|
290
|
+
"scope": "markup.changed",
|
|
291
|
+
"settings": {
|
|
292
|
+
"foreground": "#000000"
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"name": "Markup: Deletion",
|
|
297
|
+
"scope": "markup.deleted",
|
|
298
|
+
"settings": {
|
|
299
|
+
"foreground": "#000000"
|
|
300
|
+
}
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"name": "Markup: Emphasis",
|
|
304
|
+
"scope": "markup.italic",
|
|
305
|
+
"settings": {
|
|
306
|
+
"fontStyle": "italic"
|
|
307
|
+
}
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"scope": "markup.strikethrough",
|
|
311
|
+
"settings": {
|
|
312
|
+
"fontStyle": "strikethrough"
|
|
313
|
+
}
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"name": "Markup: Error",
|
|
317
|
+
"scope": "markup.error",
|
|
318
|
+
"settings": {
|
|
319
|
+
"foreground": "#660000"
|
|
320
|
+
}
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"name": "Markup: Insertion",
|
|
324
|
+
"scope": "markup.inserted",
|
|
325
|
+
"settings": {
|
|
326
|
+
"foreground": "#000000"
|
|
327
|
+
}
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"name": "Markup: Link",
|
|
331
|
+
"scope": "meta.link",
|
|
332
|
+
"settings": {
|
|
333
|
+
"foreground": "#4B69C6"
|
|
334
|
+
}
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"name": "Markup: Output",
|
|
338
|
+
"scope": [
|
|
339
|
+
"markup.output",
|
|
340
|
+
"markup.raw"
|
|
341
|
+
],
|
|
342
|
+
"settings": {
|
|
343
|
+
"foreground": "#777777"
|
|
344
|
+
}
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"name": "Markup: Prompt",
|
|
348
|
+
"scope": "markup.prompt",
|
|
349
|
+
"settings": {
|
|
350
|
+
"foreground": "#777777"
|
|
351
|
+
}
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"name": "Markup: Heading",
|
|
355
|
+
"scope": "markup.heading",
|
|
356
|
+
"settings": {
|
|
357
|
+
"foreground": "#AA3731"
|
|
358
|
+
}
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
"name": "Markup: Strong",
|
|
362
|
+
"scope": "markup.bold",
|
|
363
|
+
"settings": {
|
|
364
|
+
"fontStyle": "bold"
|
|
365
|
+
}
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"name": "Markup: Traceback",
|
|
369
|
+
"scope": "markup.traceback",
|
|
370
|
+
"settings": {
|
|
371
|
+
"foreground": "#660000"
|
|
372
|
+
}
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"name": "Markup: Underline",
|
|
376
|
+
"scope": "markup.underline",
|
|
377
|
+
"settings": {
|
|
378
|
+
"fontStyle": "underline"
|
|
379
|
+
}
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"name": "Markup Quote",
|
|
383
|
+
"scope": "markup.quote",
|
|
384
|
+
"settings": {
|
|
385
|
+
"foreground": "#7A3E9D"
|
|
386
|
+
}
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
"name": "Markup Lists",
|
|
390
|
+
"scope": "markup.list",
|
|
391
|
+
"settings": {
|
|
392
|
+
"foreground": "#4B69C6"
|
|
393
|
+
}
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"name": "Markup Styling",
|
|
397
|
+
"scope": [
|
|
398
|
+
"markup.bold",
|
|
399
|
+
"markup.italic"
|
|
400
|
+
],
|
|
401
|
+
"settings": {
|
|
402
|
+
"foreground": "#448C27"
|
|
403
|
+
}
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"name": "Markup Inline",
|
|
407
|
+
"scope": "markup.inline.raw",
|
|
408
|
+
"settings": {
|
|
409
|
+
"fontStyle": "",
|
|
410
|
+
"foreground": "#9C5D27"
|
|
411
|
+
}
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"name": "Extra: Diff Range",
|
|
415
|
+
"scope": [
|
|
416
|
+
"meta.diff.range",
|
|
417
|
+
"meta.diff.index",
|
|
418
|
+
"meta.separator"
|
|
419
|
+
],
|
|
420
|
+
"settings": {
|
|
421
|
+
"foreground": "#434343"
|
|
422
|
+
}
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"name": "Extra: Diff From",
|
|
426
|
+
"scope": ["meta.diff.header.from-file", "punctuation.definition.from-file.diff"],
|
|
427
|
+
"settings": {
|
|
428
|
+
"foreground": "#4B69C6"
|
|
429
|
+
}
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"name": "Extra: Diff To",
|
|
433
|
+
"scope": ["meta.diff.header.to-file", "punctuation.definition.to-file.diff"],
|
|
434
|
+
"settings": {
|
|
435
|
+
"foreground": "#4B69C6"
|
|
436
|
+
}
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"name": "diff: deleted",
|
|
440
|
+
"scope": "markup.deleted.diff",
|
|
441
|
+
"settings": {
|
|
442
|
+
"foreground": "#C73D20"
|
|
443
|
+
}
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
"name": "diff: changed",
|
|
447
|
+
"scope": "markup.changed.diff",
|
|
448
|
+
"settings": {
|
|
449
|
+
"foreground": "#9C5D27"
|
|
450
|
+
}
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"name": "diff: inserted",
|
|
454
|
+
"scope": "markup.inserted.diff",
|
|
455
|
+
"settings": {
|
|
456
|
+
"foreground": "#448C27"
|
|
457
|
+
}
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"name": "JSX: Tags",
|
|
461
|
+
"scope": [
|
|
462
|
+
"punctuation.definition.tag.js",
|
|
463
|
+
"punctuation.definition.tag.begin.js",
|
|
464
|
+
"punctuation.definition.tag.end.js"
|
|
465
|
+
],
|
|
466
|
+
"settings": {
|
|
467
|
+
"foreground": "#91B3E0"
|
|
468
|
+
}
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"name": "JSX: InnerText",
|
|
472
|
+
"scope": "meta.jsx.children.js",
|
|
473
|
+
"settings": {
|
|
474
|
+
"foreground": "#333333ff"
|
|
475
|
+
}
|
|
476
|
+
}
|
|
477
|
+
],
|
|
478
|
+
"colors": {
|
|
479
|
+
"focusBorder": "#9769dc",
|
|
480
|
+
"pickerGroup.foreground": "#A6B39B",
|
|
481
|
+
"pickerGroup.border": "#749351",
|
|
482
|
+
"list.activeSelectionForeground": "#6c6c6c",
|
|
483
|
+
"quickInputList.focusBackground": "#CADEB9",
|
|
484
|
+
"list.hoverBackground": "#e0e0e0",
|
|
485
|
+
"list.activeSelectionBackground": "#c4d9b1",
|
|
486
|
+
"list.inactiveSelectionBackground": "#d3dbcd",
|
|
487
|
+
"list.highlightForeground": "#9769dc",
|
|
488
|
+
"selection.background": "#C9D0D9",
|
|
489
|
+
"editor.background": "#F5F5F5",
|
|
490
|
+
"editorWhitespace.foreground": "#AAAAAA",
|
|
491
|
+
"editor.lineHighlightBackground": "#E4F6D4",
|
|
492
|
+
"editorLineNumber.activeForeground": "#9769dc",
|
|
493
|
+
"editor.selectionBackground": "#C9D0D9",
|
|
494
|
+
"minimap.selectionHighlight": "#C9D0D9",
|
|
495
|
+
"panel.background": "#F5F5F5",
|
|
496
|
+
"sideBar.background": "#F2F2F2",
|
|
497
|
+
"sideBarSectionHeader.background": "#ede8ef",
|
|
498
|
+
"editorLineNumber.foreground": "#6D705B",
|
|
499
|
+
"editorCursor.foreground": "#54494B",
|
|
500
|
+
"inputOption.activeBorder": "#adafb7",
|
|
501
|
+
"dropdown.background": "#F5F5F5",
|
|
502
|
+
"editor.findMatchBackground": "#BF9CAC",
|
|
503
|
+
"editor.findMatchHighlightBackground": "#edc9d899",
|
|
504
|
+
"peekViewEditor.matchHighlightBackground": "#C2DFE3",
|
|
505
|
+
"peekViewTitle.background": "#F2F8FC",
|
|
506
|
+
"peekViewEditor.background": "#F2F8FC",
|
|
507
|
+
"peekViewResult.background": "#F2F8FC",
|
|
508
|
+
"peekView.border": "#705697",
|
|
509
|
+
"peekViewResult.matchHighlightBackground": "#93C6D6",
|
|
510
|
+
"tab.lastPinnedBorder": "#c9d0d9",
|
|
511
|
+
"statusBar.background": "#705697",
|
|
512
|
+
"welcomePage.tileBackground": "#f0f0f7",
|
|
513
|
+
"statusBar.noFolderBackground": "#705697",
|
|
514
|
+
"statusBar.debuggingBackground": "#705697",
|
|
515
|
+
"statusBarItem.remoteBackground": "#4e3c69",
|
|
516
|
+
"ports.iconRunningProcessForeground": "#749351",
|
|
517
|
+
"activityBar.background": "#EDEDF5",
|
|
518
|
+
"activityBar.foreground": "#705697",
|
|
519
|
+
"activityBarBadge.background": "#705697",
|
|
520
|
+
"titleBar.activeBackground": "#c4b7d7",
|
|
521
|
+
"button.background": "#705697",
|
|
522
|
+
"editorGroup.dropBackground": "#C9D0D988",
|
|
523
|
+
"inputValidation.infoBorder": "#4ec1e5",
|
|
524
|
+
"inputValidation.infoBackground": "#f2fcff",
|
|
525
|
+
"inputValidation.warningBackground": "#fffee2",
|
|
526
|
+
"inputValidation.warningBorder": "#ffe055",
|
|
527
|
+
"inputValidation.errorBackground": "#ffeaea",
|
|
528
|
+
"inputValidation.errorBorder": "#f1897f",
|
|
529
|
+
"errorForeground": "#f1897f",
|
|
530
|
+
"badge.background": "#705697AA",
|
|
531
|
+
"progressBar.background": "#705697",
|
|
532
|
+
"walkThrough.embeddedEditorBackground": "#00000014",
|
|
533
|
+
"editorIndentGuide.background": "#aaaaaa60",
|
|
534
|
+
"editorIndentGuide.activeBackground": "#777777b0"
|
|
535
|
+
},
|
|
536
|
+
"semanticHighlighting": true
|
|
537
|
+
}
|