@journeyapps-labs/reactor-mod-editor 1.0.0
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 +10 -0
- package/dist/@types/EditorModule.d.ts +7 -0
- package/dist/@types/MonacoCommandPalletSearchEngine.d.ts +21 -0
- package/dist/@types/actions/ChangeEditorThemeAction.d.ts +9 -0
- package/dist/@types/index.d.ts +16 -0
- package/dist/@types/languages/languages.d.ts +39 -0
- package/dist/@types/languages/logs.d.ts +3 -0
- package/dist/@types/providers/EditorThemeProvider.d.ts +14 -0
- package/dist/@types/settings/StoredThemesSettings.d.ts +13 -0
- package/dist/@types/settings/VimSupportSetting.d.ts +7 -0
- package/dist/@types/shortcuts/MonacoShortcut.d.ts +9 -0
- package/dist/@types/shortcuts/MonacoShortcutHandler.d.ts +17 -0
- package/dist/@types/shortcuts/MonacoShortcutMap.d.ts +83 -0
- package/dist/@types/stores/MonacoStore.d.ts +38 -0
- package/dist/@types/stores/MonacoThemeStore.d.ts +34 -0
- package/dist/@types/stores/keybindings/KeybindingsRegistry.d.ts +46 -0
- package/dist/@types/stores/keybindings/MonacoKeybindingStore.d.ts +27 -0
- package/dist/@types/stores/keybindings/definitions.d.ts +21 -0
- package/dist/@types/stores/keybindings/utils.d.ts +2 -0
- package/dist/@types/theme/EditorThemePreferencesWidget.d.ts +26 -0
- package/dist/@types/theme/SmartEditorThemePreferencesWidget.d.ts +8 -0
- package/dist/@types/theme/UploadVSIXThemeBtnWidget.d.ts +12 -0
- package/dist/@types/theme/patchThemeService.d.ts +9 -0
- package/dist/@types/theme/theme-utils.d.ts +61 -0
- package/dist/@types/theme-reactor/editor-theme-fragment.d.ts +41 -0
- package/dist/@types/utils/paths.d.ts +23 -0
- package/dist/@types/utils/useEditorStickyHeader.d.ts +8 -0
- package/dist/@types/widgets/DualEditorWidget.d.ts +7 -0
- package/dist/@types/widgets/EditorWidget.d.ts +15 -0
- package/dist/@types/widgets/MonacoEditorWidget.d.ts +10 -0
- package/dist/@types/widgets/SimpleEditorWidget.d.ts +8 -0
- package/dist/EditorModule.js +73 -0
- package/dist/EditorModule.js.map +1 -0
- package/dist/MonacoCommandPalletSearchEngine.js +52 -0
- package/dist/MonacoCommandPalletSearchEngine.js.map +1 -0
- package/dist/actions/ChangeEditorThemeAction.js +43 -0
- package/dist/actions/ChangeEditorThemeAction.js.map +1 -0
- package/dist/index.js +33 -0
- package/dist/index.js.map +1 -0
- package/dist/languages/languages.js +155 -0
- package/dist/languages/languages.js.map +1 -0
- package/dist/languages/logs.js +110 -0
- package/dist/languages/logs.js.map +1 -0
- package/dist/providers/EditorThemeProvider.js +26 -0
- package/dist/providers/EditorThemeProvider.js.map +1 -0
- package/dist/settings/StoredThemesSettings.js +45 -0
- package/dist/settings/StoredThemesSettings.js.map +1 -0
- package/dist/settings/VimSupportSetting.js +19 -0
- package/dist/settings/VimSupportSetting.js.map +1 -0
- package/dist/shortcuts/MonacoShortcut.js +27 -0
- package/dist/shortcuts/MonacoShortcut.js.map +1 -0
- package/dist/shortcuts/MonacoShortcutHandler.js +119 -0
- package/dist/shortcuts/MonacoShortcutHandler.js.map +1 -0
- package/dist/shortcuts/MonacoShortcutMap.js +84 -0
- package/dist/shortcuts/MonacoShortcutMap.js.map +1 -0
- package/dist/stores/MonacoStore.js +119 -0
- package/dist/stores/MonacoStore.js.map +1 -0
- package/dist/stores/MonacoThemeStore.js +143 -0
- package/dist/stores/MonacoThemeStore.js.map +1 -0
- package/dist/stores/keybindings/KeybindingsRegistry.js +131 -0
- package/dist/stores/keybindings/KeybindingsRegistry.js.map +1 -0
- package/dist/stores/keybindings/MonacoKeybindingStore.js +105 -0
- package/dist/stores/keybindings/MonacoKeybindingStore.js.map +1 -0
- package/dist/stores/keybindings/definitions.js +5 -0
- package/dist/stores/keybindings/definitions.js.map +1 -0
- package/dist/stores/keybindings/utils.js +12 -0
- package/dist/stores/keybindings/utils.js.map +1 -0
- package/dist/theme/EditorThemePreferencesWidget.js +160 -0
- package/dist/theme/EditorThemePreferencesWidget.js.map +1 -0
- package/dist/theme/SmartEditorThemePreferencesWidget.js +62 -0
- package/dist/theme/SmartEditorThemePreferencesWidget.js.map +1 -0
- package/dist/theme/UploadVSIXThemeBtnWidget.js +93 -0
- package/dist/theme/UploadVSIXThemeBtnWidget.js.map +1 -0
- package/dist/theme/patchThemeService.js +146 -0
- package/dist/theme/patchThemeService.js.map +1 -0
- package/dist/theme/theme-utils.js +65 -0
- package/dist/theme/theme-utils.js.map +1 -0
- package/dist/theme-reactor/editor-theme-fragment.js +70 -0
- package/dist/theme-reactor/editor-theme-fragment.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/dist/utils/paths.js +110 -0
- package/dist/utils/paths.js.map +1 -0
- package/dist/utils/useEditorStickyHeader.js +45 -0
- package/dist/utils/useEditorStickyHeader.js.map +1 -0
- package/dist/widgets/DualEditorWidget.js +79 -0
- package/dist/widgets/DualEditorWidget.js.map +1 -0
- package/dist/widgets/EditorWidget.js +85 -0
- package/dist/widgets/EditorWidget.js.map +1 -0
- package/dist/widgets/MonacoEditorWidget.js +29 -0
- package/dist/widgets/MonacoEditorWidget.js.map +1 -0
- package/dist/widgets/SimpleEditorWidget.js +71 -0
- package/dist/widgets/SimpleEditorWidget.js.map +1 -0
- package/dist-module/00a5102416a37050fa62.tmLanguage +1282 -0
- package/dist-module/092ac75109eb363dd826.tmLanguage +424 -0
- package/dist-module/100.bundle.js +1 -0
- package/dist-module/116.bundle.js +1 -0
- package/dist-module/173.bundle.js +1 -0
- package/dist-module/179.bundle.js +1 -0
- package/dist-module/18358219dee0ad14cc0c.tmLanguage +765 -0
- package/dist-module/195.bundle.js +1 -0
- package/dist-module/277.bundle.js +1 -0
- package/dist-module/299.bundle.js +1 -0
- package/dist-module/306.bundle.js +1 -0
- package/dist-module/344.bundle.js +1 -0
- package/dist-module/399345f371a7cb9eb1ba.tmLanguage +629 -0
- package/dist-module/404.bundle.js +4 -0
- package/dist-module/404.bundle.js.LICENSE.txt +6 -0
- package/dist-module/404.bundle.js.map +1 -0
- package/dist-module/43.bundle.js +1 -0
- package/dist-module/438.bundle.js +3 -0
- package/dist-module/438.bundle.js.map +1 -0
- package/dist-module/479.bundle.js +1 -0
- package/dist-module/491.bundle.js +1 -0
- package/dist-module/513.bundle.js +1 -0
- package/dist-module/549.bundle.js +1 -0
- package/dist-module/5e221c90a0dcbd4af855.tmLanguage +237 -0
- package/dist-module/6486a2df9ca5896c2cb6.tmLanguage +5739 -0
- package/dist-module/65.bundle.js +1 -0
- package/dist-module/66.bundle.js +1 -0
- package/dist-module/685.bundle.js +1 -0
- package/dist-module/6e3d5ec6699a8d147d29.wasm +0 -0
- package/dist-module/7.bundle.js +1 -0
- package/dist-module/703774d50b4d4526a465.tmLanguage +386 -0
- package/dist-module/717.bundle.js +2 -0
- package/dist-module/728.bundle.js +1 -0
- package/dist-module/77a7afbe329083ed0f59.tmLanguage +1183 -0
- package/dist-module/78.bundle.js +1 -0
- package/dist-module/829.bundle.js +1 -0
- package/dist-module/831968f77a9412d07cc2.tmLanguage +506 -0
- package/dist-module/862.bundle.js +1 -0
- package/dist-module/87.bundle.js +1 -0
- package/dist-module/923.bundle.js +1 -0
- package/dist-module/931.bundle.js +1 -0
- package/dist-module/933.bundle.js +3 -0
- package/dist-module/933.bundle.js.map +1 -0
- package/dist-module/970.bundle.js +1 -0
- package/dist-module/984.bundle.js +1 -0
- package/dist-module/992.bundle.js +1 -0
- package/dist-module/996.bundle.js +1 -0
- package/dist-module/9c8494157d226e95da5e.tmLanguage +1377 -0
- package/dist-module/a3e215de85a86294de8a.tmLanguage +385 -0
- package/dist-module/ba5650c2a0269a236153.tmLanguage +9349 -0
- package/dist-module/bundle.js +97 -0
- package/dist-module/bundle.js.LICENSE.txt +27 -0
- package/dist-module/bundle.js.map +1 -0
- package/dist-module/editor.worker.bundle.js +1 -0
- package/dist-module/f6283f7ccaed1249d9eb.ttf +0 -0
- package/dist-module/json.worker.bundle.js +2 -0
- package/dist-module/json.worker.bundle.js.LICENSE.txt +6 -0
- package/dist-module/yaml.worker.bundle.js +1 -0
- package/media/css.tmLanguage +1183 -0
- package/media/handlebars.tmLanguage +1282 -0
- package/media/html.tmLanguage +506 -0
- package/media/javascript.tmLanguage +5739 -0
- package/media/json.tmLanguage +386 -0
- package/media/jxml.tmLanguage +424 -0
- package/media/markdown.tmLanguage +1377 -0
- package/media/regularExpressions.tmLanguage +237 -0
- package/media/sql.tmLanguage +765 -0
- package/media/themes/ayu-light.json5 +847 -0
- package/media/themes/ayu-mirage.json5 +846 -0
- package/media/themes/journey.json5 +1061 -0
- package/media/themes/oxide.json5 +579 -0
- package/media/themes/reactor.json5 +775 -0
- package/media/themes/scarlet.json5 +836 -0
- package/media/typescript.tmLanguage +9349 -0
- package/media/xml.tmLanguage +385 -0
- package/media/yaml.tmLanguage +629 -0
- package/package.json +45 -0
- package/reactor.config.json +4 -0
|
@@ -0,0 +1,775 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Material-Theme-Palenight",
|
|
3
|
+
"semanticHighlighting": true,
|
|
4
|
+
"tokenColors": [
|
|
5
|
+
{
|
|
6
|
+
"name": "Global settings",
|
|
7
|
+
"settings": {
|
|
8
|
+
"background": "#292D3E",
|
|
9
|
+
"foreground": "#A6ACCD"
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"name": "String",
|
|
14
|
+
"scope": "string",
|
|
15
|
+
"settings": {
|
|
16
|
+
"foreground": "#C3E88D"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "Punctuation",
|
|
21
|
+
"scope": "punctuation, constant.other.symbol",
|
|
22
|
+
"settings": {
|
|
23
|
+
"foreground": "#89DDFF"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "String Escape",
|
|
28
|
+
"scope": "constant.character.escape, text.html constant.character.entity.named",
|
|
29
|
+
"settings": {
|
|
30
|
+
"foreground": "#A6ACCD"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "Boolean",
|
|
35
|
+
"scope": "constant.language.boolean",
|
|
36
|
+
"settings": {
|
|
37
|
+
"foreground": "#ff9cac"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "Number",
|
|
42
|
+
"scope": "constant.numeric",
|
|
43
|
+
"settings": {
|
|
44
|
+
"foreground": "#F78C6C"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "Variable",
|
|
49
|
+
"scope": "variable, variable.parameter, support.variable, variable.language, support.constant, meta.definition.variable entity.name.function, meta.function-call.arguments",
|
|
50
|
+
"settings": {
|
|
51
|
+
"foreground": "#A6ACCD"
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "Other Keyword",
|
|
56
|
+
"scope": "keyword.other",
|
|
57
|
+
"settings": {
|
|
58
|
+
"foreground": "#F78C6C"
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "Keyword",
|
|
63
|
+
"scope": "keyword, modifier, variable.language.this, support.type.object, constant.language",
|
|
64
|
+
"settings": {
|
|
65
|
+
"foreground": "#89DDFF"
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"name": "Function call",
|
|
70
|
+
"scope": "entity.name.function, support.function",
|
|
71
|
+
"settings": {
|
|
72
|
+
"foreground": "#82AAFF"
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "Storage",
|
|
77
|
+
"scope": "storage.type, storage.modifier, storage.control",
|
|
78
|
+
"settings": {
|
|
79
|
+
"foreground": "#C792EA"
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"name": "Modules",
|
|
84
|
+
"scope": "support.module, support.node",
|
|
85
|
+
"settings": {
|
|
86
|
+
"foreground": "#f07178",
|
|
87
|
+
"fontStyle": "italic"
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "Type",
|
|
92
|
+
"scope": "support.type, constant.other.key",
|
|
93
|
+
"settings": {
|
|
94
|
+
"foreground": "#FFCB6B"
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"name": "Type",
|
|
99
|
+
"scope": "entity.name.type, entity.other.inherited-class, entity.other",
|
|
100
|
+
"settings": {
|
|
101
|
+
"foreground": "#FFCB6B"
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"name": "Comment",
|
|
106
|
+
"scope": "comment",
|
|
107
|
+
"settings": {
|
|
108
|
+
"foreground": "#676E95",
|
|
109
|
+
"fontStyle": "italic"
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"name": "Comment",
|
|
114
|
+
"scope": "comment punctuation.definition.comment, string.quoted.docstring",
|
|
115
|
+
"settings": {
|
|
116
|
+
"foreground": "#676E95",
|
|
117
|
+
"fontStyle": "italic"
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"name": "Punctuation",
|
|
122
|
+
"scope": "punctuation",
|
|
123
|
+
"settings": {
|
|
124
|
+
"foreground": "#89DDFF"
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"name": "Class",
|
|
129
|
+
"scope": "entity.name, entity.name.type.class, support.type, support.class, meta.use",
|
|
130
|
+
"settings": {
|
|
131
|
+
"foreground": "#FFCB6B"
|
|
132
|
+
}
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"name": "Class variable",
|
|
136
|
+
"scope": "variable.object.property, meta.field.declaration entity.name.function",
|
|
137
|
+
"settings": {
|
|
138
|
+
"foreground": "#f07178"
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"name": "Class method",
|
|
143
|
+
"scope": "meta.definition.method entity.name.function",
|
|
144
|
+
"settings": {
|
|
145
|
+
"foreground": "#f07178"
|
|
146
|
+
}
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"name": "Function definition",
|
|
150
|
+
"scope": "meta.function entity.name.function",
|
|
151
|
+
"settings": {
|
|
152
|
+
"foreground": "#82AAFF"
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"name": "Template expression",
|
|
157
|
+
"scope": "template.expression.begin, template.expression.end, punctuation.definition.template-expression.begin, punctuation.definition.template-expression.end",
|
|
158
|
+
"settings": {
|
|
159
|
+
"foreground": "#89DDFF"
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"name": "Reset embedded/template expression colors",
|
|
164
|
+
"scope": "meta.embedded, source.groovy.embedded, meta.template.expression",
|
|
165
|
+
"settings": {
|
|
166
|
+
"foreground": "#A6ACCD"
|
|
167
|
+
}
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"name": "YAML key",
|
|
171
|
+
"scope": "entity.name.tag.yaml",
|
|
172
|
+
"settings": {
|
|
173
|
+
"foreground": "#f07178"
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"name": "JSON key",
|
|
178
|
+
"scope": "meta.object-literal.key, meta.object-literal.key string, support.type.property-name.json",
|
|
179
|
+
"settings": {
|
|
180
|
+
"foreground": "#f07178"
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"name": "JSON constant",
|
|
185
|
+
"scope": "constant.language.json",
|
|
186
|
+
"settings": {
|
|
187
|
+
"foreground": "#89DDFF"
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"name": "CSS class",
|
|
192
|
+
"scope": "entity.other.attribute-name.class",
|
|
193
|
+
"settings": {
|
|
194
|
+
"foreground": "#FFCB6B"
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"name": "CSS ID",
|
|
199
|
+
"scope": "entity.other.attribute-name.id",
|
|
200
|
+
"settings": {
|
|
201
|
+
"foreground": "#F78C6C"
|
|
202
|
+
}
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"name": "CSS tag",
|
|
206
|
+
"scope": "source.css entity.name.tag",
|
|
207
|
+
"settings": {
|
|
208
|
+
"foreground": "#FFCB6B"
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"name": "CSS properties",
|
|
213
|
+
"scope": "support.type.property-name.css",
|
|
214
|
+
"settings": {
|
|
215
|
+
"foreground": "#B2CCD6"
|
|
216
|
+
}
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"name": "HTML tag outer",
|
|
220
|
+
"scope": "meta.tag, punctuation.definition.tag",
|
|
221
|
+
"settings": {
|
|
222
|
+
"foreground": "#89DDFF"
|
|
223
|
+
}
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"name": "HTML tag inner",
|
|
227
|
+
"scope": "entity.name.tag",
|
|
228
|
+
"settings": {
|
|
229
|
+
"foreground": "#f07178"
|
|
230
|
+
}
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"name": "HTML tag attribute",
|
|
234
|
+
"scope": "entity.other.attribute-name",
|
|
235
|
+
"settings": {
|
|
236
|
+
"foreground": "#C792EA"
|
|
237
|
+
}
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"name": "HTML entities",
|
|
241
|
+
"scope": "punctuation.definition.entity.html",
|
|
242
|
+
"settings": {
|
|
243
|
+
"foreground": "#A6ACCD"
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"name": "Markdown heading",
|
|
248
|
+
"scope": "markup.heading",
|
|
249
|
+
"settings": {
|
|
250
|
+
"foreground": "#89DDFF"
|
|
251
|
+
}
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"name": "Markdown link text",
|
|
255
|
+
"scope": "text.html.markdown meta.link.inline, meta.link.reference",
|
|
256
|
+
"settings": {
|
|
257
|
+
"foreground": "#f07178"
|
|
258
|
+
}
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"name": "Markdown list item",
|
|
262
|
+
"scope": "text.html.markdown beginning.punctuation.definition.list",
|
|
263
|
+
"settings": {
|
|
264
|
+
"foreground": "#89DDFF"
|
|
265
|
+
}
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"name": "Markdown italic",
|
|
269
|
+
"scope": "markup.italic",
|
|
270
|
+
"settings": {
|
|
271
|
+
"foreground": "#f07178",
|
|
272
|
+
"fontStyle": "italic"
|
|
273
|
+
}
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"name": "Markdown bold",
|
|
277
|
+
"scope": "markup.bold",
|
|
278
|
+
"settings": {
|
|
279
|
+
"foreground": "#f07178",
|
|
280
|
+
"fontStyle": "bold"
|
|
281
|
+
}
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"name": "Markdown bold italic",
|
|
285
|
+
"scope": "markup.bold markup.italic, markup.italic markup.bold",
|
|
286
|
+
"settings": {
|
|
287
|
+
"foreground": "#f07178",
|
|
288
|
+
"fontStyle": "italic bold"
|
|
289
|
+
}
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"name": "Markdown code block",
|
|
293
|
+
"scope": "markup.fenced_code.block.markdown punctuation.definition.markdown",
|
|
294
|
+
"settings": {
|
|
295
|
+
"foreground": "#C3E88D"
|
|
296
|
+
}
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"name": "Markdown inline code",
|
|
300
|
+
"scope": "markup.inline.raw.string.markdown",
|
|
301
|
+
"settings": {
|
|
302
|
+
"foreground": "#C3E88D"
|
|
303
|
+
}
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"name": "INI property name",
|
|
307
|
+
"scope": "keyword.other.definition.ini",
|
|
308
|
+
"settings": {
|
|
309
|
+
"foreground": "#f07178"
|
|
310
|
+
}
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"name": "INI section title",
|
|
314
|
+
"scope": "entity.name.section.group-title.ini",
|
|
315
|
+
"settings": {
|
|
316
|
+
"foreground": "#89DDFF"
|
|
317
|
+
}
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"name": "C# class",
|
|
321
|
+
"scope": "source.cs meta.class.identifier storage.type",
|
|
322
|
+
"settings": {
|
|
323
|
+
"foreground": "#FFCB6B"
|
|
324
|
+
}
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"name": "C# class method",
|
|
328
|
+
"scope": "source.cs meta.method.identifier entity.name.function",
|
|
329
|
+
"settings": {
|
|
330
|
+
"foreground": "#f07178"
|
|
331
|
+
}
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"name": "C# function call",
|
|
335
|
+
"scope": "source.cs meta.method-call meta.method, source.cs entity.name.function",
|
|
336
|
+
"settings": {
|
|
337
|
+
"foreground": "#82AAFF"
|
|
338
|
+
}
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"name": "C# type",
|
|
342
|
+
"scope": "source.cs storage.type",
|
|
343
|
+
"settings": {
|
|
344
|
+
"foreground": "#FFCB6B"
|
|
345
|
+
}
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"name": "C# return type",
|
|
349
|
+
"scope": "source.cs meta.method.return-type",
|
|
350
|
+
"settings": {
|
|
351
|
+
"foreground": "#FFCB6B"
|
|
352
|
+
}
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"name": "C# preprocessor",
|
|
356
|
+
"scope": "source.cs meta.preprocessor",
|
|
357
|
+
"settings": {
|
|
358
|
+
"foreground": "#676E95"
|
|
359
|
+
}
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"name": "C# namespace",
|
|
363
|
+
"scope": "source.cs entity.name.type.namespace",
|
|
364
|
+
"settings": {
|
|
365
|
+
"foreground": "#A6ACCD"
|
|
366
|
+
}
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"name": "JSX Text",
|
|
370
|
+
"scope": "meta.jsx.children, SXNested",
|
|
371
|
+
"settings": {
|
|
372
|
+
"foreground": "#A6ACCD"
|
|
373
|
+
}
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"name": "JSX Components name",
|
|
377
|
+
"scope": "support.class.component",
|
|
378
|
+
"settings": {
|
|
379
|
+
"foreground": "#FFCB6B"
|
|
380
|
+
}
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
"name": "C-related Block Level Variables",
|
|
384
|
+
"scope": "source.cpp meta.block variable.other",
|
|
385
|
+
"settings": {
|
|
386
|
+
"foreground": "#A6ACCD"
|
|
387
|
+
}
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"name": "Member Access Meta",
|
|
391
|
+
"scope": "source.python meta.member.access.python",
|
|
392
|
+
"settings": {
|
|
393
|
+
"foreground": "#f07178"
|
|
394
|
+
}
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"name": "Function Call",
|
|
398
|
+
"scope": "source.python meta.function-call.python, meta.function-call.arguments",
|
|
399
|
+
"settings": {
|
|
400
|
+
"foreground": "#82AAFF"
|
|
401
|
+
}
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"name": "Blocks",
|
|
405
|
+
"scope": "meta.block",
|
|
406
|
+
"settings": {
|
|
407
|
+
"foreground": "#f07178"
|
|
408
|
+
}
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
"name": "Function Call",
|
|
412
|
+
"scope": "entity.name.function.call",
|
|
413
|
+
"settings": {
|
|
414
|
+
"foreground": "#82AAFF"
|
|
415
|
+
}
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"name": "Namespaces",
|
|
419
|
+
"scope": "source.php support.other.namespace, source.php meta.use support.class",
|
|
420
|
+
"settings": {
|
|
421
|
+
"foreground": "#A6ACCD"
|
|
422
|
+
}
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"name": "Constant keywords",
|
|
426
|
+
"scope": "constant.keyword",
|
|
427
|
+
"settings": {
|
|
428
|
+
"foreground": "#89DDFF",
|
|
429
|
+
"fontStyle": "italic"
|
|
430
|
+
}
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"name": "Entity name",
|
|
434
|
+
"scope": "entity.name.function",
|
|
435
|
+
"settings": {
|
|
436
|
+
"foreground": "#82AAFF"
|
|
437
|
+
}
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
"name": "Global settings",
|
|
441
|
+
"settings": {
|
|
442
|
+
"background": "#292D3E",
|
|
443
|
+
"foreground": "#A6ACCD"
|
|
444
|
+
}
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
"name": "Keyword Control",
|
|
448
|
+
"scope": [
|
|
449
|
+
"keyword.control"
|
|
450
|
+
],
|
|
451
|
+
"settings": {
|
|
452
|
+
"foreground": "#89DDFF",
|
|
453
|
+
"fontStyle": "italic"
|
|
454
|
+
}
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"name": "Markdown - Blockquote",
|
|
458
|
+
"scope": [
|
|
459
|
+
"markup.quote"
|
|
460
|
+
],
|
|
461
|
+
"settings": {
|
|
462
|
+
"fontStyle": "italic",
|
|
463
|
+
"foreground": "#89DDFF"
|
|
464
|
+
}
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"name": "Markdown - Fenced Language",
|
|
468
|
+
"scope": [
|
|
469
|
+
"markup.fenced_code.block"
|
|
470
|
+
],
|
|
471
|
+
"settings": {
|
|
472
|
+
"foreground": "#A6ACCD90"
|
|
473
|
+
}
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
"name": "Markdown - Blockquote Punctuation",
|
|
477
|
+
"scope": [
|
|
478
|
+
"punctuation.definition.quote"
|
|
479
|
+
],
|
|
480
|
+
"settings": {
|
|
481
|
+
"foreground": "#ff9cac"
|
|
482
|
+
}
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"name": "JSON Key - Level 0",
|
|
486
|
+
"scope": [
|
|
487
|
+
"meta.structure.dictionary.json support.type.property-name.json"
|
|
488
|
+
],
|
|
489
|
+
"settings": {
|
|
490
|
+
"foreground": "#C792EA"
|
|
491
|
+
}
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
"name": "JSON Key - Level 1",
|
|
495
|
+
"scope": [
|
|
496
|
+
"meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
|
|
497
|
+
],
|
|
498
|
+
"settings": {
|
|
499
|
+
"foreground": "#FFCB6B"
|
|
500
|
+
}
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
"name": "JSON Key - Level 2",
|
|
504
|
+
"scope": [
|
|
505
|
+
"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"
|
|
506
|
+
],
|
|
507
|
+
"settings": {
|
|
508
|
+
"foreground": "#F78C6C"
|
|
509
|
+
}
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
"name": "JSON Key - Level 3",
|
|
513
|
+
"scope": [
|
|
514
|
+
"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"
|
|
515
|
+
],
|
|
516
|
+
"settings": {
|
|
517
|
+
"foreground": "#f07178"
|
|
518
|
+
}
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
"name": "JSON Key - Level 4",
|
|
522
|
+
"scope": [
|
|
523
|
+
"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"
|
|
524
|
+
],
|
|
525
|
+
"settings": {
|
|
526
|
+
"foreground": "#916b53"
|
|
527
|
+
}
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
"name": "JSON Key - Level 5",
|
|
531
|
+
"scope": [
|
|
532
|
+
"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"
|
|
533
|
+
],
|
|
534
|
+
"settings": {
|
|
535
|
+
"foreground": "#82AAFF"
|
|
536
|
+
}
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
"name": "JSON Key - Level 6",
|
|
540
|
+
"scope": [
|
|
541
|
+
"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"
|
|
542
|
+
],
|
|
543
|
+
"settings": {
|
|
544
|
+
"foreground": "#ff9cac"
|
|
545
|
+
}
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"name": "JSON Key - Level 7",
|
|
549
|
+
"scope": [
|
|
550
|
+
"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"
|
|
551
|
+
],
|
|
552
|
+
"settings": {
|
|
553
|
+
"foreground": "#C792EA"
|
|
554
|
+
}
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"name": "JSON Key - Level 8",
|
|
558
|
+
"scope": [
|
|
559
|
+
"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"
|
|
560
|
+
],
|
|
561
|
+
"settings": {
|
|
562
|
+
"foreground": "#C3E88D"
|
|
563
|
+
}
|
|
564
|
+
}
|
|
565
|
+
],
|
|
566
|
+
"colors": {
|
|
567
|
+
"focusBorder": "#FFFFFF00",
|
|
568
|
+
"foreground": "#A6ACCD",
|
|
569
|
+
"button.background": "#717CB450",
|
|
570
|
+
"button.foreground": "#ffffff",
|
|
571
|
+
"dropdown.background": "#292D3E",
|
|
572
|
+
"input.background": "#333747",
|
|
573
|
+
"inputOption.activeBorder": "#A6ACCD30",
|
|
574
|
+
"list.activeSelectionBackground": "#292D3E",
|
|
575
|
+
"list.activeSelectionForeground": "#80CBC4",
|
|
576
|
+
"list.dropBackground": "#f0717880",
|
|
577
|
+
"list.focusBackground": "#A6ACCD20",
|
|
578
|
+
"list.focusForeground": "#A6ACCD",
|
|
579
|
+
"list.highlightForeground": "#80CBC4",
|
|
580
|
+
"list.hoverBackground": "#292D3E",
|
|
581
|
+
"list.inactiveSelectionBackground": "#00000030",
|
|
582
|
+
"activityBar.background": "#292D3E",
|
|
583
|
+
"activityBar.dropBackground": "#f0717880",
|
|
584
|
+
"activityBarBadge.background": "#80CBC4",
|
|
585
|
+
"activityBarBadge.foreground": "#000000",
|
|
586
|
+
"badge.background": "#00000030",
|
|
587
|
+
"badge.foreground": "#676E95",
|
|
588
|
+
"sideBar.background": "#292D3E",
|
|
589
|
+
"sideBarSectionHeader.background": "#292D3E",
|
|
590
|
+
"editorGroup.dropBackground": "#f0717880",
|
|
591
|
+
"editorGroup.focusedEmptyBorder": "#f07178",
|
|
592
|
+
"editorGroupHeader.tabsBackground": "#292D3E",
|
|
593
|
+
"tab.border": "#292D3E",
|
|
594
|
+
"tab.activeBorder": "#80CBC4",
|
|
595
|
+
"tab.inactiveBackground": "#292D3E",
|
|
596
|
+
"tab.activeModifiedBorder": "#676E95",
|
|
597
|
+
"tab.inactiveModifiedBorder": "#904348",
|
|
598
|
+
"tab.unfocusedActiveModifiedBorder": "#c05a60",
|
|
599
|
+
"tab.unfocusedInactiveModifiedBorder": "#904348",
|
|
600
|
+
"editor.background": "#00000000",
|
|
601
|
+
"editor.foreground": "#A6ACCD",
|
|
602
|
+
"editorLineNumber.foreground": "#3A3F58",
|
|
603
|
+
"editorLineNumber.activeForeground": "#676E95",
|
|
604
|
+
"editorCursor.foreground": "#FFCC00",
|
|
605
|
+
"editor.selectionBackground": "#717CB450",
|
|
606
|
+
"editor.selectionHighlightBackground": "#FFCC0020",
|
|
607
|
+
"editor.wordHighlightBackground": "#ff9cac30",
|
|
608
|
+
"editor.wordHighlightStrongBackground": "#C3E88D30",
|
|
609
|
+
"editor.findMatchHighlight": "#A6ACCD",
|
|
610
|
+
"editor.findRangeHighlightBackground": "#FFCB6B30",
|
|
611
|
+
"editor.lineHighlightBorder": "#00000000",
|
|
612
|
+
"editor.rangeHighlightBackground": "#FFFFFF0d",
|
|
613
|
+
"editorWhitespace.foreground": "#A6ACCD40",
|
|
614
|
+
"editorWidget.background": "#292D3E",
|
|
615
|
+
"editorHoverWidget.background": "#292D3E",
|
|
616
|
+
"editorMarkerNavigation.background": "#A6ACCD05",
|
|
617
|
+
"peekView.border": "#00000030",
|
|
618
|
+
"peekViewEditor.background": "#A6ACCD05",
|
|
619
|
+
"peekViewResult.background": "#A6ACCD05",
|
|
620
|
+
"peekViewTitle.background": "#A6ACCD05",
|
|
621
|
+
"panel.background": "#292D3E",
|
|
622
|
+
"panel.border": "#292D3E60",
|
|
623
|
+
"panelTitle.activeBorder": "#80CBC4",
|
|
624
|
+
"panelTitle.inactiveForeground": "#A6ACCD",
|
|
625
|
+
"statusBar.background": "#292D3E",
|
|
626
|
+
"statusBar.debuggingBackground": "#C792EA",
|
|
627
|
+
"statusBar.debuggingForeground": "#ffffff",
|
|
628
|
+
"statusBar.noFolderBackground": "#292D3E",
|
|
629
|
+
"statusBarItem.activeBackground": "#f0717880",
|
|
630
|
+
"statusBarItem.hoverBackground": "#676E9520",
|
|
631
|
+
"statusBarItem.remoteBackground": "#80CBC4",
|
|
632
|
+
"statusBarItem.remoteForeground": "#000000",
|
|
633
|
+
"titleBar.activeBackground": "#292D3E",
|
|
634
|
+
"pickerGroup.border": "#FFFFFF1a",
|
|
635
|
+
"terminal.ansiBlack": "#000000",
|
|
636
|
+
"terminal.ansiBlue": "#82AAFF",
|
|
637
|
+
"terminal.ansiBrightBlack": "#676E95",
|
|
638
|
+
"terminal.ansiBrightBlue": "#82AAFF",
|
|
639
|
+
"terminal.ansiBrightCyan": "#89DDFF",
|
|
640
|
+
"terminal.ansiBrightGreen": "#C3E88D",
|
|
641
|
+
"terminal.ansiBrightMagenta": "#C792EA",
|
|
642
|
+
"terminal.ansiBrightRed": "#f07178",
|
|
643
|
+
"terminal.ansiBrightWhite": "#ffffff",
|
|
644
|
+
"terminal.ansiBrightYellow": "#FFCB6B",
|
|
645
|
+
"terminal.ansiCyan": "#89DDFF",
|
|
646
|
+
"terminal.ansiGreen": "#C3E88D",
|
|
647
|
+
"terminal.ansiMagenta": "#C792EA",
|
|
648
|
+
"terminal.ansiRed": "#f07178",
|
|
649
|
+
"terminal.ansiWhite": "#ffffff",
|
|
650
|
+
"terminal.ansiYellow": "#FFCB6B",
|
|
651
|
+
"debugToolBar.background": "#292D3E",
|
|
652
|
+
"selection.background": "#00000080",
|
|
653
|
+
"editorRuler.foreground": "#4E5579",
|
|
654
|
+
"widget.shadow": "#00000030",
|
|
655
|
+
"scrollbar.shadow": "#00000030",
|
|
656
|
+
"editorLink.activeForeground": "#A6ACCD",
|
|
657
|
+
"progressBar.background": "#80CBC4",
|
|
658
|
+
"pickerGroup.foreground": "#80CBC4",
|
|
659
|
+
"tree.indentGuidesStroke": "#4E5579",
|
|
660
|
+
"terminalCursor.foreground": "#FFCB6B",
|
|
661
|
+
"terminalCursor.background": "#000000",
|
|
662
|
+
"inputOption.activeBackground": "#A6ACCD30",
|
|
663
|
+
"textLink.foreground": "#80CBC4",
|
|
664
|
+
"textLink.activeForeground": "#A6ACCD",
|
|
665
|
+
"sideBar.foreground": "#676E95",
|
|
666
|
+
"sideBar.border": "#292D3E60",
|
|
667
|
+
"sideBarTitle.foreground": "#A6ACCD",
|
|
668
|
+
"sideBarSectionHeader.border": "#292D3E60",
|
|
669
|
+
"panel.dropBackground": "#A6ACCD",
|
|
670
|
+
"panelTitle.activeForeground": "#FFFFFF",
|
|
671
|
+
"editor.lineHighlightBackground": "#00000050",
|
|
672
|
+
"editor.findMatchBackground": "#000000",
|
|
673
|
+
"editor.findMatchHighlightBackground": "#00000050",
|
|
674
|
+
"editor.findMatchBorder": "#80CBC4",
|
|
675
|
+
"editor.findMatchHighlightBorder": "#ffffff30",
|
|
676
|
+
"editorIndentGuide.background": "#4E557970",
|
|
677
|
+
"editorIndentGuide.activeBackground": "#4E5579",
|
|
678
|
+
"editorGroup.border": "#00000030",
|
|
679
|
+
"editorGutter.modifiedBackground": "#82AAFF60",
|
|
680
|
+
"editorGutter.addedBackground": "#C3E88D60",
|
|
681
|
+
"editorGutter.deletedBackground": "#f0717860",
|
|
682
|
+
"activityBar.border": "#292D3E60",
|
|
683
|
+
"activityBar.foreground": "#A6ACCD",
|
|
684
|
+
"activityBar.activeBorder": "#80CBC4",
|
|
685
|
+
"extensionBadge.remoteForeground": "#A6ACCD",
|
|
686
|
+
"scrollbarSlider.background": "#A6ACCD20",
|
|
687
|
+
"scrollbarSlider.hoverBackground": "#A6ACCD10",
|
|
688
|
+
"scrollbarSlider.activeBackground": "#80CBC4",
|
|
689
|
+
"tab.unfocusedActiveBorder": "#676E95",
|
|
690
|
+
"tab.activeForeground": "#FFFFFF",
|
|
691
|
+
"tab.inactiveForeground": "#676E95",
|
|
692
|
+
"tab.activeBackground": "#292D3E",
|
|
693
|
+
"tab.unfocusedActiveForeground": "#A6ACCD",
|
|
694
|
+
"editorWidget.resizeBorder": "#80CBC4",
|
|
695
|
+
"editorWidget.border": "#80CBC4",
|
|
696
|
+
"statusBar.border": "#292D3E60",
|
|
697
|
+
"statusBar.foreground": "#676E95",
|
|
698
|
+
"editorBracketMatch.border": "#FFCC0050",
|
|
699
|
+
"editorBracketMatch.background": "#292D3E",
|
|
700
|
+
"editorOverviewRuler.findMatchForeground": "#80CBC4",
|
|
701
|
+
"editorOverviewRuler.border": "#292D3E",
|
|
702
|
+
"editorOverviewRuler.errorForeground": "#f0717840",
|
|
703
|
+
"editorOverviewRuler.infoForeground": "#82AAFF40",
|
|
704
|
+
"editorOverviewRuler.warningForeground": "#FFCB6B40",
|
|
705
|
+
"editorInfo.foreground": "#82AAFF70",
|
|
706
|
+
"editorWarning.foreground": "#FFCB6B70",
|
|
707
|
+
"editorError.foreground": "#f0717870",
|
|
708
|
+
"editorHoverWidget.border": "#FFFFFF10",
|
|
709
|
+
"titleBar.activeForeground": "#A6ACCD",
|
|
710
|
+
"titleBar.inactiveBackground": "#292D3E",
|
|
711
|
+
"titleBar.inactiveForeground": "#676E95",
|
|
712
|
+
"titleBar.border": "#292D3E60",
|
|
713
|
+
"input.foreground": "#A6ACCD",
|
|
714
|
+
"input.placeholderForeground": "#A6ACCD60",
|
|
715
|
+
"input.border": "#FFFFFF10",
|
|
716
|
+
"inputValidation.errorBorder": "#f0717850",
|
|
717
|
+
"inputValidation.infoBorder": "#82AAFF50",
|
|
718
|
+
"inputValidation.warningBorder": "#FFCB6B50",
|
|
719
|
+
"dropdown.border": "#FFFFFF10",
|
|
720
|
+
"quickInput.background": "#292D3E",
|
|
721
|
+
"quickInput.foreground": "#676E95",
|
|
722
|
+
"list.hoverForeground": "#FFFFFF",
|
|
723
|
+
"list.inactiveSelectionForeground": "#80CBC4",
|
|
724
|
+
"editorSuggestWidget.background": "#292D3E",
|
|
725
|
+
"editorSuggestWidget.foreground": "#A6ACCD",
|
|
726
|
+
"editorSuggestWidget.highlightForeground": "#80CBC4",
|
|
727
|
+
"editorSuggestWidget.selectedBackground": "#00000050",
|
|
728
|
+
"editorSuggestWidget.border": "#FFFFFF10",
|
|
729
|
+
"diffEditor.insertedTextBackground": "#89DDFF20",
|
|
730
|
+
"diffEditor.removedTextBackground": "#ff9cac20",
|
|
731
|
+
"notifications.background": "#292D3E",
|
|
732
|
+
"notifications.foreground": "#A6ACCD",
|
|
733
|
+
"notificationLink.foreground": "#80CBC4",
|
|
734
|
+
"extensionButton.prominentBackground": "#C3E88D90",
|
|
735
|
+
"extensionButton.prominentHoverBackground": "#C3E88D",
|
|
736
|
+
"extensionButton.prominentForeground": "#000000",
|
|
737
|
+
"peekViewEditorGutter.background": "#A6ACCD05",
|
|
738
|
+
"peekViewTitleDescription.foreground": "#A6ACCD60",
|
|
739
|
+
"peekViewResult.matchHighlightBackground": "#717CB450",
|
|
740
|
+
"peekViewEditor.matchHighlightBackground": "#717CB450",
|
|
741
|
+
"peekViewResult.selectionBackground": "#676E9570",
|
|
742
|
+
"gitDecoration.deletedResourceForeground": "#f0717890",
|
|
743
|
+
"gitDecoration.conflictingResourceForeground": "#FFCB6B90",
|
|
744
|
+
"gitDecoration.modifiedResourceForeground": "#82AAFF90",
|
|
745
|
+
"gitDecoration.untrackedResourceForeground": "#C3E88D90",
|
|
746
|
+
"gitDecoration.ignoredResourceForeground": "#676E9590",
|
|
747
|
+
"breadcrumb.background": "#292D3E",
|
|
748
|
+
"breadcrumb.foreground": "#676E95",
|
|
749
|
+
"breadcrumb.focusForeground": "#A6ACCD",
|
|
750
|
+
"breadcrumb.activeSelectionForeground": "#80CBC4",
|
|
751
|
+
"breadcrumbPicker.background": "#292D3E",
|
|
752
|
+
"menu.background": "#292D3E",
|
|
753
|
+
"menu.foreground": "#A6ACCD",
|
|
754
|
+
"menu.selectionBackground": "#00000050",
|
|
755
|
+
"menu.selectionForeground": "#80CBC4",
|
|
756
|
+
"menu.selectionBorder": "#00000030",
|
|
757
|
+
"menu.separatorBackground": "#A6ACCD",
|
|
758
|
+
"menubar.selectionBackground": "#00000030",
|
|
759
|
+
"menubar.selectionForeground": "#80CBC4",
|
|
760
|
+
"menubar.selectionBorder": "#00000030",
|
|
761
|
+
"settings.dropdownForeground": "#A6ACCD",
|
|
762
|
+
"settings.dropdownBackground": "#292D3E",
|
|
763
|
+
"settings.numberInputForeground": "#A6ACCD",
|
|
764
|
+
"settings.numberInputBackground": "#292D3E",
|
|
765
|
+
"settings.textInputForeground": "#A6ACCD",
|
|
766
|
+
"settings.textInputBackground": "#292D3E",
|
|
767
|
+
"settings.headerForeground": "#80CBC4",
|
|
768
|
+
"settings.modifiedItemIndicator": "#80CBC4",
|
|
769
|
+
"settings.checkboxBackground": "#292D3E",
|
|
770
|
+
"settings.checkboxForeground": "#A6ACCD",
|
|
771
|
+
"listFilterWidget.background": "#00000030",
|
|
772
|
+
"listFilterWidget.outline": "#00000030",
|
|
773
|
+
"listFilterWidget.noMatchesOutline": "#00000030"
|
|
774
|
+
}
|
|
775
|
+
}
|