@codingame/monaco-vscode-theme-solarized-light-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/solarized-light-color-theme.json +499 -0
package/index.js
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { registerExtension } from 'vscode/extensions';
|
|
2
|
+
|
|
3
|
+
var manifest = {name:"theme-solarized-light",displayName:"Solarized Light Theme",description:"Solarized light theme for Visual Studio Code",version:"1.0.0",publisher:"vscode",license:"MIT",engines:{vscode:"*"},contributes:{themes:[{id:"Solarized Light",label:"Solarized Light",uiTheme:"vs",path:"./themes/solarized-light-color-theme.json"}]},repository:{type:"git",url:"https://github.com/microsoft/vscode.git"},main:undefined};
|
|
4
|
+
|
|
5
|
+
const { registerFileUrl } = registerExtension(manifest);
|
|
6
|
+
registerFileUrl('./themes/solarized-light-color-theme.json', new URL('./solarized-light-color-theme.json', import.meta.url).toString(), 'application/json');
|
package/package.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@codingame/monaco-vscode-theme-solarized-light-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,499 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Solarized (light)",
|
|
3
|
+
"tokenColors": [
|
|
4
|
+
{
|
|
5
|
+
"settings": {
|
|
6
|
+
"foreground": "#657B83"
|
|
7
|
+
}
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"scope": [
|
|
11
|
+
"meta.embedded",
|
|
12
|
+
"source.groovy.embedded",
|
|
13
|
+
"string meta.image.inline.markdown"
|
|
14
|
+
],
|
|
15
|
+
"settings": {
|
|
16
|
+
"foreground": "#657B83"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "Comment",
|
|
21
|
+
"scope": "comment",
|
|
22
|
+
"settings": {
|
|
23
|
+
"fontStyle": "italic",
|
|
24
|
+
"foreground": "#93A1A1"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "String",
|
|
29
|
+
"scope": "string",
|
|
30
|
+
"settings": {
|
|
31
|
+
"foreground": "#2AA198"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "Regexp",
|
|
36
|
+
"scope": "string.regexp",
|
|
37
|
+
"settings": {
|
|
38
|
+
"foreground": "#DC322F"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"name": "Number",
|
|
43
|
+
"scope": "constant.numeric",
|
|
44
|
+
"settings": {
|
|
45
|
+
"foreground": "#D33682"
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"name": "Variable",
|
|
50
|
+
"scope": [
|
|
51
|
+
"variable.language",
|
|
52
|
+
"variable.other"
|
|
53
|
+
],
|
|
54
|
+
"settings": {
|
|
55
|
+
"foreground": "#268BD2"
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "Keyword",
|
|
60
|
+
"scope": "keyword",
|
|
61
|
+
"settings": {
|
|
62
|
+
"foreground": "#859900"
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"name": "Storage",
|
|
67
|
+
"scope": "storage",
|
|
68
|
+
"settings": {
|
|
69
|
+
"fontStyle": "bold",
|
|
70
|
+
"foreground": "#586E75"
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "Class name",
|
|
75
|
+
"scope": [
|
|
76
|
+
"entity.name.class",
|
|
77
|
+
"entity.name.type",
|
|
78
|
+
"entity.name.namespace",
|
|
79
|
+
"entity.name.scope-resolution"
|
|
80
|
+
],
|
|
81
|
+
"settings": {
|
|
82
|
+
"fontStyle": "",
|
|
83
|
+
"foreground": "#CB4B16"
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"name": "Function name",
|
|
88
|
+
"scope": "entity.name.function",
|
|
89
|
+
"settings": {
|
|
90
|
+
"foreground": "#268BD2"
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"name": "Variable start",
|
|
95
|
+
"scope": "punctuation.definition.variable",
|
|
96
|
+
"settings": {
|
|
97
|
+
"foreground": "#859900"
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"name": "Embedded code markers",
|
|
102
|
+
"scope": [
|
|
103
|
+
"punctuation.section.embedded.begin",
|
|
104
|
+
"punctuation.section.embedded.end"
|
|
105
|
+
],
|
|
106
|
+
"settings": {
|
|
107
|
+
"foreground": "#DC322F"
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"name": "Built-in constant",
|
|
112
|
+
"scope": [
|
|
113
|
+
"constant.language",
|
|
114
|
+
"meta.preprocessor"
|
|
115
|
+
],
|
|
116
|
+
"settings": {
|
|
117
|
+
"foreground": "#B58900"
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"name": "Support.construct",
|
|
122
|
+
"scope": [
|
|
123
|
+
"support.function.construct",
|
|
124
|
+
"keyword.other.new"
|
|
125
|
+
],
|
|
126
|
+
"settings": {
|
|
127
|
+
"foreground": "#CB4B16"
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"name": "User-defined constant",
|
|
132
|
+
"scope": [
|
|
133
|
+
"constant.character",
|
|
134
|
+
"constant.other"
|
|
135
|
+
],
|
|
136
|
+
"settings": {
|
|
137
|
+
"foreground": "#CB4B16"
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"name": "Inherited class",
|
|
142
|
+
"scope": "entity.other.inherited-class",
|
|
143
|
+
"settings": {
|
|
144
|
+
"foreground": "#6C71C4"
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"name": "Function argument",
|
|
149
|
+
"scope": "variable.parameter",
|
|
150
|
+
"settings": {}
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"name": "Tag name",
|
|
154
|
+
"scope": "entity.name.tag",
|
|
155
|
+
"settings": {
|
|
156
|
+
"foreground": "#268BD2"
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"name": "Tag start/end",
|
|
161
|
+
"scope": "punctuation.definition.tag",
|
|
162
|
+
"settings": {
|
|
163
|
+
"foreground": "#93A1A1"
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"name": "Tag attribute",
|
|
168
|
+
"scope": "entity.other.attribute-name",
|
|
169
|
+
"settings": {
|
|
170
|
+
"foreground": "#93A1A1"
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"name": "Library function",
|
|
175
|
+
"scope": "support.function",
|
|
176
|
+
"settings": {
|
|
177
|
+
"foreground": "#268BD2"
|
|
178
|
+
}
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"name": "Continuation",
|
|
182
|
+
"scope": "punctuation.separator.continuation",
|
|
183
|
+
"settings": {
|
|
184
|
+
"foreground": "#DC322F"
|
|
185
|
+
}
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"name": "Library constant",
|
|
189
|
+
"scope": [
|
|
190
|
+
"support.constant",
|
|
191
|
+
"support.variable"
|
|
192
|
+
],
|
|
193
|
+
"settings": {}
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"name": "Library class/type",
|
|
197
|
+
"scope": [
|
|
198
|
+
"support.type",
|
|
199
|
+
"support.class"
|
|
200
|
+
],
|
|
201
|
+
"settings": {
|
|
202
|
+
"foreground": "#859900"
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"name": "Library Exception",
|
|
207
|
+
"scope": "support.type.exception",
|
|
208
|
+
"settings": {
|
|
209
|
+
"foreground": "#CB4B16"
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"name": "Library variable",
|
|
214
|
+
"scope": "support.other.variable",
|
|
215
|
+
"settings": {}
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"name": "Invalid",
|
|
219
|
+
"scope": "invalid",
|
|
220
|
+
"settings": {
|
|
221
|
+
"foreground": "#DC322F"
|
|
222
|
+
}
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"name": "diff: header",
|
|
226
|
+
"scope": [
|
|
227
|
+
"meta.diff",
|
|
228
|
+
"meta.diff.header"
|
|
229
|
+
],
|
|
230
|
+
"settings": {
|
|
231
|
+
"fontStyle": "italic",
|
|
232
|
+
"foreground": "#268BD2"
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"name": "diff: deleted",
|
|
237
|
+
"scope": "markup.deleted",
|
|
238
|
+
"settings": {
|
|
239
|
+
"fontStyle": "",
|
|
240
|
+
"foreground": "#DC322F"
|
|
241
|
+
}
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"name": "diff: changed",
|
|
245
|
+
"scope": "markup.changed",
|
|
246
|
+
"settings": {
|
|
247
|
+
"fontStyle": "",
|
|
248
|
+
"foreground": "#CB4B16"
|
|
249
|
+
}
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"name": "diff: inserted",
|
|
253
|
+
"scope": "markup.inserted",
|
|
254
|
+
"settings": {
|
|
255
|
+
"foreground": "#859900"
|
|
256
|
+
}
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"name": "Markup Quote",
|
|
260
|
+
"scope": "markup.quote",
|
|
261
|
+
"settings": {
|
|
262
|
+
"foreground": "#859900"
|
|
263
|
+
}
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"name": "Markup Lists",
|
|
267
|
+
"scope": "markup.list",
|
|
268
|
+
"settings": {
|
|
269
|
+
"foreground": "#B58900"
|
|
270
|
+
}
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"name": "Markup Styling",
|
|
274
|
+
"scope": [
|
|
275
|
+
"markup.bold",
|
|
276
|
+
"markup.italic"
|
|
277
|
+
],
|
|
278
|
+
"settings": {
|
|
279
|
+
"foreground": "#D33682"
|
|
280
|
+
}
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"name": "Markup: Strong",
|
|
284
|
+
"scope": "markup.bold",
|
|
285
|
+
"settings": {
|
|
286
|
+
"fontStyle": "bold"
|
|
287
|
+
}
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"name": "Markup: Emphasis",
|
|
291
|
+
"scope": "markup.italic",
|
|
292
|
+
"settings": {
|
|
293
|
+
"fontStyle": "italic"
|
|
294
|
+
}
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"scope": "markup.strikethrough",
|
|
298
|
+
"settings": {
|
|
299
|
+
"fontStyle": "strikethrough"
|
|
300
|
+
}
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"name": "Markup Inline",
|
|
304
|
+
"scope": "markup.inline.raw",
|
|
305
|
+
"settings": {
|
|
306
|
+
"fontStyle": "",
|
|
307
|
+
"foreground": "#2AA198"
|
|
308
|
+
}
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"name": "Markup Headings",
|
|
312
|
+
"scope": "markup.heading",
|
|
313
|
+
"settings": {
|
|
314
|
+
"fontStyle": "bold",
|
|
315
|
+
"foreground": "#268BD2"
|
|
316
|
+
}
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
"name": "Markup Setext Header",
|
|
320
|
+
"scope": "markup.heading.setext",
|
|
321
|
+
"settings": {
|
|
322
|
+
"fontStyle": "",
|
|
323
|
+
"foreground": "#268BD2"
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
],
|
|
327
|
+
"colors": {
|
|
328
|
+
// Base
|
|
329
|
+
// "foreground": "",
|
|
330
|
+
"focusBorder": "#b49471",
|
|
331
|
+
// "contrastActiveBorder": "",
|
|
332
|
+
// "contrastBorder": "",
|
|
333
|
+
// "widget.shadow": "",
|
|
334
|
+
"input.background": "#DDD6C1",
|
|
335
|
+
// "input.border": "",
|
|
336
|
+
"input.foreground": "#586E75",
|
|
337
|
+
"input.placeholderForeground": "#586E75AA",
|
|
338
|
+
"inputOption.activeBorder": "#D3AF86",
|
|
339
|
+
// "inputValidation.infoBorder": "",
|
|
340
|
+
// "inputValidation.infoBackground": "",
|
|
341
|
+
// "inputValidation.warningBackground": "",
|
|
342
|
+
// "inputValidation.warningBorder": "",
|
|
343
|
+
// "inputValidation.errorBackground": "",
|
|
344
|
+
// "inputValidation.errorBorder": "",
|
|
345
|
+
"badge.background": "#B58900AA",
|
|
346
|
+
"progressBar.background": "#B58900",
|
|
347
|
+
"dropdown.background": "#EEE8D5",
|
|
348
|
+
// "dropdown.foreground": "",
|
|
349
|
+
"dropdown.border": "#D3AF86",
|
|
350
|
+
"button.background": "#AC9D57",
|
|
351
|
+
// "button.foreground": "",
|
|
352
|
+
"selection.background": "#878b9180",
|
|
353
|
+
"list.activeSelectionBackground": "#DFCA88",
|
|
354
|
+
"list.activeSelectionForeground": "#6C6C6C",
|
|
355
|
+
"quickInputList.focusBackground": "#DFCA8866",
|
|
356
|
+
"list.hoverBackground": "#DFCA8844",
|
|
357
|
+
"list.inactiveSelectionBackground": "#D1CBB8",
|
|
358
|
+
"list.highlightForeground": "#B58900",
|
|
359
|
+
// "scrollbar.shadow": "",
|
|
360
|
+
// "scrollbarSlider.activeBackground": "",
|
|
361
|
+
// "scrollbarSlider.background": "",
|
|
362
|
+
// "scrollbarSlider.hoverBackground": "",
|
|
363
|
+
// Editor
|
|
364
|
+
"editor.background": "#FDF6E3",
|
|
365
|
+
"editor.foreground": "#657B83",
|
|
366
|
+
"notebook.cellEditorBackground": "#F7F0E0",
|
|
367
|
+
"editorWidget.background": "#EEE8D5",
|
|
368
|
+
"editorCursor.foreground": "#657B83",
|
|
369
|
+
"editorWhitespace.foreground": "#586E7580",
|
|
370
|
+
"editor.lineHighlightBackground": "#EEE8D5",
|
|
371
|
+
"editor.selectionBackground": "#EEE8D5",
|
|
372
|
+
"minimap.selectionHighlight": "#EEE8D5",
|
|
373
|
+
"editorIndentGuide.background": "#586E7580",
|
|
374
|
+
"editorIndentGuide.activeBackground": "#081E2580",
|
|
375
|
+
"editorHoverWidget.background": "#CCC4B0",
|
|
376
|
+
"editorLineNumber.activeForeground": "#567983",
|
|
377
|
+
// "editorHoverWidget.border": "",
|
|
378
|
+
// "editorLineNumber.foreground": "",
|
|
379
|
+
// "editorMarkerNavigation.background": "",
|
|
380
|
+
// "editorMarkerNavigationError.background": "",
|
|
381
|
+
// "editorMarkerNavigationWarning.background": "",
|
|
382
|
+
// "editorLink.activeForeground": "",
|
|
383
|
+
// "editor.findMatchBackground": "",
|
|
384
|
+
// "editor.findMatchHighlightBackground": "",
|
|
385
|
+
// "editor.findRangeHighlightBackground": "",
|
|
386
|
+
// "editor.hoverHighlightBackground": "",
|
|
387
|
+
// "editor.inactiveSelectionBackground": "",
|
|
388
|
+
// "editor.lineHighlightBorder": "",
|
|
389
|
+
// "editor.rangeHighlightBackground": "",
|
|
390
|
+
// "editor.selectionHighlightBackground": "",
|
|
391
|
+
// "editor.wordHighlightBackground": "",
|
|
392
|
+
// "editor.wordHighlightStrongBackground": "",
|
|
393
|
+
// Editor: Suggest Widget
|
|
394
|
+
// "editorSuggestWidget.background": "",
|
|
395
|
+
// "editorSuggestWidget.border": "",
|
|
396
|
+
// "editorSuggestWidget.foreground": "",
|
|
397
|
+
// "editorSuggestWidget.highlightForeground": "",
|
|
398
|
+
// "editorSuggestWidget.selectedBackground": "",
|
|
399
|
+
// Editor: Peek View
|
|
400
|
+
"peekViewResult.background": "#EEE8D5",
|
|
401
|
+
// "peekViewResult.lineForeground": "",
|
|
402
|
+
// "peekViewResult.selectionBackground": "",
|
|
403
|
+
// "peekViewResult.selectionForeground": "",
|
|
404
|
+
"peekViewEditor.background": "#FFFBF2",
|
|
405
|
+
"peekViewTitle.background": "#EEE8D5",
|
|
406
|
+
"peekView.border": "#B58900",
|
|
407
|
+
"peekViewEditor.matchHighlightBackground": "#7744AA40",
|
|
408
|
+
// "peekViewResult.fileForeground": "",
|
|
409
|
+
// "peekViewResult.matchHighlightBackground": "",
|
|
410
|
+
// "peekViewTitleLabel.foreground": "",
|
|
411
|
+
// "peekViewTitleDescription.foreground": "",
|
|
412
|
+
// Editor: Diff
|
|
413
|
+
// "diffEditor.insertedTextBackground": "",
|
|
414
|
+
// "diffEditor.insertedTextBorder": "",
|
|
415
|
+
// "diffEditor.removedTextBackground": "",
|
|
416
|
+
// "diffEditor.removedTextBorder": "",
|
|
417
|
+
// Workbench: Title
|
|
418
|
+
"titleBar.activeBackground": "#EEE8D5",
|
|
419
|
+
// "titleBar.activeForeground": "",
|
|
420
|
+
// "titleBar.inactiveBackground": "",
|
|
421
|
+
// "titleBar.inactiveForeground": "",
|
|
422
|
+
// Workbench: Editors
|
|
423
|
+
// "editorGroupHeader.noTabsBackground": "",
|
|
424
|
+
"editorGroup.border": "#DDD6C1",
|
|
425
|
+
"editorGroup.dropBackground": "#DDD6C1AA",
|
|
426
|
+
"editorGroupHeader.tabsBackground": "#D9D2C2",
|
|
427
|
+
// Workbench: Tabs
|
|
428
|
+
"tab.border": "#DDD6C1",
|
|
429
|
+
"tab.activeBackground": "#FDF6E3",
|
|
430
|
+
"tab.inactiveForeground": "#586E75",
|
|
431
|
+
"tab.inactiveBackground": "#D3CBB7",
|
|
432
|
+
"tab.activeModifiedBorder": "#cb4b16",
|
|
433
|
+
// "tab.activeBackground": "",
|
|
434
|
+
// "tab.activeForeground": "",
|
|
435
|
+
// "tab.inactiveForeground": "",
|
|
436
|
+
"tab.lastPinnedBorder": "#FDF6E3",
|
|
437
|
+
// Workbench: Activity Bar
|
|
438
|
+
"activityBar.background": "#DDD6C1",
|
|
439
|
+
"activityBar.foreground": "#584c27",
|
|
440
|
+
"activityBarBadge.background": "#B58900",
|
|
441
|
+
// "activityBarBadge.foreground": "",
|
|
442
|
+
// Workbench: Panel
|
|
443
|
+
// "panel.background": "",
|
|
444
|
+
"panel.border": "#DDD6C1",
|
|
445
|
+
// "panelTitle.activeBorder": "",
|
|
446
|
+
// "panelTitle.activeForeground": "",
|
|
447
|
+
// "panelTitle.inactiveForeground": "",
|
|
448
|
+
// Workbench: Side Bar
|
|
449
|
+
"sideBar.background": "#EEE8D5",
|
|
450
|
+
"sideBarTitle.foreground": "#586E75",
|
|
451
|
+
// "sideBarSectionHeader.background": "",
|
|
452
|
+
// Workbench: Status Bar
|
|
453
|
+
"statusBar.foreground": "#586E75",
|
|
454
|
+
"statusBar.background": "#EEE8D5",
|
|
455
|
+
"statusBar.debuggingBackground": "#EEE8D5",
|
|
456
|
+
"statusBar.noFolderBackground": "#EEE8D5",
|
|
457
|
+
// "statusBar.foreground": "",
|
|
458
|
+
"statusBarItem.remoteBackground": "#AC9D57",
|
|
459
|
+
"ports.iconRunningProcessForeground": "#2AA19899",
|
|
460
|
+
"statusBarItem.prominentBackground": "#DDD6C1",
|
|
461
|
+
"statusBarItem.prominentHoverBackground": "#DDD6C199",
|
|
462
|
+
// "statusBarItem.activeBackground": "",
|
|
463
|
+
// "statusBarItem.hoverBackground": "",
|
|
464
|
+
// Workbench: Debug
|
|
465
|
+
"debugToolBar.background": "#DDD6C1",
|
|
466
|
+
"debugExceptionWidget.background": "#DDD6C1",
|
|
467
|
+
"debugExceptionWidget.border": "#AB395B",
|
|
468
|
+
// Workbench: Quick Open
|
|
469
|
+
"pickerGroup.border": "#2AA19899",
|
|
470
|
+
"pickerGroup.foreground": "#2AA19899",
|
|
471
|
+
// Extensions
|
|
472
|
+
"extensionButton.prominentBackground": "#b58900",
|
|
473
|
+
"extensionButton.prominentHoverBackground": "#584c27aa",
|
|
474
|
+
// Workbench: Terminal
|
|
475
|
+
// Colors sourced from the official palette http://ethanschoonover.com/solarized
|
|
476
|
+
"terminal.ansiBlack": "#073642",
|
|
477
|
+
"terminal.ansiRed": "#dc322f",
|
|
478
|
+
"terminal.ansiGreen": "#859900",
|
|
479
|
+
"terminal.ansiYellow": "#b58900",
|
|
480
|
+
"terminal.ansiBlue": "#268bd2",
|
|
481
|
+
"terminal.ansiMagenta": "#d33682",
|
|
482
|
+
"terminal.ansiCyan": "#2aa198",
|
|
483
|
+
"terminal.ansiWhite": "#eee8d5",
|
|
484
|
+
"terminal.ansiBrightBlack": "#002b36",
|
|
485
|
+
"terminal.ansiBrightRed": "#cb4b16",
|
|
486
|
+
"terminal.ansiBrightGreen": "#586e75",
|
|
487
|
+
"terminal.ansiBrightYellow": "#657b83",
|
|
488
|
+
"terminal.ansiBrightBlue": "#839496",
|
|
489
|
+
"terminal.ansiBrightMagenta": "#6c71c4",
|
|
490
|
+
"terminal.ansiBrightCyan": "#93a1a1",
|
|
491
|
+
"terminal.ansiBrightWhite": "#fdf6e3",
|
|
492
|
+
// Set terminal background explicitly, otherwise selection becomes invisible when the
|
|
493
|
+
// terminal is in the side bar
|
|
494
|
+
"terminal.background": "#FDF6E3",
|
|
495
|
+
// Interactive Playground
|
|
496
|
+
"walkThrough.embeddedEditorBackground": "#00000014"
|
|
497
|
+
},
|
|
498
|
+
"semanticHighlighting": true
|
|
499
|
+
}
|