@codingame/monaco-vscode-theme-abyss-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.
@@ -0,0 +1,469 @@
1
+ {
2
+ "name": "Abyss",
3
+ "tokenColors": [
4
+ {
5
+ "settings": {
6
+ "foreground": "#6688cc"
7
+ }
8
+ },
9
+ {
10
+ "scope": [
11
+ "meta.embedded",
12
+ "source.groovy.embedded",
13
+ "string meta.image.inline.markdown"
14
+ ],
15
+ "settings": {
16
+ "foreground": "#6688cc"
17
+ }
18
+ },
19
+ {
20
+ "name": "Comment",
21
+ "scope": "comment",
22
+ "settings": {
23
+ "foreground": "#384887"
24
+ }
25
+ },
26
+ {
27
+ "name": "String",
28
+ "scope": "string",
29
+ "settings": {
30
+ "foreground": "#22aa44"
31
+ }
32
+ },
33
+ {
34
+ "name": "Number",
35
+ "scope": "constant.numeric",
36
+ "settings": {
37
+ "foreground": "#f280d0"
38
+ }
39
+ },
40
+ {
41
+ "name": "Built-in constant",
42
+ "scope": "constant.language",
43
+ "settings": {
44
+ "foreground": "#f280d0"
45
+ }
46
+ },
47
+ {
48
+ "name": "User-defined constant",
49
+ "scope": [
50
+ "constant.character",
51
+ "constant.other"
52
+ ],
53
+ "settings": {
54
+ "foreground": "#f280d0"
55
+ }
56
+ },
57
+ {
58
+ "name": "Variable",
59
+ "scope": "variable",
60
+ "settings": {
61
+ "fontStyle": ""
62
+ }
63
+ },
64
+ {
65
+ "name": "Keyword",
66
+ "scope": "keyword",
67
+ "settings": {
68
+ "foreground": "#225588"
69
+ }
70
+ },
71
+ {
72
+ "name": "Storage",
73
+ "scope": "storage",
74
+ "settings": {
75
+ "fontStyle": "",
76
+ "foreground": "#225588"
77
+ }
78
+ },
79
+ {
80
+ "name": "Storage type",
81
+ "scope": "storage.type",
82
+ "settings": {
83
+ "fontStyle": "italic",
84
+ "foreground": "#9966b8"
85
+ }
86
+ },
87
+ {
88
+ "name": "Class name",
89
+ "scope": [
90
+ "entity.name.class",
91
+ "entity.name.type",
92
+ "entity.name.namespace",
93
+ "entity.name.scope-resolution"
94
+ ],
95
+ "settings": {
96
+ "fontStyle": "underline",
97
+ "foreground": "#ffeebb"
98
+ }
99
+ },
100
+ {
101
+ "name": "Inherited class",
102
+ "scope": "entity.other.inherited-class",
103
+ "settings": {
104
+ "fontStyle": "italic underline",
105
+ "foreground": "#ddbb88"
106
+ }
107
+ },
108
+ {
109
+ "name": "Function name",
110
+ "scope": "entity.name.function",
111
+ "settings": {
112
+ "fontStyle": "",
113
+ "foreground": "#ddbb88"
114
+ }
115
+ },
116
+ {
117
+ "name": "Function argument",
118
+ "scope": "variable.parameter",
119
+ "settings": {
120
+ "fontStyle": "italic",
121
+ "foreground": "#2277ff"
122
+ }
123
+ },
124
+ {
125
+ "name": "Tag name",
126
+ "scope": "entity.name.tag",
127
+ "settings": {
128
+ "fontStyle": "",
129
+ "foreground": "#225588"
130
+ }
131
+ },
132
+ {
133
+ "name": "Tag attribute",
134
+ "scope": "entity.other.attribute-name",
135
+ "settings": {
136
+ "fontStyle": "",
137
+ "foreground": "#ddbb88"
138
+ }
139
+ },
140
+ {
141
+ "name": "Library function",
142
+ "scope": "support.function",
143
+ "settings": {
144
+ "fontStyle": "",
145
+ "foreground": "#9966b8"
146
+ }
147
+ },
148
+ {
149
+ "name": "Library constant",
150
+ "scope": "support.constant",
151
+ "settings": {
152
+ "fontStyle": "",
153
+ "foreground": "#9966b8"
154
+ }
155
+ },
156
+ {
157
+ "name": "Library class/type",
158
+ "scope": [
159
+ "support.type",
160
+ "support.class"
161
+ ],
162
+ "settings": {
163
+ "fontStyle": "italic",
164
+ "foreground": "#9966b8"
165
+ }
166
+ },
167
+ {
168
+ "name": "Library variable",
169
+ "scope": "support.other.variable",
170
+ "settings": {
171
+ "fontStyle": ""
172
+ }
173
+ },
174
+ {
175
+ "name": "Invalid",
176
+ "scope": "invalid",
177
+ "settings": {
178
+ "fontStyle": "",
179
+ "foreground": "#A22D44"
180
+ }
181
+ },
182
+ {
183
+ "name": "Invalid deprecated",
184
+ "scope": "invalid.deprecated",
185
+ "settings": {
186
+ "foreground": "#A22D44"
187
+ }
188
+ },
189
+ {
190
+ "name": "diff: header",
191
+ "scope": [
192
+ "meta.diff",
193
+ "meta.diff.header"
194
+ ],
195
+ "settings": {
196
+ "fontStyle": "italic",
197
+ "foreground": "#E0EDDD"
198
+ }
199
+ },
200
+ {
201
+ "name": "diff: deleted",
202
+ "scope": "markup.deleted",
203
+ "settings": {
204
+ "fontStyle": "",
205
+ "foreground": "#dc322f"
206
+ }
207
+ },
208
+ {
209
+ "name": "diff: changed",
210
+ "scope": "markup.changed",
211
+ "settings": {
212
+ "fontStyle": "",
213
+ "foreground": "#cb4b16"
214
+ }
215
+ },
216
+ {
217
+ "name": "diff: inserted",
218
+ "scope": "markup.inserted",
219
+ "settings": {
220
+ "foreground": "#219186"
221
+ }
222
+ },
223
+ {
224
+ "name": "Markup Quote",
225
+ "scope": "markup.quote",
226
+ "settings": {
227
+ "foreground": "#22aa44"
228
+ }
229
+ },
230
+ {
231
+ "name": "Markup Styling",
232
+ "scope": [
233
+ "markup.bold",
234
+ "markup.italic"
235
+ ],
236
+ "settings": {
237
+ "foreground": "#22aa44"
238
+ }
239
+ },
240
+ {
241
+ "name": "Markup: Strong",
242
+ "scope": "markup.bold",
243
+ "settings": {
244
+ "fontStyle": "bold"
245
+ }
246
+ },
247
+ {
248
+ "name": "Markup: Emphasis",
249
+ "scope": "markup.italic",
250
+ "settings": {
251
+ "fontStyle": "italic"
252
+ }
253
+ },
254
+ {
255
+ "scope": "markup.strikethrough",
256
+ "settings": {
257
+ "fontStyle": "strikethrough"
258
+ }
259
+ },
260
+ {
261
+ "name": "Markup Inline",
262
+ "scope": "markup.inline.raw",
263
+ "settings": {
264
+ "fontStyle": "",
265
+ "foreground": "#9966b8"
266
+ }
267
+ },
268
+ {
269
+ "name": "Markup Headings",
270
+ "scope": [
271
+ "markup.heading",
272
+ "markup.heading.setext"
273
+ ],
274
+ "settings": {
275
+ "fontStyle": "bold",
276
+ "foreground": "#6688cc"
277
+ }
278
+ }
279
+ ],
280
+ "colors": {
281
+
282
+ "editor.background": "#000c18",
283
+ "editor.foreground": "#6688cc",
284
+
285
+ // Base
286
+ // "foreground": "",
287
+ "focusBorder": "#596F99",
288
+ // "contrastActiveBorder": "",
289
+ // "contrastBorder": "",
290
+
291
+ // "widget.shadow": "",
292
+
293
+ "input.background": "#181f2f",
294
+ // "input.border": "",
295
+ // "input.foreground": "",
296
+ "inputOption.activeBorder": "#1D4A87",
297
+ "inputValidation.infoBorder": "#384078",
298
+ "inputValidation.infoBackground": "#051336",
299
+ "inputValidation.warningBackground": "#5B7E7A",
300
+ "inputValidation.warningBorder": "#5B7E7A",
301
+ "inputValidation.errorBackground": "#A22D44",
302
+ "inputValidation.errorBorder": "#AB395B",
303
+
304
+ "badge.background": "#0063a5",
305
+ "progressBar.background": "#0063a5",
306
+
307
+ "dropdown.background": "#181f2f",
308
+ // "dropdown.foreground": "",
309
+ // "dropdown.border": "",
310
+
311
+ "button.background": "#2B3C5D",
312
+ // "button.foreground": "",
313
+
314
+ "list.activeSelectionBackground": "#08286b",
315
+ // "list.activeSelectionForeground": "",
316
+ "quickInputList.focusBackground": "#08286b",
317
+ "list.hoverBackground": "#061940",
318
+ "list.inactiveSelectionBackground": "#152037",
319
+ "list.dropBackground": "#041D52",
320
+ "list.highlightForeground": "#0063a5",
321
+
322
+ "scrollbar.shadow": "#515E91AA",
323
+ "scrollbarSlider.activeBackground": "#3B3F5188",
324
+ "scrollbarSlider.background": "#1F2230AA",
325
+ "scrollbarSlider.hoverBackground": "#3B3F5188",
326
+
327
+ // Editor
328
+ "editorWidget.background": "#262641",
329
+ "editorCursor.foreground": "#ddbb88",
330
+ "editorWhitespace.foreground": "#103050",
331
+ "editor.lineHighlightBackground": "#082050",
332
+ "editor.selectionBackground": "#770811",
333
+ "editorIndentGuide.background": "#002952",
334
+ "editorIndentGuide.activeBackground": "#204972",
335
+ "editorHoverWidget.background": "#000c38",
336
+ "editorHoverWidget.border": "#004c18",
337
+ "editorLineNumber.foreground": "#406385",
338
+ "editorLineNumber.activeForeground": "#80a2c2",
339
+ "editorMarkerNavigation.background": "#060621",
340
+ "editorMarkerNavigationError.background": "#AB395B",
341
+ "editorMarkerNavigationWarning.background": "#5B7E7A",
342
+ "editorLink.activeForeground": "#0063a5",
343
+ // "editor.findMatchBackground": "",
344
+ "editor.findMatchHighlightBackground": "#eeeeee44",
345
+ // "editor.findRangeHighlightBackground": "",
346
+ // "editor.hoverHighlightBackground": "",
347
+ // "editor.inactiveSelectionBackground": "",
348
+ // "editor.lineHighlightBorder": "",
349
+ // "editor.rangeHighlightBackground": "",
350
+ // "editor.selectionHighlightBackground": "",
351
+ // "editor.wordHighlightBackground": "",
352
+ // "editor.wordHighlightStrongBackground": "",
353
+
354
+ // Editor: Suggest Widget
355
+ // "editorSuggestWidget.background": "",
356
+ // "editorSuggestWidget.border": "",
357
+ // "editorSuggestWidget.foreground": "",
358
+ // "editorSuggestWidget.highlightForeground": "",
359
+ // "editorSuggestWidget.selectedBackground": "",
360
+
361
+ // Editor: Peek View
362
+ "peekViewResult.background": "#060621",
363
+ // "peekViewResult.lineForeground": "",
364
+ // "peekViewResult.selectionBackground": "",
365
+ // "peekViewResult.selectionForeground": "",
366
+ "peekViewEditor.background": "#10192c",
367
+ "peekViewTitle.background": "#10192c",
368
+ "peekView.border": "#2b2b4a",
369
+ "peekViewEditor.matchHighlightBackground": "#eeeeee33",
370
+ // "peekViewResult.fileForeground": "",
371
+ "peekViewResult.matchHighlightBackground": "#eeeeee44",
372
+ // "peekViewTitleLabel.foreground": "",
373
+ // "peekViewTitleDescription.foreground": "",
374
+
375
+ // Ports
376
+ "ports.iconRunningProcessForeground": "#80a2c2",
377
+ // Editor: Diff
378
+ "diffEditor.insertedTextBackground": "#31958A55",
379
+ // "diffEditor.insertedTextBorder": "",
380
+ "diffEditor.removedTextBackground": "#892F4688",
381
+ // "diffEditor.removedTextBorder": "",
382
+
383
+
384
+ // Editor: Minimap
385
+ "minimap.selectionHighlight": "#750000",
386
+
387
+ // Workbench: Title
388
+ "titleBar.activeBackground": "#10192c",
389
+ // "titleBar.activeForeground": "",
390
+ // "titleBar.inactiveBackground": "",
391
+ // "titleBar.inactiveForeground": "",
392
+
393
+ // Workbench: Editors
394
+ // "editorGroupHeader.noTabsBackground": "",
395
+ "editorGroup.border": "#2b2b4a",
396
+ "editorGroup.dropBackground": "#25375daa",
397
+ "editorGroupHeader.tabsBackground": "#1c1c2a",
398
+
399
+ // Workbench: Tabs
400
+ "tab.border": "#2b2b4a",
401
+ // "tab.activeBackground": "",
402
+ "tab.inactiveBackground": "#10192c",
403
+ // "tab.activeForeground": "",
404
+ // "tab.inactiveForeground": "",
405
+ "tab.lastPinnedBorder": "#2b3c5d",
406
+
407
+ // Workbench: Activity Bar
408
+ "activityBar.background": "#051336",
409
+ // "activityBar.foreground": "",
410
+ // "activityBarBadge.background": "",
411
+ // "activityBarBadge.foreground": "",
412
+ "activityBarItem.profilesBackground": "#082877",
413
+
414
+ // Workbench: Panel
415
+ // "panel.background": "",
416
+ "panel.border": "#2b2b4a",
417
+ // "panelTitle.activeBorder": "",
418
+ // "panelTitle.activeForeground": "",
419
+ // "panelTitle.inactiveForeground": "",
420
+
421
+ // Workbench: Side Bar
422
+ "sideBar.background": "#060621",
423
+ // "sideBarTitle.foreground": "",
424
+ "sideBarSectionHeader.background": "#10192c",
425
+
426
+ // Workbench: Status Bar
427
+ "statusBar.background": "#10192c",
428
+ "statusBar.noFolderBackground": "#10192c",
429
+ "statusBar.debuggingBackground": "#10192c",
430
+ // "statusBar.foreground": "",
431
+ "statusBarItem.remoteBackground": "#0063a5",
432
+ "statusBarItem.prominentBackground": "#0063a5",
433
+ "statusBarItem.prominentHoverBackground": "#0063a5dd",
434
+ // "statusBarItem.activeBackground": "",
435
+ // "statusBarItem.hoverBackground": "",
436
+
437
+ // Workbench: Debug
438
+ "debugToolBar.background": "#051336",
439
+ "debugExceptionWidget.background": "#051336",
440
+ "debugExceptionWidget.border": "#AB395B",
441
+
442
+ // Workbench: Quick Open
443
+ "pickerGroup.border": "#596F99",
444
+ "pickerGroup.foreground": "#596F99",
445
+
446
+ // Workbench: Extensions
447
+ "extensionButton.prominentBackground": "#5f8b3b",
448
+ "extensionButton.prominentHoverBackground": "#5f8b3bbb",
449
+
450
+ // Workbench: Terminal
451
+ "terminal.ansiBlack": "#111111",
452
+ "terminal.ansiRed": "#ff9da4",
453
+ "terminal.ansiGreen": "#d1f1a9",
454
+ "terminal.ansiYellow": "#ffeead",
455
+ "terminal.ansiBlue": "#bbdaff",
456
+ "terminal.ansiMagenta": "#ebbbff",
457
+ "terminal.ansiCyan": "#99ffff",
458
+ "terminal.ansiWhite": "#cccccc",
459
+ "terminal.ansiBrightBlack": "#333333",
460
+ "terminal.ansiBrightRed": "#ff7882",
461
+ "terminal.ansiBrightGreen": "#b8f171",
462
+ "terminal.ansiBrightYellow": "#ffe580",
463
+ "terminal.ansiBrightBlue": "#80baff",
464
+ "terminal.ansiBrightMagenta": "#d778ff",
465
+ "terminal.ansiBrightCyan": "#78ffff",
466
+ "terminal.ansiBrightWhite": "#ffffff"
467
+ },
468
+ "semanticHighlighting": true
469
+ }
package/index.js ADDED
@@ -0,0 +1,6 @@
1
+ import { registerExtension } from 'vscode/extensions';
2
+
3
+ var manifest = {name:"theme-abyss",displayName:"Abyss Theme",description:"Abyss theme for Visual Studio Code",version:"1.0.0",publisher:"vscode",license:"MIT",engines:{vscode:"*"},contributes:{themes:[{id:"Abyss",label:"Abyss",uiTheme:"vs-dark",path:"./themes/abyss-color-theme.json"}]},repository:{type:"git",url:"https://github.com/microsoft/vscode.git"},main:undefined};
4
+
5
+ const { registerFileUrl } = registerExtension(manifest);
6
+ registerFileUrl('./themes/abyss-color-theme.json', new URL('./abyss-color-theme.json', import.meta.url).toString(), 'application/json');
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "@codingame/monaco-vscode-theme-abyss-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
+ }