@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.
Files changed (170) hide show
  1. package/README.md +10 -0
  2. package/dist/@types/EditorModule.d.ts +7 -0
  3. package/dist/@types/MonacoCommandPalletSearchEngine.d.ts +21 -0
  4. package/dist/@types/actions/ChangeEditorThemeAction.d.ts +9 -0
  5. package/dist/@types/index.d.ts +16 -0
  6. package/dist/@types/languages/languages.d.ts +39 -0
  7. package/dist/@types/languages/logs.d.ts +3 -0
  8. package/dist/@types/providers/EditorThemeProvider.d.ts +14 -0
  9. package/dist/@types/settings/StoredThemesSettings.d.ts +13 -0
  10. package/dist/@types/settings/VimSupportSetting.d.ts +7 -0
  11. package/dist/@types/shortcuts/MonacoShortcut.d.ts +9 -0
  12. package/dist/@types/shortcuts/MonacoShortcutHandler.d.ts +17 -0
  13. package/dist/@types/shortcuts/MonacoShortcutMap.d.ts +83 -0
  14. package/dist/@types/stores/MonacoStore.d.ts +38 -0
  15. package/dist/@types/stores/MonacoThemeStore.d.ts +34 -0
  16. package/dist/@types/stores/keybindings/KeybindingsRegistry.d.ts +46 -0
  17. package/dist/@types/stores/keybindings/MonacoKeybindingStore.d.ts +27 -0
  18. package/dist/@types/stores/keybindings/definitions.d.ts +21 -0
  19. package/dist/@types/stores/keybindings/utils.d.ts +2 -0
  20. package/dist/@types/theme/EditorThemePreferencesWidget.d.ts +26 -0
  21. package/dist/@types/theme/SmartEditorThemePreferencesWidget.d.ts +8 -0
  22. package/dist/@types/theme/UploadVSIXThemeBtnWidget.d.ts +12 -0
  23. package/dist/@types/theme/patchThemeService.d.ts +9 -0
  24. package/dist/@types/theme/theme-utils.d.ts +61 -0
  25. package/dist/@types/theme-reactor/editor-theme-fragment.d.ts +41 -0
  26. package/dist/@types/utils/paths.d.ts +23 -0
  27. package/dist/@types/utils/useEditorStickyHeader.d.ts +8 -0
  28. package/dist/@types/widgets/DualEditorWidget.d.ts +7 -0
  29. package/dist/@types/widgets/EditorWidget.d.ts +15 -0
  30. package/dist/@types/widgets/MonacoEditorWidget.d.ts +10 -0
  31. package/dist/@types/widgets/SimpleEditorWidget.d.ts +8 -0
  32. package/dist/EditorModule.js +73 -0
  33. package/dist/EditorModule.js.map +1 -0
  34. package/dist/MonacoCommandPalletSearchEngine.js +52 -0
  35. package/dist/MonacoCommandPalletSearchEngine.js.map +1 -0
  36. package/dist/actions/ChangeEditorThemeAction.js +43 -0
  37. package/dist/actions/ChangeEditorThemeAction.js.map +1 -0
  38. package/dist/index.js +33 -0
  39. package/dist/index.js.map +1 -0
  40. package/dist/languages/languages.js +155 -0
  41. package/dist/languages/languages.js.map +1 -0
  42. package/dist/languages/logs.js +110 -0
  43. package/dist/languages/logs.js.map +1 -0
  44. package/dist/providers/EditorThemeProvider.js +26 -0
  45. package/dist/providers/EditorThemeProvider.js.map +1 -0
  46. package/dist/settings/StoredThemesSettings.js +45 -0
  47. package/dist/settings/StoredThemesSettings.js.map +1 -0
  48. package/dist/settings/VimSupportSetting.js +19 -0
  49. package/dist/settings/VimSupportSetting.js.map +1 -0
  50. package/dist/shortcuts/MonacoShortcut.js +27 -0
  51. package/dist/shortcuts/MonacoShortcut.js.map +1 -0
  52. package/dist/shortcuts/MonacoShortcutHandler.js +119 -0
  53. package/dist/shortcuts/MonacoShortcutHandler.js.map +1 -0
  54. package/dist/shortcuts/MonacoShortcutMap.js +84 -0
  55. package/dist/shortcuts/MonacoShortcutMap.js.map +1 -0
  56. package/dist/stores/MonacoStore.js +119 -0
  57. package/dist/stores/MonacoStore.js.map +1 -0
  58. package/dist/stores/MonacoThemeStore.js +143 -0
  59. package/dist/stores/MonacoThemeStore.js.map +1 -0
  60. package/dist/stores/keybindings/KeybindingsRegistry.js +131 -0
  61. package/dist/stores/keybindings/KeybindingsRegistry.js.map +1 -0
  62. package/dist/stores/keybindings/MonacoKeybindingStore.js +105 -0
  63. package/dist/stores/keybindings/MonacoKeybindingStore.js.map +1 -0
  64. package/dist/stores/keybindings/definitions.js +5 -0
  65. package/dist/stores/keybindings/definitions.js.map +1 -0
  66. package/dist/stores/keybindings/utils.js +12 -0
  67. package/dist/stores/keybindings/utils.js.map +1 -0
  68. package/dist/theme/EditorThemePreferencesWidget.js +160 -0
  69. package/dist/theme/EditorThemePreferencesWidget.js.map +1 -0
  70. package/dist/theme/SmartEditorThemePreferencesWidget.js +62 -0
  71. package/dist/theme/SmartEditorThemePreferencesWidget.js.map +1 -0
  72. package/dist/theme/UploadVSIXThemeBtnWidget.js +93 -0
  73. package/dist/theme/UploadVSIXThemeBtnWidget.js.map +1 -0
  74. package/dist/theme/patchThemeService.js +146 -0
  75. package/dist/theme/patchThemeService.js.map +1 -0
  76. package/dist/theme/theme-utils.js +65 -0
  77. package/dist/theme/theme-utils.js.map +1 -0
  78. package/dist/theme-reactor/editor-theme-fragment.js +70 -0
  79. package/dist/theme-reactor/editor-theme-fragment.js.map +1 -0
  80. package/dist/tsconfig.tsbuildinfo +1 -0
  81. package/dist/utils/paths.js +110 -0
  82. package/dist/utils/paths.js.map +1 -0
  83. package/dist/utils/useEditorStickyHeader.js +45 -0
  84. package/dist/utils/useEditorStickyHeader.js.map +1 -0
  85. package/dist/widgets/DualEditorWidget.js +79 -0
  86. package/dist/widgets/DualEditorWidget.js.map +1 -0
  87. package/dist/widgets/EditorWidget.js +85 -0
  88. package/dist/widgets/EditorWidget.js.map +1 -0
  89. package/dist/widgets/MonacoEditorWidget.js +29 -0
  90. package/dist/widgets/MonacoEditorWidget.js.map +1 -0
  91. package/dist/widgets/SimpleEditorWidget.js +71 -0
  92. package/dist/widgets/SimpleEditorWidget.js.map +1 -0
  93. package/dist-module/00a5102416a37050fa62.tmLanguage +1282 -0
  94. package/dist-module/092ac75109eb363dd826.tmLanguage +424 -0
  95. package/dist-module/100.bundle.js +1 -0
  96. package/dist-module/116.bundle.js +1 -0
  97. package/dist-module/173.bundle.js +1 -0
  98. package/dist-module/179.bundle.js +1 -0
  99. package/dist-module/18358219dee0ad14cc0c.tmLanguage +765 -0
  100. package/dist-module/195.bundle.js +1 -0
  101. package/dist-module/277.bundle.js +1 -0
  102. package/dist-module/299.bundle.js +1 -0
  103. package/dist-module/306.bundle.js +1 -0
  104. package/dist-module/344.bundle.js +1 -0
  105. package/dist-module/399345f371a7cb9eb1ba.tmLanguage +629 -0
  106. package/dist-module/404.bundle.js +4 -0
  107. package/dist-module/404.bundle.js.LICENSE.txt +6 -0
  108. package/dist-module/404.bundle.js.map +1 -0
  109. package/dist-module/43.bundle.js +1 -0
  110. package/dist-module/438.bundle.js +3 -0
  111. package/dist-module/438.bundle.js.map +1 -0
  112. package/dist-module/479.bundle.js +1 -0
  113. package/dist-module/491.bundle.js +1 -0
  114. package/dist-module/513.bundle.js +1 -0
  115. package/dist-module/549.bundle.js +1 -0
  116. package/dist-module/5e221c90a0dcbd4af855.tmLanguage +237 -0
  117. package/dist-module/6486a2df9ca5896c2cb6.tmLanguage +5739 -0
  118. package/dist-module/65.bundle.js +1 -0
  119. package/dist-module/66.bundle.js +1 -0
  120. package/dist-module/685.bundle.js +1 -0
  121. package/dist-module/6e3d5ec6699a8d147d29.wasm +0 -0
  122. package/dist-module/7.bundle.js +1 -0
  123. package/dist-module/703774d50b4d4526a465.tmLanguage +386 -0
  124. package/dist-module/717.bundle.js +2 -0
  125. package/dist-module/728.bundle.js +1 -0
  126. package/dist-module/77a7afbe329083ed0f59.tmLanguage +1183 -0
  127. package/dist-module/78.bundle.js +1 -0
  128. package/dist-module/829.bundle.js +1 -0
  129. package/dist-module/831968f77a9412d07cc2.tmLanguage +506 -0
  130. package/dist-module/862.bundle.js +1 -0
  131. package/dist-module/87.bundle.js +1 -0
  132. package/dist-module/923.bundle.js +1 -0
  133. package/dist-module/931.bundle.js +1 -0
  134. package/dist-module/933.bundle.js +3 -0
  135. package/dist-module/933.bundle.js.map +1 -0
  136. package/dist-module/970.bundle.js +1 -0
  137. package/dist-module/984.bundle.js +1 -0
  138. package/dist-module/992.bundle.js +1 -0
  139. package/dist-module/996.bundle.js +1 -0
  140. package/dist-module/9c8494157d226e95da5e.tmLanguage +1377 -0
  141. package/dist-module/a3e215de85a86294de8a.tmLanguage +385 -0
  142. package/dist-module/ba5650c2a0269a236153.tmLanguage +9349 -0
  143. package/dist-module/bundle.js +97 -0
  144. package/dist-module/bundle.js.LICENSE.txt +27 -0
  145. package/dist-module/bundle.js.map +1 -0
  146. package/dist-module/editor.worker.bundle.js +1 -0
  147. package/dist-module/f6283f7ccaed1249d9eb.ttf +0 -0
  148. package/dist-module/json.worker.bundle.js +2 -0
  149. package/dist-module/json.worker.bundle.js.LICENSE.txt +6 -0
  150. package/dist-module/yaml.worker.bundle.js +1 -0
  151. package/media/css.tmLanguage +1183 -0
  152. package/media/handlebars.tmLanguage +1282 -0
  153. package/media/html.tmLanguage +506 -0
  154. package/media/javascript.tmLanguage +5739 -0
  155. package/media/json.tmLanguage +386 -0
  156. package/media/jxml.tmLanguage +424 -0
  157. package/media/markdown.tmLanguage +1377 -0
  158. package/media/regularExpressions.tmLanguage +237 -0
  159. package/media/sql.tmLanguage +765 -0
  160. package/media/themes/ayu-light.json5 +847 -0
  161. package/media/themes/ayu-mirage.json5 +846 -0
  162. package/media/themes/journey.json5 +1061 -0
  163. package/media/themes/oxide.json5 +579 -0
  164. package/media/themes/reactor.json5 +775 -0
  165. package/media/themes/scarlet.json5 +836 -0
  166. package/media/typescript.tmLanguage +9349 -0
  167. package/media/xml.tmLanguage +385 -0
  168. package/media/yaml.tmLanguage +629 -0
  169. package/package.json +45 -0
  170. package/reactor.config.json +4 -0
@@ -0,0 +1,836 @@
1
+ {
2
+ "name": "cyberpunk scarlet",
3
+ "type": "dark",
4
+ "colors": {
5
+ "errorForeground": "#ff3270",
6
+ "foreground": "#ffffff",
7
+ "merge.commonContentBackground": "#ff004c33",
8
+ "merge.commonHeaderBackground": "#ff004c44",
9
+ "merge.currentContentBackground": "#00ff8427",
10
+ "merge.currentHeaderBackground": "#00ff8450",
11
+ "merge.incomingContentBackground": "#003cff42",
12
+ "merge.incomingHeaderBackground": "#003cff6b",
13
+ "terminalCursor.foreground": "#9dff00",
14
+ "terminal.foreground": "#00a2ff",
15
+ "debugToolBar.background": "#002212ec",
16
+ "debugToolBar.border": "#00ffc8",
17
+ "editorLink.activeForeground": "#3d81fe",
18
+ "textLink.activeForeground": "#ff0055",
19
+ "textLink.foreground": "#00ffc8",
20
+ "badge.background": "#00ffc8",
21
+ "badge.foreground": "#000807",
22
+ "button.background": "#00ff9da6",
23
+ "button.foreground": "#00140b",
24
+ "button.hoverBackground": "#00FF9C",
25
+ "extensionButton.prominentBackground": "#00ff9da6",
26
+ "extensionButton.prominentForeground": "#00140b",
27
+ "extensionButton.prominentHoverBackground": "#00FF9C",
28
+ "diffEditor.insertedTextBackground": "#00ff8427",
29
+ "diffEditor.removedTextBackground": "#ff174534",
30
+ "gitlens.gutterBackgroundColor": "#182333",
31
+ "gitlens.gutterForegroundColor": "#00e676",
32
+ "gitlens.gutterUncommittedForegroundColor": "#ffff00",
33
+ "gitlens.lineHighlightBackgroundColor": "#ff174426",
34
+ "gitlens.lineHighlightOverviewRulerColor": "#ffff00",
35
+ "gitlens.trailingLineForegroundColor": "#00ff8449",
36
+ "gitDecoration.untrackedResourceForeground": "#00ffc8",
37
+ "gitDecoration.deletedResourceForeground": "#ff004c",
38
+ "gitDecoration.modifiedResourceForeground": "#00c3ff",
39
+ "gitDecoration.conflictingResourceForeground": "#ffff00",
40
+ "gitDecoration.ignoredResourceForeground": "#c861f76e",
41
+ "gitDecoration.submoduleResourceForeground": "#ffff00",
42
+ "activityBar.background": "#101116",
43
+ "activityBar.foreground": "#ff0055",
44
+ "activityBar.border": "#101116",
45
+ "activityBarBadge.background": "#00ffc8",
46
+ "activityBarBadge.foreground": "#000807",
47
+ "editorError.foreground": "#ff1865",
48
+ "editorRuler.foreground": "#182333",
49
+ "editor.background": "#101116",
50
+ "editor.foreground": "#ff0055",
51
+ "editor.lineHighlightBackground": "#a200ff26",
52
+ "editor.lineHighlightBorder": "#ff000000",
53
+ "editor.selectionBackground": "#311b92",
54
+ "editor.selectionHighlightBackground": "#3629ec7e",
55
+ "editor.hoverHighlightBackground": "#3629ec7e",
56
+ "editorBracketMatch.background": "#ff005533",
57
+ "editorBracketMatch.border": "#ff004c",
58
+ "editorCursor.foreground": "#00ffc8",
59
+ "editorWarning.foreground": "#009550",
60
+ "editor.findMatchHighlightBackground": "#283593",
61
+ "editor.wordHighlightBackground": "#42557B",
62
+ "editor.wordHighlightStrongBackground": "#42557B",
63
+ "editorGroup.background": "#1B2738",
64
+ "editorGroup.border": "#ff00552a",
65
+ "editorGroupHeader.tabsBackground": "#101116",
66
+ "editorGroupHeader.noTabsBackground": "#101116",
67
+ "editorIndentGuide.activeBackground": "#00ffc8",
68
+ "editorIndentGuide.background": "#ff00552a",
69
+ "editorLineNumber.foreground": "#ff00557e",
70
+ "editorLineNumber.activeForeground": "#00ffc8",
71
+ "editorWhitespace.foreground": "#2B3E5A",
72
+ "editorHoverWidget.background": "#140007f8",
73
+ "editorHoverWidget.border": "#ff0055",
74
+ "editorSuggestWidget.background": "#140007f8",
75
+ "editorSuggestWidget.border": "#ff0055",
76
+ "editorSuggestWidget.selectedBackground": "#ff005533",
77
+ "editorSuggestWidget.highlightForeground": "#2088ff",
78
+ "editorSuggestWidget.foreground": "#ff0055",
79
+ "editorWidget.background": "#1d000ae5",
80
+ "editorWidget.border": "#ff0055",
81
+ "tab.activeBackground": "#101116",
82
+ "tab.inactiveBackground": "#101116",
83
+ "tab.activeBorder": "#ff0055",
84
+ "tab.hoverBackground": "#ff00593d",
85
+ "tab.hoverBorder": "#ff0055",
86
+ "tab.border": "#101116",
87
+ "tab.activeForeground": "#ff0055",
88
+ "tab.inactiveForeground": "#eb4d81de",
89
+ "input.background": "#001420",
90
+ "input.border": "#00a2ff",
91
+ "input.foreground": "#00ffc8",
92
+ "input.placeholderForeground": "#00a2ffa9",
93
+ "inputOption.activeBorder": "#00a2ff",
94
+ "inputValidation.errorBackground": "#53001ce5",
95
+ "inputValidation.errorBorder": "#ff004c",
96
+ "inputValidation.infoBackground": "#002f6de8",
97
+ "inputValidation.infoBorder": "#00c3ff",
98
+ "inputValidation.warningBackground": "#693300e8",
99
+ "inputValidation.warningBorder": "#ff9100",
100
+ "dropdown.background": "#002212ec",
101
+ "dropdown.border": "#00FF9C",
102
+ "dropdown.foreground": "#00FF9C",
103
+ "statusBar.background": "#1d000ae5",
104
+ "statusBar.border": "#ff0055",
105
+ "statusBar.foreground": "#ff0055",
106
+ "statusBar.noFolderBackground":"#1d000ae5",
107
+ "statusBar.noFolderForeground": "#ff0055",
108
+ "statusBar.noFolderBorder": "#ff0055",
109
+ "statusBar.debuggingBackground": "#9900ff33",
110
+ "statusBar.debuggingForeground": "#c566fc",
111
+ "statusBar.debuggingBorder": "#b700ff",
112
+ "list.activeSelectionBackground": "#182333",
113
+ "list.activeSelectionForeground": "#ff0055",
114
+ "list.focusBackground": "#182333",
115
+ "list.hoverBackground": "#101116",
116
+ "list.hoverForeground": "#00FF9C",
117
+ "list.highlightForeground": "#00FF9C",
118
+ "list.inactiveSelectionBackground": "#100d23",
119
+ "list.inactiveSelectionForeground": "#00ffc8",
120
+ "notificationCenter.border": "#00FF9C",
121
+ "notificationCenterHeader.background": "#002212ec",
122
+ "notificationCenterHeader.foreground": "#00FF9C",
123
+ "notificationLink.foreground": "#3d5afe",
124
+ "notifications.background": "#002212e7",
125
+ "notifications.foreground": "#00FF9C",
126
+ "notifications.border": "#3d5afe",
127
+ "notificationToast.border": "#00FF9C",
128
+ "progressBar.background": "#ff4081",
129
+ "peekViewEditor.matchHighlightBackground": "#5e35b1",
130
+ "peekView.border": "#00e676",
131
+ "peekViewEditor.background": "#100d23",
132
+ "peekViewResult.background": "#100d23",
133
+ "peekViewResult.fileForeground": "#00e676",
134
+ "peekViewTitle.background": "#002212ec",
135
+ "peekViewTitleLabel.foreground": "#00e676",
136
+ "peekViewTitleDescription.foreground": "#009550",
137
+ "peekViewResult.selectionBackground": "#5c35b154",
138
+ "peekViewResult.lineForeground": "#7877b3",
139
+ "peekViewResult.matchHighlightBackground": "#6a3ecf6e",
140
+ "peekViewResult.selectionForeground": "#00e676",
141
+ "panel.background": "#101116",
142
+ "panel.border": "#ff0055",
143
+ "panelTitle.activeBorder": "#ff0055",
144
+ "panelTitle.activeForeground": "#ff0055",
145
+ "panelTitle.inactiveForeground": "#eb4d81de",
146
+ "scrollbarSlider.background": "#ff000041",
147
+ "scrollbarSlider.activeBackground": "#ff0055",
148
+ "scrollbarSlider.hoverBackground": "#ff005578",
149
+ "sideBar.background": "#0a0b0e",
150
+ "sideBar.border": "#101116",
151
+ "sideBar.foreground": "#be4e74",
152
+ "sideBarTitle.foreground": "#bbbbbb",
153
+ "welcomePage.buttonBackground": "#ff005527",
154
+ "welcomePage.buttonHoverBackground": "#ff005573",
155
+ },
156
+ "tokenColors": [
157
+ {
158
+ "settings": {
159
+ "foreground": "#eeffffff",
160
+ "background": "#263238ff"
161
+ }
162
+ },
163
+ {
164
+ "name": "Comment",
165
+ "scope": [
166
+ "comment",
167
+ "punctuation.definition.comment"
168
+ ],
169
+ "settings": {
170
+ "fontStyle": "italic",
171
+ "foreground": "#6766b3"
172
+ }
173
+ },
174
+ {
175
+ "name": "Variables",
176
+ "scope": [
177
+ "variable",
178
+ "string constant.other.placeholder"
179
+ ],
180
+ "settings": {
181
+ "foreground": "#EEFFFF"
182
+ }
183
+ },
184
+ {
185
+ "name": "Colors",
186
+ "scope": [
187
+ "constant.other.color"
188
+ ],
189
+ "settings": {
190
+ "foreground": "#ffffff"
191
+ }
192
+ },
193
+ {
194
+ "name": "Invalid",
195
+ "scope": [
196
+ "invalid",
197
+ "invalid.illegal"
198
+ ],
199
+ "settings": {
200
+ "foreground": "#FF5370"
201
+ }
202
+ },
203
+ {
204
+ "name": "Keyword, Storage",
205
+ "scope": [
206
+ "keyword",
207
+ "storage.type",
208
+ "storage.modifier"
209
+ ],
210
+ "settings": {
211
+ "foreground": "#d57bff"
212
+ }
213
+ },
214
+ {
215
+ "name": "Operator, Misc",
216
+ "scope": [
217
+ "keyword.control",
218
+ "constant.other.color",
219
+ "punctuation",
220
+ "meta.tag",
221
+ "punctuation.definition.tag",
222
+ "punctuation.separator.inheritance.php",
223
+ "punctuation.definition.tag.html",
224
+ "punctuation.definition.tag.begin.html",
225
+ "punctuation.definition.tag.end.html",
226
+ "punctuation.section.embedded",
227
+ "keyword.other.template",
228
+ "keyword.other.substitution"
229
+ ],
230
+ "settings": {
231
+ "foreground": "#00b0ff"
232
+ }
233
+ },
234
+ {
235
+ "name": "Tag",
236
+ "scope": [
237
+ "entity.name.tag",
238
+ "meta.tag.sgml",
239
+ "markup.deleted.git_gutter"
240
+ ],
241
+ "settings": {
242
+ "foreground": "#ff5680"
243
+ }
244
+ },
245
+ {
246
+ "name": "Function, Special Method",
247
+ "scope": [
248
+ "entity.name.function",
249
+ "meta.function-call",
250
+ "variable.function",
251
+ "support.function",
252
+ "keyword.other.special-method"
253
+ ],
254
+ "settings": {
255
+ "foreground": "#00b0ff"
256
+ }
257
+ },
258
+ {
259
+ "name": "Block Level Variables",
260
+ "scope": [
261
+ "meta.block variable.other"
262
+ ],
263
+ "settings": {
264
+ "foreground": "#b4baff"
265
+ }
266
+ },
267
+ {
268
+ "name": "Other Variable, String Link",
269
+ "scope": [
270
+ "support.other.variable",
271
+ "string.other.link"
272
+ ],
273
+ "settings": {
274
+ "foreground": "#00FF9C"
275
+ }
276
+ },
277
+ {
278
+ "name": "Number, Constant, Function Argument, Tag Attribute, Embedded",
279
+ "scope": [
280
+ "constant.numeric",
281
+ "constant.language",
282
+ "support.constant",
283
+ "constant.character",
284
+ "constant.escape",
285
+ "variable.parameter"
286
+ ],
287
+ "settings": {
288
+ "foreground": "#fffc58"
289
+ }
290
+ },
291
+ {
292
+ "name": "Keyword, Unit",
293
+ "scope": [
294
+ "keyword.other.unit",
295
+ "keyword.other"
296
+ ],
297
+ "settings": {
298
+ "foreground": "#ff5680"
299
+ }
300
+ },
301
+ {
302
+ "name": "String, Symbols, Inherited Class, Markup Heading",
303
+ "scope": [
304
+ "string",
305
+ "constant.other.symbol",
306
+ "constant.other.key",
307
+ "entity.other.inherited-class",
308
+ "markup.heading",
309
+ "markup.inserted.git_gutter",
310
+ "meta.group.braces.curly constant.other.object.key.js string.unquoted.label.js"
311
+ ],
312
+ "settings": {
313
+ "fontStyle": "normal",
314
+ "foreground": "#76c1ff"
315
+ }
316
+ },
317
+ {
318
+ "name": "Class, Support",
319
+ "scope": [
320
+ "entity.name",
321
+ "support.type",
322
+ "support.class",
323
+ "support.orther.namespace.use.php",
324
+ "meta.use.php",
325
+ "support.other.namespace.php",
326
+ "markup.changed.git_gutter",
327
+ "support.type.sys-types"
328
+ ],
329
+ "settings": {
330
+ "foreground": "#00FF9C"
331
+ }
332
+ },
333
+ {
334
+ "name": "Entity Types",
335
+ "scope": [
336
+ "support.type"
337
+ ],
338
+ "settings": {
339
+ "foreground": "#00FF9C"
340
+ }
341
+ },
342
+ {
343
+ "name": "CSS Class and Support",
344
+ "scope": [
345
+ "source.css support.type.property-name",
346
+ "source.sass support.type.property-name",
347
+ "source.scss support.type.property-name",
348
+ "source.less support.type.property-name",
349
+ "source.stylus support.type.property-name",
350
+ "source.postcss support.type.property-name"
351
+ ],
352
+ "settings": {
353
+ "foreground": "#98e3ff"
354
+ }
355
+ },
356
+ {
357
+ "name": "Sub-methods",
358
+ "scope": [
359
+ "entity.name.module.js",
360
+ "variable.import.parameter.js",
361
+ "variable.other.class.js"
362
+ ],
363
+ "settings": {
364
+ "foreground": "#ff5680"
365
+ }
366
+ },
367
+ {
368
+ "name": "Language methods",
369
+ "scope": [
370
+ "variable.language"
371
+ ],
372
+ "settings": {
373
+ "fontStyle": "italic",
374
+ "foreground": "#ff5680"
375
+ }
376
+ },
377
+ {
378
+ "name": "entity.name.method.js",
379
+ "scope": [
380
+ "entity.name.method.js"
381
+ ],
382
+ "settings": {
383
+ "fontStyle": "italic",
384
+ "foreground": "#6095ff"
385
+ }
386
+ },
387
+ {
388
+ "name": "meta.method.js",
389
+ "scope": [
390
+ "meta.class-method.js entity.name.function.js",
391
+ "variable.function.constructor"
392
+ ],
393
+ "settings": {
394
+ "foreground": "#6095ff"
395
+ }
396
+ },
397
+ {
398
+ "name": "Attributes",
399
+ "scope": [
400
+ "entity.other.attribute-name"
401
+ ],
402
+ "settings": {
403
+ "foreground": "#ee6dff"
404
+ }
405
+ },
406
+ {
407
+ "name": "HTML Attributes",
408
+ "scope": [
409
+ "text.html.basic entity.other.attribute-name.html",
410
+ "text.html.basic entity.other.attribute-name"
411
+ ],
412
+ "settings": {
413
+ "fontStyle": "italic",
414
+ "foreground": "#00FF9C"
415
+ }
416
+ },
417
+ {
418
+ "name": "CSS Classes",
419
+ "scope": [
420
+ "entity.other.attribute-name.class"
421
+ ],
422
+ "settings": {
423
+ "foreground": "#00FF9C"
424
+ }
425
+ },
426
+ {
427
+ "name": "CSS ID's",
428
+ "scope": [
429
+ "source.sass keyword.control"
430
+ ],
431
+ "settings": {
432
+ "foreground": "#82AAFF"
433
+ }
434
+ },
435
+ {
436
+ "name": "Inserted",
437
+ "scope": [
438
+ "markup.inserted"
439
+ ],
440
+ "settings": {
441
+ "foreground": "#C3E88D"
442
+ }
443
+ },
444
+ {
445
+ "name": "Deleted",
446
+ "scope": [
447
+ "markup.deleted"
448
+ ],
449
+ "settings": {
450
+ "foreground": "#FF5370"
451
+ }
452
+ },
453
+ {
454
+ "name": "Changed",
455
+ "scope": [
456
+ "markup.changed"
457
+ ],
458
+ "settings": {
459
+ "foreground": "#C792EA"
460
+ }
461
+ },
462
+ {
463
+ "name": "Regular Expressions",
464
+ "scope": [
465
+ "string.regexp"
466
+ ],
467
+ "settings": {
468
+ "foreground": "#89DDFF"
469
+ }
470
+ },
471
+ {
472
+ "name": "Escape Characters",
473
+ "scope": [
474
+ "constant.character.escape"
475
+ ],
476
+ "settings": {
477
+ "foreground": "#89DDFF"
478
+ }
479
+ },
480
+ {
481
+ "name": "URL",
482
+ "scope": [
483
+ "*url*",
484
+ "*link*",
485
+ "*uri*"
486
+ ],
487
+ "settings": {
488
+ "fontStyle": "underline"
489
+ }
490
+ },
491
+ {
492
+ "name": "Decorators",
493
+ "scope": [
494
+ "tag.decorator.js entity.name.tag.js",
495
+ "tag.decorator.js punctuation.definition.tag.js"
496
+ ],
497
+ "settings": {
498
+ "fontStyle": "italic",
499
+ "foreground": "#82AAFF"
500
+ }
501
+ },
502
+ {
503
+ "name": "ES7 Bind Operator",
504
+ "scope": [
505
+ "source.js constant.other.object.key.js string.unquoted.label.js"
506
+ ],
507
+ "settings": {
508
+ "fontStyle": "italic",
509
+ "foreground": "#FF5370"
510
+ }
511
+ },
512
+ {
513
+ "name": "JSON Key - Level 0",
514
+ "scope": [
515
+ "source.json meta.structure.dictionary.json support.type.property-name.json"
516
+ ],
517
+ "settings": {
518
+ "foreground": "#C792EA"
519
+ }
520
+ },
521
+ {
522
+ "name": "JSON Key - Level 1",
523
+ "scope": [
524
+ "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
525
+ ],
526
+ "settings": {
527
+ "foreground": "#FFCB6B"
528
+ }
529
+ },
530
+ {
531
+ "name": "JSON Key - Level 2",
532
+ "scope": [
533
+ "source.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"
534
+ ],
535
+ "settings": {
536
+ "foreground": "#F78C6C"
537
+ }
538
+ },
539
+ {
540
+ "name": "JSON Key - Level 3",
541
+ "scope": [
542
+ "source.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"
543
+ ],
544
+ "settings": {
545
+ "foreground": "#FF5370"
546
+ }
547
+ },
548
+ {
549
+ "name": "JSON Key - Level 4",
550
+ "scope": [
551
+ "source.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"
552
+ ],
553
+ "settings": {
554
+ "foreground": "#C17E70"
555
+ }
556
+ },
557
+ {
558
+ "name": "JSON Key - Level 5",
559
+ "scope": [
560
+ "source.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"
561
+ ],
562
+ "settings": {
563
+ "foreground": "#82AAFF"
564
+ }
565
+ },
566
+ {
567
+ "name": "JSON Key - Level 6",
568
+ "scope": [
569
+ "source.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"
570
+ ],
571
+ "settings": {
572
+ "foreground": "#f07178"
573
+ }
574
+ },
575
+ {
576
+ "name": "JSON Key - Level 7",
577
+ "scope": [
578
+ "source.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"
579
+ ],
580
+ "settings": {
581
+ "foreground": "#C792EA"
582
+ }
583
+ },
584
+ {
585
+ "name": "JSON Key - Level 8",
586
+ "scope": [
587
+ "source.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 meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
588
+ ],
589
+ "settings": {
590
+ "foreground": "#C3E88D"
591
+ }
592
+ },
593
+ {
594
+ "name": "Markdown - Plain",
595
+ "scope": [
596
+ "text.html.markdown",
597
+ "punctuation.definition.list_item.markdown"
598
+ ],
599
+ "settings": {
600
+ "foreground": "#EEFFFF"
601
+ }
602
+ },
603
+ {
604
+ "name": "Markdown - Markup Raw Inline",
605
+ "scope": [
606
+ "text.html.markdown markup.inline.raw.markdown"
607
+ ],
608
+ "settings": {
609
+ "foreground": "#C792EA"
610
+ }
611
+ },
612
+ {
613
+ "name": "Markdown - Markup Raw Inline Punctuation",
614
+ "scope": [
615
+ "text.html.markdown markup.inline.raw.markdown punctuation.definition.raw.markdown"
616
+ ],
617
+ "settings": {
618
+ "foreground": "#65737E"
619
+ }
620
+ },
621
+ {
622
+ "name": "Markdown - Line Break",
623
+ "scope": [
624
+ "text.html.markdown meta.dummy.line-break"
625
+ ],
626
+ "settings": {
627
+ "foreground": ""
628
+ }
629
+ },
630
+ {
631
+ "name": "Markdown - Heading",
632
+ "scope": [
633
+ "markdown.heading",
634
+ "markup.heading | markup.heading entity.name",
635
+ "markup.heading.markdown punctuation.definition.heading.markdown"
636
+ ],
637
+ "settings": {
638
+ "foreground": "#C3E88D"
639
+ }
640
+ },
641
+ {
642
+ "name": "Markup - Italic",
643
+ "scope": [
644
+ "markup.italic"
645
+ ],
646
+ "settings": {
647
+ "fontStyle": "italic",
648
+ "foreground": "#f07178"
649
+ }
650
+ },
651
+ {
652
+ "name": "Markup - Bold",
653
+ "scope": [
654
+ "markup.bold",
655
+ "markup.bold string"
656
+ ],
657
+ "settings": {
658
+ "fontStyle": "bold",
659
+ "foreground": "#f07178"
660
+ }
661
+ },
662
+ {
663
+ "name": "Markup - Bold-Italic",
664
+ "scope": [
665
+ "markup.bold markup.italic",
666
+ "markup.italic markup.bold",
667
+ "markup.quote markup.bold",
668
+ "markup.bold markup.italic string",
669
+ "markup.italic markup.bold string",
670
+ "markup.quote markup.bold string"
671
+ ],
672
+ "settings": {
673
+ "fontStyle": "bold",
674
+ "foreground": "#f07178"
675
+ }
676
+ },
677
+ {
678
+ "name": "Markup - Underline",
679
+ "scope": [
680
+ "markup.underline"
681
+ ],
682
+ "settings": {
683
+ "fontStyle": "underline",
684
+ "foreground": "#F78C6C"
685
+ }
686
+ },
687
+ {
688
+ "name": "Markup - Strike",
689
+ "scope": [
690
+ "markup.strike"
691
+ ],
692
+ "settings": {
693
+ "fontStyle": "strike",
694
+ "foreground": ""
695
+ }
696
+ },
697
+ {
698
+ "name": "Markdown - Blockquote",
699
+ "scope": [
700
+ "markup.quote punctuation.definition.blockquote.markdown"
701
+ ],
702
+ "settings": {
703
+ "background": "#65737E",
704
+ "foreground": "#65737E"
705
+ }
706
+ },
707
+ {
708
+ "name": "Markup - Quote",
709
+ "scope": [
710
+ "markup.quote"
711
+ ],
712
+ "settings": {
713
+ "fontStyle": "italic",
714
+ "foreground": ""
715
+ }
716
+ },
717
+ {
718
+ "name": "Markdown - Link",
719
+ "scope": [
720
+ "string.other.link.title.markdown"
721
+ ],
722
+ "settings": {
723
+ "foreground": "#82AAFF"
724
+ }
725
+ },
726
+ {
727
+ "name": "Markdown - Link Description",
728
+ "scope": [
729
+ "string.other.link.description.title.markdown"
730
+ ],
731
+ "settings": {
732
+ "foreground": "#C792EA"
733
+ }
734
+ },
735
+ {
736
+ "name": "Markdown - Link Anchor",
737
+ "scope": [
738
+ "constant.other.reference.link.markdown"
739
+ ],
740
+ "settings": {
741
+ "foreground": "#FFCB6B"
742
+ }
743
+ },
744
+ {
745
+ "name": "Markup - Raw Block",
746
+ "scope": [
747
+ "markup.raw.block"
748
+ ],
749
+ "settings": {
750
+ "foreground": "#C792EA"
751
+ }
752
+ },
753
+ {
754
+ "name": "Markdown - Raw Block Fenced",
755
+ "scope": [
756
+ "markup.raw.block.fenced.markdown"
757
+ ],
758
+ "settings": {
759
+ "foreground": "#00000050"
760
+ }
761
+ },
762
+ {
763
+ "name": "Markdown - Fenced Bode Block",
764
+ "scope": [
765
+ "punctuation.definition.fenced.markdown"
766
+ ],
767
+ "settings": {
768
+ "foreground": "#00000050"
769
+ }
770
+ },
771
+ {
772
+ "name": "Markdown - Fenced Bode Block Variable",
773
+ "scope": [
774
+ "markup.raw.block.fenced.markdown",
775
+ "variable.language.fenced.markdown",
776
+ "punctuation.section.class.end"
777
+ ],
778
+ "settings": {
779
+ "foreground": "#EEFFFF"
780
+ }
781
+ },
782
+ {
783
+ "name": "Markdown - Fenced Language",
784
+ "scope": [
785
+ "variable.language.fenced.markdown"
786
+ ],
787
+ "settings": {
788
+ "foreground": "#65737E"
789
+ }
790
+ },
791
+ {
792
+ "name": "Markdown - Separator",
793
+ "scope": [
794
+ "meta.separator"
795
+ ],
796
+ "settings": {
797
+ "fontStyle": "bold",
798
+ "background": "#00000050",
799
+ "foreground": "#65737E"
800
+ }
801
+ },
802
+ {
803
+ "name": "Markup - Table",
804
+ "scope": [
805
+ "markup.table"
806
+ ],
807
+ "settings": {
808
+ "foreground": "#EEFFFF"
809
+ }
810
+ },
811
+ {
812
+ "scope": "token.info-token",
813
+ "settings": {
814
+ "foreground": "#6796e6"
815
+ }
816
+ },
817
+ {
818
+ "scope": "token.warn-token",
819
+ "settings": {
820
+ "foreground": "#cd9731"
821
+ }
822
+ },
823
+ {
824
+ "scope": "token.error-token",
825
+ "settings": {
826
+ "foreground": "#f44747"
827
+ }
828
+ },
829
+ {
830
+ "scope": "token.debug-token",
831
+ "settings": {
832
+ "foreground": "#b267e6"
833
+ }
834
+ }
835
+ ]
836
+ }