@codingame/monaco-vscode-theme-monokai-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-monokai",displayName:"Monokai Theme",description:"Monokai theme for Visual Studio Code",version:"1.0.0",publisher:"vscode",license:"MIT",engines:{vscode:"*"},contributes:{themes:[{id:"Monokai",label:"Monokai",uiTheme:"vs-dark",path:"./themes/monokai-color-theme.json"}]},repository:{type:"git",url:"https://github.com/microsoft/vscode.git"},main:undefined};
4
+
5
+ const { registerFileUrl } = registerExtension(manifest);
6
+ registerFileUrl('./themes/monokai-color-theme.json', new URL('./monokai-color-theme.json', import.meta.url).toString(), 'application/json');
@@ -0,0 +1,488 @@
1
+ // This theme's colors are based on the original Monokai:
2
+ // #1e1f1c (tab well, borders)
3
+ // #272822 (editor background)
4
+ // #414339 (selection)
5
+ // #75715e (focus)
6
+ // #f8f8f2 (editor foreground)
7
+ {
8
+ "type": "dark",
9
+ "colors": {
10
+ "dropdown.background": "#414339",
11
+ "list.activeSelectionBackground": "#75715E",
12
+ "quickInputList.focusBackground": "#414339",
13
+ "dropdown.listBackground": "#1e1f1c",
14
+ "list.inactiveSelectionBackground": "#414339",
15
+ "list.hoverBackground": "#3e3d32",
16
+ "list.dropBackground": "#414339",
17
+ "list.highlightForeground": "#f8f8f2",
18
+ "button.background": "#75715E",
19
+ "editor.background": "#272822",
20
+ "editor.foreground": "#f8f8f2",
21
+ "selection.background": "#878b9180",
22
+ "editor.selectionHighlightBackground": "#575b6180",
23
+ "editor.selectionBackground": "#878b9180",
24
+ "minimap.selectionHighlight": "#878b9180",
25
+ "editor.wordHighlightBackground": "#4a4a7680",
26
+ "editor.wordHighlightStrongBackground": "#6a6a9680",
27
+ "editor.lineHighlightBackground": "#3e3d32",
28
+ "editorLineNumber.activeForeground": "#c2c2bf",
29
+ "editorCursor.foreground": "#f8f8f0",
30
+ "editorWhitespace.foreground": "#464741",
31
+ "editorIndentGuide.background": "#464741",
32
+ "editorIndentGuide.activeBackground": "#767771",
33
+ "editorGroupHeader.tabsBackground": "#1e1f1c",
34
+ "editorGroup.dropBackground": "#41433980",
35
+ "tab.inactiveBackground": "#34352f",
36
+ "tab.border": "#1e1f1c",
37
+ "tab.inactiveForeground": "#ccccc7", // needs to be bright so it's readable when another editor group is focused
38
+ "tab.lastPinnedBorder": "#414339",
39
+ "widget.shadow": "#00000098",
40
+ "progressBar.background": "#75715E",
41
+ "badge.background": "#75715E",
42
+ "badge.foreground": "#f8f8f2",
43
+ "editorLineNumber.foreground": "#90908a",
44
+ "panelTitle.activeForeground": "#f8f8f2",
45
+ "panelTitle.activeBorder": "#75715E",
46
+ "panelTitle.inactiveForeground": "#75715E",
47
+ "panel.border": "#414339",
48
+ "settings.focusedRowBackground": "#4143395A",
49
+ "titleBar.activeBackground": "#1e1f1c",
50
+ "statusBar.background": "#414339",
51
+ "statusBar.noFolderBackground": "#414339",
52
+ "statusBar.debuggingBackground": "#75715E",
53
+ "statusBarItem.remoteBackground": "#AC6218",
54
+ "ports.iconRunningProcessForeground": "#ccccc7",
55
+ "activityBar.background": "#272822",
56
+ "activityBar.foreground": "#f8f8f2",
57
+ "sideBar.background": "#1e1f1c",
58
+ "sideBarSectionHeader.background": "#272822",
59
+ "menu.background": "#1e1f1c",
60
+ "menu.foreground": "#cccccc",
61
+ "pickerGroup.foreground": "#75715E",
62
+ "input.background": "#414339",
63
+ "inputOption.activeBorder": "#75715E",
64
+ "focusBorder": "#99947c",
65
+ "editorWidget.background": "#1e1f1c",
66
+ "debugToolBar.background": "#1e1f1c",
67
+ "diffEditor.insertedTextBackground": "#4b661680", // middle of #272822 and #a6e22e
68
+ "diffEditor.removedTextBackground": "#90274A70", // middle of #272822 and #f92672
69
+ "inputValidation.errorBackground": "#90274A", // middle of #272822 and #f92672
70
+ "inputValidation.errorBorder": "#f92672",
71
+ "inputValidation.warningBackground": "#848528", // middle of #272822 and #e2e22e
72
+ "inputValidation.warningBorder": "#e2e22e",
73
+ "inputValidation.infoBackground": "#546190", // middle of #272822 and #819aff
74
+ "inputValidation.infoBorder": "#819aff",
75
+ "editorHoverWidget.background": "#414339",
76
+ "editorHoverWidget.border": "#75715E",
77
+ "editorSuggestWidget.background": "#272822",
78
+ "editorSuggestWidget.border": "#75715E",
79
+ "editorGroup.border": "#34352f",
80
+ "peekView.border": "#75715E",
81
+ "peekViewEditor.background": "#272822",
82
+ "peekViewResult.background": "#1e1f1c",
83
+ "peekViewTitle.background": "#1e1f1c",
84
+ "peekViewResult.selectionBackground": "#414339",
85
+ "peekViewResult.matchHighlightBackground": "#75715E",
86
+ "peekViewEditor.matchHighlightBackground": "#75715E",
87
+ "terminal.ansiBlack": "#333333",
88
+ "terminal.ansiRed": "#C4265E", // the bright color with ~75% transparent on the background
89
+ "terminal.ansiGreen": "#86B42B",
90
+ "terminal.ansiYellow": "#B3B42B",
91
+ "terminal.ansiBlue": "#6A7EC8",
92
+ "terminal.ansiMagenta": "#8C6BC8",
93
+ "terminal.ansiCyan": "#56ADBC",
94
+ "terminal.ansiWhite": "#e3e3dd",
95
+ "terminal.ansiBrightBlack": "#666666",
96
+ "terminal.ansiBrightRed": "#f92672",
97
+ "terminal.ansiBrightGreen": "#A6E22E",
98
+ "terminal.ansiBrightYellow": "#e2e22e", // hue shifted #A6E22E
99
+ "terminal.ansiBrightBlue": "#819aff", // hue shifted #AE81FF
100
+ "terminal.ansiBrightMagenta": "#AE81FF",
101
+ "terminal.ansiBrightCyan": "#66D9EF",
102
+ "terminal.ansiBrightWhite": "#f8f8f2"
103
+ },
104
+ "tokenColors": [
105
+ {
106
+ "settings": {
107
+ "foreground": "#F8F8F2"
108
+ }
109
+ },
110
+ {
111
+ "scope": [
112
+ "meta.embedded",
113
+ "source.groovy.embedded",
114
+ "string meta.image.inline.markdown"
115
+ ],
116
+ "settings": {
117
+ "foreground": "#F8F8F2"
118
+ }
119
+ },
120
+ {
121
+ "name": "Comment",
122
+ "scope": "comment",
123
+ "settings": {
124
+ "foreground": "#88846f"
125
+ }
126
+ },
127
+ {
128
+ "name": "String",
129
+ "scope": "string",
130
+ "settings": {
131
+ "foreground": "#E6DB74"
132
+ }
133
+ },
134
+ {
135
+ "name": "Template Definition",
136
+ "scope": [
137
+ "punctuation.definition.template-expression",
138
+ "punctuation.section.embedded"
139
+ ],
140
+ "settings": {
141
+ "foreground": "#F92672"
142
+ }
143
+ },
144
+ {
145
+ "name": "Reset JavaScript string interpolation expression",
146
+ "scope": [
147
+ "meta.template.expression"
148
+ ],
149
+ "settings": {
150
+ "foreground": "#F8F8F2"
151
+ }
152
+ },
153
+ {
154
+ "name": "Number",
155
+ "scope": "constant.numeric",
156
+ "settings": {
157
+ "foreground": "#AE81FF"
158
+ }
159
+ },
160
+ {
161
+ "name": "Built-in constant",
162
+ "scope": "constant.language",
163
+ "settings": {
164
+ "foreground": "#AE81FF"
165
+ }
166
+ },
167
+ {
168
+ "name": "User-defined constant",
169
+ "scope": "constant.character, constant.other",
170
+ "settings": {
171
+ "foreground": "#AE81FF"
172
+ }
173
+ },
174
+ {
175
+ "name": "Variable",
176
+ "scope": "variable",
177
+ "settings": {
178
+ "fontStyle": "",
179
+ "foreground": "#F8F8F2"
180
+ }
181
+ },
182
+ {
183
+ "name": "Keyword",
184
+ "scope": "keyword",
185
+ "settings": {
186
+ "foreground": "#F92672"
187
+ }
188
+ },
189
+ {
190
+ "name": "Storage",
191
+ "scope": "storage",
192
+ "settings": {
193
+ "fontStyle": "",
194
+ "foreground": "#F92672"
195
+ }
196
+ },
197
+ {
198
+ "name": "Storage type",
199
+ "scope": "storage.type",
200
+ "settings": {
201
+ "fontStyle": "italic",
202
+ "foreground": "#66D9EF"
203
+ }
204
+ },
205
+ {
206
+ "name": "Class name",
207
+ "scope": "entity.name.type, entity.name.class, entity.name.namespace, entity.name.scope-resolution",
208
+ "settings": {
209
+ "fontStyle": "underline",
210
+ "foreground": "#A6E22E"
211
+ }
212
+ },
213
+ {
214
+ "name": "Inherited class",
215
+ "scope": "entity.other.inherited-class",
216
+ "settings": {
217
+ "fontStyle": "italic underline",
218
+ "foreground": "#A6E22E"
219
+ }
220
+ },
221
+ {
222
+ "name": "Function name",
223
+ "scope": "entity.name.function",
224
+ "settings": {
225
+ "fontStyle": "",
226
+ "foreground": "#A6E22E"
227
+ }
228
+ },
229
+ {
230
+ "name": "Function argument",
231
+ "scope": "variable.parameter",
232
+ "settings": {
233
+ "fontStyle": "italic",
234
+ "foreground": "#FD971F"
235
+ }
236
+ },
237
+ {
238
+ "name": "Tag name",
239
+ "scope": "entity.name.tag",
240
+ "settings": {
241
+ "fontStyle": "",
242
+ "foreground": "#F92672"
243
+ }
244
+ },
245
+ {
246
+ "name": "Tag attribute",
247
+ "scope": "entity.other.attribute-name",
248
+ "settings": {
249
+ "fontStyle": "",
250
+ "foreground": "#A6E22E"
251
+ }
252
+ },
253
+ {
254
+ "name": "Library function",
255
+ "scope": "support.function",
256
+ "settings": {
257
+ "fontStyle": "",
258
+ "foreground": "#66D9EF"
259
+ }
260
+ },
261
+ {
262
+ "name": "Library constant",
263
+ "scope": "support.constant",
264
+ "settings": {
265
+ "fontStyle": "",
266
+ "foreground": "#66D9EF"
267
+ }
268
+ },
269
+ {
270
+ "name": "Library class/type",
271
+ "scope": "support.type, support.class",
272
+ "settings": {
273
+ "fontStyle": "italic",
274
+ "foreground": "#66D9EF"
275
+ }
276
+ },
277
+ {
278
+ "name": "Library variable",
279
+ "scope": "support.other.variable",
280
+ "settings": {
281
+ "fontStyle": ""
282
+ }
283
+ },
284
+ {
285
+ "name": "Invalid",
286
+ "scope": "invalid",
287
+ "settings": {
288
+ "fontStyle": "",
289
+ "foreground": "#F44747"
290
+ }
291
+ },
292
+ {
293
+ "name": "Invalid deprecated",
294
+ "scope": "invalid.deprecated",
295
+ "settings": {
296
+ "foreground": "#F44747"
297
+ }
298
+ },
299
+ {
300
+ "name": "JSON String",
301
+ "scope": "meta.structure.dictionary.json string.quoted.double.json",
302
+ "settings": {
303
+ "foreground": "#CFCFC2"
304
+ }
305
+ },
306
+ {
307
+ "name": "diff.header",
308
+ "scope": "meta.diff, meta.diff.header",
309
+ "settings": {
310
+ "foreground": "#75715E"
311
+ }
312
+ },
313
+ {
314
+ "name": "diff.deleted",
315
+ "scope": "markup.deleted",
316
+ "settings": {
317
+ "foreground": "#F92672"
318
+ }
319
+ },
320
+ {
321
+ "name": "diff.inserted",
322
+ "scope": "markup.inserted",
323
+ "settings": {
324
+ "foreground": "#A6E22E"
325
+ }
326
+ },
327
+ {
328
+ "name": "diff.changed",
329
+ "scope": "markup.changed",
330
+ "settings": {
331
+ "foreground": "#E6DB74"
332
+ }
333
+ },
334
+ {
335
+ "scope": "constant.numeric.line-number.find-in-files - match",
336
+ "settings": {
337
+ "foreground": "#AE81FFA0"
338
+ }
339
+ },
340
+ {
341
+ "scope": "entity.name.filename.find-in-files",
342
+ "settings": {
343
+ "foreground": "#E6DB74"
344
+ }
345
+ },
346
+ {
347
+ "name": "Markup Quote",
348
+ "scope": "markup.quote",
349
+ "settings": {
350
+ "foreground": "#F92672"
351
+ }
352
+ },
353
+ {
354
+ "name": "Markup Lists",
355
+ "scope": "markup.list",
356
+ "settings": {
357
+ "foreground": "#E6DB74"
358
+ }
359
+ },
360
+ {
361
+ "name": "Markup Styling",
362
+ "scope": "markup.bold, markup.italic",
363
+ "settings": {
364
+ "foreground": "#66D9EF"
365
+ }
366
+ },
367
+ {
368
+ "name": "Markup Inline",
369
+ "scope": "markup.inline.raw",
370
+ "settings": {
371
+ "fontStyle": "",
372
+ "foreground": "#FD971F"
373
+ }
374
+ },
375
+ {
376
+ "name": "Markup Headings",
377
+ "scope": "markup.heading",
378
+ "settings": {
379
+ "foreground": "#A6E22E"
380
+ }
381
+ },
382
+ {
383
+ "name": "Markup Setext Header",
384
+ "scope": "markup.heading.setext",
385
+ "settings": {
386
+ "foreground": "#A6E22E",
387
+ "fontStyle": "bold"
388
+ }
389
+ },
390
+ {
391
+ "name": "Markup Headings",
392
+ "scope": "markup.heading.markdown",
393
+ "settings": {
394
+ "fontStyle": "bold"
395
+ }
396
+ },
397
+ {
398
+ "name": "Markdown Quote",
399
+ "scope": "markup.quote.markdown",
400
+ "settings": {
401
+ "fontStyle": "italic",
402
+ "foreground": "#75715E"
403
+ }
404
+ },
405
+ {
406
+ "name": "Markdown Bold",
407
+ "scope": "markup.bold.markdown",
408
+ "settings": {
409
+ "fontStyle": "bold"
410
+ }
411
+ },
412
+ {
413
+ "name": "Markdown Link Title/Description",
414
+ "scope": "string.other.link.title.markdown,string.other.link.description.markdown",
415
+ "settings": {
416
+ "foreground": "#AE81FF"
417
+ }
418
+ },
419
+ {
420
+ "name": "Markdown Underline Link/Image",
421
+ "scope": "markup.underline.link.markdown,markup.underline.link.image.markdown",
422
+ "settings": {
423
+ "foreground": "#E6DB74"
424
+ }
425
+ },
426
+ {
427
+ "name": "Markdown Emphasis",
428
+ "scope": "markup.italic.markdown",
429
+ "settings": {
430
+ "fontStyle": "italic"
431
+ }
432
+ },
433
+ {
434
+ "scope": "markup.strikethrough",
435
+ "settings": {
436
+ "fontStyle": "strikethrough"
437
+ }
438
+ },
439
+ {
440
+ "name": "Markdown Punctuation Definition Link",
441
+ "scope": "markup.list.unnumbered.markdown, markup.list.numbered.markdown",
442
+ "settings": {
443
+ "foreground": "#f8f8f2"
444
+ }
445
+ },
446
+ {
447
+ "name": "Markdown List Punctuation",
448
+ "scope": [
449
+ "punctuation.definition.list.begin.markdown"
450
+ ],
451
+ "settings": {
452
+ "foreground": "#A6E22E"
453
+ }
454
+ },
455
+ {
456
+ "scope": "token.info-token",
457
+ "settings": {
458
+ "foreground": "#6796e6"
459
+ }
460
+ },
461
+ {
462
+ "scope": "token.warn-token",
463
+ "settings": {
464
+ "foreground": "#cd9731"
465
+ }
466
+ },
467
+ {
468
+ "scope": "token.error-token",
469
+ "settings": {
470
+ "foreground": "#f44747"
471
+ }
472
+ },
473
+ {
474
+ "scope": "token.debug-token",
475
+ "settings": {
476
+ "foreground": "#b267e6"
477
+ }
478
+ },
479
+ {
480
+ "name": "this.self",
481
+ "scope": "variable.language",
482
+ "settings": {
483
+ "foreground": "#FD971F"
484
+ }
485
+ }
486
+ ],
487
+ "semanticHighlighting": true
488
+ }
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "@codingame/monaco-vscode-theme-monokai-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
+ }