@codingame/monaco-vscode-theme-kimbie-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 +6 -0
- package/kimbie-dark-color-theme.json +412 -0
- package/package.json +22 -0
package/index.js
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { registerExtension } from 'vscode/extensions';
|
|
2
|
+
|
|
3
|
+
var manifest = {name:"theme-kimbie-dark",displayName:"Kimbie Dark Theme",description:"Kimbie dark theme for Visual Studio Code",version:"1.0.0",publisher:"vscode",license:"MIT",engines:{vscode:"*"},contributes:{themes:[{id:"Kimbie Dark",label:"Kimbie Dark",uiTheme:"vs-dark",path:"./themes/kimbie-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/kimbie-dark-color-theme.json', new URL('./kimbie-dark-color-theme.json', import.meta.url).toString(), 'application/json');
|
|
@@ -0,0 +1,412 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Kimbie Dark",
|
|
3
|
+
"type": "dark",
|
|
4
|
+
"colors": {
|
|
5
|
+
"input.background": "#51412c",
|
|
6
|
+
"dropdown.background": "#51412c",
|
|
7
|
+
"editor.background": "#221a0f",
|
|
8
|
+
"editor.foreground": "#d3af86",
|
|
9
|
+
"focusBorder": "#a57a4c",
|
|
10
|
+
"list.highlightForeground": "#e3b583",
|
|
11
|
+
"list.activeSelectionBackground": "#7c5021",
|
|
12
|
+
"list.hoverBackground": "#7c502166",
|
|
13
|
+
"quickInputList.focusBackground": "#7c5021AA",
|
|
14
|
+
"list.inactiveSelectionBackground": "#645342",
|
|
15
|
+
"pickerGroup.foreground": "#e3b583",
|
|
16
|
+
"pickerGroup.border": "#e3b583",
|
|
17
|
+
"inputOption.activeBorder": "#a57a4c",
|
|
18
|
+
"selection.background": "#84613daa",
|
|
19
|
+
"editor.selectionBackground": "#84613daa",
|
|
20
|
+
"minimap.selectionHighlight": "#84613daa",
|
|
21
|
+
"editorWidget.background": "#131510",
|
|
22
|
+
"editorHoverWidget.background": "#221a14",
|
|
23
|
+
"editorGroupHeader.tabsBackground": "#131510",
|
|
24
|
+
"editorLineNumber.activeForeground": "#adadad",
|
|
25
|
+
"tab.inactiveBackground": "#131510",
|
|
26
|
+
"tab.lastPinnedBorder": "#51412c",
|
|
27
|
+
"titleBar.activeBackground": "#423523",
|
|
28
|
+
"statusBar.background": "#423523",
|
|
29
|
+
"statusBar.debuggingBackground": "#423523",
|
|
30
|
+
"statusBar.noFolderBackground": "#423523",
|
|
31
|
+
"statusBarItem.remoteBackground": "#6e583b",
|
|
32
|
+
"ports.iconRunningProcessForeground": "#369432",
|
|
33
|
+
"activityBar.background": "#221a0f",
|
|
34
|
+
"activityBar.foreground": "#d3af86",
|
|
35
|
+
"activityBarItem.profilesBackground": "#47351d",
|
|
36
|
+
"sideBar.background": "#362712",
|
|
37
|
+
"menu.background": "#362712",
|
|
38
|
+
"menu.foreground": "#CCCCCC",
|
|
39
|
+
"editor.lineHighlightBackground": "#5e452b",
|
|
40
|
+
"editorCursor.foreground": "#d3af86",
|
|
41
|
+
"editorWhitespace.foreground": "#a57a4c",
|
|
42
|
+
"peekViewTitle.background": "#362712",
|
|
43
|
+
"peekView.border": "#5e452b",
|
|
44
|
+
"peekViewResult.background": "#362712",
|
|
45
|
+
"peekViewEditor.background": "#221a14",
|
|
46
|
+
"peekViewEditor.matchHighlightBackground": "#84613daa",
|
|
47
|
+
"button.background": "#6e583b",
|
|
48
|
+
"inputValidation.infoBorder": "#1b60a5",
|
|
49
|
+
"inputValidation.infoBackground": "#2b2a42",
|
|
50
|
+
"inputValidation.warningBackground": "#51412c",
|
|
51
|
+
// "inputValidation.warningBorder": "#5B7E7A",
|
|
52
|
+
"inputValidation.errorBackground": "#5f0d0d",
|
|
53
|
+
"inputValidation.errorBorder": "#9d2f23",
|
|
54
|
+
"badge.background": "#7f5d38",
|
|
55
|
+
"progressBar.background": "#7f5d38"
|
|
56
|
+
},
|
|
57
|
+
"tokenColors": [
|
|
58
|
+
{
|
|
59
|
+
"settings": {
|
|
60
|
+
"foreground": "#d3af86"
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"scope": [
|
|
65
|
+
"meta.embedded",
|
|
66
|
+
"source.groovy.embedded",
|
|
67
|
+
"string meta.image.inline.markdown"
|
|
68
|
+
],
|
|
69
|
+
"settings": {
|
|
70
|
+
"foreground": "#d3af86"
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "Text",
|
|
75
|
+
"scope": "variable.parameter.function",
|
|
76
|
+
"settings": {
|
|
77
|
+
"foreground": "#d3af86"
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"name": "Comments",
|
|
82
|
+
"scope": [
|
|
83
|
+
"comment",
|
|
84
|
+
"punctuation.definition.comment"
|
|
85
|
+
],
|
|
86
|
+
"settings": {
|
|
87
|
+
"foreground": "#a57a4c"
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "Punctuation",
|
|
92
|
+
"scope": [
|
|
93
|
+
"punctuation.definition.string",
|
|
94
|
+
"punctuation.definition.variable",
|
|
95
|
+
"punctuation.definition.string",
|
|
96
|
+
"punctuation.definition.parameters",
|
|
97
|
+
"punctuation.definition.string",
|
|
98
|
+
"punctuation.definition.array"
|
|
99
|
+
],
|
|
100
|
+
"settings": {
|
|
101
|
+
"foreground": "#d3af86"
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"name": "Delimiters",
|
|
106
|
+
"scope": "none",
|
|
107
|
+
"settings": {
|
|
108
|
+
"foreground": "#d3af86"
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"name": "Operators",
|
|
113
|
+
"scope": "keyword.operator",
|
|
114
|
+
"settings": {
|
|
115
|
+
"foreground": "#d3af86"
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"name": "Keywords",
|
|
120
|
+
"scope": [
|
|
121
|
+
"keyword",
|
|
122
|
+
"keyword.control",
|
|
123
|
+
"keyword.operator.new.cpp",
|
|
124
|
+
"keyword.operator.delete.cpp",
|
|
125
|
+
"keyword.other.using",
|
|
126
|
+
"keyword.other.operator"
|
|
127
|
+
],
|
|
128
|
+
"settings": {
|
|
129
|
+
"foreground": "#98676a"
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"name": "Variables",
|
|
134
|
+
"scope": "variable",
|
|
135
|
+
"settings": {
|
|
136
|
+
"foreground": "#dc3958"
|
|
137
|
+
}
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"name": "Functions",
|
|
141
|
+
"scope": [
|
|
142
|
+
"entity.name.function",
|
|
143
|
+
"meta.require",
|
|
144
|
+
"support.function.any-method"
|
|
145
|
+
],
|
|
146
|
+
"settings": {
|
|
147
|
+
"foreground": "#8ab1b0"
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"name": "Classes",
|
|
152
|
+
"scope": [
|
|
153
|
+
"support.class",
|
|
154
|
+
"entity.name.class",
|
|
155
|
+
"entity.name.type",
|
|
156
|
+
"entity.name.namespace",
|
|
157
|
+
"entity.name.scope-resolution"
|
|
158
|
+
],
|
|
159
|
+
"settings": {
|
|
160
|
+
"foreground": "#f06431"
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"name": "Methods",
|
|
165
|
+
"scope": "keyword.other.special-method",
|
|
166
|
+
"settings": {
|
|
167
|
+
"foreground": "#8ab1b0"
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"name": "Storage",
|
|
172
|
+
"scope": "storage",
|
|
173
|
+
"settings": {
|
|
174
|
+
"foreground": "#98676a"
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"name": "Support",
|
|
179
|
+
"scope": "support.function",
|
|
180
|
+
"settings": {
|
|
181
|
+
"foreground": "#7e602c"
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"name": "Strings, Inherited Class",
|
|
186
|
+
"scope": [
|
|
187
|
+
"string",
|
|
188
|
+
"constant.other.symbol",
|
|
189
|
+
"entity.other.inherited-class"
|
|
190
|
+
],
|
|
191
|
+
"settings": {
|
|
192
|
+
"foreground": "#889b4a"
|
|
193
|
+
}
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"name": "Integers",
|
|
197
|
+
"scope": "constant.numeric",
|
|
198
|
+
"settings": {
|
|
199
|
+
"foreground": "#f79a32"
|
|
200
|
+
}
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"name": "Floats",
|
|
204
|
+
"scope": "none",
|
|
205
|
+
"settings": {
|
|
206
|
+
"foreground": "#f79a32"
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"name": "Boolean",
|
|
211
|
+
"scope": "none",
|
|
212
|
+
"settings": {
|
|
213
|
+
"foreground": "#f79a32"
|
|
214
|
+
}
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"name": "Constants",
|
|
218
|
+
"scope": "constant",
|
|
219
|
+
"settings": {
|
|
220
|
+
"foreground": "#f79a32"
|
|
221
|
+
}
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"name": "Tags",
|
|
225
|
+
"scope": "entity.name.tag",
|
|
226
|
+
"settings": {
|
|
227
|
+
"foreground": "#dc3958"
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"name": "Attributes",
|
|
232
|
+
"scope": "entity.other.attribute-name",
|
|
233
|
+
"settings": {
|
|
234
|
+
"foreground": "#f79a32"
|
|
235
|
+
}
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"name": "Attribute IDs",
|
|
239
|
+
"scope": [
|
|
240
|
+
"entity.other.attribute-name.id",
|
|
241
|
+
"punctuation.definition.entity"
|
|
242
|
+
],
|
|
243
|
+
"settings": {
|
|
244
|
+
"foreground": "#8ab1b0"
|
|
245
|
+
}
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"name": "Selector",
|
|
249
|
+
"scope": "meta.selector",
|
|
250
|
+
"settings": {
|
|
251
|
+
"foreground": "#98676a"
|
|
252
|
+
}
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"name": "Values",
|
|
256
|
+
"scope": "none",
|
|
257
|
+
"settings": {
|
|
258
|
+
"foreground": "#f79a32"
|
|
259
|
+
}
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"name": "Headings",
|
|
263
|
+
"scope": [
|
|
264
|
+
"markup.heading",
|
|
265
|
+
"markup.heading.setext",
|
|
266
|
+
"punctuation.definition.heading",
|
|
267
|
+
"entity.name.section"
|
|
268
|
+
],
|
|
269
|
+
"settings": {
|
|
270
|
+
"fontStyle": "bold",
|
|
271
|
+
"foreground": "#8ab1b0"
|
|
272
|
+
}
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"name": "Units",
|
|
276
|
+
"scope": "keyword.other.unit",
|
|
277
|
+
"settings": {
|
|
278
|
+
"foreground": "#f79a32"
|
|
279
|
+
}
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"name": "Bold",
|
|
283
|
+
"scope": [
|
|
284
|
+
"markup.bold",
|
|
285
|
+
"punctuation.definition.bold"
|
|
286
|
+
],
|
|
287
|
+
"settings": {
|
|
288
|
+
"fontStyle": "bold",
|
|
289
|
+
"foreground": "#f06431"
|
|
290
|
+
}
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"name": "Italic",
|
|
294
|
+
"scope": [
|
|
295
|
+
"markup.italic",
|
|
296
|
+
"punctuation.definition.italic"
|
|
297
|
+
],
|
|
298
|
+
"settings": {
|
|
299
|
+
"fontStyle": "italic",
|
|
300
|
+
"foreground": "#98676a"
|
|
301
|
+
}
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"scope": "markup.strikethrough",
|
|
305
|
+
"settings": {
|
|
306
|
+
"fontStyle": "strikethrough"
|
|
307
|
+
}
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"name": "Code",
|
|
311
|
+
"scope": "markup.inline.raw",
|
|
312
|
+
"settings": {
|
|
313
|
+
"foreground": "#889b4a"
|
|
314
|
+
}
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"name": "Link Text",
|
|
318
|
+
"scope": "string.other.link",
|
|
319
|
+
"settings": {
|
|
320
|
+
"foreground": "#dc3958"
|
|
321
|
+
}
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"name": "Link Url",
|
|
325
|
+
"scope": "meta.link",
|
|
326
|
+
"settings": {
|
|
327
|
+
"foreground": "#f79a32"
|
|
328
|
+
}
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"name": "Lists",
|
|
332
|
+
"scope": "markup.list",
|
|
333
|
+
"settings": {
|
|
334
|
+
"foreground": "#dc3958"
|
|
335
|
+
}
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"name": "Quotes",
|
|
339
|
+
"scope": "markup.quote",
|
|
340
|
+
"settings": {
|
|
341
|
+
"foreground": "#f79a32"
|
|
342
|
+
}
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"name": "Separator",
|
|
346
|
+
"scope": "meta.separator",
|
|
347
|
+
"settings": {
|
|
348
|
+
"foreground": "#d3af86"
|
|
349
|
+
}
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"name": "Inserted",
|
|
353
|
+
"scope": "markup.inserted",
|
|
354
|
+
"settings": {
|
|
355
|
+
"foreground": "#889b4a"
|
|
356
|
+
}
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
"name": "Deleted",
|
|
360
|
+
"scope": "markup.deleted",
|
|
361
|
+
"settings": {
|
|
362
|
+
"foreground": "#dc3958"
|
|
363
|
+
}
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"name": "Changed",
|
|
367
|
+
"scope": "markup.changed",
|
|
368
|
+
"settings": {
|
|
369
|
+
"foreground": "#98676a"
|
|
370
|
+
}
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"name": "Colors",
|
|
374
|
+
"scope": "constant.other.color",
|
|
375
|
+
"settings": {
|
|
376
|
+
"foreground": "#7e602c"
|
|
377
|
+
}
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"name": "Regular Expressions",
|
|
381
|
+
"scope": "string.regexp",
|
|
382
|
+
"settings": {
|
|
383
|
+
"foreground": "#7e602c"
|
|
384
|
+
}
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"name": "Escape Characters",
|
|
388
|
+
"scope": "constant.character.escape",
|
|
389
|
+
"settings": {
|
|
390
|
+
"foreground": "#7e602c"
|
|
391
|
+
}
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
"name": "Embedded",
|
|
395
|
+
"scope": [
|
|
396
|
+
"punctuation.section.embedded",
|
|
397
|
+
"variable.interpolation"
|
|
398
|
+
],
|
|
399
|
+
"settings": {
|
|
400
|
+
"foreground": "#088649"
|
|
401
|
+
}
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"name": "Invalid",
|
|
405
|
+
"scope": "invalid",
|
|
406
|
+
"settings": {
|
|
407
|
+
"foreground": "#dc3958"
|
|
408
|
+
}
|
|
409
|
+
}
|
|
410
|
+
],
|
|
411
|
+
"semanticHighlighting": true
|
|
412
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@codingame/monaco-vscode-theme-kimbie-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
|
+
}
|