inl-app-manager 1.5.15
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/README.md +195 -0
- package/createMonacoTheme.js +1250 -0
- package/dist/clientUtils/index.d.ts +355 -0
- package/dist/clientUtils/index.js +338 -0
- package/dist/elements/index.d.ts +153 -0
- package/dist/elements/index.js +13194 -0
- package/dist/iconfont.js +147 -0
- package/dist/index.d.ts +567 -0
- package/dist/index.js +19381 -0
- package/dist/style.css +3 -0
- package/entry.js +14 -0
- package/package.json +92 -0
- package/rollup.config.ts +96 -0
- package/v2 +3 -0
|
@@ -0,0 +1,1250 @@
|
|
|
1
|
+
import { convertTheme } from "monaco-vscode-textmate-theme-converter"; // UMD module
|
|
2
|
+
import fs from "fs";
|
|
3
|
+
// import { convertTheme, convertThemeFromDir } from 'monaco-vscode-textmate-theme-converter/lib/cjs'; // cjs module
|
|
4
|
+
|
|
5
|
+
/*
|
|
6
|
+
* In vscode use command: `Developer: Generate Color Theme From Current Settings`
|
|
7
|
+
* Copy the generated JSON and use it as input for the function below.
|
|
8
|
+
*/
|
|
9
|
+
const theme = {
|
|
10
|
+
$schema: "vscode://schemas/color-theme",
|
|
11
|
+
type: "dark",
|
|
12
|
+
colors: {
|
|
13
|
+
"activityBar.activeBorder": "#80cbc4",
|
|
14
|
+
"activityBar.background": "#1b1e2b",
|
|
15
|
+
"activityBar.border": "#00000060",
|
|
16
|
+
"activityBar.foreground": "#a6accd",
|
|
17
|
+
"activityBarBadge.background": "#80cbc4",
|
|
18
|
+
"activityBarBadge.foreground": "#000000",
|
|
19
|
+
"badge.background": "#00000030",
|
|
20
|
+
"badge.foreground": "#676e95",
|
|
21
|
+
"breadcrumb.activeSelectionForeground": "#80cbc4",
|
|
22
|
+
"breadcrumb.background": "#292d3e",
|
|
23
|
+
"breadcrumb.focusForeground": "#a6accd",
|
|
24
|
+
"breadcrumb.foreground": "#757ca1",
|
|
25
|
+
"breadcrumbPicker.background": "#1b1e2b",
|
|
26
|
+
"button.background": "#717cb450",
|
|
27
|
+
"button.foreground": "#ffffff",
|
|
28
|
+
"debugConsole.errorForeground": "#f07178",
|
|
29
|
+
"debugConsole.infoForeground": "#89ddff",
|
|
30
|
+
"debugConsole.warningForeground": "#ffcb6b",
|
|
31
|
+
"debugToolBar.background": "#292d3e",
|
|
32
|
+
"diffEditor.insertedTextBackground": "#89ddff20",
|
|
33
|
+
"diffEditor.removedTextBackground": "#ff9cac20",
|
|
34
|
+
"dropdown.background": "#292d3e",
|
|
35
|
+
"dropdown.border": "#ffffff10",
|
|
36
|
+
"editor.background": "#292d3e",
|
|
37
|
+
"editor.findMatchBackground": "#000000",
|
|
38
|
+
"editor.findMatchBorder": "#80cbc4",
|
|
39
|
+
"editor.findMatchHighlightBackground": "#00000050",
|
|
40
|
+
"editor.findMatchHighlightBorder": "#ffffff50",
|
|
41
|
+
"editor.findRangeHighlightBackground": "#ffcb6b30",
|
|
42
|
+
"editor.foreground": "#a6accd",
|
|
43
|
+
"editor.lineHighlightBackground": "#00000050",
|
|
44
|
+
"editor.lineHighlightBorder": "#00000000",
|
|
45
|
+
"editor.rangeHighlightBackground": "#ffffff0d",
|
|
46
|
+
"editor.selectionBackground": "#717cb450",
|
|
47
|
+
"editor.selectionHighlightBackground": "#ffcc0020",
|
|
48
|
+
"editor.wordHighlightBackground": "#ff9cac30",
|
|
49
|
+
"editor.wordHighlightStrongBackground": "#c3e88d30",
|
|
50
|
+
"editorBracketMatch.background": "#292d3e",
|
|
51
|
+
"editorBracketMatch.border": "#ffcc0050",
|
|
52
|
+
"editorCursor.foreground": "#ffcc00",
|
|
53
|
+
"editorError.foreground": "#f0717870",
|
|
54
|
+
"editorGroup.border": "#00000030",
|
|
55
|
+
"editorGroup.dropBackground": "#f0717880",
|
|
56
|
+
"editorGroup.focusedEmptyBorder": "#f07178",
|
|
57
|
+
"editorGroupHeader.tabsBackground": "#292d3e",
|
|
58
|
+
"editorGutter.addedBackground": "#c3e88d60",
|
|
59
|
+
"editorGutter.deletedBackground": "#f0717860",
|
|
60
|
+
"editorGutter.modifiedBackground": "#82aaff60",
|
|
61
|
+
"editorHoverWidget.background": "#292d3e",
|
|
62
|
+
"editorHoverWidget.border": "#ffffff10",
|
|
63
|
+
"editorIndentGuide.activeBackground": "#4e5579",
|
|
64
|
+
"editorIndentGuide.background": "#4e557970",
|
|
65
|
+
"editorInfo.foreground": "#82aaff70",
|
|
66
|
+
"editorLineNumber.activeForeground": "#757ca1",
|
|
67
|
+
"editorLineNumber.foreground": "#3a3f58",
|
|
68
|
+
"editorLink.activeForeground": "#a6accd",
|
|
69
|
+
"editorMarkerNavigation.background": "#a6accd05",
|
|
70
|
+
"editorOverviewRuler.border": "#292d3e",
|
|
71
|
+
"editorOverviewRuler.errorForeground": "#f0717840",
|
|
72
|
+
"editorOverviewRuler.findMatchForeground": "#80cbc4",
|
|
73
|
+
"editorOverviewRuler.infoForeground": "#82aaff40",
|
|
74
|
+
"editorOverviewRuler.warningForeground": "#ffcb6b40",
|
|
75
|
+
"editorRuler.foreground": "#4e5579",
|
|
76
|
+
"editorSuggestWidget.background": "#292d3e",
|
|
77
|
+
"editorSuggestWidget.border": "#ffffff10",
|
|
78
|
+
"editorSuggestWidget.foreground": "#a6accd",
|
|
79
|
+
"editorSuggestWidget.highlightForeground": "#80cbc4",
|
|
80
|
+
"editorSuggestWidget.selectedBackground": "#00000050",
|
|
81
|
+
"editorWarning.foreground": "#ffcb6b70",
|
|
82
|
+
"editorWhitespace.foreground": "#a6accd40",
|
|
83
|
+
"editorWidget.background": "#1b1e2b",
|
|
84
|
+
"editorWidget.border": "#80cbc4",
|
|
85
|
+
"editorWidget.resizeBorder": "#80cbc4",
|
|
86
|
+
"extensionBadge.remoteForeground": "#a6accd",
|
|
87
|
+
"extensionButton.prominentBackground": "#c3e88d90",
|
|
88
|
+
"extensionButton.prominentForeground": "#000000",
|
|
89
|
+
"extensionButton.prominentHoverBackground": "#c3e88d",
|
|
90
|
+
focusBorder: "#ffffff00",
|
|
91
|
+
foreground: "#a6accd",
|
|
92
|
+
"gitDecoration.conflictingResourceForeground": "#ffcb6b90",
|
|
93
|
+
"gitDecoration.deletedResourceForeground": "#f0717890",
|
|
94
|
+
"gitDecoration.ignoredResourceForeground": "#757ca190",
|
|
95
|
+
"gitDecoration.modifiedResourceForeground": "#82aaff90",
|
|
96
|
+
"gitDecoration.untrackedResourceForeground": "#c3e88d90",
|
|
97
|
+
"input.background": "#333747",
|
|
98
|
+
"input.border": "#ffffff10",
|
|
99
|
+
"input.foreground": "#a6accd",
|
|
100
|
+
"input.placeholderForeground": "#a6accd60",
|
|
101
|
+
"inputOption.activeBackground": "#a6accd30",
|
|
102
|
+
"inputOption.activeBorder": "#a6accd30",
|
|
103
|
+
"inputValidation.errorBorder": "#f07178",
|
|
104
|
+
"inputValidation.infoBorder": "#82aaff",
|
|
105
|
+
"inputValidation.warningBorder": "#ffcb6b",
|
|
106
|
+
"list.activeSelectionBackground": "#1b1e2b",
|
|
107
|
+
"list.activeSelectionForeground": "#80cbc4",
|
|
108
|
+
"list.dropBackground": "#f0717880",
|
|
109
|
+
"list.focusBackground": "#a6accd20",
|
|
110
|
+
"list.focusForeground": "#a6accd",
|
|
111
|
+
"list.highlightForeground": "#80cbc4",
|
|
112
|
+
"list.hoverBackground": "#1b1e2b",
|
|
113
|
+
"list.hoverForeground": "#ffffff",
|
|
114
|
+
"list.inactiveSelectionBackground": "#00000030",
|
|
115
|
+
"list.inactiveSelectionForeground": "#80cbc4",
|
|
116
|
+
"listFilterWidget.background": "#00000030",
|
|
117
|
+
"listFilterWidget.noMatchesOutline": "#00000030",
|
|
118
|
+
"listFilterWidget.outline": "#00000030",
|
|
119
|
+
"menu.background": "#292d3e",
|
|
120
|
+
"menu.foreground": "#a6accd",
|
|
121
|
+
"menu.selectionBackground": "#00000050",
|
|
122
|
+
"menu.selectionBorder": "#00000030",
|
|
123
|
+
"menu.selectionForeground": "#80cbc4",
|
|
124
|
+
"menu.separatorBackground": "#a6accd",
|
|
125
|
+
"menubar.selectionBackground": "#00000030",
|
|
126
|
+
"menubar.selectionBorder": "#00000030",
|
|
127
|
+
"menubar.selectionForeground": "#80cbc4",
|
|
128
|
+
"notebook.focusedCellBorder": "#80cbc4",
|
|
129
|
+
"notebook.inactiveFocusedCellBorder": "#80cbc450",
|
|
130
|
+
"notificationLink.foreground": "#80cbc4",
|
|
131
|
+
"notifications.background": "#292d3e",
|
|
132
|
+
"notifications.foreground": "#a6accd",
|
|
133
|
+
"panel.background": "#1b1e2b",
|
|
134
|
+
"panel.border": "#00000060",
|
|
135
|
+
"panelTitle.activeBorder": "#80cbc4",
|
|
136
|
+
"panelTitle.activeForeground": "#ffffff",
|
|
137
|
+
"panelTitle.inactiveForeground": "#a6accd",
|
|
138
|
+
"peekView.border": "#00000030",
|
|
139
|
+
"peekViewEditor.background": "#a6accd05",
|
|
140
|
+
"peekViewEditor.matchHighlightBackground": "#717cb450",
|
|
141
|
+
"peekViewEditorGutter.background": "#a6accd05",
|
|
142
|
+
"peekViewResult.background": "#a6accd05",
|
|
143
|
+
"peekViewResult.matchHighlightBackground": "#717cb450",
|
|
144
|
+
"peekViewResult.selectionBackground": "#757ca170",
|
|
145
|
+
"peekViewTitle.background": "#a6accd05",
|
|
146
|
+
"peekViewTitleDescription.foreground": "#a6accd60",
|
|
147
|
+
"pickerGroup.border": "#ffffff1a",
|
|
148
|
+
"pickerGroup.foreground": "#80cbc4",
|
|
149
|
+
"progressBar.background": "#80cbc4",
|
|
150
|
+
"quickInput.background": "#292d3e",
|
|
151
|
+
"quickInput.foreground": "#757ca1",
|
|
152
|
+
"quickInput.list.focusBackground": "#a6accd20",
|
|
153
|
+
"scrollbar.shadow": "#00000030",
|
|
154
|
+
"scrollbarSlider.activeBackground": "#80cbc4",
|
|
155
|
+
"scrollbarSlider.background": "#a6accd20",
|
|
156
|
+
"scrollbarSlider.hoverBackground": "#a6accd10",
|
|
157
|
+
"selection.background": "#00000080",
|
|
158
|
+
"settings.checkboxBackground": "#1b1e2b",
|
|
159
|
+
"settings.checkboxForeground": "#a6accd",
|
|
160
|
+
"settings.dropdownBackground": "#1b1e2b",
|
|
161
|
+
"settings.dropdownForeground": "#a6accd",
|
|
162
|
+
"settings.headerForeground": "#80cbc4",
|
|
163
|
+
"settings.modifiedItemIndicator": "#80cbc4",
|
|
164
|
+
"settings.numberInputBackground": "#1b1e2b",
|
|
165
|
+
"settings.numberInputForeground": "#a6accd",
|
|
166
|
+
"settings.textInputBackground": "#1b1e2b",
|
|
167
|
+
"settings.textInputForeground": "#a6accd",
|
|
168
|
+
"sideBar.background": "#1b1e2b",
|
|
169
|
+
"sideBar.border": "#00000060",
|
|
170
|
+
"sideBar.foreground": "#757ca1",
|
|
171
|
+
"sideBarSectionHeader.background": "#1b1e2b",
|
|
172
|
+
"sideBarSectionHeader.border": "#00000060",
|
|
173
|
+
"sideBarTitle.foreground": "#a6accd",
|
|
174
|
+
"statusBar.background": "#1b1e2b",
|
|
175
|
+
"statusBar.border": "#00000060",
|
|
176
|
+
"statusBar.debuggingBackground": "#c792ea",
|
|
177
|
+
"statusBar.debuggingForeground": "#ffffff",
|
|
178
|
+
"statusBar.foreground": "#676e95",
|
|
179
|
+
"statusBar.noFolderBackground": "#292d3e",
|
|
180
|
+
"statusBarItem.activeBackground": "#f0717880",
|
|
181
|
+
"statusBarItem.hoverBackground": "#676e9520",
|
|
182
|
+
"statusBarItem.remoteBackground": "#80cbc4",
|
|
183
|
+
"statusBarItem.remoteForeground": "#000000",
|
|
184
|
+
"tab.activeBackground": "#292d3e",
|
|
185
|
+
"tab.activeBorder": "#80cbc4",
|
|
186
|
+
"tab.activeForeground": "#ffffff",
|
|
187
|
+
"tab.activeModifiedBorder": "#757ca1",
|
|
188
|
+
"tab.border": "#292d3e",
|
|
189
|
+
"tab.inactiveBackground": "#292d3e",
|
|
190
|
+
"tab.inactiveForeground": "#757ca1",
|
|
191
|
+
"tab.inactiveModifiedBorder": "#904348",
|
|
192
|
+
"tab.unfocusedActiveBorder": "#676e95",
|
|
193
|
+
"tab.unfocusedActiveForeground": "#a6accd",
|
|
194
|
+
"tab.unfocusedActiveModifiedBorder": "#c05a60",
|
|
195
|
+
"tab.unfocusedInactiveModifiedBorder": "#904348",
|
|
196
|
+
"terminal.ansiBlack": "#000000",
|
|
197
|
+
"terminal.ansiBlue": "#82aaff",
|
|
198
|
+
"terminal.ansiBrightBlack": "#676e95",
|
|
199
|
+
"terminal.ansiBrightBlue": "#82aaff",
|
|
200
|
+
"terminal.ansiBrightCyan": "#89ddff",
|
|
201
|
+
"terminal.ansiBrightGreen": "#c3e88d",
|
|
202
|
+
"terminal.ansiBrightMagenta": "#c792ea",
|
|
203
|
+
"terminal.ansiBrightRed": "#f07178",
|
|
204
|
+
"terminal.ansiBrightWhite": "#ffffff",
|
|
205
|
+
"terminal.ansiBrightYellow": "#ffcb6b",
|
|
206
|
+
"terminal.ansiCyan": "#89ddff",
|
|
207
|
+
"terminal.ansiGreen": "#c3e88d",
|
|
208
|
+
"terminal.ansiMagenta": "#c792ea",
|
|
209
|
+
"terminal.ansiRed": "#f07178",
|
|
210
|
+
"terminal.ansiWhite": "#ffffff",
|
|
211
|
+
"terminal.ansiYellow": "#ffcb6b",
|
|
212
|
+
"terminalCursor.background": "#000000",
|
|
213
|
+
"terminalCursor.foreground": "#ffcb6b",
|
|
214
|
+
"textLink.activeForeground": "#a6accd",
|
|
215
|
+
"textLink.foreground": "#80cbc4",
|
|
216
|
+
"titleBar.activeBackground": "#1b1e2b",
|
|
217
|
+
"titleBar.activeForeground": "#a6accd",
|
|
218
|
+
"titleBar.border": "#00000060",
|
|
219
|
+
"titleBar.inactiveBackground": "#1b1e2b",
|
|
220
|
+
"titleBar.inactiveForeground": "#757ca1",
|
|
221
|
+
"tree.indentGuidesStroke": "#4e5579",
|
|
222
|
+
"widget.shadow": "#00000030",
|
|
223
|
+
//"activityBar.dropBorder": "#a6accd",
|
|
224
|
+
//"activityBar.inactiveForeground": "#a6accd66",
|
|
225
|
+
//"banner.background": "#1b1e2b",
|
|
226
|
+
//"banner.foreground": "#80cbc4",
|
|
227
|
+
//"banner.iconForeground": "#82aaff70",
|
|
228
|
+
//"button.hoverBackground": "#98a0c850",
|
|
229
|
+
//"button.secondaryBackground": "#3a3d41",
|
|
230
|
+
//"button.secondaryForeground": "#ffffff",
|
|
231
|
+
//"button.secondaryHoverBackground": "#45494e",
|
|
232
|
+
//"button.separator": "#ffffff66",
|
|
233
|
+
//"charts.blue": "#82aaff70",
|
|
234
|
+
//"charts.foreground": "#a6accd",
|
|
235
|
+
//"charts.green": "#89d185",
|
|
236
|
+
//"charts.lines": "#a6accd80",
|
|
237
|
+
//"charts.orange": "#d18616",
|
|
238
|
+
//"charts.purple": "#b180d7",
|
|
239
|
+
//"charts.red": "#f0717870",
|
|
240
|
+
//"charts.yellow": "#ffcb6b70",
|
|
241
|
+
//"checkbox.background": "#292d3e",
|
|
242
|
+
//"checkbox.border": "#ffffff10",
|
|
243
|
+
//"checkbox.foreground": "#f0f0f0",
|
|
244
|
+
//"checkbox.selectBackground": "#1b1e2b",
|
|
245
|
+
//"checkbox.selectBorder": "#c5c5c5",
|
|
246
|
+
//"commandCenter.activeBackground": "#ffffff14",
|
|
247
|
+
//"commandCenter.activeBorder": "#a6accd4d",
|
|
248
|
+
//"commandCenter.activeForeground": "#80cbc4",
|
|
249
|
+
//"commandCenter.background": "#ffffff0d",
|
|
250
|
+
//"commandCenter.border": "#a6accd33",
|
|
251
|
+
//"commandCenter.foreground": "#a6accd",
|
|
252
|
+
//"commandCenter.inactiveBorder": "#757ca140",
|
|
253
|
+
//"commandCenter.inactiveForeground": "#757ca1",
|
|
254
|
+
//"debugConsole.sourceForeground": "#a6accd",
|
|
255
|
+
//"debugConsoleInputIcon.foreground": "#a6accd",
|
|
256
|
+
//"debugExceptionWidget.background": "#420b0d",
|
|
257
|
+
//"debugExceptionWidget.border": "#a31515",
|
|
258
|
+
//"debugIcon.breakpointCurrentStackframeForeground": "#ffcc00",
|
|
259
|
+
//"debugIcon.breakpointDisabledForeground": "#848484",
|
|
260
|
+
//"debugIcon.breakpointForeground": "#e51400",
|
|
261
|
+
//"debugIcon.breakpointStackframeForeground": "#89d185",
|
|
262
|
+
//"debugIcon.breakpointUnverifiedForeground": "#848484",
|
|
263
|
+
//"debugIcon.continueForeground": "#75beff",
|
|
264
|
+
//"debugIcon.disconnectForeground": "#f48771",
|
|
265
|
+
//"debugIcon.pauseForeground": "#75beff",
|
|
266
|
+
//"debugIcon.restartForeground": "#89d185",
|
|
267
|
+
//"debugIcon.startForeground": "#89d185",
|
|
268
|
+
//"debugIcon.stepBackForeground": "#75beff",
|
|
269
|
+
//"debugIcon.stepIntoForeground": "#75beff",
|
|
270
|
+
//"debugIcon.stepOutForeground": "#75beff",
|
|
271
|
+
//"debugIcon.stepOverForeground": "#75beff",
|
|
272
|
+
//"debugIcon.stopForeground": "#f48771",
|
|
273
|
+
//"debugTokenExpression.boolean": "#4e94ce",
|
|
274
|
+
//"debugTokenExpression.error": "#f48771",
|
|
275
|
+
//"debugTokenExpression.name": "#c586c0",
|
|
276
|
+
//"debugTokenExpression.number": "#b5cea8",
|
|
277
|
+
//"debugTokenExpression.string": "#ce9178",
|
|
278
|
+
//"debugTokenExpression.value": "#cccccc99",
|
|
279
|
+
//"debugView.exceptionLabelBackground": "#6c2022",
|
|
280
|
+
//"debugView.exceptionLabelForeground": "#a6accd",
|
|
281
|
+
//"debugView.stateLabelBackground": "#88888844",
|
|
282
|
+
//"debugView.stateLabelForeground": "#a6accd",
|
|
283
|
+
//"debugView.valueChangedHighlight": "#569cd6",
|
|
284
|
+
//"descriptionForeground": "#a6accdb3",
|
|
285
|
+
//"diffEditor.diagonalFill": "#cccccc33",
|
|
286
|
+
//"diffEditor.insertedLineBackground": "#9bb95533",
|
|
287
|
+
//"diffEditor.removedLineBackground": "#ff000033",
|
|
288
|
+
//"disabledForeground": "#cccccc80",
|
|
289
|
+
//"dropdown.foreground": "#f0f0f0",
|
|
290
|
+
//"editor.focusedStackFrameHighlightBackground": "#7abd7a4d",
|
|
291
|
+
//"editor.foldBackground": "#717cb418",
|
|
292
|
+
//"editor.hoverHighlightBackground": "#264f7840",
|
|
293
|
+
//"editor.inactiveSelectionBackground": "#717cb428",
|
|
294
|
+
//"editor.inlineValuesBackground": "#ffc80033",
|
|
295
|
+
//"editor.inlineValuesForeground": "#ffffff80",
|
|
296
|
+
//"editor.linkedEditingBackground": "#ff00004d",
|
|
297
|
+
//"editor.snippetFinalTabstopHighlightBorder": "#525252",
|
|
298
|
+
//"editor.snippetTabstopHighlightBackground": "#7c7c7c4d",
|
|
299
|
+
//"editor.stackFrameHighlightBackground": "#ffff0033",
|
|
300
|
+
//"editor.symbolHighlightBackground": "#00000050",
|
|
301
|
+
//"editor.wordHighlightTextBackground": "#ff9cac30",
|
|
302
|
+
//"editorActiveLineNumber.foreground": "#c6c6c6",
|
|
303
|
+
//"editorBracketHighlight.foreground1": "#ffd700",
|
|
304
|
+
//"editorBracketHighlight.foreground2": "#da70d6",
|
|
305
|
+
//"editorBracketHighlight.foreground3": "#179fff",
|
|
306
|
+
//"editorBracketHighlight.foreground4": "#00000000",
|
|
307
|
+
//"editorBracketHighlight.foreground5": "#00000000",
|
|
308
|
+
//"editorBracketHighlight.foreground6": "#00000000",
|
|
309
|
+
//"editorBracketHighlight.unexpectedBracket.foreground": "#ff1212cc",
|
|
310
|
+
//"editorBracketPairGuide.activeBackground1": "#00000000",
|
|
311
|
+
//"editorBracketPairGuide.activeBackground2": "#00000000",
|
|
312
|
+
//"editorBracketPairGuide.activeBackground3": "#00000000",
|
|
313
|
+
//"editorBracketPairGuide.activeBackground4": "#00000000",
|
|
314
|
+
//"editorBracketPairGuide.activeBackground5": "#00000000",
|
|
315
|
+
//"editorBracketPairGuide.activeBackground6": "#00000000",
|
|
316
|
+
//"editorBracketPairGuide.background1": "#00000000",
|
|
317
|
+
//"editorBracketPairGuide.background2": "#00000000",
|
|
318
|
+
//"editorBracketPairGuide.background3": "#00000000",
|
|
319
|
+
//"editorBracketPairGuide.background4": "#00000000",
|
|
320
|
+
//"editorBracketPairGuide.background5": "#00000000",
|
|
321
|
+
//"editorBracketPairGuide.background6": "#00000000",
|
|
322
|
+
//"editorCodeLens.foreground": "#999999",
|
|
323
|
+
//"editorCommentsWidget.rangeActiveBackground": "#00000005",
|
|
324
|
+
//"editorCommentsWidget.rangeActiveBorder": "#00000013",
|
|
325
|
+
//"editorCommentsWidget.rangeBackground": "#00000005",
|
|
326
|
+
//"editorCommentsWidget.rangeBorder": "#00000013",
|
|
327
|
+
//"editorCommentsWidget.resolvedBorder": "#cccccc80",
|
|
328
|
+
//"editorCommentsWidget.unresolvedBorder": "#00000030",
|
|
329
|
+
//"editorGhostText.foreground": "#ffffff56",
|
|
330
|
+
//"editorGroup.dropIntoPromptBackground": "#1b1e2b",
|
|
331
|
+
//"editorGroup.dropIntoPromptForeground": "#a6accd",
|
|
332
|
+
//"editorGroupHeader.noTabsBackground": "#292d3e",
|
|
333
|
+
//"editorGutter.background": "#292d3e",
|
|
334
|
+
//"editorGutter.commentGlyphForeground": "#a6accd",
|
|
335
|
+
//"editorGutter.commentRangeForeground": "#212432",
|
|
336
|
+
//"editorGutter.commentUnresolvedGlyphForeground": "#a6accd",
|
|
337
|
+
//"editorGutter.foldingControlForeground": "#c5c5c5",
|
|
338
|
+
//"editorHint.foreground": "#eeeeeeb3",
|
|
339
|
+
//"editorHoverWidget.foreground": "#a6accd",
|
|
340
|
+
//"editorHoverWidget.highlightForeground": "#80cbc4",
|
|
341
|
+
//"editorHoverWidget.statusBarBackground": "#31364a",
|
|
342
|
+
//"editorInlayHint.background": "#00000026",
|
|
343
|
+
//"editorInlayHint.foreground": "#676e95",
|
|
344
|
+
//"editorInlayHint.parameterBackground": "#00000026",
|
|
345
|
+
//"editorInlayHint.parameterForeground": "#676e95",
|
|
346
|
+
//"editorInlayHint.typeBackground": "#00000026",
|
|
347
|
+
//"editorInlayHint.typeForeground": "#676e95",
|
|
348
|
+
//"editorLightBulb.foreground": "#ffcc00",
|
|
349
|
+
//"editorLightBulbAutoFix.foreground": "#75beff",
|
|
350
|
+
//"editorMarkerNavigationError.background": "#f0717870",
|
|
351
|
+
//"editorMarkerNavigationError.headerBackground": "#f071780b",
|
|
352
|
+
//"editorMarkerNavigationInfo.background": "#82aaff70",
|
|
353
|
+
//"editorMarkerNavigationInfo.headerBackground": "#82aaff0b",
|
|
354
|
+
//"editorMarkerNavigationWarning.background": "#ffcb6b70",
|
|
355
|
+
//"editorMarkerNavigationWarning.headerBackground": "#ffcb6b0b",
|
|
356
|
+
//"editorOverviewRuler.addedForeground": "#c3e88d3a",
|
|
357
|
+
//"editorOverviewRuler.bracketMatchForeground": "#a0a0a0",
|
|
358
|
+
//"editorOverviewRuler.commonContentForeground": "#60606066",
|
|
359
|
+
//"editorOverviewRuler.currentContentForeground": "#40c8ae80",
|
|
360
|
+
//"editorOverviewRuler.deletedForeground": "#f071783a",
|
|
361
|
+
//"editorOverviewRuler.incomingContentForeground": "#40a6ff80",
|
|
362
|
+
//"editorOverviewRuler.modifiedForeground": "#82aaff3a",
|
|
363
|
+
//"editorOverviewRuler.rangeHighlightForeground": "#007acc99",
|
|
364
|
+
//"editorOverviewRuler.selectionHighlightForeground": "#a0a0a0cc",
|
|
365
|
+
//"editorOverviewRuler.wordHighlightForeground": "#a0a0a0cc",
|
|
366
|
+
//"editorOverviewRuler.wordHighlightStrongForeground": "#c0a0c0cc",
|
|
367
|
+
//"editorOverviewRuler.wordHighlightTextForeground": "#a0a0a0cc",
|
|
368
|
+
//"editorPane.background": "#292d3e",
|
|
369
|
+
//"editorStickyScroll.background": "#292d3e",
|
|
370
|
+
//"editorStickyScrollHover.background": "#2a2d2e",
|
|
371
|
+
//"editorSuggestWidget.focusHighlightForeground": "#80cbc4",
|
|
372
|
+
//"editorSuggestWidget.selectedForeground": "#80cbc4",
|
|
373
|
+
//"editorSuggestWidgetStatus.foreground": "#a6accd80",
|
|
374
|
+
//"editorUnicodeHighlight.background": "#bd9b0326",
|
|
375
|
+
//"editorUnicodeHighlight.border": "#bd9b03",
|
|
376
|
+
//"editorUnnecessaryCode.opacity": "#000000aa",
|
|
377
|
+
//"editorWidget.foreground": "#a6accd",
|
|
378
|
+
//"errorForeground": "#f48771",
|
|
379
|
+
//"extensionBadge.remoteBackground": "#80cbc4",
|
|
380
|
+
//"extensionButton.background": "#717cb450",
|
|
381
|
+
//"extensionButton.foreground": "#ffffff",
|
|
382
|
+
//"extensionButton.hoverBackground": "#98a0c850",
|
|
383
|
+
//"extensionButton.separator": "#ffffff66",
|
|
384
|
+
//"extensionIcon.preReleaseForeground": "#1d9271",
|
|
385
|
+
//"extensionIcon.sponsorForeground": "#d758b3",
|
|
386
|
+
//"extensionIcon.starForeground": "#ff8e00",
|
|
387
|
+
//"extensionIcon.verifiedForeground": "#80cbc4",
|
|
388
|
+
//"gitDecoration.addedResourceForeground": "#81b88b",
|
|
389
|
+
//"gitDecoration.renamedResourceForeground": "#73c991",
|
|
390
|
+
//"gitDecoration.stageDeletedResourceForeground": "#c74e39",
|
|
391
|
+
//"gitDecoration.stageModifiedResourceForeground": "#e2c08d",
|
|
392
|
+
//"gitDecoration.submoduleResourceForeground": "#8db9e2",
|
|
393
|
+
//"icon.foreground": "#c5c5c5",
|
|
394
|
+
//"inputOption.activeForeground": "#ffffff",
|
|
395
|
+
//"inputOption.hoverBackground": "#5a5d5e80",
|
|
396
|
+
//"inputValidation.errorBackground": "#5a1d1d",
|
|
397
|
+
//"inputValidation.infoBackground": "#063b49",
|
|
398
|
+
//"inputValidation.warningBackground": "#352a05",
|
|
399
|
+
//"interactive.activeCodeBorder": "#00000030",
|
|
400
|
+
//"interactive.inactiveCodeBorder": "#00000030",
|
|
401
|
+
//"interactive.requestBackground": "#ffffff08",
|
|
402
|
+
//"interactive.requestBorder": "#ffffff1a",
|
|
403
|
+
//"interactiveEditor.border": "#80cbc4",
|
|
404
|
+
//"interactiveEditor.regionHighlight": "#264f7840",
|
|
405
|
+
//"interactiveEditor.shadow": "#00000030",
|
|
406
|
+
//"interactiveEditorDiff.inserted": "#89ddff10",
|
|
407
|
+
//"interactiveEditorDiff.removed": "#ff9cac10",
|
|
408
|
+
//"interactiveEditorInput.background": "#333747",
|
|
409
|
+
//"interactiveEditorInput.border": "#80cbc4",
|
|
410
|
+
//"interactiveEditorInput.focusBorder": "#ffffff00",
|
|
411
|
+
//"interactiveEditorInput.placeholderForeground": "#a6accd60",
|
|
412
|
+
//"keybindingLabel.background": "#8080802b",
|
|
413
|
+
//"keybindingLabel.border": "#33333399",
|
|
414
|
+
//"keybindingLabel.bottomBorder": "#44444499",
|
|
415
|
+
//"keybindingLabel.foreground": "#cccccc",
|
|
416
|
+
//"keybindingTable.headerBackground": "#a6accd0a",
|
|
417
|
+
//"keybindingTable.rowsBackground": "#a6accd0a",
|
|
418
|
+
//"list.deemphasizedForeground": "#8c8c8c",
|
|
419
|
+
//"list.errorForeground": "#f88070",
|
|
420
|
+
//"list.filterMatchBackground": "#00000050",
|
|
421
|
+
//"list.filterMatchBorder": "#ffffff50",
|
|
422
|
+
//"list.focusHighlightForeground": "#80cbc4",
|
|
423
|
+
//"list.focusOutline": "#ffffff00",
|
|
424
|
+
//"list.invalidItemForeground": "#b89500",
|
|
425
|
+
//"list.warningForeground": "#cca700",
|
|
426
|
+
//"listFilterWidget.shadow": "#00000030",
|
|
427
|
+
//"markdown.extension.editor.codeSpan.background": "#00000000",
|
|
428
|
+
//"markdown.extension.editor.codeSpan.border": "#717cb450",
|
|
429
|
+
//"markdown.extension.editor.formattingMark.foreground": "#a6accd40",
|
|
430
|
+
//"markdown.extension.editor.trailingSpace.background": "#cccccc33",
|
|
431
|
+
//"merge.commonContentBackground": "#60606029",
|
|
432
|
+
//"merge.commonHeaderBackground": "#60606066",
|
|
433
|
+
//"merge.currentContentBackground": "#40c8ae33",
|
|
434
|
+
//"merge.currentHeaderBackground": "#40c8ae80",
|
|
435
|
+
//"merge.incomingContentBackground": "#40a6ff33",
|
|
436
|
+
//"merge.incomingHeaderBackground": "#40a6ff80",
|
|
437
|
+
//"mergeEditor.change.background": "#9bb95533",
|
|
438
|
+
//"mergeEditor.change.word.background": "#9ccc2c33",
|
|
439
|
+
//"mergeEditor.changeBase.background": "#4b1818",
|
|
440
|
+
//"mergeEditor.changeBase.word.background": "#6f1313",
|
|
441
|
+
//"mergeEditor.conflict.handled.minimapOverViewRuler": "#adaca8ee",
|
|
442
|
+
//"mergeEditor.conflict.handledFocused.border": "#c1c1c1cc",
|
|
443
|
+
//"mergeEditor.conflict.handledUnfocused.border": "#86868649",
|
|
444
|
+
//"mergeEditor.conflict.input1.background": "#40c8ae33",
|
|
445
|
+
//"mergeEditor.conflict.input2.background": "#40a6ff33",
|
|
446
|
+
//"mergeEditor.conflict.unhandled.minimapOverViewRuler": "#fcba03",
|
|
447
|
+
//"mergeEditor.conflict.unhandledFocused.border": "#ffa600",
|
|
448
|
+
//"mergeEditor.conflict.unhandledUnfocused.border": "#ffa6007a",
|
|
449
|
+
//"mergeEditor.conflictingLines.background": "#ffea0047",
|
|
450
|
+
//"minimap.errorHighlight": "#ff1212b3",
|
|
451
|
+
//"minimap.findMatchHighlight": "#d18616",
|
|
452
|
+
//"minimap.foregroundOpacity": "#000000",
|
|
453
|
+
//"minimap.selectionHighlight": "#264f78",
|
|
454
|
+
//"minimap.selectionOccurrenceHighlight": "#676767",
|
|
455
|
+
//"minimap.warningHighlight": "#ffcb6b70",
|
|
456
|
+
//"minimapGutter.addedBackground": "#c3e88d60",
|
|
457
|
+
//"minimapGutter.deletedBackground": "#f0717860",
|
|
458
|
+
//"minimapGutter.modifiedBackground": "#82aaff60",
|
|
459
|
+
//"minimapSlider.activeBackground": "#80cbc480",
|
|
460
|
+
//"minimapSlider.background": "#a6accd10",
|
|
461
|
+
//"minimapSlider.hoverBackground": "#a6accd08",
|
|
462
|
+
//"notebook.cellBorderColor": "#00000030",
|
|
463
|
+
//"notebook.cellEditorBackground": "#1b1e2b",
|
|
464
|
+
//"notebook.cellInsertionIndicator": "#ffffff00",
|
|
465
|
+
//"notebook.cellStatusBarItemHoverBackground": "#ffffff26",
|
|
466
|
+
//"notebook.cellToolbarSeparator": "#80808059",
|
|
467
|
+
//"notebook.editorBackground": "#292d3e",
|
|
468
|
+
//"notebook.focusedEditorBorder": "#ffffff00",
|
|
469
|
+
//"notebook.selectedCellBackground": "#00000030",
|
|
470
|
+
//"notebook.selectedCellBorder": "#00000030",
|
|
471
|
+
//"notebook.symbolHighlightBackground": "#ffffff0b",
|
|
472
|
+
//"notebookEditorOverviewRuler.runningCellForeground": "#89d185",
|
|
473
|
+
//"notebookScrollbarSlider.activeBackground": "#80cbc4",
|
|
474
|
+
//"notebookScrollbarSlider.background": "#a6accd20",
|
|
475
|
+
//"notebookScrollbarSlider.hoverBackground": "#a6accd10",
|
|
476
|
+
//"notebookStatusErrorIcon.foreground": "#f48771",
|
|
477
|
+
//"notebookStatusRunningIcon.foreground": "#a6accd",
|
|
478
|
+
//"notebookStatusSuccessIcon.foreground": "#89d185",
|
|
479
|
+
//"notificationCenterHeader.background": "#353a51",
|
|
480
|
+
//"notifications.border": "#353a51",
|
|
481
|
+
//"notificationsErrorIcon.foreground": "#f0717870",
|
|
482
|
+
//"notificationsInfoIcon.foreground": "#82aaff70",
|
|
483
|
+
//"notificationsWarningIcon.foreground": "#ffcb6b70",
|
|
484
|
+
//"panel.dropBorder": "#ffffff",
|
|
485
|
+
//"panelInput.border": "#ffffff10",
|
|
486
|
+
//"panelSection.border": "#00000060",
|
|
487
|
+
//"panelSection.dropBackground": "#f0717880",
|
|
488
|
+
//"panelSectionHeader.background": "#80808033",
|
|
489
|
+
//"peekViewEditorStickyScroll.background": "#a6accd05",
|
|
490
|
+
//"peekViewResult.fileForeground": "#ffffff",
|
|
491
|
+
//"peekViewResult.lineForeground": "#bbbbbb",
|
|
492
|
+
//"peekViewResult.selectionForeground": "#ffffff",
|
|
493
|
+
//"peekViewTitleLabel.foreground": "#ffffff",
|
|
494
|
+
//"ports.iconRunningProcessForeground": "#80cbc4",
|
|
495
|
+
//"problemsErrorIcon.foreground": "#f0717870",
|
|
496
|
+
//"problemsInfoIcon.foreground": "#82aaff70",
|
|
497
|
+
//"problemsWarningIcon.foreground": "#ffcb6b70",
|
|
498
|
+
//"profileBadge.background": "#4d4d4d",
|
|
499
|
+
//"profileBadge.foreground": "#ffffff",
|
|
500
|
+
//"quickInputList.focusBackground": "#a6accd20",
|
|
501
|
+
//"quickInputList.focusForeground": "#80cbc4",
|
|
502
|
+
//"quickInputTitle.background": "#ffffff1b",
|
|
503
|
+
//"sash.hoverBorder": "#ffffff00",
|
|
504
|
+
//"scm.providerBorder": "#454545",
|
|
505
|
+
//"search.resultsInfoForeground": "#a6accda6",
|
|
506
|
+
//"searchEditor.findMatchBackground": "#00000035",
|
|
507
|
+
//"searchEditor.findMatchBorder": "#ffffff35",
|
|
508
|
+
//"searchEditor.textInputBorder": "#ffffff10",
|
|
509
|
+
//"settings.checkboxBorder": "#ffffff10",
|
|
510
|
+
//"settings.dropdownBorder": "#ffffff10",
|
|
511
|
+
//"settings.dropdownListBorder": "#80cbc4",
|
|
512
|
+
//"settings.focusedRowBackground": "#1b1e2b99",
|
|
513
|
+
//"settings.focusedRowBorder": "#ffffff00",
|
|
514
|
+
//"settings.headerBorder": "#00000060",
|
|
515
|
+
//"settings.numberInputBorder": "#ffffff10",
|
|
516
|
+
//"settings.rowHoverBackground": "#1b1e2b4d",
|
|
517
|
+
//"settings.sashBorder": "#00000060",
|
|
518
|
+
//"settings.settingsHeaderHoverForeground": "#80cbc4b3",
|
|
519
|
+
//"settings.textInputBorder": "#ffffff10",
|
|
520
|
+
//"sideBar.dropBackground": "#f0717880",
|
|
521
|
+
//"sideBarSectionHeader.foreground": "#757ca1",
|
|
522
|
+
//"sideBySideEditor.horizontalBorder": "#00000030",
|
|
523
|
+
//"sideBySideEditor.verticalBorder": "#00000030",
|
|
524
|
+
//"statusBar.debuggingBorder": "#00000060",
|
|
525
|
+
//"statusBar.focusBorder": "#676e95",
|
|
526
|
+
//"statusBar.noFolderBorder": "#00000060",
|
|
527
|
+
//"statusBar.noFolderForeground": "#676e95",
|
|
528
|
+
//"statusBarItem.compactHoverBackground": "#ffffff33",
|
|
529
|
+
//"statusBarItem.errorBackground": "#c72e0f",
|
|
530
|
+
//"statusBarItem.errorForeground": "#ffffff",
|
|
531
|
+
//"statusBarItem.focusBorder": "#676e95",
|
|
532
|
+
//"statusBarItem.prominentBackground": "#00000080",
|
|
533
|
+
//"statusBarItem.prominentForeground": "#676e95",
|
|
534
|
+
//"statusBarItem.prominentHoverBackground": "#0000004d",
|
|
535
|
+
//"statusBarItem.warningBackground": "#d98d0070",
|
|
536
|
+
//"statusBarItem.warningForeground": "#ffffff",
|
|
537
|
+
//"symbolIcon.arrayForeground": "#a6accd",
|
|
538
|
+
//"symbolIcon.booleanForeground": "#a6accd",
|
|
539
|
+
//"symbolIcon.classForeground": "#ee9d28",
|
|
540
|
+
//"symbolIcon.colorForeground": "#a6accd",
|
|
541
|
+
//"symbolIcon.constantForeground": "#a6accd",
|
|
542
|
+
//"symbolIcon.constructorForeground": "#b180d7",
|
|
543
|
+
//"symbolIcon.enumeratorForeground": "#ee9d28",
|
|
544
|
+
//"symbolIcon.enumeratorMemberForeground": "#75beff",
|
|
545
|
+
//"symbolIcon.eventForeground": "#ee9d28",
|
|
546
|
+
//"symbolIcon.fieldForeground": "#75beff",
|
|
547
|
+
//"symbolIcon.fileForeground": "#a6accd",
|
|
548
|
+
//"symbolIcon.folderForeground": "#a6accd",
|
|
549
|
+
//"symbolIcon.functionForeground": "#b180d7",
|
|
550
|
+
//"symbolIcon.interfaceForeground": "#75beff",
|
|
551
|
+
//"symbolIcon.keyForeground": "#a6accd",
|
|
552
|
+
//"symbolIcon.keywordForeground": "#a6accd",
|
|
553
|
+
//"symbolIcon.methodForeground": "#b180d7",
|
|
554
|
+
//"symbolIcon.moduleForeground": "#a6accd",
|
|
555
|
+
//"symbolIcon.namespaceForeground": "#a6accd",
|
|
556
|
+
//"symbolIcon.nullForeground": "#a6accd",
|
|
557
|
+
//"symbolIcon.numberForeground": "#a6accd",
|
|
558
|
+
//"symbolIcon.objectForeground": "#a6accd",
|
|
559
|
+
//"symbolIcon.operatorForeground": "#a6accd",
|
|
560
|
+
//"symbolIcon.packageForeground": "#a6accd",
|
|
561
|
+
//"symbolIcon.propertyForeground": "#a6accd",
|
|
562
|
+
//"symbolIcon.referenceForeground": "#a6accd",
|
|
563
|
+
//"symbolIcon.snippetForeground": "#a6accd",
|
|
564
|
+
//"symbolIcon.stringForeground": "#a6accd",
|
|
565
|
+
//"symbolIcon.structForeground": "#a6accd",
|
|
566
|
+
//"symbolIcon.textForeground": "#a6accd",
|
|
567
|
+
//"symbolIcon.typeParameterForeground": "#a6accd",
|
|
568
|
+
//"symbolIcon.unitForeground": "#a6accd",
|
|
569
|
+
//"symbolIcon.variableForeground": "#75beff",
|
|
570
|
+
//"tab.lastPinnedBorder": "#4e5579",
|
|
571
|
+
//"tab.unfocusedActiveBackground": "#292d3e",
|
|
572
|
+
//"tab.unfocusedInactiveBackground": "#292d3e",
|
|
573
|
+
//"tab.unfocusedInactiveForeground": "#757ca180",
|
|
574
|
+
//"terminal.border": "#00000060",
|
|
575
|
+
//"terminal.dropBackground": "#f0717880",
|
|
576
|
+
//"terminal.findMatchBackground": "#000000",
|
|
577
|
+
//"terminal.findMatchHighlightBackground": "#00000050",
|
|
578
|
+
//"terminal.foreground": "#cccccc",
|
|
579
|
+
//"terminal.hoverHighlightBackground": "#264f7820",
|
|
580
|
+
//"terminal.inactiveSelectionBackground": "#717cb428",
|
|
581
|
+
//"terminal.selectionBackground": "#717cb450",
|
|
582
|
+
//"terminal.tab.activeBorder": "#80cbc4",
|
|
583
|
+
//"terminalCommandDecoration.defaultBackground": "#ffffff40",
|
|
584
|
+
//"terminalCommandDecoration.errorBackground": "#f14c4c",
|
|
585
|
+
//"terminalCommandDecoration.successBackground": "#1b81a8",
|
|
586
|
+
//"terminalOverviewRuler.cursorForeground": "#a0a0a0cc",
|
|
587
|
+
//"terminalOverviewRuler.findMatchForeground": "#80cbc4",
|
|
588
|
+
//"testing.iconErrored": "#f14c4c",
|
|
589
|
+
//"testing.iconFailed": "#f14c4c",
|
|
590
|
+
//"testing.iconPassed": "#73c991",
|
|
591
|
+
//"testing.iconQueued": "#cca700",
|
|
592
|
+
//"testing.iconSkipped": "#848484",
|
|
593
|
+
//"testing.iconUnset": "#848484",
|
|
594
|
+
//"testing.message.error.decorationForeground": "#f0717870",
|
|
595
|
+
//"testing.message.error.lineBackground": "#ff000033",
|
|
596
|
+
//"testing.message.info.decorationForeground": "#a6accd80",
|
|
597
|
+
//"testing.peekBorder": "#f0717870",
|
|
598
|
+
//"testing.peekHeaderBackground": "#f071780b",
|
|
599
|
+
//"testing.runAction": "#73c991",
|
|
600
|
+
//"textBlockQuote.background": "#7f7f7f1a",
|
|
601
|
+
//"textBlockQuote.border": "#007acc80",
|
|
602
|
+
//"textCodeBlock.background": "#0a0a0a66",
|
|
603
|
+
//"textPreformat.foreground": "#d7ba7d",
|
|
604
|
+
//"textSeparator.foreground": "#ffffff2e",
|
|
605
|
+
//"toolbar.activeBackground": "#63666750",
|
|
606
|
+
//"toolbar.hoverBackground": "#5a5d5e50",
|
|
607
|
+
//"tree.inactiveIndentGuidesStroke": "#4e557966",
|
|
608
|
+
//"tree.tableColumnsBorder": "#cccccc20",
|
|
609
|
+
//"tree.tableOddRowsBackground": "#a6accd0a",
|
|
610
|
+
//"walkThrough.embeddedEditorBackground": "#00000066",
|
|
611
|
+
//"walkthrough.stepTitle.foreground": "#ffffff",
|
|
612
|
+
//"welcomePage.progress.background": "#333747",
|
|
613
|
+
//"welcomePage.progress.foreground": "#80cbc4",
|
|
614
|
+
//"welcomePage.tileBackground": "#1b1e2b",
|
|
615
|
+
//"welcomePage.tileBorder": "#ffffff1a",
|
|
616
|
+
//"welcomePage.tileHoverBackground": "#202433",
|
|
617
|
+
//"activityBar.activeBackground": null,
|
|
618
|
+
//"activityBar.activeFocusBorder": null,
|
|
619
|
+
//"button.border": null,
|
|
620
|
+
//"contrastActiveBorder": null,
|
|
621
|
+
//"contrastBorder": null,
|
|
622
|
+
//"debugToolBar.border": null,
|
|
623
|
+
//"diffEditor.border": null,
|
|
624
|
+
//"diffEditor.insertedTextBorder": null,
|
|
625
|
+
//"diffEditor.removedTextBorder": null,
|
|
626
|
+
//"diffEditorGutter.insertedLineBackground": null,
|
|
627
|
+
//"diffEditorGutter.removedLineBackground": null,
|
|
628
|
+
//"diffEditorOverview.insertedForeground": null,
|
|
629
|
+
//"diffEditorOverview.removedForeground": null,
|
|
630
|
+
//"dropdown.listBackground": null,
|
|
631
|
+
//"editor.findRangeHighlightBorder": null,
|
|
632
|
+
//"editor.rangeHighlightBorder": null,
|
|
633
|
+
//"editor.selectionForeground": null,
|
|
634
|
+
//"editor.selectionHighlightBorder": null,
|
|
635
|
+
//"editor.snippetFinalTabstopHighlightBackground": null,
|
|
636
|
+
//"editor.snippetTabstopHighlightBorder": null,
|
|
637
|
+
//"editor.symbolHighlightBorder": null,
|
|
638
|
+
//"editor.wordHighlightBorder": null,
|
|
639
|
+
//"editor.wordHighlightStrongBorder": null,
|
|
640
|
+
//"editor.wordHighlightTextBorder": null,
|
|
641
|
+
//"editorCursor.background": null,
|
|
642
|
+
//"editorError.background": null,
|
|
643
|
+
//"editorError.border": null,
|
|
644
|
+
//"editorGhostText.background": null,
|
|
645
|
+
//"editorGhostText.border": null,
|
|
646
|
+
//"editorGroup.dropIntoPromptBorder": null,
|
|
647
|
+
//"editorGroup.emptyBackground": null,
|
|
648
|
+
//"editorGroupHeader.border": null,
|
|
649
|
+
//"editorGroupHeader.tabsBorder": null,
|
|
650
|
+
//"editorHint.border": null,
|
|
651
|
+
//"editorInfo.background": null,
|
|
652
|
+
//"editorInfo.border": null,
|
|
653
|
+
//"editorLineNumber.dimmedForeground": null,
|
|
654
|
+
//"editorOverviewRuler.background": null,
|
|
655
|
+
//"editorSuggestWidget.selectedIconForeground": null,
|
|
656
|
+
//"editorUnnecessaryCode.border": null,
|
|
657
|
+
//"editorWarning.background": null,
|
|
658
|
+
//"editorWarning.border": null,
|
|
659
|
+
//"inputValidation.errorForeground": null,
|
|
660
|
+
//"inputValidation.infoForeground": null,
|
|
661
|
+
//"inputValidation.warningForeground": null,
|
|
662
|
+
//"list.activeSelectionIconForeground": null,
|
|
663
|
+
//"list.focusAndSelectionOutline": null,
|
|
664
|
+
//"list.inactiveFocusBackground": null,
|
|
665
|
+
//"list.inactiveFocusOutline": null,
|
|
666
|
+
//"list.inactiveSelectionIconForeground": null,
|
|
667
|
+
//"menu.border": null,
|
|
668
|
+
//"merge.border": null,
|
|
669
|
+
//"minimap.background": null,
|
|
670
|
+
//"notebook.cellHoverBackground": null,
|
|
671
|
+
//"notebook.focusedCellBackground": null,
|
|
672
|
+
//"notebook.inactiveSelectedCellBorder": null,
|
|
673
|
+
//"notebook.outputContainerBackgroundColor": null,
|
|
674
|
+
//"notebook.outputContainerBorderColor": null,
|
|
675
|
+
//"notificationCenter.border": null,
|
|
676
|
+
//"notificationCenterHeader.foreground": null,
|
|
677
|
+
//"notificationToast.border": null,
|
|
678
|
+
//"panelSectionHeader.border": null,
|
|
679
|
+
//"panelSectionHeader.foreground": null,
|
|
680
|
+
//"peekViewEditor.matchHighlightBorder": null,
|
|
681
|
+
//"quickInputList.focusIconForeground": null,
|
|
682
|
+
//"tab.activeBorderTop": null,
|
|
683
|
+
//"tab.hoverBackground": null,
|
|
684
|
+
//"tab.hoverBorder": null,
|
|
685
|
+
//"tab.hoverForeground": null,
|
|
686
|
+
//"tab.unfocusedActiveBorderTop": null,
|
|
687
|
+
//"tab.unfocusedHoverBackground": null,
|
|
688
|
+
//"tab.unfocusedHoverBorder": null,
|
|
689
|
+
//"tab.unfocusedHoverForeground": null,
|
|
690
|
+
//"terminal.background": null,
|
|
691
|
+
//"terminal.findMatchBorder": null,
|
|
692
|
+
//"terminal.findMatchHighlightBorder": null,
|
|
693
|
+
//"terminal.selectionForeground": null,
|
|
694
|
+
//"testing.message.info.lineBackground": null,
|
|
695
|
+
//"toolbar.hoverOutline": null,
|
|
696
|
+
//"welcomePage.background": null,
|
|
697
|
+
//"widget.border": null,
|
|
698
|
+
//"window.activeBorder": null,
|
|
699
|
+
//"window.inactiveBorder": null
|
|
700
|
+
},
|
|
701
|
+
tokenColors: [
|
|
702
|
+
{
|
|
703
|
+
scope: "string",
|
|
704
|
+
settings: {
|
|
705
|
+
foreground: "#C3E88D",
|
|
706
|
+
},
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
scope: "punctuation, constant.other.symbol",
|
|
710
|
+
settings: {
|
|
711
|
+
foreground: "#89DDFF",
|
|
712
|
+
},
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
scope:
|
|
716
|
+
"constant.character.escape, text.html constant.character.entity.named",
|
|
717
|
+
settings: {
|
|
718
|
+
foreground: "#A6ACCD",
|
|
719
|
+
},
|
|
720
|
+
},
|
|
721
|
+
{
|
|
722
|
+
scope: "constant.language.boolean",
|
|
723
|
+
settings: {
|
|
724
|
+
foreground: "#FF9CAC",
|
|
725
|
+
},
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
scope: "constant.numeric",
|
|
729
|
+
settings: {
|
|
730
|
+
foreground: "#F78C6C",
|
|
731
|
+
},
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
scope:
|
|
735
|
+
"variable, variable.parameter, support.variable, variable.language, support.constant, meta.definition.variable entity.name.function, meta.function-call.arguments",
|
|
736
|
+
settings: {
|
|
737
|
+
foreground: "#A6ACCD",
|
|
738
|
+
},
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
scope: "keyword.other",
|
|
742
|
+
settings: {
|
|
743
|
+
foreground: "#F78C6C",
|
|
744
|
+
},
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
scope:
|
|
748
|
+
"keyword, modifier, variable.language.this, support.type.object, constant.language",
|
|
749
|
+
settings: {
|
|
750
|
+
foreground: "#89DDFF",
|
|
751
|
+
},
|
|
752
|
+
},
|
|
753
|
+
{
|
|
754
|
+
scope: "entity.name.function, support.function",
|
|
755
|
+
settings: {
|
|
756
|
+
foreground: "#82AAFF",
|
|
757
|
+
},
|
|
758
|
+
},
|
|
759
|
+
{
|
|
760
|
+
scope: "storage.type, storage.modifier, storage.control",
|
|
761
|
+
settings: {
|
|
762
|
+
foreground: "#C792EA",
|
|
763
|
+
},
|
|
764
|
+
},
|
|
765
|
+
{
|
|
766
|
+
scope: "support.module, support.node",
|
|
767
|
+
settings: {
|
|
768
|
+
foreground: "#F07178",
|
|
769
|
+
fontStyle: "italic",
|
|
770
|
+
},
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
scope: "support.type, constant.other.key",
|
|
774
|
+
settings: {
|
|
775
|
+
foreground: "#FFCB6B",
|
|
776
|
+
},
|
|
777
|
+
},
|
|
778
|
+
{
|
|
779
|
+
scope: "entity.name.type, entity.other.inherited-class, entity.other",
|
|
780
|
+
settings: {
|
|
781
|
+
foreground: "#FFCB6B",
|
|
782
|
+
},
|
|
783
|
+
},
|
|
784
|
+
{
|
|
785
|
+
scope: "comment",
|
|
786
|
+
settings: {
|
|
787
|
+
foreground: "#676E95",
|
|
788
|
+
fontStyle: "italic",
|
|
789
|
+
},
|
|
790
|
+
},
|
|
791
|
+
{
|
|
792
|
+
scope: "comment punctuation.definition.comment, string.quoted.docstring",
|
|
793
|
+
settings: {
|
|
794
|
+
foreground: "#676E95",
|
|
795
|
+
fontStyle: "italic",
|
|
796
|
+
},
|
|
797
|
+
},
|
|
798
|
+
{
|
|
799
|
+
scope: "punctuation",
|
|
800
|
+
settings: {
|
|
801
|
+
foreground: "#89DDFF",
|
|
802
|
+
},
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
scope:
|
|
806
|
+
"entity.name, entity.name.type.class, support.type, support.class, meta.use",
|
|
807
|
+
settings: {
|
|
808
|
+
foreground: "#FFCB6B",
|
|
809
|
+
},
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
scope:
|
|
813
|
+
"variable.object.property, meta.field.declaration entity.name.function",
|
|
814
|
+
settings: {
|
|
815
|
+
foreground: "#F07178",
|
|
816
|
+
},
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
scope: "meta.definition.method entity.name.function",
|
|
820
|
+
settings: {
|
|
821
|
+
foreground: "#F07178",
|
|
822
|
+
},
|
|
823
|
+
},
|
|
824
|
+
{
|
|
825
|
+
scope: "meta.function entity.name.function",
|
|
826
|
+
settings: {
|
|
827
|
+
foreground: "#82AAFF",
|
|
828
|
+
},
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
scope:
|
|
832
|
+
"template.expression.begin, template.expression.end, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end",
|
|
833
|
+
settings: {
|
|
834
|
+
foreground: "#89DDFF",
|
|
835
|
+
},
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
scope: "meta.embedded, source.groovy.embedded, meta.template.expression",
|
|
839
|
+
settings: {
|
|
840
|
+
foreground: "#A6ACCD",
|
|
841
|
+
},
|
|
842
|
+
},
|
|
843
|
+
{
|
|
844
|
+
scope: "entity.name.tag.yaml",
|
|
845
|
+
settings: {
|
|
846
|
+
foreground: "#F07178",
|
|
847
|
+
},
|
|
848
|
+
},
|
|
849
|
+
{
|
|
850
|
+
scope:
|
|
851
|
+
"meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json",
|
|
852
|
+
settings: {
|
|
853
|
+
foreground: "#F07178",
|
|
854
|
+
},
|
|
855
|
+
},
|
|
856
|
+
{
|
|
857
|
+
scope: "constant.language.json",
|
|
858
|
+
settings: {
|
|
859
|
+
foreground: "#89DDFF",
|
|
860
|
+
},
|
|
861
|
+
},
|
|
862
|
+
{
|
|
863
|
+
scope: "entity.other.attribute-name.class",
|
|
864
|
+
settings: {
|
|
865
|
+
foreground: "#FFCB6B",
|
|
866
|
+
},
|
|
867
|
+
},
|
|
868
|
+
{
|
|
869
|
+
scope: "entity.other.attribute-name.id",
|
|
870
|
+
settings: {
|
|
871
|
+
foreground: "#F78C6C",
|
|
872
|
+
},
|
|
873
|
+
},
|
|
874
|
+
{
|
|
875
|
+
scope: "source.css entity.name.tag",
|
|
876
|
+
settings: {
|
|
877
|
+
foreground: "#FFCB6B",
|
|
878
|
+
},
|
|
879
|
+
},
|
|
880
|
+
{
|
|
881
|
+
scope: "support.type.property-name.css",
|
|
882
|
+
settings: {
|
|
883
|
+
foreground: "#B2CCD6",
|
|
884
|
+
},
|
|
885
|
+
},
|
|
886
|
+
{
|
|
887
|
+
scope: "meta.tag, punctuation.definition.tag",
|
|
888
|
+
settings: {
|
|
889
|
+
foreground: "#89DDFF",
|
|
890
|
+
},
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
scope: "entity.name.tag",
|
|
894
|
+
settings: {
|
|
895
|
+
foreground: "#F07178",
|
|
896
|
+
},
|
|
897
|
+
},
|
|
898
|
+
{
|
|
899
|
+
scope: "entity.other.attribute-name",
|
|
900
|
+
settings: {
|
|
901
|
+
foreground: "#C792EA",
|
|
902
|
+
},
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
scope: "punctuation.definition.entity.html",
|
|
906
|
+
settings: {
|
|
907
|
+
foreground: "#A6ACCD",
|
|
908
|
+
},
|
|
909
|
+
},
|
|
910
|
+
{
|
|
911
|
+
scope: "markup.heading",
|
|
912
|
+
settings: {
|
|
913
|
+
foreground: "#89DDFF",
|
|
914
|
+
},
|
|
915
|
+
},
|
|
916
|
+
{
|
|
917
|
+
scope: "text.html.markdown meta.link.inline, meta.link.reference",
|
|
918
|
+
settings: {
|
|
919
|
+
foreground: "#F07178",
|
|
920
|
+
},
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
scope: "text.html.markdown beginning.punctuation.definition.list",
|
|
924
|
+
settings: {
|
|
925
|
+
foreground: "#89DDFF",
|
|
926
|
+
},
|
|
927
|
+
},
|
|
928
|
+
{
|
|
929
|
+
scope: "markup.italic",
|
|
930
|
+
settings: {
|
|
931
|
+
foreground: "#F07178",
|
|
932
|
+
fontStyle: "italic",
|
|
933
|
+
},
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
scope: "markup.bold",
|
|
937
|
+
settings: {
|
|
938
|
+
foreground: "#F07178",
|
|
939
|
+
fontStyle: "bold",
|
|
940
|
+
},
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
scope: "markup.bold markup.italic, markup.italic markup.bold",
|
|
944
|
+
settings: {
|
|
945
|
+
foreground: "#F07178",
|
|
946
|
+
fontStyle: "italic bold",
|
|
947
|
+
},
|
|
948
|
+
},
|
|
949
|
+
{
|
|
950
|
+
scope:
|
|
951
|
+
"markup.fenced_code.block.markdown punctuation.definition.markdown",
|
|
952
|
+
settings: {
|
|
953
|
+
foreground: "#C3E88D",
|
|
954
|
+
},
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
scope: "markup.inline.raw.string.markdown",
|
|
958
|
+
settings: {
|
|
959
|
+
foreground: "#C3E88D",
|
|
960
|
+
},
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
scope: "keyword.other.definition.ini",
|
|
964
|
+
settings: {
|
|
965
|
+
foreground: "#F07178",
|
|
966
|
+
},
|
|
967
|
+
},
|
|
968
|
+
{
|
|
969
|
+
scope: "entity.name.section.group-title.ini",
|
|
970
|
+
settings: {
|
|
971
|
+
foreground: "#89DDFF",
|
|
972
|
+
},
|
|
973
|
+
},
|
|
974
|
+
{
|
|
975
|
+
scope: "source.cs meta.class.identifier storage.type",
|
|
976
|
+
settings: {
|
|
977
|
+
foreground: "#FFCB6B",
|
|
978
|
+
},
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
scope: "source.cs meta.method.identifier entity.name.function",
|
|
982
|
+
settings: {
|
|
983
|
+
foreground: "#F07178",
|
|
984
|
+
},
|
|
985
|
+
},
|
|
986
|
+
{
|
|
987
|
+
scope:
|
|
988
|
+
"source.cs meta.method-call meta.method, source.cs entity.name.function",
|
|
989
|
+
settings: {
|
|
990
|
+
foreground: "#82AAFF",
|
|
991
|
+
},
|
|
992
|
+
},
|
|
993
|
+
{
|
|
994
|
+
scope: "source.cs storage.type",
|
|
995
|
+
settings: {
|
|
996
|
+
foreground: "#FFCB6B",
|
|
997
|
+
},
|
|
998
|
+
},
|
|
999
|
+
{
|
|
1000
|
+
scope: "source.cs meta.method.return-type",
|
|
1001
|
+
settings: {
|
|
1002
|
+
foreground: "#FFCB6B",
|
|
1003
|
+
},
|
|
1004
|
+
},
|
|
1005
|
+
{
|
|
1006
|
+
scope: "source.cs meta.preprocessor",
|
|
1007
|
+
settings: {
|
|
1008
|
+
foreground: "#676E95",
|
|
1009
|
+
},
|
|
1010
|
+
},
|
|
1011
|
+
{
|
|
1012
|
+
scope: "source.cs entity.name.type.namespace",
|
|
1013
|
+
settings: {
|
|
1014
|
+
foreground: "#A6ACCD",
|
|
1015
|
+
},
|
|
1016
|
+
},
|
|
1017
|
+
{
|
|
1018
|
+
scope: "meta.jsx.children, SXNested",
|
|
1019
|
+
settings: {
|
|
1020
|
+
foreground: "#A6ACCD",
|
|
1021
|
+
},
|
|
1022
|
+
},
|
|
1023
|
+
{
|
|
1024
|
+
scope: "support.class.component",
|
|
1025
|
+
settings: {
|
|
1026
|
+
foreground: "#FFCB6B",
|
|
1027
|
+
},
|
|
1028
|
+
},
|
|
1029
|
+
{
|
|
1030
|
+
scope: "source.cpp meta.block variable.other",
|
|
1031
|
+
settings: {
|
|
1032
|
+
foreground: "#A6ACCD",
|
|
1033
|
+
},
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
1036
|
+
scope: "source.python meta.member.access.python",
|
|
1037
|
+
settings: {
|
|
1038
|
+
foreground: "#F07178",
|
|
1039
|
+
},
|
|
1040
|
+
},
|
|
1041
|
+
{
|
|
1042
|
+
scope:
|
|
1043
|
+
"source.python meta.function-call.python, meta.function-call.arguments",
|
|
1044
|
+
settings: {
|
|
1045
|
+
foreground: "#82AAFF",
|
|
1046
|
+
},
|
|
1047
|
+
},
|
|
1048
|
+
{
|
|
1049
|
+
scope: "meta.block",
|
|
1050
|
+
settings: {
|
|
1051
|
+
foreground: "#F07178",
|
|
1052
|
+
},
|
|
1053
|
+
},
|
|
1054
|
+
{
|
|
1055
|
+
scope: "entity.name.function.call",
|
|
1056
|
+
settings: {
|
|
1057
|
+
foreground: "#82AAFF",
|
|
1058
|
+
},
|
|
1059
|
+
},
|
|
1060
|
+
{
|
|
1061
|
+
scope:
|
|
1062
|
+
"source.php support.other.namespace, source.php meta.use support.class",
|
|
1063
|
+
settings: {
|
|
1064
|
+
foreground: "#A6ACCD",
|
|
1065
|
+
},
|
|
1066
|
+
},
|
|
1067
|
+
{
|
|
1068
|
+
scope: "constant.keyword",
|
|
1069
|
+
settings: {
|
|
1070
|
+
foreground: "#89DDFF",
|
|
1071
|
+
fontStyle: "italic",
|
|
1072
|
+
},
|
|
1073
|
+
},
|
|
1074
|
+
{
|
|
1075
|
+
scope: "entity.name.function",
|
|
1076
|
+
settings: {
|
|
1077
|
+
foreground: "#82AAFF",
|
|
1078
|
+
},
|
|
1079
|
+
},
|
|
1080
|
+
{
|
|
1081
|
+
scope: ["markup.deleted"],
|
|
1082
|
+
settings: {
|
|
1083
|
+
foreground: "#F07178",
|
|
1084
|
+
},
|
|
1085
|
+
},
|
|
1086
|
+
{
|
|
1087
|
+
scope: ["markup.inserted"],
|
|
1088
|
+
settings: {
|
|
1089
|
+
foreground: "#C3E88D",
|
|
1090
|
+
},
|
|
1091
|
+
},
|
|
1092
|
+
{
|
|
1093
|
+
scope: ["markup.underline"],
|
|
1094
|
+
settings: {
|
|
1095
|
+
fontStyle: "underline",
|
|
1096
|
+
},
|
|
1097
|
+
},
|
|
1098
|
+
{
|
|
1099
|
+
scope: ["keyword.control"],
|
|
1100
|
+
settings: {
|
|
1101
|
+
foreground: "#89DDFF",
|
|
1102
|
+
fontStyle: "italic",
|
|
1103
|
+
},
|
|
1104
|
+
},
|
|
1105
|
+
{
|
|
1106
|
+
scope: ["variable.parameter"],
|
|
1107
|
+
settings: {
|
|
1108
|
+
fontStyle: "italic",
|
|
1109
|
+
},
|
|
1110
|
+
},
|
|
1111
|
+
{
|
|
1112
|
+
scope: ["variable.parameter.function.language.special.self.python"],
|
|
1113
|
+
settings: {
|
|
1114
|
+
foreground: "#F07178",
|
|
1115
|
+
fontStyle: "italic",
|
|
1116
|
+
},
|
|
1117
|
+
},
|
|
1118
|
+
{
|
|
1119
|
+
scope: ["constant.character.format.placeholder.other.python"],
|
|
1120
|
+
settings: {
|
|
1121
|
+
foreground: "#F78C6C",
|
|
1122
|
+
},
|
|
1123
|
+
},
|
|
1124
|
+
{
|
|
1125
|
+
scope: ["markup.quote"],
|
|
1126
|
+
settings: {
|
|
1127
|
+
foreground: "#89DDFF",
|
|
1128
|
+
fontStyle: "italic",
|
|
1129
|
+
},
|
|
1130
|
+
},
|
|
1131
|
+
{
|
|
1132
|
+
scope: ["markup.fenced_code.block"],
|
|
1133
|
+
settings: {
|
|
1134
|
+
foreground: "#A6ACCD90",
|
|
1135
|
+
},
|
|
1136
|
+
},
|
|
1137
|
+
{
|
|
1138
|
+
scope: ["punctuation.definition.quote"],
|
|
1139
|
+
settings: {
|
|
1140
|
+
foreground: "#FF9CAC",
|
|
1141
|
+
},
|
|
1142
|
+
},
|
|
1143
|
+
{
|
|
1144
|
+
scope: ["meta.structure.dictionary.json support.type.property-name.json"],
|
|
1145
|
+
settings: {
|
|
1146
|
+
foreground: "#C792EA",
|
|
1147
|
+
},
|
|
1148
|
+
},
|
|
1149
|
+
{
|
|
1150
|
+
scope: [
|
|
1151
|
+
"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json",
|
|
1152
|
+
],
|
|
1153
|
+
settings: {
|
|
1154
|
+
foreground: "#FFCB6B",
|
|
1155
|
+
},
|
|
1156
|
+
},
|
|
1157
|
+
{
|
|
1158
|
+
scope: [
|
|
1159
|
+
"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json",
|
|
1160
|
+
],
|
|
1161
|
+
settings: {
|
|
1162
|
+
foreground: "#F78C6C",
|
|
1163
|
+
},
|
|
1164
|
+
},
|
|
1165
|
+
{
|
|
1166
|
+
scope: [
|
|
1167
|
+
"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json",
|
|
1168
|
+
],
|
|
1169
|
+
settings: {
|
|
1170
|
+
foreground: "#F07178",
|
|
1171
|
+
},
|
|
1172
|
+
},
|
|
1173
|
+
{
|
|
1174
|
+
scope: [
|
|
1175
|
+
"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json",
|
|
1176
|
+
],
|
|
1177
|
+
settings: {
|
|
1178
|
+
foreground: "#916B53",
|
|
1179
|
+
},
|
|
1180
|
+
},
|
|
1181
|
+
{
|
|
1182
|
+
scope: [
|
|
1183
|
+
"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json",
|
|
1184
|
+
],
|
|
1185
|
+
settings: {
|
|
1186
|
+
foreground: "#82AAFF",
|
|
1187
|
+
},
|
|
1188
|
+
},
|
|
1189
|
+
{
|
|
1190
|
+
scope: [
|
|
1191
|
+
"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json",
|
|
1192
|
+
],
|
|
1193
|
+
settings: {
|
|
1194
|
+
foreground: "#FF9CAC",
|
|
1195
|
+
},
|
|
1196
|
+
},
|
|
1197
|
+
{
|
|
1198
|
+
scope: [
|
|
1199
|
+
"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json",
|
|
1200
|
+
],
|
|
1201
|
+
settings: {
|
|
1202
|
+
foreground: "#C792EA",
|
|
1203
|
+
},
|
|
1204
|
+
},
|
|
1205
|
+
{
|
|
1206
|
+
scope: [
|
|
1207
|
+
"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json",
|
|
1208
|
+
],
|
|
1209
|
+
settings: {
|
|
1210
|
+
foreground: "#C3E88D",
|
|
1211
|
+
},
|
|
1212
|
+
},
|
|
1213
|
+
{
|
|
1214
|
+
scope: "token.info-token",
|
|
1215
|
+
settings: {
|
|
1216
|
+
foreground: "#6796E6",
|
|
1217
|
+
},
|
|
1218
|
+
},
|
|
1219
|
+
{
|
|
1220
|
+
scope: "token.warn-token",
|
|
1221
|
+
settings: {
|
|
1222
|
+
foreground: "#CD9731",
|
|
1223
|
+
},
|
|
1224
|
+
},
|
|
1225
|
+
{
|
|
1226
|
+
scope: "token.error-token",
|
|
1227
|
+
settings: {
|
|
1228
|
+
foreground: "#F44747",
|
|
1229
|
+
},
|
|
1230
|
+
},
|
|
1231
|
+
{
|
|
1232
|
+
scope: "token.debug-token",
|
|
1233
|
+
settings: {
|
|
1234
|
+
foreground: "#B267E6",
|
|
1235
|
+
},
|
|
1236
|
+
},
|
|
1237
|
+
],
|
|
1238
|
+
};
|
|
1239
|
+
const t = convertTheme(theme);
|
|
1240
|
+
|
|
1241
|
+
fs.writeFileSync(
|
|
1242
|
+
"./src/component/codeEditor/monacoTheme.ts",
|
|
1243
|
+
JSON.stringify(t, null, 2)
|
|
1244
|
+
);
|
|
1245
|
+
|
|
1246
|
+
/*
|
|
1247
|
+
* Convert multiple vscode themes to monaco themes.
|
|
1248
|
+
* This function takes as arguments an input directory with generated vscode json files and generated output files with the same names at output directory.
|
|
1249
|
+
*/
|
|
1250
|
+
// convertThemeFromDir('./my-vscode-themes-collection-dir/in','./my-vscode-themes-collection-dir/out');
|