@journeyapps-labs/reactor-mod-editor 0.0.0-dev-20250801180850
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 +22 -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,579 @@
|
|
|
1
|
+
{
|
|
2
|
+
name: 'Dark+ (default dark)',
|
|
3
|
+
type: 'dark',
|
|
4
|
+
colors: {
|
|
5
|
+
'list.dropBackground': '#383b3d',
|
|
6
|
+
'editor.background': '#1e1e1e',
|
|
7
|
+
'editor.foreground': '#d4d4d4',
|
|
8
|
+
'editor.selectionHighlightBackground': '#add6ff26',
|
|
9
|
+
'editor.inactiveSelectionBackground': '#3a3d41',
|
|
10
|
+
'editorIndentGuide.activeBackground': '#707070',
|
|
11
|
+
'editorIndentGuide.background': '#404040',
|
|
12
|
+
'activityBarBadge.background': '#007acc',
|
|
13
|
+
'sideBarTitle.foreground': '#bbbbbb',
|
|
14
|
+
'editorGutter.addedBackground': '#608b4e',
|
|
15
|
+
'editorOverviewRuler.addedForeground': '#608b4e',
|
|
16
|
+
'editorGutter.modifiedBackground': '#d7ba7d',
|
|
17
|
+
'editorOverviewRuler.modifiedForeground': '#d7ba7d',
|
|
18
|
+
'editorGutter.deletedBackground': '#d16969',
|
|
19
|
+
'editorOverviewRuler.deletedForeground': '#d16969',
|
|
20
|
+
'editorError.foreground': '#d16969',
|
|
21
|
+
'editorOverviewRuler.errorForeground': '#d16969',
|
|
22
|
+
'editorWarning.foreground': '#d7ba7d',
|
|
23
|
+
'editorOverviewRuler.warningForeground': '#d7ba7d',
|
|
24
|
+
'editorInfo.foreground': '#9cdcfe',
|
|
25
|
+
'editorOverviewRuler.infoForeground': '#d4d4d4',
|
|
26
|
+
'gitDecoration.modifiedResourceForeground': '#608b4e',
|
|
27
|
+
'gitDecoration.addedResourceForeground': '#608b4e',
|
|
28
|
+
'gitDecoration.deletedResourceForeground': '#d7ba7d',
|
|
29
|
+
'gitDecoration.untrackedResourceForeground': '#d7ba7d',
|
|
30
|
+
'gitDecoration.ignoredResourceForeground': '#808080',
|
|
31
|
+
'gitDecoration.conflictingResourceForeground': '#d16969',
|
|
32
|
+
'terminal.selectionBackground': '#add6ff26',
|
|
33
|
+
'terminalCursor.foreground': '#808080',
|
|
34
|
+
'terminal.background': '#1e1e1e',
|
|
35
|
+
'terminal.foreground': '#d4d4d4',
|
|
36
|
+
'terminal.ansiBlack': '#1e1e1e',
|
|
37
|
+
'terminal.ansiBrightBlack': '#808080',
|
|
38
|
+
'terminal.ansiRed': '#d16969',
|
|
39
|
+
'terminal.ansiBrightRed': '#d16969',
|
|
40
|
+
'terminal.ansiBlue': '#569cd6',
|
|
41
|
+
'terminal.ansiBrightBlue': '#9cdcfe',
|
|
42
|
+
'terminal.ansiGreen': '#608b4e',
|
|
43
|
+
'terminal.ansiBrightGreen': '#b5cea8',
|
|
44
|
+
'terminal.ansiCyan': '#4ec9b0',
|
|
45
|
+
'terminal.ansiBrightCyan': '#4ec9b0',
|
|
46
|
+
'terminal.ansiYellow': '#d7ba7d',
|
|
47
|
+
'terminal.ansiBrightYellow': '#ce9178',
|
|
48
|
+
'terminal.ansiMagenta': '#c586c0',
|
|
49
|
+
'terminal.ansiBrightMagenta': '#c586c0',
|
|
50
|
+
'terminal.ansiWhite': '#d4d4d4',
|
|
51
|
+
'terminal.ansiBrightWhite': '#808080'
|
|
52
|
+
},
|
|
53
|
+
tokenColors: [
|
|
54
|
+
// JourneyApps override
|
|
55
|
+
{
|
|
56
|
+
name: '= sign in XML and HTML tags',
|
|
57
|
+
scope: 'meta.tag',
|
|
58
|
+
settings: {
|
|
59
|
+
foreground: '#808080'
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
// End JourneyApps override
|
|
63
|
+
// https://github.com/microsoft/vscode/blob/371f6306f9de7e704870e7d7263a96ebc5eb2c88/extensions/theme-defaults/themes/dark_vs.json
|
|
64
|
+
{
|
|
65
|
+
scope: ['meta.embedded', 'source.groovy.embedded'],
|
|
66
|
+
settings: {
|
|
67
|
+
foreground: '#D4D4D4'
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
scope: 'emphasis',
|
|
72
|
+
settings: {
|
|
73
|
+
fontStyle: 'italic'
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
scope: 'strong',
|
|
78
|
+
settings: {
|
|
79
|
+
fontStyle: 'bold'
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
scope: 'header',
|
|
84
|
+
settings: {
|
|
85
|
+
foreground: '#000080'
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
scope: 'comment',
|
|
90
|
+
settings: {
|
|
91
|
+
foreground: '#6A9955'
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
scope: 'constant.language',
|
|
96
|
+
settings: {
|
|
97
|
+
foreground: '#569cd6'
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
scope: [
|
|
102
|
+
'constant.numeric',
|
|
103
|
+
'entity.name.operator.custom-literal.number',
|
|
104
|
+
'variable.other.enummember',
|
|
105
|
+
'keyword.operator.plus.exponent',
|
|
106
|
+
'keyword.operator.minus.exponent'
|
|
107
|
+
],
|
|
108
|
+
settings: {
|
|
109
|
+
foreground: '#b5cea8'
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
scope: 'constant.regexp',
|
|
114
|
+
settings: {
|
|
115
|
+
foreground: '#646695'
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
scope: 'entity.name.tag',
|
|
120
|
+
settings: {
|
|
121
|
+
foreground: '#569cd6'
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
scope: 'entity.name.tag.css',
|
|
126
|
+
settings: {
|
|
127
|
+
foreground: '#d7ba7d'
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
scope: 'entity.other.attribute-name',
|
|
132
|
+
settings: {
|
|
133
|
+
foreground: '#9cdcfe'
|
|
134
|
+
}
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
scope: [
|
|
138
|
+
'entity.other.attribute-name.class.css',
|
|
139
|
+
'entity.other.attribute-name.class.mixin.css',
|
|
140
|
+
'entity.other.attribute-name.id.css',
|
|
141
|
+
'entity.other.attribute-name.parent-selector.css',
|
|
142
|
+
'entity.other.attribute-name.pseudo-class.css',
|
|
143
|
+
'entity.other.attribute-name.pseudo-element.css',
|
|
144
|
+
'source.css.less entity.other.attribute-name.id',
|
|
145
|
+
'entity.other.attribute-name.attribute.scss',
|
|
146
|
+
'entity.other.attribute-name.scss'
|
|
147
|
+
],
|
|
148
|
+
settings: {
|
|
149
|
+
foreground: '#d7ba7d'
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
scope: 'invalid',
|
|
154
|
+
settings: {
|
|
155
|
+
foreground: '#f44747'
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
scope: 'markup.underline',
|
|
160
|
+
settings: {
|
|
161
|
+
fontStyle: 'underline'
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
scope: 'markup.bold',
|
|
166
|
+
settings: {
|
|
167
|
+
fontStyle: 'bold',
|
|
168
|
+
foreground: '#569cd6'
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
scope: 'markup.heading',
|
|
173
|
+
settings: {
|
|
174
|
+
fontStyle: 'bold',
|
|
175
|
+
foreground: '#569cd6'
|
|
176
|
+
}
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
scope: 'markup.italic',
|
|
180
|
+
settings: {
|
|
181
|
+
fontStyle: 'italic'
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
scope: 'markup.inserted',
|
|
186
|
+
settings: {
|
|
187
|
+
foreground: '#b5cea8'
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
scope: 'markup.deleted',
|
|
192
|
+
settings: {
|
|
193
|
+
foreground: '#ce9178'
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
scope: 'markup.changed',
|
|
198
|
+
settings: {
|
|
199
|
+
foreground: '#569cd6'
|
|
200
|
+
}
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
scope: 'punctuation.definition.quote.begin.markdown',
|
|
204
|
+
settings: {
|
|
205
|
+
foreground: '#6A9955'
|
|
206
|
+
}
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
scope: 'punctuation.definition.list.begin.markdown',
|
|
210
|
+
settings: {
|
|
211
|
+
foreground: '#6796e6'
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
scope: 'markup.inline.raw',
|
|
216
|
+
settings: {
|
|
217
|
+
foreground: '#ce9178'
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
name: 'brackets of XML/HTML tags',
|
|
222
|
+
scope: 'punctuation.definition.tag',
|
|
223
|
+
settings: {
|
|
224
|
+
foreground: '#808080'
|
|
225
|
+
}
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
scope: ['meta.preprocessor', 'entity.name.function.preprocessor'],
|
|
229
|
+
settings: {
|
|
230
|
+
foreground: '#569cd6'
|
|
231
|
+
}
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
scope: 'meta.preprocessor.string',
|
|
235
|
+
settings: {
|
|
236
|
+
foreground: '#ce9178'
|
|
237
|
+
}
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
scope: 'meta.preprocessor.numeric',
|
|
241
|
+
settings: {
|
|
242
|
+
foreground: '#b5cea8'
|
|
243
|
+
}
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
scope: 'meta.structure.dictionary.key.python',
|
|
247
|
+
settings: {
|
|
248
|
+
foreground: '#9cdcfe'
|
|
249
|
+
}
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
scope: 'meta.diff.header',
|
|
253
|
+
settings: {
|
|
254
|
+
foreground: '#569cd6'
|
|
255
|
+
}
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
scope: 'storage',
|
|
259
|
+
settings: {
|
|
260
|
+
foreground: '#569cd6'
|
|
261
|
+
}
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
scope: 'storage.type',
|
|
265
|
+
settings: {
|
|
266
|
+
foreground: '#569cd6'
|
|
267
|
+
}
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
scope: ['storage.modifier', 'keyword.operator.noexcept'],
|
|
271
|
+
settings: {
|
|
272
|
+
foreground: '#569cd6'
|
|
273
|
+
}
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
scope: ['string', 'entity.name.operator.custom-literal.string', 'meta.embedded.assembly'],
|
|
277
|
+
settings: {
|
|
278
|
+
foreground: '#ce9178'
|
|
279
|
+
}
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
scope: 'string.tag',
|
|
283
|
+
settings: {
|
|
284
|
+
foreground: '#ce9178'
|
|
285
|
+
}
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
scope: 'string.value',
|
|
289
|
+
settings: {
|
|
290
|
+
foreground: '#ce9178'
|
|
291
|
+
}
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
scope: 'string.regexp',
|
|
295
|
+
settings: {
|
|
296
|
+
foreground: '#d16969'
|
|
297
|
+
}
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
name: 'String interpolation',
|
|
301
|
+
scope: [
|
|
302
|
+
'punctuation.definition.template-expression.begin',
|
|
303
|
+
'punctuation.definition.template-expression.end',
|
|
304
|
+
'punctuation.section.embedded'
|
|
305
|
+
],
|
|
306
|
+
settings: {
|
|
307
|
+
foreground: '#569cd6'
|
|
308
|
+
}
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
name: 'Reset JavaScript string interpolation expression',
|
|
312
|
+
scope: ['meta.template.expression'],
|
|
313
|
+
settings: {
|
|
314
|
+
foreground: '#d4d4d4'
|
|
315
|
+
}
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
scope: [
|
|
319
|
+
'support.type.vendored.property-name',
|
|
320
|
+
'support.type.property-name',
|
|
321
|
+
'variable.css',
|
|
322
|
+
'variable.scss',
|
|
323
|
+
'variable.other.less',
|
|
324
|
+
'source.coffee.embedded'
|
|
325
|
+
],
|
|
326
|
+
settings: {
|
|
327
|
+
foreground: '#9cdcfe'
|
|
328
|
+
}
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
scope: 'keyword',
|
|
332
|
+
settings: {
|
|
333
|
+
foreground: '#569cd6'
|
|
334
|
+
}
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
scope: 'keyword.control',
|
|
338
|
+
settings: {
|
|
339
|
+
foreground: '#569cd6'
|
|
340
|
+
}
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
scope: 'keyword.operator',
|
|
344
|
+
settings: {
|
|
345
|
+
foreground: '#d4d4d4'
|
|
346
|
+
}
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
scope: [
|
|
350
|
+
'keyword.operator.new',
|
|
351
|
+
'keyword.operator.expression',
|
|
352
|
+
'keyword.operator.cast',
|
|
353
|
+
'keyword.operator.sizeof',
|
|
354
|
+
'keyword.operator.alignof',
|
|
355
|
+
'keyword.operator.typeid',
|
|
356
|
+
'keyword.operator.alignas',
|
|
357
|
+
'keyword.operator.instanceof',
|
|
358
|
+
'keyword.operator.logical.python',
|
|
359
|
+
'keyword.operator.wordlike'
|
|
360
|
+
],
|
|
361
|
+
settings: {
|
|
362
|
+
foreground: '#569cd6'
|
|
363
|
+
}
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
scope: 'keyword.other.unit',
|
|
367
|
+
settings: {
|
|
368
|
+
foreground: '#b5cea8'
|
|
369
|
+
}
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
scope: ['punctuation.section.embedded.begin.php', 'punctuation.section.embedded.end.php'],
|
|
373
|
+
settings: {
|
|
374
|
+
foreground: '#569cd6'
|
|
375
|
+
}
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
scope: 'support.function.git-rebase',
|
|
379
|
+
settings: {
|
|
380
|
+
foreground: '#9cdcfe'
|
|
381
|
+
}
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
scope: 'constant.sha.git-rebase',
|
|
385
|
+
settings: {
|
|
386
|
+
foreground: '#b5cea8'
|
|
387
|
+
}
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
name: 'coloring of the Java import and package identifiers',
|
|
391
|
+
scope: ['storage.modifier.import.java', 'variable.language.wildcard.java', 'storage.modifier.package.java'],
|
|
392
|
+
settings: {
|
|
393
|
+
foreground: '#d4d4d4'
|
|
394
|
+
}
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
name: 'this.self',
|
|
398
|
+
scope: 'variable.language',
|
|
399
|
+
settings: {
|
|
400
|
+
foreground: '#569cd6'
|
|
401
|
+
}
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
name: 'Function declarations',
|
|
405
|
+
scope: [
|
|
406
|
+
'entity.name.function',
|
|
407
|
+
'support.function',
|
|
408
|
+
'support.constant.handlebars',
|
|
409
|
+
'source.powershell variable.other.member',
|
|
410
|
+
'entity.name.operator.custom-literal' // See https://en.cppreference.com/w/cpp/language/user_literal
|
|
411
|
+
],
|
|
412
|
+
settings: {
|
|
413
|
+
foreground: '#DCDCAA'
|
|
414
|
+
}
|
|
415
|
+
},
|
|
416
|
+
// https://github.com/microsoft/vscode/blob/371f6306f9de7e704870e7d7263a96ebc5eb2c88/extensions/theme-defaults/themes/dark_plus.json
|
|
417
|
+
{
|
|
418
|
+
name: 'Types declaration and references',
|
|
419
|
+
scope: [
|
|
420
|
+
'meta.return-type',
|
|
421
|
+
'support.class',
|
|
422
|
+
'support.type',
|
|
423
|
+
'entity.name.type',
|
|
424
|
+
'entity.name.namespace',
|
|
425
|
+
'entity.other.attribute',
|
|
426
|
+
'entity.name.scope-resolution',
|
|
427
|
+
'entity.name.class',
|
|
428
|
+
'storage.type.numeric.go',
|
|
429
|
+
'storage.type.byte.go',
|
|
430
|
+
'storage.type.boolean.go',
|
|
431
|
+
'storage.type.string.go',
|
|
432
|
+
'storage.type.uintptr.go',
|
|
433
|
+
'storage.type.error.go',
|
|
434
|
+
'storage.type.rune.go',
|
|
435
|
+
'storage.type.cs',
|
|
436
|
+
'storage.type.generic.cs',
|
|
437
|
+
'storage.type.modifier.cs',
|
|
438
|
+
'storage.type.variable.cs',
|
|
439
|
+
'storage.type.annotation.java',
|
|
440
|
+
'storage.type.generic.java',
|
|
441
|
+
'storage.type.java',
|
|
442
|
+
'storage.type.object.array.java',
|
|
443
|
+
'storage.type.primitive.array.java',
|
|
444
|
+
'storage.type.primitive.java',
|
|
445
|
+
'storage.type.token.java',
|
|
446
|
+
'storage.type.groovy',
|
|
447
|
+
'storage.type.annotation.groovy',
|
|
448
|
+
'storage.type.parameters.groovy',
|
|
449
|
+
'storage.type.generic.groovy',
|
|
450
|
+
'storage.type.object.array.groovy',
|
|
451
|
+
'storage.type.primitive.array.groovy',
|
|
452
|
+
'storage.type.primitive.groovy'
|
|
453
|
+
],
|
|
454
|
+
settings: {
|
|
455
|
+
foreground: '#4EC9B0'
|
|
456
|
+
}
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
name: 'Types declaration and references, TS grammar specific',
|
|
460
|
+
scope: [
|
|
461
|
+
'meta.type.cast.expr',
|
|
462
|
+
'meta.type.new.expr',
|
|
463
|
+
'support.constant.math',
|
|
464
|
+
'support.constant.dom',
|
|
465
|
+
'support.constant.json',
|
|
466
|
+
'entity.other.inherited-class'
|
|
467
|
+
],
|
|
468
|
+
settings: {
|
|
469
|
+
foreground: '#4EC9B0'
|
|
470
|
+
}
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
name: 'Control flow / Special keywords',
|
|
474
|
+
scope: [
|
|
475
|
+
'keyword.control',
|
|
476
|
+
'source.cpp keyword.operator.new',
|
|
477
|
+
'keyword.operator.delete',
|
|
478
|
+
'keyword.other.using',
|
|
479
|
+
'keyword.other.operator',
|
|
480
|
+
'entity.name.operator'
|
|
481
|
+
],
|
|
482
|
+
settings: {
|
|
483
|
+
foreground: '#C586C0'
|
|
484
|
+
}
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
name: 'Variable and parameter name',
|
|
488
|
+
scope: ['variable', 'meta.definition.variable.name', 'support.variable', 'entity.name.variable'],
|
|
489
|
+
settings: {
|
|
490
|
+
foreground: '#9CDCFE'
|
|
491
|
+
}
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
name: 'Constants and enums',
|
|
495
|
+
scope: ['variable.other.constant', 'variable.other.enummember'],
|
|
496
|
+
settings: {
|
|
497
|
+
foreground: '#51B6C4'
|
|
498
|
+
}
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
name: 'Object keys, TS grammar specific',
|
|
502
|
+
scope: ['meta.object-literal.key'],
|
|
503
|
+
settings: {
|
|
504
|
+
foreground: '#9CDCFE'
|
|
505
|
+
}
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
name: 'CSS property value',
|
|
509
|
+
scope: [
|
|
510
|
+
'support.constant.property-value',
|
|
511
|
+
'support.constant.font-name',
|
|
512
|
+
'support.constant.media-type',
|
|
513
|
+
'support.constant.media',
|
|
514
|
+
'constant.other.color.rgb-value',
|
|
515
|
+
'constant.other.rgb-value',
|
|
516
|
+
'support.constant.color'
|
|
517
|
+
],
|
|
518
|
+
settings: {
|
|
519
|
+
foreground: '#CE9178'
|
|
520
|
+
}
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
name: 'Regular expression groups',
|
|
524
|
+
scope: [
|
|
525
|
+
'punctuation.definition.group.regexp',
|
|
526
|
+
'punctuation.definition.group.assertion.regexp',
|
|
527
|
+
'punctuation.definition.character-class.regexp',
|
|
528
|
+
'punctuation.character.set.begin.regexp',
|
|
529
|
+
'punctuation.character.set.end.regexp',
|
|
530
|
+
'keyword.operator.negation.regexp',
|
|
531
|
+
'support.other.parenthesis.regexp'
|
|
532
|
+
],
|
|
533
|
+
settings: {
|
|
534
|
+
foreground: '#CE9178'
|
|
535
|
+
}
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
scope: [
|
|
539
|
+
'constant.character.character-class.regexp',
|
|
540
|
+
'constant.other.character-class.set.regexp',
|
|
541
|
+
'constant.other.character-class.regexp',
|
|
542
|
+
'constant.character.set.regexp'
|
|
543
|
+
],
|
|
544
|
+
settings: {
|
|
545
|
+
foreground: '#d16969'
|
|
546
|
+
}
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
scope: ['keyword.operator.or.regexp', 'keyword.control.anchor.regexp'],
|
|
550
|
+
settings: {
|
|
551
|
+
foreground: '#DCDCAA'
|
|
552
|
+
}
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
scope: 'keyword.operator.quantifier.regexp',
|
|
556
|
+
settings: {
|
|
557
|
+
foreground: '#d7ba7d'
|
|
558
|
+
}
|
|
559
|
+
},
|
|
560
|
+
{
|
|
561
|
+
scope: 'constant.character',
|
|
562
|
+
settings: {
|
|
563
|
+
foreground: '#569cd6'
|
|
564
|
+
}
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
scope: 'constant.character.escape',
|
|
568
|
+
settings: {
|
|
569
|
+
foreground: '#d7ba7d'
|
|
570
|
+
}
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
scope: 'entity.name.label',
|
|
574
|
+
settings: {
|
|
575
|
+
foreground: '#C8C8C8'
|
|
576
|
+
}
|
|
577
|
+
}
|
|
578
|
+
]
|
|
579
|
+
}
|