@codingame/monaco-vscode-theme-solarized-dark-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 ADDED
@@ -0,0 +1,6 @@
1
+ import { registerExtension } from 'vscode/extensions';
2
+
3
+ var manifest = {name:"theme-solarized-dark",displayName:"Solarized Dark Theme",description:"Solarized dark theme for Visual Studio Code",version:"1.0.0",publisher:"vscode",license:"MIT",engines:{vscode:"*"},contributes:{themes:[{id:"Solarized Dark",label:"Solarized Dark",uiTheme:"vs-dark",path:"./themes/solarized-dark-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-dark-color-theme.json', new URL('./solarized-dark-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-dark-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,518 @@
1
+ {
2
+ "name": "Solarized (dark)",
3
+ "tokenColors": [
4
+ {
5
+ "settings": {
6
+ "foreground": "#839496"
7
+ }
8
+ },
9
+ {
10
+ "scope": [
11
+ "meta.embedded",
12
+ "source.groovy.embedded",
13
+ "string meta.image.inline.markdown"
14
+ ],
15
+ "settings": {
16
+ "foreground": "#839496"
17
+ }
18
+ },
19
+ {
20
+ "name": "Comment",
21
+ "scope": "comment",
22
+ "settings": {
23
+ "fontStyle": "italic",
24
+ "foreground": "#586E75"
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": "#93A1A1"
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": "#586E75"
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
+
329
+ // Base
330
+ // "foreground": "",
331
+ "focusBorder": "#2AA19899",
332
+ // "contrastActiveBorder": "",
333
+ // "contrastBorder": "",
334
+
335
+ // "widget.shadow": "",
336
+
337
+ "selection.background": "#2AA19899",
338
+
339
+ "input.background": "#003847",
340
+ "input.foreground": "#93A1A1",
341
+ "input.placeholderForeground": "#93A1A1AA",
342
+ // "input.border": "",
343
+
344
+ "inputOption.activeBorder": "#2AA19899",
345
+ "inputValidation.infoBorder": "#363b5f",
346
+ "inputValidation.infoBackground": "#052730",
347
+ "inputValidation.warningBackground": "#5d5938",
348
+ "inputValidation.warningBorder": "#9d8a5e",
349
+ "inputValidation.errorBackground": "#571b26",
350
+ "inputValidation.errorBorder": "#a92049",
351
+
352
+ "errorForeground": "#ffeaea",
353
+
354
+ "badge.background": "#047aa6",
355
+ "progressBar.background": "#047aa6",
356
+
357
+ "dropdown.background": "#00212B",
358
+ "dropdown.border": "#2AA19899",
359
+ // "dropdown.foreground": "",
360
+
361
+ "button.background": "#2AA19899",
362
+ // "button.foreground": "",
363
+
364
+ "list.activeSelectionBackground": "#005A6F",
365
+ // "list.activeSelectionForeground": "",
366
+ "quickInputList.focusBackground": "#005A6F",
367
+ "list.hoverBackground": "#004454AA",
368
+ "list.inactiveSelectionBackground": "#00445488",
369
+ "list.dropBackground": "#00445488",
370
+ "list.highlightForeground": "#1ebcc5",
371
+
372
+ // "scrollbar.shadow": "",
373
+ // "scrollbarSlider.activeBackground": "",
374
+ // "scrollbarSlider.background": "",
375
+ // "scrollbarSlider.hoverBackground": "",
376
+
377
+ // Editor
378
+ "editor.background": "#002B36",
379
+ "editor.foreground": "#839496",
380
+ "editorWidget.background": "#00212B",
381
+ "editorCursor.foreground": "#D30102",
382
+ "editorWhitespace.foreground": "#93A1A180",
383
+ "editor.lineHighlightBackground": "#073642",
384
+ "editorLineNumber.activeForeground": "#949494",
385
+ "editor.selectionBackground": "#274642",
386
+ "minimap.selectionHighlight": "#274642",
387
+ "editorIndentGuide.background": "#93A1A180",
388
+ "editorIndentGuide.activeBackground": "#C3E1E180",
389
+ "editorHoverWidget.background": "#004052",
390
+ // "editorHoverWidget.border": "",
391
+ // "editorLineNumber.foreground": "",
392
+ // "editorMarkerNavigation.background": "",
393
+ "editorMarkerNavigationError.background": "#AB395B",
394
+ "editorMarkerNavigationWarning.background": "#5B7E7A",
395
+ // "editorLink.activeForeground": "",
396
+ // "editor.findMatchBackground": "",
397
+ // "editor.findMatchHighlightBackground": "",
398
+ // "editor.findRangeHighlightBackground": "",
399
+ // "editor.hoverHighlightBackground": "",
400
+ // "editor.inactiveSelectionBackground": "",
401
+ // "editor.lineHighlightBorder": "",
402
+ // "editor.rangeHighlightBackground": "",
403
+ "editor.selectionHighlightBackground": "#005A6FAA",
404
+ "editor.wordHighlightBackground": "#004454AA",
405
+ "editor.wordHighlightStrongBackground": "#005A6FAA",
406
+
407
+ // Editor: Colorized Bracket Highlighting
408
+ "editorBracketHighlight.foreground1": "#cdcdcdff",
409
+ "editorBracketHighlight.foreground2": "#b58900ff",
410
+ "editorBracketHighlight.foreground3": "#d33682ff",
411
+
412
+ // Editor: Suggest
413
+ // "editorSuggestWidget.background": "",
414
+ // "editorSuggestWidget.border": "",
415
+ // "editorSuggestWidget.foreground": "",
416
+ // "editorSuggestWidget.highlightForeground": "",
417
+ // "editorSuggestWidget.selectedBackground": "",
418
+
419
+ // Editor: Peek View
420
+ "peekViewResult.background": "#00212B",
421
+ // "peekViewResult.lineForeground": "",
422
+ // "peekViewResult.selectionBackground": "",
423
+ // "peekViewResult.selectionForeground": "",
424
+ "peekViewEditor.background": "#10192c",
425
+ "peekViewTitle.background": "#00212B",
426
+ "peekView.border": "#2b2b4a",
427
+ "peekViewEditor.matchHighlightBackground": "#7744AA40",
428
+ // "peekViewResult.fileForeground": "",
429
+ // "peekViewResult.matchHighlightBackground": "",
430
+ // "peekViewTitleLabel.foreground": "",
431
+ // "peekViewTitleDescription.foreground": "",
432
+
433
+ // Editor: Diff
434
+ // "diffEditor.insertedTextBackground": "",
435
+ // "diffEditor.insertedTextBorder": "",
436
+ // "diffEditor.removedTextBackground": "",
437
+ // "diffEditor.removedTextBorder": "",
438
+
439
+ // Workbench: Title
440
+ "titleBar.activeBackground": "#002C39",
441
+ // "titleBar.inactiveBackground": "",
442
+ // "titleBar.activeForeground": "",
443
+ // "titleBar.inactiveForeground": "",
444
+
445
+ // Workbench: Editors
446
+ // "editorGroupHeader.noTabsBackground": "",
447
+ "editorGroup.border": "#00212B",
448
+ "editorGroup.dropBackground": "#2AA19844",
449
+ "editorGroupHeader.tabsBackground": "#004052",
450
+
451
+ // Workbench: Tabs
452
+ "tab.activeForeground": "#d6dbdb",
453
+ "tab.activeBackground": "#002B37",
454
+ "tab.inactiveForeground": "#93A1A1",
455
+ "tab.inactiveBackground": "#004052",
456
+ "tab.border": "#003847",
457
+ "tab.lastPinnedBorder": "#2AA19844",
458
+
459
+ // Workbench: Activity Bar
460
+ "activityBar.background": "#003847",
461
+ // "activityBarBadge.background": "",
462
+ // "activityBar.foreground": "",
463
+ // "activityBarBadge.foreground": "",
464
+
465
+ // Workbench: Panel
466
+ // "panel.background": "",
467
+ "panel.border": "#2b2b4a",
468
+ // "panelTitle.activeBorder": "",
469
+ // "panelTitle.activeForeground": "",
470
+ // "panelTitle.inactiveForeground": "",
471
+
472
+ // Workbench: Side Bar
473
+ "sideBar.background": "#00212B",
474
+ "sideBarTitle.foreground": "#93A1A1",
475
+ // "sideBarSectionHeader.background": "",
476
+
477
+ // Workbench: Status Bar
478
+ "statusBar.foreground": "#93A1A1",
479
+ "statusBar.background": "#00212B",
480
+ "statusBar.debuggingBackground": "#00212B",
481
+ "statusBar.noFolderBackground": "#00212B",
482
+ "statusBarItem.remoteBackground": "#2AA19899",
483
+ "ports.iconRunningProcessForeground": "#369432",
484
+ "statusBarItem.prominentBackground": "#003847",
485
+ "statusBarItem.prominentHoverBackground": "#003847",
486
+ // "statusBarItem.activeBackground": "",
487
+ // "statusBarItem.hoverBackground": "",
488
+
489
+ // Workbench: Debug
490
+ "debugToolBar.background": "#00212B",
491
+ "debugExceptionWidget.background": "#00212B",
492
+ "debugExceptionWidget.border": "#AB395B",
493
+
494
+ // Workbench: Quick Open
495
+ "pickerGroup.foreground": "#2AA19899",
496
+ "pickerGroup.border": "#2AA19899",
497
+
498
+ // Workbench: Terminal
499
+ // Colors sourced from the official palette http://ethanschoonover.com/solarized
500
+ "terminal.ansiBlack": "#073642",
501
+ "terminal.ansiRed": "#dc322f",
502
+ "terminal.ansiGreen": "#859900",
503
+ "terminal.ansiYellow": "#b58900",
504
+ "terminal.ansiBlue": "#268bd2",
505
+ "terminal.ansiMagenta": "#d33682",
506
+ "terminal.ansiCyan": "#2aa198",
507
+ "terminal.ansiWhite": "#eee8d5",
508
+ "terminal.ansiBrightBlack": "#002b36",
509
+ "terminal.ansiBrightRed": "#cb4b16",
510
+ "terminal.ansiBrightGreen": "#586e75",
511
+ "terminal.ansiBrightYellow": "#657b83",
512
+ "terminal.ansiBrightBlue": "#839496",
513
+ "terminal.ansiBrightMagenta": "#6c71c4",
514
+ "terminal.ansiBrightCyan": "#93a1a1",
515
+ "terminal.ansiBrightWhite": "#fdf6e3"
516
+ },
517
+ "semanticHighlighting": true
518
+ }