@codingame/monaco-vscode-theme-tomorrow-night-blue-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/tomorrow-night-blue-color-theme.json +293 -0
package/index.js
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { registerExtension } from 'vscode/extensions';
|
|
2
|
+
|
|
3
|
+
var manifest = {name:"theme-tomorrow-night-blue",displayName:"Tomorrow Night Blue Theme",description:"Tomorrow night blue theme for Visual Studio Code",version:"1.0.0",publisher:"vscode",license:"MIT",engines:{vscode:"*"},contributes:{themes:[{id:"Tomorrow Night Blue",label:"Tomorrow Night Blue",uiTheme:"vs-dark",path:"./themes/tomorrow-night-blue-color-theme.json"}]},repository:{type:"git",url:"https://github.com/microsoft/vscode.git"},main:undefined};
|
|
4
|
+
|
|
5
|
+
const { registerFileUrl } = registerExtension(manifest);
|
|
6
|
+
registerFileUrl('./themes/tomorrow-night-blue-color-theme.json', new URL('./tomorrow-night-blue-color-theme.json', import.meta.url).toString(), 'application/json');
|
package/package.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@codingame/monaco-vscode-theme-tomorrow-night-blue-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,293 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "dark",
|
|
3
|
+
"colors": {
|
|
4
|
+
"focusBorder": "#bbdaff",
|
|
5
|
+
"errorForeground": "#a92049",
|
|
6
|
+
"input.background": "#001733",
|
|
7
|
+
"dropdown.background": "#001733",
|
|
8
|
+
"quickInputList.focusBackground": "#ffffff60",
|
|
9
|
+
"list.activeSelectionBackground": "#ffffff60",
|
|
10
|
+
"list.inactiveSelectionBackground": "#ffffff40",
|
|
11
|
+
"list.hoverBackground": "#ffffff30",
|
|
12
|
+
"list.highlightForeground": "#bbdaff",
|
|
13
|
+
"pickerGroup.foreground": "#bbdaff",
|
|
14
|
+
"editor.background": "#002451",
|
|
15
|
+
"editor.foreground": "#ffffff",
|
|
16
|
+
"editor.selectionBackground": "#003f8e",
|
|
17
|
+
"minimap.selectionHighlight": "#003f8e",
|
|
18
|
+
"editor.lineHighlightBackground": "#00346e",
|
|
19
|
+
"editorLineNumber.activeForeground": "#949494",
|
|
20
|
+
"editorCursor.foreground": "#ffffff",
|
|
21
|
+
"editorWhitespace.foreground": "#404f7d",
|
|
22
|
+
"editorWidget.background": "#001c40",
|
|
23
|
+
"editorHoverWidget.background": "#001c40",
|
|
24
|
+
"editorHoverWidget.border": "#ffffff44",
|
|
25
|
+
"editorGroup.border": "#404f7d",
|
|
26
|
+
"editorGroupHeader.tabsBackground": "#001733",
|
|
27
|
+
"editorGroup.dropBackground": "#25375daa",
|
|
28
|
+
"peekViewResult.background": "#001c40",
|
|
29
|
+
"tab.inactiveBackground": "#001c40",
|
|
30
|
+
"tab.lastPinnedBorder": "#007acc80",
|
|
31
|
+
"debugToolBar.background": "#001c40",
|
|
32
|
+
"titleBar.activeBackground": "#001126",
|
|
33
|
+
"statusBar.background": "#001126",
|
|
34
|
+
"statusBarItem.remoteBackground": "#0e639c",
|
|
35
|
+
"ports.iconRunningProcessForeground": "#bbdaff",
|
|
36
|
+
"statusBar.noFolderBackground": "#001126",
|
|
37
|
+
"statusBar.debuggingBackground": "#001126",
|
|
38
|
+
"activityBar.background": "#001733",
|
|
39
|
+
"activityBarItem.profilesBackground": "#003271",
|
|
40
|
+
"progressBar.background": "#bbdaffcc",
|
|
41
|
+
"badge.background": "#bbdaffcc",
|
|
42
|
+
"badge.foreground": "#001733",
|
|
43
|
+
"sideBar.background": "#001c40",
|
|
44
|
+
"terminal.ansiBlack": "#111111",
|
|
45
|
+
"terminal.ansiRed": "#ff9da4",
|
|
46
|
+
"terminal.ansiGreen": "#d1f1a9",
|
|
47
|
+
"terminal.ansiYellow": "#ffeead",
|
|
48
|
+
"terminal.ansiBlue": "#bbdaff",
|
|
49
|
+
"terminal.ansiMagenta": "#ebbbff",
|
|
50
|
+
"terminal.ansiCyan": "#99ffff",
|
|
51
|
+
"terminal.ansiWhite": "#cccccc",
|
|
52
|
+
"terminal.ansiBrightBlack": "#333333",
|
|
53
|
+
"terminal.ansiBrightRed": "#ff7882",
|
|
54
|
+
"terminal.ansiBrightGreen": "#b8f171",
|
|
55
|
+
"terminal.ansiBrightYellow": "#ffe580",
|
|
56
|
+
"terminal.ansiBrightBlue": "#80baff",
|
|
57
|
+
"terminal.ansiBrightMagenta": "#d778ff",
|
|
58
|
+
"terminal.ansiBrightCyan": "#78ffff",
|
|
59
|
+
"terminal.ansiBrightWhite": "#ffffff"
|
|
60
|
+
},
|
|
61
|
+
"tokenColors": [
|
|
62
|
+
{
|
|
63
|
+
"settings": {
|
|
64
|
+
"background": "#002451",
|
|
65
|
+
"foreground": "#FFFFFF"
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"scope": [
|
|
70
|
+
"meta.embedded",
|
|
71
|
+
"source.groovy.embedded",
|
|
72
|
+
"meta.jsx.children",
|
|
73
|
+
"string meta.image.inline.markdown"
|
|
74
|
+
],
|
|
75
|
+
"settings": {
|
|
76
|
+
//"background": "#002451",
|
|
77
|
+
"foreground": "#FFFFFF"
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"name": "Comment",
|
|
82
|
+
"scope": "comment",
|
|
83
|
+
"settings": {
|
|
84
|
+
"foreground": "#7285B7"
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "Foreground, Operator",
|
|
89
|
+
"scope": "keyword.operator.class, keyword.operator, constant.other, source.php.embedded.line",
|
|
90
|
+
"settings": {
|
|
91
|
+
"fontStyle": "",
|
|
92
|
+
"foreground": "#FFFFFF"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"name": "Variable, String Link, Regular Expression, Tag Name, GitGutter deleted",
|
|
97
|
+
"scope": "variable, support.other.variable, string.other.link, string.regexp, entity.name.tag, entity.other.attribute-name, meta.tag, declaration.tag, markup.deleted.git_gutter",
|
|
98
|
+
"settings": {
|
|
99
|
+
"foreground": "#FF9DA4"
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"name": "Number, Constant, Function Argument, Tag Attribute, Embedded",
|
|
104
|
+
"scope": "constant.numeric, constant.language, support.constant, constant.character, variable.parameter, punctuation.section.embedded, keyword.other.unit",
|
|
105
|
+
"settings": {
|
|
106
|
+
"fontStyle": "",
|
|
107
|
+
"foreground": "#FFC58F"
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"name": "Class, Support",
|
|
112
|
+
"scope": "entity.name.class, entity.name.type, entity.name.namespace, entity.name.scope-resolution, support.type, support.class",
|
|
113
|
+
"settings": {
|
|
114
|
+
"fontStyle": "",
|
|
115
|
+
"foreground": "#FFEEAD"
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"name": "String, Symbols, Inherited Class, Markup Heading, GitGutter inserted",
|
|
120
|
+
"scope": "string, constant.other.symbol, entity.other.inherited-class, markup.heading, markup.inserted.git_gutter",
|
|
121
|
+
"settings": {
|
|
122
|
+
"fontStyle": "",
|
|
123
|
+
"foreground": "#D1F1A9"
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"name": "Operator, Misc",
|
|
128
|
+
"scope": "keyword.operator, constant.other.color",
|
|
129
|
+
"settings": {
|
|
130
|
+
"foreground": "#99FFFF"
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"name": "Function, Special Method, Block Level, GitGutter changed",
|
|
135
|
+
"scope": "entity.name.function, meta.function-call, support.function, keyword.other.special-method, meta.block-level, markup.changed.git_gutter",
|
|
136
|
+
"settings": {
|
|
137
|
+
"fontStyle": "",
|
|
138
|
+
"foreground": "#BBDAFF"
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"name": "Keyword, Storage",
|
|
143
|
+
"scope": "keyword, storage, storage.type, entity.name.tag.css",
|
|
144
|
+
"settings": {
|
|
145
|
+
"fontStyle": "",
|
|
146
|
+
"foreground": "#EBBBFF"
|
|
147
|
+
}
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"name": "Invalid",
|
|
151
|
+
"scope": "invalid",
|
|
152
|
+
"settings": {
|
|
153
|
+
//"background": "#F99DA5",
|
|
154
|
+
"fontStyle": "",
|
|
155
|
+
"foreground": "#a92049"
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"name": "Separator",
|
|
160
|
+
"scope": "meta.separator",
|
|
161
|
+
"settings": {
|
|
162
|
+
//"background": "#BBDAFE",
|
|
163
|
+
"foreground": "#FFFFFF"
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"name": "Deprecated",
|
|
168
|
+
"scope": "invalid.deprecated",
|
|
169
|
+
"settings": {
|
|
170
|
+
//"background": "#EBBBFF",
|
|
171
|
+
"fontStyle": "",
|
|
172
|
+
"foreground": "#cd9731"
|
|
173
|
+
}
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"name": "Diff foreground",
|
|
177
|
+
"scope": "markup.inserted.diff, markup.deleted.diff, meta.diff.header.to-file, meta.diff.header.from-file",
|
|
178
|
+
"settings": {
|
|
179
|
+
"foreground": "#FFFFFF"
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"name": "Diff insertion",
|
|
184
|
+
"scope": "markup.inserted.diff, meta.diff.header.to-file",
|
|
185
|
+
"settings": {
|
|
186
|
+
"foreground": "#718c00"
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"name": "Diff deletion",
|
|
191
|
+
"scope": "markup.deleted.diff, meta.diff.header.from-file",
|
|
192
|
+
"settings": {
|
|
193
|
+
"foreground": "#c82829"
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"name": "Diff header",
|
|
198
|
+
"scope": "meta.diff.header.from-file, meta.diff.header.to-file",
|
|
199
|
+
"settings": {
|
|
200
|
+
"foreground": "#4271ae"
|
|
201
|
+
}
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"name": "Diff range",
|
|
205
|
+
"scope": "meta.diff.range",
|
|
206
|
+
"settings": {
|
|
207
|
+
"fontStyle": "italic",
|
|
208
|
+
"foreground": "#3e999f"
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"name": "Markup Quote",
|
|
213
|
+
"scope": "markup.quote",
|
|
214
|
+
"settings": {
|
|
215
|
+
"foreground": "#FFC58F"
|
|
216
|
+
}
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"name": "Markup Lists",
|
|
220
|
+
"scope": "markup.list",
|
|
221
|
+
"settings": {
|
|
222
|
+
"foreground": "#BBDAFF"
|
|
223
|
+
}
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"name": "Markup Styling",
|
|
227
|
+
"scope": "markup.bold, markup.italic",
|
|
228
|
+
"settings": {
|
|
229
|
+
"foreground": "#FFC58F"
|
|
230
|
+
}
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"name": "Markup: Strong",
|
|
234
|
+
"scope": "markup.bold",
|
|
235
|
+
"settings": {
|
|
236
|
+
"fontStyle": "bold"
|
|
237
|
+
}
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"name": "Markup: Emphasis",
|
|
241
|
+
"scope": "markup.italic",
|
|
242
|
+
"settings": {
|
|
243
|
+
"fontStyle": "italic"
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"scope": "markup.strikethrough",
|
|
248
|
+
"settings": {
|
|
249
|
+
"fontStyle": "strikethrough"
|
|
250
|
+
}
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"name": "Markup Inline",
|
|
254
|
+
"scope": "markup.inline.raw",
|
|
255
|
+
"settings": {
|
|
256
|
+
"fontStyle": "",
|
|
257
|
+
"foreground": "#FF9DA4"
|
|
258
|
+
}
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"name": "Markup Headings",
|
|
262
|
+
"scope": "markup.heading",
|
|
263
|
+
"settings": {
|
|
264
|
+
"fontStyle": "bold"
|
|
265
|
+
}
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"scope": "token.info-token",
|
|
269
|
+
"settings": {
|
|
270
|
+
"foreground": "#6796e6"
|
|
271
|
+
}
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"scope": "token.warn-token",
|
|
275
|
+
"settings": {
|
|
276
|
+
"foreground": "#cd9731"
|
|
277
|
+
}
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"scope": "token.error-token",
|
|
281
|
+
"settings": {
|
|
282
|
+
"foreground": "#f44747"
|
|
283
|
+
}
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"scope": "token.debug-token",
|
|
287
|
+
"settings": {
|
|
288
|
+
"foreground": "#b267e6"
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
],
|
|
292
|
+
"semanticHighlighting": true
|
|
293
|
+
}
|