pascal-vscode 0.0.2 → 0.1.0-beta.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/.prettierrc.mjs +6 -0
- package/.vscodeignore +5 -32
- package/CHANGELOG.md +25 -1
- package/README.md +10 -40
- package/assets/screenshots/default.jpg +0 -0
- package/dist/extension.js +1 -1
- package/dist/types/webview.d.js +0 -0
- package/dist/utils.js +1 -0
- package/dist/webviewController.js +1 -0
- package/dist/webviews/availableWebviews.js +1 -0
- package/dist/webviews/showChangelog.js +1 -0
- package/package.json +19 -22
- package/src/extension.ts +10 -4
- package/src/types/webview.d.ts +15 -0
- package/src/utils.ts +9 -0
- package/src/webviewController.ts +52 -0
- package/src/webviews/availableWebviews.ts +4 -0
- package/src/webviews/showChangelog.ts +20 -0
- package/themes/default.json +434 -289
- package/tsconfig.build.json +4 -0
- package/tsconfig.json +2 -22
- package/.changeset/README.md +0 -8
- package/.changeset/config.json +0 -12
- package/.changeset/pre.json +0 -10
- package/.changeset/wise-cows-feel.md +0 -5
- package/.editorconfig +0 -15
- package/.github/FUNDING.yml +0 -6
- package/.github/ISSUE_TEMPLATE/bug_report.yml +0 -47
- package/.github/PULL_REQUEST_TEMPLATE.md +0 -5
- package/.github/actions/setup-git-commiter/action.yml +0 -49
- package/.github/actions/setup-pnpm/action.yml +0 -42
- package/.github/issue_labeler.yml +0 -2
- package/.github/labeler.yml +0 -9
- package/.github/renovate.json5 +0 -48
- package/.github/workflows/check_merge.yml +0 -109
- package/.github/workflows/cleanup_cache.yml +0 -46
- package/.github/workflows/diff_dependencies.yml +0 -26
- package/.github/workflows/format.yml +0 -45
- package/.github/workflows/label_issue.yml +0 -18
- package/.github/workflows/label_pr.yml +0 -16
- package/.github/workflows/lint_pr_title.yml +0 -49
- package/.github/workflows/release.yml +0 -69
- package/.prettierignore +0 -25
- package/.vscode/extensions.json +0 -10
- package/.vscode/launch.json +0 -25
- package/.vscode/settings.json +0 -13
- package/.vscode/tasks.json +0 -17
- package/CODE_OF_CONDUCT.md +0 -65
- package/CONTRIBUTING.md +0 -86
- package/assets/icon.svg +0 -1
- package/assets/preview.png +0 -0
- package/biome.jsonc +0 -113
- package/eslint.config.js +0 -91
- package/pnpm-workspace.yaml +0 -4
- package/prettier.config.mjs +0 -17
- package/scripts/build.js +0 -107
package/themes/default.json
CHANGED
|
@@ -3,356 +3,501 @@
|
|
|
3
3
|
"name": "Pascal (Default)",
|
|
4
4
|
"type": "dark",
|
|
5
5
|
"semanticHighlighting": true,
|
|
6
|
-
"semanticTokenColors": {
|
|
7
|
-
"namespace": "#9dd7ff",
|
|
8
|
-
"type": "#a8b1ff",
|
|
9
|
-
"class": "#a8b1ff",
|
|
10
|
-
"enum": "#a8b1ff",
|
|
11
|
-
"interface": "#a8b1ff",
|
|
12
|
-
"struct": "#a8b1ff",
|
|
13
|
-
"typeParameter": "#d8b4fe",
|
|
14
|
-
"parameter": "#f7f7f8",
|
|
15
|
-
"variable": "#f7f7f8",
|
|
16
|
-
"property": "#c6ccff",
|
|
17
|
-
"enumMember": "#f0b36f",
|
|
18
|
-
"function": "#86efac",
|
|
19
|
-
"method": "#86efac",
|
|
20
|
-
"macro": "#86efac",
|
|
21
|
-
"keyword": "#d8b4fe",
|
|
22
|
-
"modifier": "#d8b4fe",
|
|
23
|
-
"comment": "#7b7b86",
|
|
24
|
-
"string": "#9dd7ff",
|
|
25
|
-
"number": "#f0b36f",
|
|
26
|
-
"regexp": "#f472b6",
|
|
27
|
-
"operator": "#a2a2a9",
|
|
28
|
-
"decorator": "#f472b6"
|
|
29
|
-
},
|
|
30
6
|
"tokenColors": [
|
|
31
7
|
{
|
|
32
|
-
"
|
|
8
|
+
"scope": ["comment", "punctuation.definition.comment", "string.comment"],
|
|
9
|
+
"settings": {
|
|
10
|
+
"foreground": "#5b5b5b"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
{
|
|
33
14
|
"scope": [
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
15
|
+
"constant",
|
|
16
|
+
"entity.name.constant",
|
|
17
|
+
"variable.other.constant",
|
|
18
|
+
"variable.other.enummember",
|
|
19
|
+
"variable.language"
|
|
37
20
|
],
|
|
38
21
|
"settings": {
|
|
39
|
-
"foreground": "#
|
|
40
|
-
|
|
22
|
+
"foreground": "#79b8ff"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"scope": ["entity", "entity.name"],
|
|
27
|
+
"settings": {
|
|
28
|
+
"foreground": "#b392f0"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"scope": "variable.parameter.function",
|
|
33
|
+
"settings": {
|
|
34
|
+
"foreground": "#e1e4e8"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"scope": "entity.name.tag",
|
|
39
|
+
"settings": {
|
|
40
|
+
"foreground": "#85e89d"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"scope": "keyword",
|
|
45
|
+
"settings": {
|
|
46
|
+
"foreground": "#f97583"
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"scope": ["storage", "storage.type"],
|
|
51
|
+
"settings": {
|
|
52
|
+
"foreground": "#f97583"
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"scope": ["storage.modifier.package", "storage.modifier.import", "storage.type.java"],
|
|
57
|
+
"settings": {
|
|
58
|
+
"foreground": "#e1e4e8"
|
|
41
59
|
}
|
|
42
60
|
},
|
|
43
61
|
{
|
|
44
|
-
"name": "Strings",
|
|
45
62
|
"scope": [
|
|
46
63
|
"string",
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"constant.character.escape",
|
|
50
|
-
"punctuation.definition.string"
|
|
64
|
+
"punctuation.definition.string",
|
|
65
|
+
"string punctuation.section.embedded source"
|
|
51
66
|
],
|
|
52
67
|
"settings": {
|
|
53
|
-
"foreground": "#
|
|
68
|
+
"foreground": "#9ecbff"
|
|
54
69
|
}
|
|
55
70
|
},
|
|
56
71
|
{
|
|
57
|
-
"
|
|
58
|
-
"scope": ["keyword", "storage", "storage.type", "storage.modifier"],
|
|
72
|
+
"scope": "support",
|
|
59
73
|
"settings": {
|
|
60
|
-
"foreground": "#
|
|
74
|
+
"foreground": "#79b8ff"
|
|
61
75
|
}
|
|
62
76
|
},
|
|
63
77
|
{
|
|
64
|
-
"
|
|
65
|
-
"scope": ["constant.numeric", "constant.language", "constant.character", "constant"],
|
|
78
|
+
"scope": "meta.property-name",
|
|
66
79
|
"settings": {
|
|
67
|
-
"foreground": "#
|
|
80
|
+
"foreground": "#79b8ff"
|
|
68
81
|
}
|
|
69
82
|
},
|
|
70
83
|
{
|
|
71
|
-
"
|
|
72
|
-
"scope": [
|
|
73
|
-
"entity.name.type",
|
|
74
|
-
"entity.name.class",
|
|
75
|
-
"support.class",
|
|
76
|
-
"support.type",
|
|
77
|
-
"meta.type.annotation",
|
|
78
|
-
"meta.type.parameters"
|
|
79
|
-
],
|
|
84
|
+
"scope": "variable",
|
|
80
85
|
"settings": {
|
|
81
|
-
"foreground": "#
|
|
86
|
+
"foreground": "#ffab70"
|
|
82
87
|
}
|
|
83
88
|
},
|
|
84
89
|
{
|
|
85
|
-
"
|
|
86
|
-
"scope": [
|
|
87
|
-
"entity.name.function",
|
|
88
|
-
"support.function",
|
|
89
|
-
"meta.function-call",
|
|
90
|
-
"meta.object-literal.key.entity.name.function"
|
|
91
|
-
],
|
|
90
|
+
"scope": "variable.other",
|
|
92
91
|
"settings": {
|
|
93
|
-
"foreground": "#
|
|
92
|
+
"foreground": "#e1e4e8"
|
|
94
93
|
}
|
|
95
94
|
},
|
|
96
95
|
{
|
|
97
|
-
"
|
|
98
|
-
"scope": ["variable", "meta.definition.variable", "meta.definition.parameters"],
|
|
96
|
+
"scope": "invalid.broken",
|
|
99
97
|
"settings": {
|
|
100
|
-
"
|
|
98
|
+
"fontStyle": "italic",
|
|
99
|
+
"foreground": "#fdaeb7"
|
|
101
100
|
}
|
|
102
101
|
},
|
|
103
102
|
{
|
|
104
|
-
"
|
|
105
|
-
"
|
|
106
|
-
"
|
|
107
|
-
"
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
103
|
+
"scope": "invalid.deprecated",
|
|
104
|
+
"settings": {
|
|
105
|
+
"fontStyle": "italic",
|
|
106
|
+
"foreground": "#fdaeb7"
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"scope": "invalid.illegal",
|
|
111
|
+
"settings": {
|
|
112
|
+
"fontStyle": "italic",
|
|
113
|
+
"foreground": "#fdaeb7"
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"scope": "invalid.unimplemented",
|
|
118
|
+
"settings": {
|
|
119
|
+
"fontStyle": "italic",
|
|
120
|
+
"foreground": "#fdaeb7"
|
|
121
|
+
}
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"scope": "carriage-return",
|
|
111
125
|
"settings": {
|
|
112
|
-
"
|
|
126
|
+
"background": "#f97583",
|
|
127
|
+
"content": "^M",
|
|
128
|
+
"fontStyle": "italic underline",
|
|
129
|
+
"foreground": "#24292e"
|
|
113
130
|
}
|
|
114
131
|
},
|
|
115
132
|
{
|
|
116
|
-
"
|
|
117
|
-
"scope": ["keyword.operator", "punctuation", "meta.brace", "meta.delimiter"],
|
|
133
|
+
"scope": "message.error",
|
|
118
134
|
"settings": {
|
|
119
|
-
"foreground": "#
|
|
135
|
+
"foreground": "#fdaeb7"
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"scope": "string variable",
|
|
140
|
+
"settings": {
|
|
141
|
+
"foreground": "#79b8ff"
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"scope": ["source.regexp", "string.regexp"],
|
|
146
|
+
"settings": {
|
|
147
|
+
"foreground": "#dbedff"
|
|
120
148
|
}
|
|
121
149
|
},
|
|
122
150
|
{
|
|
123
|
-
"name": "Imports",
|
|
124
151
|
"scope": [
|
|
125
|
-
"
|
|
126
|
-
"
|
|
127
|
-
"
|
|
128
|
-
"
|
|
152
|
+
"string.regexp.character-class",
|
|
153
|
+
"string.regexp constant.character.escape",
|
|
154
|
+
"string.regexp source.ruby.embedded",
|
|
155
|
+
"string.regexp string.regexp.arbitrary-repitition"
|
|
129
156
|
],
|
|
130
157
|
"settings": {
|
|
131
|
-
"foreground": "#
|
|
158
|
+
"foreground": "#dbedff"
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"scope": "string.regexp constant.character.escape",
|
|
163
|
+
"settings": {
|
|
164
|
+
"fontStyle": "bold",
|
|
165
|
+
"foreground": "#85e89d"
|
|
166
|
+
}
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"scope": "support.constant",
|
|
170
|
+
"settings": {
|
|
171
|
+
"foreground": "#79b8ff"
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"scope": "support.variable",
|
|
176
|
+
"settings": {
|
|
177
|
+
"foreground": "#79b8ff"
|
|
178
|
+
}
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"scope": "meta.module-reference",
|
|
182
|
+
"settings": {
|
|
183
|
+
"foreground": "#79b8ff"
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"scope": "punctuation.definition.list.begin.markdown",
|
|
188
|
+
"settings": {
|
|
189
|
+
"foreground": "#ffab70"
|
|
190
|
+
}
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"scope": ["markup.heading", "markup.heading entity.name"],
|
|
194
|
+
"settings": {
|
|
195
|
+
"fontStyle": "bold",
|
|
196
|
+
"foreground": "#79b8ff"
|
|
197
|
+
}
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"scope": "markup.quote",
|
|
201
|
+
"settings": {
|
|
202
|
+
"foreground": "#85e89d"
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"scope": "markup.italic",
|
|
207
|
+
"settings": {
|
|
208
|
+
"fontStyle": "italic",
|
|
209
|
+
"foreground": "#e1e4e8"
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"scope": "markup.bold",
|
|
214
|
+
"settings": {
|
|
215
|
+
"fontStyle": "bold",
|
|
216
|
+
"foreground": "#e1e4e8"
|
|
217
|
+
}
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"scope": ["markup.underline"],
|
|
221
|
+
"settings": {
|
|
222
|
+
"fontStyle": "underline"
|
|
223
|
+
}
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"scope": ["markup.strikethrough"],
|
|
227
|
+
"settings": {
|
|
228
|
+
"fontStyle": "strikethrough"
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"scope": "markup.inline.raw",
|
|
233
|
+
"settings": {
|
|
234
|
+
"foreground": "#79b8ff"
|
|
235
|
+
}
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"scope": ["markup.deleted", "meta.diff.header.from-file", "punctuation.definition.deleted"],
|
|
239
|
+
"settings": {
|
|
240
|
+
"background": "#86181d",
|
|
241
|
+
"foreground": "#fdaeb7"
|
|
242
|
+
}
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"scope": ["markup.inserted", "meta.diff.header.to-file", "punctuation.definition.inserted"],
|
|
246
|
+
"settings": {
|
|
247
|
+
"background": "#144620",
|
|
248
|
+
"foreground": "#85e89d"
|
|
249
|
+
}
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"scope": ["markup.changed", "punctuation.definition.changed"],
|
|
253
|
+
"settings": {
|
|
254
|
+
"background": "#c24e00",
|
|
255
|
+
"foreground": "#ffab70"
|
|
256
|
+
}
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"scope": ["markup.ignored", "markup.untracked"],
|
|
260
|
+
"settings": {
|
|
261
|
+
"background": "#79b8ff",
|
|
262
|
+
"foreground": "#2f363d"
|
|
263
|
+
}
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"scope": "meta.diff.range",
|
|
267
|
+
"settings": {
|
|
268
|
+
"fontStyle": "bold",
|
|
269
|
+
"foreground": "#b392f0"
|
|
270
|
+
}
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"scope": "meta.diff.header",
|
|
274
|
+
"settings": {
|
|
275
|
+
"foreground": "#79b8ff"
|
|
276
|
+
}
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"scope": "meta.separator",
|
|
280
|
+
"settings": {
|
|
281
|
+
"fontStyle": "bold",
|
|
282
|
+
"foreground": "#79b8ff"
|
|
283
|
+
}
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"scope": "meta.output",
|
|
287
|
+
"settings": {
|
|
288
|
+
"foreground": "#79b8ff"
|
|
132
289
|
}
|
|
133
290
|
},
|
|
134
291
|
{
|
|
135
|
-
"name": "Regex",
|
|
136
292
|
"scope": [
|
|
137
|
-
"
|
|
138
|
-
"
|
|
139
|
-
"
|
|
293
|
+
"brackethighlighter.tag",
|
|
294
|
+
"brackethighlighter.curly",
|
|
295
|
+
"brackethighlighter.round",
|
|
296
|
+
"brackethighlighter.square",
|
|
297
|
+
"brackethighlighter.angle",
|
|
298
|
+
"brackethighlighter.quote"
|
|
140
299
|
],
|
|
141
300
|
"settings": {
|
|
142
|
-
"foreground": "#
|
|
301
|
+
"foreground": "#d1d5da"
|
|
143
302
|
}
|
|
144
303
|
},
|
|
145
304
|
{
|
|
146
|
-
"
|
|
147
|
-
"scope": ["invalid", "invalid.illegal"],
|
|
305
|
+
"scope": "brackethighlighter.unmatched",
|
|
148
306
|
"settings": {
|
|
149
|
-
"foreground": "#
|
|
150
|
-
|
|
307
|
+
"foreground": "#fdaeb7"
|
|
308
|
+
}
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"scope": ["constant.other.reference.link", "string.other.link"],
|
|
312
|
+
"settings": {
|
|
313
|
+
"fontStyle": "underline",
|
|
314
|
+
"foreground": "#dbedff"
|
|
151
315
|
}
|
|
152
316
|
}
|
|
153
317
|
],
|
|
154
318
|
"colors": {
|
|
155
|
-
"
|
|
156
|
-
"
|
|
157
|
-
"
|
|
158
|
-
"
|
|
159
|
-
"
|
|
160
|
-
"
|
|
161
|
-
"
|
|
162
|
-
"
|
|
163
|
-
"
|
|
164
|
-
"
|
|
165
|
-
"
|
|
166
|
-
"
|
|
167
|
-
"
|
|
168
|
-
"
|
|
169
|
-
"
|
|
170
|
-
"
|
|
171
|
-
"
|
|
172
|
-
"
|
|
173
|
-
"
|
|
174
|
-
"
|
|
175
|
-
"
|
|
176
|
-
"
|
|
177
|
-
"
|
|
178
|
-
"
|
|
179
|
-
"
|
|
180
|
-
"
|
|
181
|
-
"
|
|
182
|
-
"
|
|
183
|
-
"
|
|
184
|
-
"badge.background": "#2e3040",
|
|
185
|
-
"badge.foreground": "#f7f7f8",
|
|
186
|
-
"progressBar.background": "#a8b1ff",
|
|
187
|
-
"list.activeSelectionBackground": "#222227",
|
|
188
|
-
"list.activeSelectionForeground": "#f7f7f8",
|
|
189
|
-
"list.inactiveSelectionBackground": "#222227",
|
|
190
|
-
"list.focusBackground": "#2a2a33",
|
|
191
|
-
"list.hoverBackground": "#202026",
|
|
192
|
-
"list.highlightForeground": "#a8b1ff",
|
|
193
|
-
"list.errorForeground": "#ff8080",
|
|
194
|
-
"list.warningForeground": "#f0b36f",
|
|
195
|
-
"list.dropBackground": "#2a2e44",
|
|
196
|
-
"tree.indentGuidesStroke": "#2f2f32",
|
|
319
|
+
"activityBar.activeBorder": "#f9826c",
|
|
320
|
+
"activityBar.background": "#121212",
|
|
321
|
+
"activityBar.border": "#212121",
|
|
322
|
+
"activityBar.foreground": "#f1f1f1",
|
|
323
|
+
"activityBar.inactiveForeground": "#6a737d",
|
|
324
|
+
"activityBarBadge.background": "#3c96ff",
|
|
325
|
+
"activityBarBadge.foreground": "#f1f1f1",
|
|
326
|
+
"badge.background": "#2e2e2e",
|
|
327
|
+
"badge.foreground": "#f1f1f1",
|
|
328
|
+
"breadcrumb.activeSelectionForeground": "#d1d5da",
|
|
329
|
+
"breadcrumb.focusForeground": "#f1f1f1",
|
|
330
|
+
"breadcrumb.foreground": "#c4c4c4",
|
|
331
|
+
"breadcrumbPicker.background": "#1d1d1d",
|
|
332
|
+
"button.background": "#1d1d1d",
|
|
333
|
+
"button.foreground": "#f1f1f1",
|
|
334
|
+
"button.hoverBackground": "#2d2d2d",
|
|
335
|
+
"button.secondaryBackground": "#2e2e2e",
|
|
336
|
+
"button.secondaryForeground": "#f1f1f1",
|
|
337
|
+
"button.secondaryHoverBackground": "#3d3d3d",
|
|
338
|
+
"checkbox.background": "#424242",
|
|
339
|
+
"checkbox.border": "#212121",
|
|
340
|
+
"debugToolBar.background": "#1d1d1d",
|
|
341
|
+
"descriptionForeground": "#c4c4c4",
|
|
342
|
+
"diffEditor.insertedTextBackground": "#28a74530",
|
|
343
|
+
"diffEditor.removedTextBackground": "#d73a4930",
|
|
344
|
+
"dropdown.background": "#212121",
|
|
345
|
+
"dropdown.border": "#2c2c2c",
|
|
346
|
+
"dropdown.foreground": "#f1f1f1",
|
|
347
|
+
"dropdown.listBackground": "#121212",
|
|
197
348
|
"editor.background": "#121212",
|
|
198
|
-
"editor.
|
|
199
|
-
"
|
|
200
|
-
"
|
|
201
|
-
"
|
|
202
|
-
"editor.
|
|
203
|
-
"editor.
|
|
204
|
-
"editor.
|
|
205
|
-
"editor.
|
|
206
|
-
"editor.
|
|
207
|
-
"editor.
|
|
208
|
-
"editor.
|
|
209
|
-
"editor.
|
|
210
|
-
"editor.
|
|
211
|
-
"editor.
|
|
212
|
-
"
|
|
213
|
-
"
|
|
214
|
-
"
|
|
215
|
-
"
|
|
216
|
-
"
|
|
217
|
-
"
|
|
218
|
-
"
|
|
219
|
-
"
|
|
220
|
-
"editorBracketMatch.
|
|
221
|
-
"
|
|
222
|
-
"
|
|
223
|
-
"
|
|
224
|
-
"
|
|
225
|
-
"
|
|
226
|
-
"
|
|
227
|
-
"
|
|
228
|
-
"
|
|
229
|
-
"editorGutter.
|
|
230
|
-
"
|
|
231
|
-
"
|
|
232
|
-
"
|
|
233
|
-
"
|
|
234
|
-
"
|
|
235
|
-
"
|
|
236
|
-
"
|
|
237
|
-
"
|
|
238
|
-
"
|
|
239
|
-
"
|
|
240
|
-
"
|
|
241
|
-
"
|
|
242
|
-
"
|
|
243
|
-
"
|
|
349
|
+
"editor.findMatchBackground": "#ffd33d44",
|
|
350
|
+
"editor.findMatchHighlightBackground": "#ffd33d22",
|
|
351
|
+
"editor.focusedStackFrameHighlightBackground": "#2b6a3033",
|
|
352
|
+
"editor.foldBackground": "#58606915",
|
|
353
|
+
"editor.foreground": "#f1f1f1",
|
|
354
|
+
"editor.inactiveSelectionBackground": "#3392FF22",
|
|
355
|
+
"editor.lineHighlightBackground": "#1d1d1d",
|
|
356
|
+
"editor.linkedEditingBackground": "#3392FF22",
|
|
357
|
+
"editor.selectionBackground": "#3392FF44",
|
|
358
|
+
"editor.selectionHighlightBackground": "#17E5E633",
|
|
359
|
+
"editor.selectionHighlightBorder": "#17E5E600",
|
|
360
|
+
"editor.stackFrameHighlightBackground": "#C6902625",
|
|
361
|
+
"editor.wordHighlightBackground": "#17E5E600",
|
|
362
|
+
"editor.wordHighlightBorder": "#17E5E699",
|
|
363
|
+
"editor.wordHighlightStrongBackground": "#17E5E600",
|
|
364
|
+
"editor.wordHighlightStrongBorder": "#17E5E666",
|
|
365
|
+
"editorBracketHighlight.foreground1": "#79b8ff",
|
|
366
|
+
"editorBracketHighlight.foreground2": "#ffab70",
|
|
367
|
+
"editorBracketHighlight.foreground3": "#b392f0",
|
|
368
|
+
"editorBracketHighlight.foreground4": "#79b8ff",
|
|
369
|
+
"editorBracketHighlight.foreground5": "#ffab70",
|
|
370
|
+
"editorBracketHighlight.foreground6": "#b392f0",
|
|
371
|
+
"editorBracketMatch.background": "#17E5E650",
|
|
372
|
+
"editorBracketMatch.border": "#17E5E600",
|
|
373
|
+
"editorCursor.foreground": "#a8a8a8",
|
|
374
|
+
"editorError.foreground": "#f97583",
|
|
375
|
+
"editorGroup.border": "#212121",
|
|
376
|
+
"editorGroupHeader.tabsBackground": "#121212",
|
|
377
|
+
"editorGroupHeader.tabsBorder": "#212121",
|
|
378
|
+
"editorGutter.addedBackground": "#28a745",
|
|
379
|
+
"editorGutter.deletedBackground": "#ea4a5a",
|
|
380
|
+
"editorGutter.modifiedBackground": "#3c96ff",
|
|
381
|
+
"editorIndentGuide.activeBackground1": "#424242",
|
|
382
|
+
"editorIndentGuide.background1": "#212121",
|
|
383
|
+
"editorLineNumber.activeForeground": "#f1f1f1",
|
|
384
|
+
"editorLineNumber.foreground": "#424242",
|
|
385
|
+
"editorOverviewRuler.border": "#212121",
|
|
386
|
+
"editorWarning.foreground": "#ffea7f",
|
|
387
|
+
"editorWhitespace.foreground": "#424242",
|
|
388
|
+
"editorWidget.background": "#121212",
|
|
389
|
+
"errorForeground": "#f97583",
|
|
390
|
+
"focusBorder": "#3d3d3d",
|
|
391
|
+
"foreground": "#d1d5da",
|
|
392
|
+
"gitDecoration.addedResourceForeground": "#34d058",
|
|
393
|
+
"gitDecoration.conflictingResourceForeground": "#ffab70",
|
|
394
|
+
"gitDecoration.deletedResourceForeground": "#ea4a5a",
|
|
395
|
+
"gitDecoration.ignoredResourceForeground": "#6a737d",
|
|
396
|
+
"gitDecoration.modifiedResourceForeground": "#79b8ff",
|
|
397
|
+
"gitDecoration.submoduleResourceForeground": "#6a737d",
|
|
398
|
+
"gitDecoration.untrackedResourceForeground": "#34d058",
|
|
399
|
+
"input.background": "#222222",
|
|
400
|
+
"input.border": "#212121",
|
|
401
|
+
"input.foreground": "#f1f1f1",
|
|
402
|
+
"input.placeholderForeground": "#c4c4c4",
|
|
403
|
+
"list.activeSelectionBackground": "#2a2a2a",
|
|
404
|
+
"list.activeSelectionForeground": "#f1f1f1",
|
|
405
|
+
"list.focusBackground": "#044289",
|
|
406
|
+
"list.hoverBackground": "#1d1d1d",
|
|
407
|
+
"list.hoverForeground": "#f1f1f1",
|
|
408
|
+
"list.inactiveFocusBackground": "#1d2d3e",
|
|
409
|
+
"list.inactiveSelectionBackground": "#1d1d1d",
|
|
410
|
+
"list.inactiveSelectionForeground": "#f1f1f1",
|
|
411
|
+
"notificationCenterHeader.background": "#121212",
|
|
412
|
+
"notificationCenterHeader.foreground": "#c4c4c4",
|
|
413
|
+
"notifications.background": "#212121",
|
|
414
|
+
"notifications.border": "#212121",
|
|
415
|
+
"notifications.foreground": "#f1f1f1",
|
|
416
|
+
"notificationsErrorIcon.foreground": "#ea4a5a",
|
|
417
|
+
"notificationsInfoIcon.foreground": "#79b8ff",
|
|
418
|
+
"notificationsWarningIcon.foreground": "#ffab70",
|
|
419
|
+
"panel.background": "#121212",
|
|
420
|
+
"panel.border": "#212121",
|
|
421
|
+
"panelInput.border": "#212121",
|
|
422
|
+
"panelTitle.activeBorder": "#f9826c",
|
|
423
|
+
"panelTitle.activeForeground": "#f1f1f1",
|
|
424
|
+
"panelTitle.inactiveForeground": "#c4c4c4",
|
|
425
|
+
"peekViewEditor.background": "#12121288",
|
|
426
|
+
"peekViewEditor.matchHighlightBackground": "#ffd33d33",
|
|
427
|
+
"peekViewResult.background": "#121212",
|
|
428
|
+
"peekViewResult.matchHighlightBackground": "#ffd33d33",
|
|
429
|
+
"pickerGroup.border": "#424242",
|
|
430
|
+
"pickerGroup.foreground": "#f1f1f1",
|
|
431
|
+
"progressBar.background": "#3c96ff",
|
|
432
|
+
"quickInput.background": "#121212",
|
|
433
|
+
"quickInput.foreground": "#f1f1f1",
|
|
434
|
+
"scrollbar.shadow": "#0008",
|
|
435
|
+
"scrollbarSlider.activeBackground": "#585c6088",
|
|
436
|
+
"scrollbarSlider.background": "#5f676f33",
|
|
437
|
+
"scrollbarSlider.hoverBackground": "#6a737d44",
|
|
438
|
+
"settings.headerForeground": "#f1f1f1",
|
|
439
|
+
"settings.modifiedItemIndicator": "#3c96ff",
|
|
440
|
+
"sideBar.background": "#121212",
|
|
441
|
+
"sideBar.border": "#212121",
|
|
442
|
+
"sideBar.foreground": "#d1d5da",
|
|
443
|
+
"sideBarSectionHeader.background": "#121212",
|
|
444
|
+
"sideBarSectionHeader.border": "#212121",
|
|
445
|
+
"sideBarSectionHeader.foreground": "#f1f1f1",
|
|
446
|
+
"sideBarTitle.foreground": "#f1f1f1",
|
|
447
|
+
"statusBar.background": "#121212",
|
|
448
|
+
"statusBar.border": "#212121",
|
|
449
|
+
"statusBar.debuggingBackground": "#931c06",
|
|
450
|
+
"statusBar.debuggingForeground": "#f1f1f1",
|
|
451
|
+
"statusBar.foreground": "#d1d5da",
|
|
452
|
+
"statusBar.noFolderBackground": "#121212",
|
|
453
|
+
"statusBarItem.prominentBackground": "#1d1d1d",
|
|
454
|
+
"statusBarItem.remoteBackground": "#121212",
|
|
455
|
+
"statusBarItem.remoteForeground": "#d1d5da",
|
|
244
456
|
"tab.activeBackground": "#121212",
|
|
245
|
-
"tab.
|
|
246
|
-
"tab.
|
|
247
|
-
"tab.
|
|
248
|
-
"tab.border": "#
|
|
249
|
-
"tab.
|
|
250
|
-
"tab.
|
|
251
|
-
"tab.
|
|
252
|
-
"tab.
|
|
253
|
-
"
|
|
254
|
-
"
|
|
255
|
-
"
|
|
256
|
-
"
|
|
257
|
-
"
|
|
258
|
-
"
|
|
259
|
-
"
|
|
260
|
-
"
|
|
261
|
-
"
|
|
262
|
-
"
|
|
263
|
-
"
|
|
264
|
-
"
|
|
265
|
-
"
|
|
266
|
-
"
|
|
267
|
-
"
|
|
268
|
-
"
|
|
269
|
-
"
|
|
270
|
-
"
|
|
271
|
-
"
|
|
272
|
-
"
|
|
273
|
-
"
|
|
274
|
-
"
|
|
275
|
-
"
|
|
276
|
-
"
|
|
277
|
-
"
|
|
278
|
-
"
|
|
279
|
-
"
|
|
280
|
-
"
|
|
281
|
-
"
|
|
282
|
-
"
|
|
283
|
-
"
|
|
284
|
-
"
|
|
285
|
-
"
|
|
286
|
-
"
|
|
287
|
-
"
|
|
288
|
-
"
|
|
289
|
-
"
|
|
290
|
-
"peekViewResult.matchHighlightBackground": "#3f4361",
|
|
291
|
-
"peekViewResult.selectionBackground": "#30303a",
|
|
292
|
-
"peekViewTitle.background": "#1b1b20",
|
|
293
|
-
"peekViewTitleLabel.foreground": "#f7f7f8",
|
|
294
|
-
"peekViewTitleDescription.foreground": "#a2a2a9",
|
|
295
|
-
"menu.background": "#141414",
|
|
296
|
-
"menu.foreground": "#f7f7f8",
|
|
297
|
-
"menu.border": "#2f2f32",
|
|
298
|
-
"menu.selectionBackground": "#30303a",
|
|
299
|
-
"menu.selectionForeground": "#f7f7f8",
|
|
300
|
-
"menu.separatorBackground": "#2f2f32",
|
|
301
|
-
"notificationCenterHeader.background": "#1b1b20",
|
|
302
|
-
"notificationCenterHeader.foreground": "#f7f7f8",
|
|
303
|
-
"notifications.background": "#19191d",
|
|
304
|
-
"notifications.foreground": "#f7f7f8",
|
|
305
|
-
"notifications.border": "#2f2f32",
|
|
306
|
-
"notificationLink.foreground": "#a8b1ff",
|
|
307
|
-
"debugToolBar.background": "#19191d",
|
|
308
|
-
"debugToolBar.border": "#2f2f32",
|
|
309
|
-
"terminal.background": "#0f0f0f",
|
|
310
|
-
"terminal.foreground": "#e8e8e8",
|
|
311
|
-
"terminal.ansiBlack": "#4b5263",
|
|
312
|
-
"terminal.ansiRed": "#ff6b81",
|
|
313
|
-
"terminal.ansiGreen": "#5af78e",
|
|
314
|
-
"terminal.ansiYellow": "#ffd866",
|
|
315
|
-
"terminal.ansiBlue": "#57c7ff",
|
|
316
|
-
"terminal.ansiMagenta": "#ff7edb",
|
|
317
|
-
"terminal.ansiCyan": "#38bdf8",
|
|
318
|
-
"terminal.ansiWhite": "#f7f7f8",
|
|
319
|
-
"terminal.ansiBrightBlack": "#6c7486",
|
|
320
|
-
"terminal.ansiBrightRed": "#ff8fa3",
|
|
321
|
-
"terminal.ansiBrightGreen": "#7cffaa",
|
|
322
|
-
"terminal.ansiBrightYellow": "#ffe08a",
|
|
323
|
-
"terminal.ansiBrightBlue": "#82d7ff",
|
|
324
|
-
"terminal.ansiBrightMagenta": "#ff9ae6",
|
|
325
|
-
"terminal.ansiBrightCyan": "#67e8f9",
|
|
326
|
-
"terminal.ansiBrightWhite": "#ffffff",
|
|
327
|
-
"terminal.selectionBackground": "#57c7ff33",
|
|
328
|
-
"terminalCursor.foreground": "#57c7ff",
|
|
329
|
-
"terminalCursor.background": "#17171a",
|
|
330
|
-
"terminal.border": "#2a2a31",
|
|
331
|
-
"breadcrumb.foreground": "#a2a2a9",
|
|
332
|
-
"breadcrumb.focusForeground": "#f7f7f8",
|
|
333
|
-
"breadcrumb.activeSelectionForeground": "#f7f7f8",
|
|
334
|
-
"breadcrumbPicker.background": "#19191d",
|
|
335
|
-
"gitDecoration.modifiedResourceForeground": "#f0b36f",
|
|
336
|
-
"gitDecoration.deletedResourceForeground": "#ff8080",
|
|
337
|
-
"gitDecoration.untrackedResourceForeground": "#86efac",
|
|
338
|
-
"gitDecoration.ignoredResourceForeground": "#7b7b86",
|
|
339
|
-
"gitDecoration.conflictingResourceForeground": "#ff9d9d",
|
|
340
|
-
"gitDecoration.submoduleResourceForeground": "#9dd7ff",
|
|
341
|
-
"editorWidget.background": "#141414",
|
|
342
|
-
"editorWidget.border": "#2f2f32",
|
|
343
|
-
"editorSuggestWidget.background": "#19191d",
|
|
344
|
-
"editorSuggestWidget.border": "#2f2f32",
|
|
345
|
-
"editorSuggestWidget.foreground": "#f7f7f8",
|
|
346
|
-
"editorSuggestWidget.selectedBackground": "#30303a",
|
|
347
|
-
"editorHoverWidget.background": "#19191d",
|
|
348
|
-
"editorHoverWidget.border": "#2f2f32",
|
|
349
|
-
"debugExceptionWidget.background": "#19191d",
|
|
350
|
-
"debugExceptionWidget.border": "#ff8080",
|
|
351
|
-
"notebook.editorBackground": "#1a1a1e",
|
|
352
|
-
"notebook.cellBorderColor": "#2a2a31",
|
|
353
|
-
"notebook.focusedCellBorder": "#a8b1ff",
|
|
354
|
-
"notebookStatusSuccessIcon.foreground": "#86efac",
|
|
355
|
-
"notebookStatusErrorIcon.foreground": "#ff8080",
|
|
356
|
-
"notebookStatusRunningIcon.foreground": "#9dd7ff"
|
|
457
|
+
"tab.activeBorder": "#121212",
|
|
458
|
+
"tab.activeBorderTop": "#3c96ff",
|
|
459
|
+
"tab.activeForeground": "#f1f1f1",
|
|
460
|
+
"tab.border": "#212121",
|
|
461
|
+
"tab.hoverBackground": "#212121",
|
|
462
|
+
"tab.inactiveBackground": "#121212",
|
|
463
|
+
"tab.inactiveForeground": "#c4c4c4",
|
|
464
|
+
"tab.unfocusedActiveBorder": "#121212",
|
|
465
|
+
"tab.unfocusedActiveBorderTop": "#212121",
|
|
466
|
+
"tab.unfocusedHoverBackground": "#212121",
|
|
467
|
+
"terminal.ansiBlack": "#586069",
|
|
468
|
+
"terminal.ansiBlue": "#3c96ff",
|
|
469
|
+
"terminal.ansiBrightBlack": "#c4c4c4",
|
|
470
|
+
"terminal.ansiBrightBlue": "#79b8ff",
|
|
471
|
+
"terminal.ansiBrightCyan": "#56d4dd",
|
|
472
|
+
"terminal.ansiBrightGreen": "#85e89d",
|
|
473
|
+
"terminal.ansiBrightMagenta": "#b392f0",
|
|
474
|
+
"terminal.ansiBrightRed": "#f97583",
|
|
475
|
+
"terminal.ansiBrightWhite": "#fafbfc",
|
|
476
|
+
"terminal.ansiBrightYellow": "#ffea7f",
|
|
477
|
+
"terminal.ansiCyan": "#39c5cf",
|
|
478
|
+
"terminal.ansiGreen": "#34d058",
|
|
479
|
+
"terminal.ansiMagenta": "#b392f0",
|
|
480
|
+
"terminal.ansiRed": "#ea4a5a",
|
|
481
|
+
"terminal.ansiWhite": "#d1d5da",
|
|
482
|
+
"terminal.ansiYellow": "#ffea7f",
|
|
483
|
+
"terminal.foreground": "#d1d5da",
|
|
484
|
+
"terminal.tab.activeBorder": "#f9826c",
|
|
485
|
+
"terminalCursor.background": "#586069",
|
|
486
|
+
"terminalCursor.foreground": "#79b8ff",
|
|
487
|
+
"textBlockQuote.background": "#121212",
|
|
488
|
+
"textBlockQuote.border": "#424242",
|
|
489
|
+
"textCodeBlock.background": "#212121",
|
|
490
|
+
"textLink.activeForeground": "#c8e1ff",
|
|
491
|
+
"textLink.foreground": "#79b8ff",
|
|
492
|
+
"textPreformat.foreground": "#d1d5da",
|
|
493
|
+
"textSeparator.foreground": "#586069",
|
|
494
|
+
"titleBar.activeBackground": "#121212",
|
|
495
|
+
"titleBar.activeForeground": "#f1f1f1",
|
|
496
|
+
"titleBar.border": "#212121",
|
|
497
|
+
"titleBar.inactiveBackground": "#121212",
|
|
498
|
+
"titleBar.inactiveForeground": "#c4c4c4",
|
|
499
|
+
"tree.indentGuidesStroke": "#424242",
|
|
500
|
+
"welcomePage.buttonBackground": "#212121",
|
|
501
|
+
"welcomePage.buttonHoverBackground": "#424242"
|
|
357
502
|
}
|
|
358
503
|
}
|