@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,1061 @@
1
+ {
2
+ name: 'Noctis',
3
+ type: 'dark',
4
+ // Source: https://github.com/liviuschera/noctis/blob/4d6ec2286f75686e1ddfeec18bf888fbf5644b88/themes/noctis.json
5
+ // Some background colors modified.
6
+ // License: MIT
7
+ colors: {
8
+ 'selection.background': '#0e6571',
9
+ descriptionForeground: '#929ea0',
10
+ errorForeground: '#e34e1c',
11
+ 'widget.shadow': '#00000044',
12
+ 'editor.background': '#212b30',
13
+ 'editor.foreground': '#b2cacd',
14
+ 'editorLineNumber.foreground': '#4e6b6e',
15
+ 'editorLineNumber.activeForeground': '#169fb1',
16
+ 'editorCursor.foreground': '#85efff',
17
+ 'badge.background': '#40d4e7',
18
+ 'badge.foreground': '#0f1415',
19
+ 'activityBar.background': '#052529',
20
+ 'activityBar.dropBackground': '#929ea065',
21
+ 'activityBar.foreground': '#169fb1',
22
+ 'activityBar.inactiveForeground': '#169fb177',
23
+ 'activityBar.border': '#0f1415',
24
+ 'activityBarBadge.background': '#40d4e7',
25
+ 'activityBarBadge.foreground': '#0f1415',
26
+ 'activityBar.activeBackground': '#40d4e733',
27
+ 'activityBar.activeBorder': '#40d4e7',
28
+ 'sideBar.background': '#212b30',
29
+ 'sideBar.foreground': '#a5b5b5',
30
+ 'sideBar.border': '#0f1415',
31
+ 'sideBar.dropBackground': '#041d20',
32
+ 'sideBarTitle.foreground': '#a5b5b5',
33
+ 'sideBarSectionHeader.background': '#083d44',
34
+ 'sideBarSectionHeader.foreground': '#a5b5b5',
35
+ 'sideBarSectionHeader.border': '#0f1415',
36
+ 'statusBar.background': '#041d20',
37
+ 'statusBar.foreground': '#169fb1',
38
+ 'statusBar.border': '#0f1415',
39
+ 'statusBar.debuggingBackground': '#041d20',
40
+ 'statusBar.debuggingForeground': '#df769b50',
41
+ 'statusBar.debuggingBorder': '#df769baf',
42
+ 'statusBar.noFolderForeground': '#87a7ab',
43
+ 'statusBar.noFolderBackground': '#041d20',
44
+ 'statusBar.noFolderBorder': '#041d20',
45
+ 'statusBarItem.activeBackground': '#19bacc45',
46
+ 'statusBarItem.hoverBackground': '#062e32',
47
+ 'statusBarItem.prominentBackground': '#020c0e',
48
+ 'statusBarItem.prominentHoverBackground': '#00292e',
49
+ 'button.background': '#099',
50
+ 'button.foreground': '#ebfdff',
51
+ 'button.hoverBackground': '#0cc',
52
+ 'dropdown.background': '#073940',
53
+ 'dropdown.border': '#073940',
54
+ 'dropdown.foreground': '#87a7ab',
55
+ 'editorMarkerNavigation.background': '#3a3a5e29',
56
+ 'editorMarkerNavigationError.background': '#e34e1c',
57
+ 'editorMarkerNavigationWarning.background': '#e69533',
58
+ 'editorError.border': '#052529',
59
+ 'editorError.foreground': '#e34e1c',
60
+ 'editorWarning.border': '#052529',
61
+ 'editorWarning.foreground': '#e69533',
62
+ 'editorInfo.border': '#052529',
63
+ 'editorInfo.foreground': '#40d4e7',
64
+ 'editorHint.border': '#49e9a600',
65
+ 'editorHint.foreground': '#49e9a6',
66
+ 'editorGroup.emptyBackground': '#5f6b6d33',
67
+ 'editorGroup.border': '#0f1415',
68
+ 'editorGroup.dropBackground': '#5f6b6d33',
69
+ 'editorGroupHeader.noTabsBackground': '#062e32',
70
+ 'editorGroupHeader.tabsBackground': '#062e32',
71
+ 'editorGroupHeader.tabsBorder': '#062e32',
72
+ 'tab.activeBackground': '#052529',
73
+ 'tab.unfocusedActiveBackground': '#0e1e20',
74
+ 'tab.activeForeground': '#40d4e7',
75
+ 'tab.border': '#0f1415',
76
+ 'tab.inactiveBackground': '#062e32',
77
+ 'tab.inactiveForeground': '#87a7ab',
78
+ 'tab.unfocusedActiveForeground': '#87a7ab',
79
+ 'tab.unfocusedInactiveForeground': '#87a7ab',
80
+ 'tab.activeBorderTop': '#40d4e7',
81
+ 'tab.activeModifiedBorder': '#49e9a6',
82
+ 'tab.activeBorder': '#052529',
83
+ 'tab.unfocusedActiveBorder': '#052529',
84
+ 'tab.unfocusedHoverBackground': '#169fb121',
85
+ 'textBlockQuote.background': '#041d20',
86
+ 'textBlockQuote.border': '#16a3b6',
87
+ 'textCodeBlock.background': '#041d20',
88
+ 'textLink.activeForeground': '#40d4e7',
89
+ 'textLink.foreground': '#40d4e7',
90
+ 'textPreformat.foreground': '#e4b781',
91
+ 'textSeparator.foreground': '#041d20',
92
+ 'walkThrough.embeddedEditorBackground': '#041d20',
93
+ 'welcomePage.buttonBackground': '#041d20',
94
+ 'welcomePage.buttonHoverBackground': '#003742',
95
+ 'input.background': '#052529',
96
+ 'input.border': '#073940',
97
+ 'input.foreground': '#CDD3DE',
98
+ 'input.placeholderForeground': '#87a7ab',
99
+ 'inputOption.activeBorder': '#169fb1',
100
+ 'inputValidation.errorForeground': '#ff4000',
101
+ 'inputValidation.errorBackground': '#501502ee',
102
+ 'inputValidation.errorBorder': '#691c02',
103
+ 'inputValidation.infoForeground': '#40d4e7',
104
+ 'inputValidation.infoBackground': '#0f6e7bee',
105
+ 'inputValidation.infoBorder': '#148f9f',
106
+ 'inputValidation.warningForeground': '#e69533',
107
+ 'inputValidation.warningBackground': '#82694acc',
108
+ 'inputValidation.warningBorder': '#a88457',
109
+ 'editorWidget.background': '#073940',
110
+ 'editorWidget.border': '#0f1415',
111
+ 'editorHoverWidget.background': '#073940',
112
+ 'editorHoverWidget.border': '#0f1415',
113
+ 'editorSuggestWidget.background': '#073940',
114
+ 'editorSuggestWidget.border': '#0f1415',
115
+ 'editorSuggestWidget.foreground': '#87a7ab',
116
+ 'editorSuggestWidget.highlightForeground': '#40d4e7',
117
+ 'editorSuggestWidget.selectedBackground': '#0e6671',
118
+ 'editorGutter.background': '#212b30',
119
+ 'editorGutter.addedBackground': '#8ce99a',
120
+ 'editorGutter.deletedBackground': '#e34e1c',
121
+ 'editorGutter.modifiedBackground': '#e0c184',
122
+ 'editor.selectionBackground': '#169fb144',
123
+ 'editor.selectionHighlightBackground': '#49ace944',
124
+ 'editor.inactiveSelectionBackground': '#0e657155',
125
+ 'editor.wordHighlightStrongBackground': '#cc990033',
126
+ 'editor.wordHighlightBackground': '#e4b78133',
127
+ 'editor.findMatchBackground': '#40bf6a11',
128
+ 'editor.findMatchHighlightBackground': '#0e667179',
129
+ 'editor.findRangeHighlightBackground': '#49e9a633',
130
+ 'editor.hoverHighlightBackground': '#169fb13f',
131
+ 'editor.lineHighlightBackground': '#083d44ee',
132
+ 'editor.lineHighlightBorder': '#083d44',
133
+ 'editor.rangeHighlightBackground': '#083d44a1',
134
+ 'editorLink.activeForeground': '#14a5ff',
135
+ 'editorWhitespace.foreground': '#ffffff21',
136
+ 'editorIndentGuide.background': '#223b3f',
137
+ 'editorIndentGuide.activeBackground': '#3e6f74',
138
+ 'editorBracketMatch.background': '#169fb122',
139
+ 'editorBracketMatch.border': '#169fb1',
140
+ 'editorRuler.foreground': '#29484c',
141
+ 'editorCodeLens.foreground': '#507b95',
142
+ 'terminal.ansiBlack': '#324a4d',
143
+ 'terminal.ansiRed': '#e66533',
144
+ 'terminal.ansiGreen': '#49e9a6',
145
+ 'terminal.ansiYellow': '#e4b781',
146
+ 'terminal.ansiBlue': '#49ace9',
147
+ 'terminal.ansiMagenta': '#df769b',
148
+ 'terminal.ansiCyan': '#49d6e9',
149
+ 'terminal.ansiWhite': '#b2cacd',
150
+ 'terminal.ansiBrightBlack': '#47686c',
151
+ 'terminal.ansiBrightRed': '#e97749',
152
+ 'terminal.ansiBrightGreen': '#60ebb1',
153
+ 'terminal.ansiBrightYellow': '#e69533',
154
+ 'terminal.ansiBrightBlue': '#60b6eb',
155
+ 'terminal.ansiBrightMagenta': '#e798b3',
156
+ 'terminal.ansiBrightCyan': '#60dbeb',
157
+ 'terminal.ansiBrightWhite': '#c1d4d7',
158
+ 'terminal.background': '#03191b',
159
+ 'terminal.foreground': '#b2cacd',
160
+ 'terminalCursor.background': '#03191b',
161
+ 'terminalCursor.foreground': '#b2cacd',
162
+ 'merge.border': '#05252900',
163
+ 'merge.currentContentBackground': '#85f1ff22',
164
+ 'merge.currentHeaderBackground': '#85f1ff44',
165
+ 'merge.incomingContentBackground': '#9d92f222',
166
+ 'merge.incomingHeaderBackground': '#9d92f244',
167
+ 'merge.commonContentBackground': '#ffc18022',
168
+ 'merge.commonHeaderBackground': '#ffc18044',
169
+ 'editorOverviewRuler.currentContentForeground': '#85f1ff44',
170
+ 'editorOverviewRuler.incomingContentForeground': '#9d92f244',
171
+ 'editorOverviewRuler.commonContentForeground': '#ffc18044',
172
+ 'editorOverviewRuler.border': '#052529',
173
+ 'notificationCenter.border': '#073940',
174
+ 'notificationCenterHeader.foreground': '#87a7ab',
175
+ 'notificationCenterHeader.background': '#073940',
176
+ 'notificationToast.border': '#073940',
177
+ 'notifications.foreground': '#CDD3DE',
178
+ 'notifications.background': '#073940',
179
+ 'notifications.border': '#073940',
180
+ 'notificationLink.foreground': '#87a7ab',
181
+ 'diffEditor.insertedTextBackground': '#16b67327',
182
+ 'diffEditor.removedTextBackground': '#e6653341',
183
+ 'debugToolBar.background': '#041d20',
184
+ 'debugExceptionWidget.background': '#041d20',
185
+ 'debugExceptionWidget.border': '#16a3b6',
186
+ 'extensionButton.prominentBackground': '#099',
187
+ 'extensionButton.prominentForeground': '#e5f5f5',
188
+ 'extensionButton.prominentHoverBackground': '#0cc',
189
+ focusBorder: '#073940',
190
+ foreground: '#b2cacd',
191
+ 'panel.background': '#03191b',
192
+ 'panel.border': '#0e6671',
193
+ 'panelTitle.activeBorder': '#0e6671',
194
+ 'panelTitle.activeForeground': '#40d4e7',
195
+ 'panelTitle.inactiveForeground': '#87a7ab',
196
+ 'peekView.border': '#169fb1',
197
+ 'peekViewEditor.background': '#212b30',
198
+ 'peekViewEditor.matchHighlightBackground': '#00718079',
199
+ 'peekViewEditor.matchHighlightBorder': '#007180cc',
200
+ 'peekViewEditorGutter.background': '#212b30',
201
+ 'peekViewResult.background': '#041d20',
202
+ 'peekViewResult.fileForeground': '#e4b781',
203
+ 'peekViewResult.lineForeground': '#87a7ab',
204
+ 'peekViewResult.matchHighlightBackground': '#073940',
205
+ 'peekViewResult.selectionBackground': '#073940',
206
+ 'peekViewResult.selectionForeground': '#87a7ab',
207
+ 'peekViewTitle.background': '#041d20',
208
+ 'peekViewTitleDescription.foreground': '#87a7ab',
209
+ 'peekViewTitleLabel.foreground': '#e4b781',
210
+ 'progressBar.background': '#40d4e7',
211
+ 'scrollbar.shadow': '#00000044',
212
+ 'scrollbarSlider.activeBackground': '#169fb1ad',
213
+ 'scrollbarSlider.background': '#6a90955b',
214
+ 'scrollbarSlider.hoverBackground': '#169fb162',
215
+ 'gitDecoration.addedResourceForeground': '#16b673',
216
+ 'gitDecoration.modifiedResourceForeground': '#49e9a6',
217
+ 'gitDecoration.deletedResourceForeground': '#e34e1c',
218
+ 'gitDecoration.untrackedResourceForeground': '#40d4e7',
219
+ 'gitDecoration.ignoredResourceForeground': '#5b858b',
220
+ 'gitDecoration.conflictingResourceForeground': '#e4b781',
221
+ 'pickerGroup.border': '#0e6671',
222
+ 'pickerGroup.foreground': '#169fb1',
223
+ 'list.activeSelectionBackground': '#0e6671',
224
+ 'list.activeSelectionForeground': '#ebfdff',
225
+ 'list.dropBackground': '#00404d',
226
+ 'list.focusBackground': '#00404d',
227
+ 'list.focusForeground': '#ebfdff',
228
+ 'list.highlightForeground': '#40d4e7',
229
+ 'list.hoverBackground': '#0b515b',
230
+ 'list.hoverForeground': '#ebfdff',
231
+ 'list.inactiveFocusBackground': '#062d32',
232
+ 'list.inactiveSelectionBackground': '#07353b',
233
+ 'list.inactiveSelectionForeground': '#b2cacd',
234
+ 'list.errorForeground': '#e34e1c',
235
+ 'list.warningForeground': '#ffa487',
236
+ 'listFilterWidget.background': '#00404d',
237
+ 'listFilterWidget.outline': '#49e9a6',
238
+ 'listFilterWidget.noMatchesOutline': '#e34e1c',
239
+ 'tree.indentGuidesStroke': '#3e6f74',
240
+ 'settings.headerForeground': '#b2cacd',
241
+ 'settings.modifiedItemIndicator': '#15ac31',
242
+ 'settings.dropdownListBorder': '#0e657188',
243
+ 'settings.dropdownBackground': '#073940',
244
+ 'settings.dropdownForeground': '#0cc',
245
+ 'settings.dropdownBorder': '#073940',
246
+ 'settings.checkboxBackground': '#073940',
247
+ 'settings.checkboxForeground': '#0cc',
248
+ 'settings.checkboxBorder': '#073940',
249
+ 'settings.textInputBackground': '#073940',
250
+ 'settings.textInputForeground': '#0cc',
251
+ 'settings.textInputBorder': '#073940',
252
+ 'settings.numberInputBackground': '#041d20',
253
+ 'settings.numberInputForeground': '#7060eb',
254
+ 'settings.numberInputBorder': '#041d20',
255
+ 'breadcrumb.foreground': '#87a7ab',
256
+ 'breadcrumb.background': '#052529',
257
+ 'breadcrumb.focusForeground': '#40d4e7',
258
+ 'breadcrumb.activeSelectionForeground': '#ebfdff',
259
+ 'breadcrumbPicker.background': '#073940',
260
+ 'titleBar.activeBackground': '#041d20',
261
+ 'titleBar.activeForeground': '#b2cacd',
262
+ 'titleBar.inactiveBackground': '#041d20',
263
+ 'titleBar.inactiveForeground': '#87a7ab',
264
+ 'menu.background': '#073940',
265
+ 'menu.foreground': '#87a7ab',
266
+ 'menu.selectionBackground': '#0b515b',
267
+ 'menu.selectionForeground': '#40d4e7',
268
+ 'menu.selectionBorder': '#0b515b',
269
+ 'menu.separatorBackground': '#40d4e7',
270
+ 'menubar.selectionBackground': '#0b515b',
271
+ 'menubar.selectionForeground': '#40d4e7',
272
+ 'menubar.selectionBorder': '#0b515b',
273
+ 'editor.snippetTabstopHighlightBackground': '#03181b',
274
+ 'editor.snippetTabstopHighlightBorder': '#042124',
275
+ 'editor.snippetFinalTabstopHighlightBackground': '#03181b',
276
+ 'editor.snippetFinalTabstopHighlightBorder': '#042124',
277
+ 'minimap.findMatchHighlight': '#49d6e9ee',
278
+ 'minimap.errorHighlight': '#e34e1cee',
279
+ 'minimap.warningHighlight': '#e69533ee',
280
+ 'minimapGutter.addedBackground': '#16b673',
281
+ 'minimapGutter.modifiedBackground': '#49e9a6',
282
+ 'minimapGutter.deletedBackground': '#e34e1c',
283
+ 'minimap.background': '#05252999'
284
+ },
285
+ tokenColors: [
286
+ {
287
+ name: 'COMMENT',
288
+ scope: [
289
+ 'comment',
290
+ 'punctuation.definition.comment',
291
+ 'punctuation.definition.tag',
292
+ 'comment.block.documentation punctuation.definition.bracket',
293
+ 'source.ocaml comment constant.regexp meta.separator'
294
+ ],
295
+ settings: {
296
+ foreground: '#5b858b'
297
+ }
298
+ },
299
+ {
300
+ name: 'TEXT',
301
+ scope: [
302
+ 'constant.character',
303
+ 'constant.escape',
304
+ 'text.html.markdown',
305
+ 'punctuation.definition.list_item',
306
+ 'keyword.begin.tag.ejs',
307
+ 'constant.name.attribute.tag.pug',
308
+ 'source.clojure meta.symbol',
309
+ 'constant.other.description.jsdoc',
310
+ 'keyword.other.array.phpdoc.php',
311
+ 'keyword.operator.other.powershell',
312
+ 'meta.link.inline punctuation.definition.string',
313
+ 'source.sql',
314
+ 'source meta.brace',
315
+ 'source punctuation',
316
+ 'text.html punctuation',
317
+ 'markup meta punctuation.definition',
318
+ 'meta.bracket.julia',
319
+ 'meta.array.julia',
320
+ 'punctuation.separator.key-value',
321
+ 'entity.name.footnote',
322
+ 'source.ocaml punctuation.definition.tag',
323
+ 'source.ocaml entity.name.filename',
324
+ 'source.reason entity.name.filename',
325
+ 'entity.other.attribute-name strong',
326
+ 'binding.fsharp keyword.symbol.fsharp',
327
+ 'entity.name.record.field.elm',
328
+ 'entity.name.record.field.accessor.elm',
329
+ 'storage.modifier.array.bracket',
330
+ 'source.css entity.other',
331
+ 'meta.attribute-selector punctuation.definition.entity'
332
+ ],
333
+ settings: {
334
+ foreground: '#b2cacd'
335
+ }
336
+ },
337
+ {
338
+ name: 'KEYWORD',
339
+ scope: [
340
+ 'keyword',
341
+ 'keyword.control',
342
+ 'keyword.other.template',
343
+ 'keyword.other.substitution',
344
+ 'storage.modifier',
345
+ 'meta.tag.sgml',
346
+ 'punctuation.accessor',
347
+ 'constant.other.color',
348
+ 'entity.name.section',
349
+ 'markup.heading',
350
+ 'markup.heading punctuation.definition',
351
+ 'entity.other.attribute-name.pseudo-class',
352
+ 'entity.other.attribute-name.pseudo-element',
353
+ 'tag.decorator.js entity.name.tag.js',
354
+ 'tag.decorator.js punctuation.definition.tag.js',
355
+ 'storage.type.function.pug',
356
+ 'text.pug storage.type',
357
+ 'text.pug meta.tag.other',
358
+ 'source.clojure storage.control',
359
+ 'meta.expression.clojure',
360
+ 'punctuation.separator.slice.python',
361
+ 'punctuation.separator.question-mark.cs',
362
+ 'punctuation.definition.parameters.varargs',
363
+ 'source.go keyword.operator',
364
+ 'punctuation.separator.pointer-access',
365
+ 'punctuation.separator.other.ruby',
366
+ 'keyword.package',
367
+ 'keyword.import',
368
+ 'punctuation.definition.keyword',
369
+ 'punctuation.separator.hash.cs',
370
+ 'variable.parameter.rest.lua',
371
+ 'entity.other.attribute-name.pseudo-class.css punctuation.definition.entity.css',
372
+ 'entity.other.attribute-name.pseudo-element.css punctuation.definition.entity.css',
373
+ 'source.kotlin storage.type.import',
374
+ 'source.kotlin storage.type.package',
375
+ 'constant.string.documentation.powershell',
376
+ 'punctuation.section.directive',
377
+ 'storage.type.rust',
378
+ 'punctuation.definition.attribute',
379
+ 'punctuation.definition.preprocessor',
380
+ 'punctuation.separator.namespace',
381
+ 'punctuation.separator.method',
382
+ 'keyword.control punctuation.definition.function',
383
+ 'source.ocaml variable.interpolation string',
384
+ 'source.reason variable.interpolation',
385
+ 'punctuation.definition.directive',
386
+ 'storage.type.modifier',
387
+ 'keyword.other.class.fileds',
388
+ 'source.toml entity.other.attribute-name',
389
+ 'source.css entity.name.tag.custom',
390
+ 'sharing.modifier',
391
+ 'keyword.control.class.ruby',
392
+ 'keyword.control.def.ruby'
393
+ ],
394
+ settings: {
395
+ foreground: '#df769b'
396
+ }
397
+ },
398
+ {
399
+ name: 'VARIABLE',
400
+ scope: [
401
+ 'variable',
402
+ 'variable.object',
403
+ 'variable.other',
404
+ 'variable.parameter',
405
+ 'support',
406
+ 'entity.name.module',
407
+ 'variable.import.parameter',
408
+ 'variable.other.class',
409
+ 'meta.toc-list.id.html',
410
+ 'source.json meta.structure.dictionary.json support.type.property-name.json',
411
+ 'markup.list',
412
+ 'meta.var.clojure',
413
+ 'entity.name.variable',
414
+ 'source.java meta.class.body.java',
415
+ 'entity.name.package.go',
416
+ 'source.c',
417
+ 'source.cpp',
418
+ 'source.go',
419
+ 'source.python',
420
+ 'meta.function-call.arguments.python',
421
+ 'source.ruby',
422
+ 'source.coffee.embedded.source',
423
+ 'source.coffee',
424
+ 'storage.modifier.import',
425
+ 'storage.modifier.package',
426
+ 'storage.type.annotation',
427
+ 'punctuation.definition.annotation',
428
+ 'source.groovy.embedded.source',
429
+ 'punctuation.definition.variable',
430
+ 'source.powershell',
431
+ 'string.quoted.interpolated.vala constant.character.escape.vala',
432
+ 'source.apacheconf',
433
+ 'source.objc',
434
+ 'source.crystal',
435
+ 'string.quoted.double.kotlin entity.string.template.element.kotlin',
436
+ 'entity.name.package.kotlin',
437
+ 'meta.template.expression.kotlin',
438
+ 'parameter.variable.function',
439
+ 'variable.other.constant.elixir',
440
+ 'source.elixir.embedded.source',
441
+ 'source.sql.embedded',
442
+ 'punctuation.definition.placeholder',
443
+ 'source.swift',
444
+ 'source.julia',
445
+ 'source.shell',
446
+ 'variable.other.normal punctuation.definition.variable.shell',
447
+ 'source.reason variable.language',
448
+ 'source.reason variable.language string.other.link',
449
+ 'source.elm meta.value',
450
+ 'source.elm meta.declaration.module',
451
+ 'meta.embedded.block variable punctuation.definition.variable.php',
452
+ 'string.quoted.double.class.other',
453
+ 'source.toml keyword',
454
+ 'support.type.nim',
455
+ 'source.tf meta.template.expression',
456
+ 'source.scala entity.name.import'
457
+ ],
458
+ settings: {
459
+ foreground: '#e4b781'
460
+ }
461
+ },
462
+ {
463
+ name: 'ANNOTATION',
464
+ scope: [
465
+ 'support.variable.property',
466
+ 'constant.other.symbol.hashkey.ruby',
467
+ 'constant.other.symbol.hashkey.ruby punctuation.definition.constant.ruby',
468
+ 'entity.other.attribute-name.id',
469
+ 'entity.other.attribute-name.id punctuation.definition.entity',
470
+ 'entity.name.type.annotation.kotlin',
471
+ 'support.type.primitive',
472
+ 'meta.type.parameters entity.name.type',
473
+ 'meta.type.annotation entity.name.type',
474
+ 'punctuation.definition.typeparameters',
475
+ 'source.python support.type.python',
476
+ 'comment.block.documentation.phpdoc.php keyword.other.type.php',
477
+ 'storage.type.php',
478
+ 'keyword.type',
479
+ 'storage.type.cs',
480
+ 'storage.type.c',
481
+ 'storage.type.objc',
482
+ 'punctuation.definition.storage.type.objc',
483
+ 'markup punctuation.definition',
484
+ 'storage.type.powershell',
485
+ 'comment.block.documentation entity.name.type',
486
+ 'source.java storage.type',
487
+ 'storage.type.primitive',
488
+ 'source.groovy storage.type',
489
+ 'storage.type.r',
490
+ 'source.haskell storage.type',
491
+ 'punctuation.separator.clause-head-body',
492
+ 'source.go storage.type',
493
+ 'storage.type.core.rust',
494
+ 'storage.class.std.rust',
495
+ 'storage.modifier.lifetime.rust',
496
+ 'entity.name.lifetime.rust',
497
+ 'support.type.vb',
498
+ 'entity.name.type.kotlin',
499
+ 'support.type.julia',
500
+ 'constant.other.reference',
501
+ 'source.graphql support.type',
502
+ 'source.reason support.type string',
503
+ 'entity.name.type.fsharp',
504
+ 'source.elm storage.type',
505
+ 'storage.type.user-defined',
506
+ 'storage.type.built-in',
507
+ 'support.type.builtin',
508
+ 'source.swift support.type',
509
+ 'support.class.crystal',
510
+ 'storage.type.integral',
511
+ 'source.cpp storage.type.cpp',
512
+ 'source.vala storage.type',
513
+ 'source.hlsl storage.type.basic',
514
+ 'source.hlsl support.type.other',
515
+ 'source.apex storage.type',
516
+ 'source.nim storage.type',
517
+ 'source.cpp entity.name.type',
518
+ 'support.class.builtin',
519
+ 'source.tf meta.keyword.string',
520
+ 'source.tf meta.keyword.number',
521
+ 'source.scala entity.name.class'
522
+ ],
523
+ settings: {
524
+ foreground: '#d67e5c'
525
+ }
526
+ },
527
+ {
528
+ name: 'CONSTANT',
529
+ scope: [
530
+ 'constant',
531
+ 'variable.other.constant',
532
+ 'support.constant',
533
+ 'punctuation.definition.entity',
534
+ 'constant.character.entity',
535
+ 'support.variable.magic',
536
+ 'markup.quote',
537
+ 'entity.name.type.type-parameter.cs',
538
+ 'punctuation.bracket.angle',
539
+ 'entity.name.function.preprocessor.c',
540
+ 'storage.type.scala',
541
+ 'entity.helper.apacheconf',
542
+ 'variable.language.crystal',
543
+ 'punctuation.definition.constant',
544
+ 'support.constant punctuation.definition.variable',
545
+ 'constant.character.math',
546
+ 'support.class.math',
547
+ 'source.graphql constant.character',
548
+ 'source.reason constant.language.list',
549
+ 'source.cpp variable.other.enummember',
550
+ 'meta.table.lua variable.other',
551
+ 'support.variable.class.hideshow',
552
+ 'entity.other.attribute-name.class',
553
+ 'meta.attribute.id entity.other.attribute-name',
554
+ 'text.html entity.other.attribute-name',
555
+ 'meta.tag.attributes entity.other.attribute-name',
556
+ 'text.xml entity.other.attribute-name',
557
+ 'source.cs entity.other.attribute-name',
558
+ 'constant.character.format.placeholder',
559
+ 'constant.other.placeholder'
560
+ ],
561
+ settings: {
562
+ foreground: '#d5971a'
563
+ }
564
+ },
565
+ {
566
+ name: 'TAG',
567
+ scope: [
568
+ 'variable.language',
569
+ 'variable.parameter.function.language.special',
570
+ 'markup.bold',
571
+ 'markup.italic',
572
+ 'punctuation.definition.italic',
573
+ 'punctuation.definition.bold',
574
+ 'entity.name.tag',
575
+ 'variable.language punctuation.definition.variable',
576
+ 'keyword.control.clojure',
577
+ 'support.type.exception.python',
578
+ 'keyword.other.this.cs',
579
+ 'keyword.other.base.cs',
580
+ 'keyword.other.var.cs',
581
+ 'storage.modifier.super',
582
+ 'source.go keyword',
583
+ 'keyword.function.go',
584
+ 'meta.separator',
585
+ 'keyword.other.fn.rust',
586
+ 'storage.modifier.static.rust',
587
+ 'source.r meta.function.r keyword.control.r',
588
+ 'storage.type.def',
589
+ 'meta.class.identifier storage.modifier',
590
+ 'source.scala keyword.declaration',
591
+ 'storage.type',
592
+ 'comment.block.documentation punctuation.definition.block.tag',
593
+ 'comment.block.documentation punctuation.definition.inline.tag',
594
+ 'entity.tag.apacheconf',
595
+ 'keyword.other.julia',
596
+ 'source.julia storage.modifier',
597
+ 'constant.language.empty-list.haskell',
598
+ 'meta.function.powershell storage.type.powershell',
599
+ 'keyword.control.fun',
600
+ 'punctuation.terminator.function',
601
+ 'keyword.other.rust',
602
+ 'keyword.other.declaration-specifier.swift',
603
+ 'keyword.control.function-end.lua',
604
+ 'keyword.control.class',
605
+ 'keyword.control.def',
606
+ 'source.ocaml keyword markup.underline',
607
+ 'source.ocaml storage.type markup.underline',
608
+ 'binding.fsharp keyword',
609
+ 'function.anonymous keyword',
610
+ 'function.anonymous keyword.symbol.fsharp',
611
+ 'meta.embedded.block variable.language punctuation.definition.variable.php',
612
+ 'keyword.declaration.dart',
613
+ 'source.wsd keyword.other.class',
614
+ 'source.wsd keyword.other.linebegin',
615
+ 'keyword.other.skinparam.keyword',
616
+ 'keyword.other.nim',
617
+ 'markup.deleted.diff',
618
+ 'source.tf support.class.variable'
619
+ ],
620
+ settings: {
621
+ foreground: '#e66533'
622
+ }
623
+ },
624
+ {
625
+ name: 'STRING',
626
+ scope: [
627
+ 'string',
628
+ 'punctuation.definition.string',
629
+ 'source.css support.constant',
630
+ 'entity.name.import.go',
631
+ 'markup.raw.texttt',
632
+ 'markup.inserted.diff',
633
+ 'source.scala punctuation.definition.character',
634
+ 'constant.character.literal.scala',
635
+ 'source.tf entity.name'
636
+ ],
637
+ settings: {
638
+ foreground: '#49e9a6'
639
+ }
640
+ },
641
+ {
642
+ name: 'STRINGINTERPOLATED',
643
+ scope: [
644
+ 'string.template',
645
+ 'punctuation.definition.string.template',
646
+ 'string.interpolated.python string.quoted.single.python',
647
+ 'string.quoted.double.heredoc',
648
+ 'string.quoted.interpolated.vala',
649
+ 'string.quoted.interpolated.vala punctuation.definition.string',
650
+ 'string.regexp.apacheconf',
651
+ 'markup.inline.raw.string',
652
+ 'markup.inline.raw punctuation.definition.raw',
653
+ 'string.quoted.double.interpolated.crystal',
654
+ 'string.quoted.double.interpolated.crystal punctuation.definition.string',
655
+ 'text.tex markup.raw'
656
+ ],
657
+ settings: {
658
+ foreground: '#16b673'
659
+ }
660
+ },
661
+ {
662
+ name: 'NUMBER',
663
+ scope: [
664
+ 'constant.numeric',
665
+ 'constant.language',
666
+ 'punctuation.separator.decimal.period.php',
667
+ 'keyword.operator.null-conditional.cs',
668
+ 'punctuation.separator.question-mark.cs',
669
+ 'constant.integer.apacheconf',
670
+ 'keyword.operator.nullable-type',
671
+ 'constant.language punctuation.definition.variable',
672
+ 'constant.others.fsharp',
673
+ 'keyword.other.unit',
674
+ 'string.quoted.double.skinparam.value',
675
+ 'source.toml constant'
676
+ ],
677
+ settings: {
678
+ foreground: '#7060eb'
679
+ }
680
+ },
681
+ {
682
+ name: 'FUNCTION',
683
+ scope: [
684
+ 'variable.function',
685
+ 'support.type.property-name',
686
+ 'entity.name.function',
687
+ 'string.other.link',
688
+ 'markup.link',
689
+ 'support.type.vendored',
690
+ 'support.other.variable',
691
+ 'meta.function-call.generic.python',
692
+ 'meta.method-call.groovy meta.method.groovy',
693
+ 'meta.class.body.groovy meta.method.body.java storage.type.groovy',
694
+ 'punctuation.definition.decorator',
695
+ 'support.function.any-method',
696
+ 'text.tex support.function',
697
+ 'text.tex punctuation.definition.function',
698
+ 'entity.name.section.fsharp entity.name.section.fsharp',
699
+ 'support.variable.class.function',
700
+ 'keyword.control.cucumber.table',
701
+ 'punctuation.decorator',
702
+ 'source.tf support.class'
703
+ ],
704
+ settings: {
705
+ foreground: '#16a3b6'
706
+ }
707
+ },
708
+ {
709
+ name: 'SUPPORT',
710
+ scope: [
711
+ 'entity.name',
712
+ 'entity.other',
713
+ 'support.orther.namespace.use.php',
714
+ 'meta.use.php',
715
+ 'support.other.namespace.php',
716
+ 'support.type',
717
+ 'support.class',
718
+ 'punctuation.definition.parameters',
719
+ 'support.function',
720
+ 'support.function.construct',
721
+ 'markup.changed.git_gutter',
722
+ 'markup.underline.link',
723
+ 'markup.underline.link.image',
724
+ 'markup.underline',
725
+ 'meta.symbol.namespace.clojure',
726
+ 'entity.mime-type.apacheconf',
727
+ 'keyword.operator.function.infix',
728
+ 'entity.name.function.infix',
729
+ 'entity.name.function.call.kotlin',
730
+ 'text.tex support.function.verb',
731
+ 'text.tex support.function.texttt',
732
+ 'source.reason constant.language.unit',
733
+ 'source.ocaml constant.language constant.numeric entity.other.attribute-name.id.css',
734
+ 'source.reason entity.other.attribute-name constant.language constant.numeric',
735
+ 'constant.language.unit.fsharp',
736
+ 'source.wsd support.class.preprocessings',
737
+ 'keyword.language.gherkin.feature.scenario',
738
+ 'source.nim keyword.other.common.function',
739
+ 'entity.name.type.namespace',
740
+ 'entity.name.scope-resolution.function.call'
741
+ ],
742
+ settings: {
743
+ foreground: '#49d6e9'
744
+ }
745
+ },
746
+ {
747
+ name: 'MISC',
748
+ scope: [
749
+ 'source.js constant.other.object.key.js string.unquoted.label.js',
750
+ 'source.js punctuation.section.embedded',
751
+ 'punctuation.definition.template-expression',
752
+ 'support.class',
753
+ 'entity.name.type',
754
+ 'storage.type.string.python',
755
+ 'string.interpolated.pug',
756
+ 'support.constant.handlebars',
757
+ 'source.clojure punctuation.section.set',
758
+ 'source.clojure punctuation.section.metadata',
759
+ 'entity.global.clojure',
760
+ 'source.python meta.function-call.python support.type.python',
761
+ 'entity.other.inherited-class.python',
762
+ 'punctuation.definition.interpolation',
763
+ 'punctuation.section.embedded.begin.ruby',
764
+ 'punctuation.section.embedded.end.ruby source.ruby',
765
+ 'support.constant.math',
766
+ 'entity.namespace.r',
767
+ 'meta.method-call.groovy storage.type.groovy',
768
+ 'entity.name.function-table.lua',
769
+ 'source.scala entity.name.class.declaration',
770
+ 'constant.character.escape',
771
+ 'support.function.macro.julia',
772
+ 'string.replacement.apacheconf',
773
+ 'storage.modifier.using.vala',
774
+ 'constant.other.haskell',
775
+ 'source.objc entity.name.tag',
776
+ 'string.quoted.other.literal.upper.crystal punctuation.definition.string',
777
+ 'meta.embedded.line.crystal punctuation.section.embedded',
778
+ 'meta.embedded.line.crystal punctuation.section.embedded source.crystal',
779
+ 'punctuation.section.embedded',
780
+ 'punctuation.section.tag',
781
+ 'punctuation.section.embedded source.swift',
782
+ 'variable.other.bracket punctuation.definition.variable',
783
+ 'string.interpolated.dollar punctuation.definition.string',
784
+ 'constant.character.escape punctuation.definition.keyword',
785
+ 'source.ocaml entity.name.class constant.numeric',
786
+ 'source.reason entity.name.class',
787
+ 'keyword.format.specifier.fsharp',
788
+ 'support.module.elm',
789
+ 'meta.embedded.block.php punctuation.definition.variable.php',
790
+ 'support.variable.lua',
791
+ 'source.vala storage.type',
792
+ 'support.variable.class.group',
793
+ 'entity.name.type.class',
794
+ 'source.tf meta.keyword.list',
795
+ 'source.tf meta.keyword.map'
796
+ ],
797
+ settings: {
798
+ foreground: '#49ace9'
799
+ }
800
+ },
801
+ {
802
+ name: 'INVALID',
803
+ scope: ['invalid', 'invalid.illegal'],
804
+ settings: {
805
+ foreground: '#e3541c'
806
+ }
807
+ },
808
+ {
809
+ name: 'ITALIC',
810
+ scope: [
811
+ 'comment',
812
+ 'storage.modifier',
813
+ 'punctuation.definition.comment',
814
+ 'entity.other',
815
+ 'variable.language',
816
+ 'support.type.vendored',
817
+ 'support.constant.vendored',
818
+ 'markup.quote',
819
+ 'markup.italic',
820
+ 'tag.decorator.js entity.name.tag.js',
821
+ 'tag.decorator.js punctuation.definition.tag.js',
822
+ 'keyword.control.clojure',
823
+ 'source.clojure meta.symbol.dynamic',
824
+ 'keyword.other.this.cs',
825
+ 'keyword.other.base.cs',
826
+ 'variable.other.member.c',
827
+ 'support.type.core.rust',
828
+ 'variable.other.object.property',
829
+ 'variable.other.property',
830
+ 'source.r meta.function.r keyword.control.r',
831
+ 'comment.line.roxygen.r keyword',
832
+ 'comment.line.roxygen.r variable.parameter.r',
833
+ 'keyword.control.inheritance.coffee',
834
+ 'comment.block.documentation.phpdoc.php keyword',
835
+ 'keyword.other.array.phpdoc.php',
836
+ 'storage.type.modifier',
837
+ 'comment.block.javadoc.java keyword',
838
+ 'comment.block.javadoc.java variable.parameter.java',
839
+ 'keyword.operator.documentation.powershell',
840
+ 'variable.other.table.property.lua',
841
+ 'storage.type.scala',
842
+ 'variable.parameter.function.language.special',
843
+ 'comment.block.documentation.scala keyword',
844
+ 'comment.block.documentation.scala variable.parameter',
845
+ 'support.function.builtin.go',
846
+ 'constant.other.symbol.hashkey.ruby',
847
+ 'constant.other.symbol.hashkey.ruby punctuation.definition.constant.ruby',
848
+ 'constant.other.symbol.ruby',
849
+ 'source.vala storage.type.generic',
850
+ 'constant.other.table-name',
851
+ 'constant.other.placeholder',
852
+ 'variable.other.field',
853
+ 'keyword.function.go',
854
+ 'entity.alias.import.go',
855
+ 'source.swift keyword.other.declaration-specifier',
856
+ 'support.variable.swift',
857
+ 'keyword.other.capture-specifier',
858
+ 'text.tex support.function.emph',
859
+ 'constant.other.math',
860
+ 'support.function.textit',
861
+ 'entity.name.footnote',
862
+ 'entity.name.function.directive.graphql',
863
+ 'source.graphql support.type.enum',
864
+ 'source.ocaml entity.name.filename',
865
+ 'source.reason entity.name.filename',
866
+ 'abstract.definition.fsharp keyword',
867
+ 'abstract.definition.fsharp entity',
868
+ 'function.anonymous keyword',
869
+ 'entity.name.record.field.accessor.elm',
870
+ 'support.type.primitive',
871
+ 'support.type.builtin',
872
+ 'keyword.type.cs',
873
+ 'storage.type.built-in',
874
+ 'storage.type.primitive',
875
+ 'source.python support.type.python',
876
+ 'storage.type.core.rust',
877
+ 'source.swift support.type',
878
+ 'source.go storage.type',
879
+ 'storage.type.php',
880
+ 'storage.type.function.kotlin',
881
+ 'entity.name.type.kotlin',
882
+ 'support.type.julia',
883
+ 'variable.other.member',
884
+ 'keyword.other.import',
885
+ 'keyword.package',
886
+ 'keyword.import',
887
+ 'source.wsd keyword.control.diagram',
888
+ 'keyword.language.gherkin.feature.step',
889
+ 'source.hlsl storage.type.basic',
890
+ 'source.apex keyword.type',
891
+ 'sharing.modifier',
892
+ 'source.nim storage.type.concrete',
893
+ 'meta.preprocessor.pragma.nim',
894
+ 'storage.type.integral',
895
+ 'entity.name.scope-resolution.function.call',
896
+ 'support.class.builtin',
897
+ 'comment.block.documentation storage.type.class',
898
+ 'source.tf meta.keyword.string',
899
+ 'source.tf meta.keyword.number',
900
+ 'source.scala entity.name.class',
901
+ 'meta.import keyword.control',
902
+ 'keyword.control.export'
903
+ ],
904
+ settings: {
905
+ fontStyle: 'italic'
906
+ }
907
+ },
908
+ {
909
+ name: 'BOLD',
910
+ scope: [
911
+ 'keyword',
912
+ 'keyword.control',
913
+ 'keyword.operator',
914
+ 'keyword.other.template',
915
+ 'keyword.other.substitution',
916
+ 'storage.type.function.arrow',
917
+ 'constant.other.color',
918
+ 'punctuation.accessor',
919
+ 'entity.name.section',
920
+ 'markup.bold',
921
+ 'markup.bold string',
922
+ 'markdown.heading',
923
+ 'markup.inline.raw punctuation.definition.raw',
924
+ 'markup.heading',
925
+ 'storage.type.function.pug',
926
+ 'storage.type.function.python',
927
+ 'storage.type.annotation',
928
+ 'punctuation.bracket.angle',
929
+ 'keyword.other.new',
930
+ 'punctuation.separator.question-mark.cs',
931
+ 'storage.type.generic.wildcard',
932
+ 'source.go keyword.operator',
933
+ 'punctuation.separator.namespace',
934
+ 'constant.other.symbol.ruby punctuation.definition.constant.ruby',
935
+ 'variable.parameter',
936
+ 'support.function.builtin.rust',
937
+ 'storage.type.function.coffee',
938
+ 'entity.name.variable.parameter',
939
+ 'punctuation.separator.hash.cs',
940
+ 'constant.other.symbol.ruby punctuation.definition.constant.ruby',
941
+ 'constant.other.symbol.hashkey.ruby punctuation.definition.constant.ruby',
942
+ 'meta.function.parameters variable.other',
943
+ 'entity.name.type.annotation.kotlin',
944
+ 'storage.type.objc',
945
+ 'parameter.variable.function',
946
+ 'markup punctuation.definition',
947
+ 'punctuation.section.directive',
948
+ 'punctuation.definition.preprocessor',
949
+ 'source.ruby punctuation.definition.variable',
950
+ 'punctuation.separator.method',
951
+ 'support.function.textbf',
952
+ 'source.graphql support.type.builtin',
953
+ 'source.ocaml variable.interpolation string',
954
+ 'entity.name.function.definition.special.constructor',
955
+ 'entity.name.function.definition.special.member.destructor.',
956
+ 'meta.function.parameters variable punctuation.definition.variable.php',
957
+ 'source.wsd keyword.other.activity',
958
+ 'keyword.control.class.ruby',
959
+ 'keyword.control.def.ruby'
960
+ ],
961
+ settings: {
962
+ fontStyle: 'bold'
963
+ }
964
+ },
965
+ {
966
+ name: 'BOLD-ITALIC',
967
+ scope: [
968
+ 'markup.bold markup.italic',
969
+ 'markup.italic markup.bold',
970
+ 'markup.quote markup.bold',
971
+ 'markup.bold markup.italic string',
972
+ 'markup.italic markup.bold string',
973
+ 'markup.quote markup.bold string',
974
+ 'text.html punctuation.section.embedded',
975
+ 'variable.other.c',
976
+ 'storage.modifier.lifetime.rust',
977
+ 'entity.name.lifetime.rust',
978
+ 'source.rust meta.attribute.rust',
979
+ 'meta.attribute.id entity.other.attribute-name',
980
+ 'keyword.other.fn.rust',
981
+ 'source.ocaml punctuation.definition.tag emphasis',
982
+ 'source.tf entity.name'
983
+ ],
984
+ settings: {
985
+ fontStyle: 'bold italic'
986
+ }
987
+ },
988
+ {
989
+ name: 'NORMAL',
990
+ scope: [
991
+ 'keyword.begin.tag.ejs',
992
+ 'source.python meta.function.decorator.python support.type.python',
993
+ 'source.cs keyword.other',
994
+ 'keyword.other.var.cs',
995
+ 'source.go keyword',
996
+ 'storage.modifier.static.rust',
997
+ 'variable.parameter.r',
998
+ 'variable.parameter.handlebars',
999
+ 'storage.modifier.import',
1000
+ 'storage.modifier.package',
1001
+ 'meta.class.identifier storage.modifier',
1002
+ 'keyword.operator.other.powershell',
1003
+ 'source.lua storage.type.function',
1004
+ 'source.css variable.parameter',
1005
+ 'string.interpolated variable.parameter',
1006
+ 'source.apacheconf keyword',
1007
+ 'keyword.other.julia',
1008
+ 'storage.modifier.using.vala',
1009
+ 'source.objc keyword.other.property.attribute',
1010
+ 'source.sql keyword.other',
1011
+ 'keyword.other.using.vala',
1012
+ 'keyword.operator.function.infix',
1013
+ 'keyword.control.directive',
1014
+ 'keyword.other.rust',
1015
+ 'keyword.other.declaration-specifier.swift',
1016
+ 'entity.name.function.swift',
1017
+ 'keyword.control.function-end.lua',
1018
+ 'keyword.control.class',
1019
+ 'keyword.control.def',
1020
+ 'punctuation.definition.variable',
1021
+ 'entity.name.section.latex',
1022
+ 'source.ocaml keyword markup.underline',
1023
+ 'source.ocaml constant.language constant.numeric entity.other.attribute-name.id.css',
1024
+ 'source.reason entity.other.attribute-name constant.language constant.numeric',
1025
+ 'keyword.format.specifier.fsharp',
1026
+ 'entity.name.section.fsharp',
1027
+ 'binding.fsharp keyword',
1028
+ 'binding.fsharp keyword.symbol',
1029
+ 'record.fsharp keyword',
1030
+ 'keyword.symbol.fsharp',
1031
+ 'entity.name.section.fsharp keyword',
1032
+ 'namespace.open.fsharp keyword',
1033
+ 'namespace.open.fsharp entity',
1034
+ 'storage.type',
1035
+ 'source.cpp keyword.other',
1036
+ 'source.c keyword.other',
1037
+ 'keyword.other.unit',
1038
+ 'storage.modifier.array.bracket',
1039
+ 'keyword.control.default',
1040
+ 'meta.import.haskell keyword',
1041
+ 'keyword.declaration.dart',
1042
+ 'source.wsd keyword.other',
1043
+ 'keyword.other.skinparam',
1044
+ 'source.css keyword.control',
1045
+ 'source.css keyword.operator',
1046
+ 'keyword.language.gherkin.feature.scenario',
1047
+ 'keyword.control.cucumber.table',
1048
+ 'source.toml entity.other.attribute-name',
1049
+ 'source.toml keyword',
1050
+ 'keyword.other.nim',
1051
+ 'source.nim keyword.other.common.function',
1052
+ 'source.nim keyword.other',
1053
+ 'source.scala keyword.declaration',
1054
+ 'source.scala entity.name.class.declaration'
1055
+ ],
1056
+ settings: {
1057
+ fontStyle: ''
1058
+ }
1059
+ }
1060
+ ]
1061
+ }