@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,846 @@
1
+ {
2
+ "type": "dark",
3
+ "colors": {
4
+ "focusBorder": "#e6b450b3",
5
+ "foreground": "#565b66",
6
+ "widget.shadow": "#00000080",
7
+ "selection.background": "#409fff4d",
8
+ "icon.foreground": "#565b66",
9
+ "errorForeground": "#d95757",
10
+ "descriptionForeground": "#565b66",
11
+ "textBlockQuote.background": "#0f131a",
12
+ "textLink.foreground": "#e6b450",
13
+ "textLink.activeForeground": "#e6b450",
14
+ "textPreformat.foreground": "#bfbdb6",
15
+ "button.background": "#e6b450",
16
+ "button.foreground": "#734d00",
17
+ "button.hoverBackground": "#e1af4b",
18
+ "button.secondaryBackground": "#565b6633",
19
+ "button.secondaryForeground": "#bfbdb6",
20
+ "button.secondaryHoverBackground": "#565b6680",
21
+ "dropdown.background": "#0d1017",
22
+ "dropdown.foreground": "#565b66",
23
+ "dropdown.border": "#565b6645",
24
+ "input.background": "#0d1017",
25
+ "input.border": "#565b6645",
26
+ "input.foreground": "#bfbdb6",
27
+ "input.placeholderForeground": "#565b6680",
28
+ "inputOption.activeBorder": "#e6b4504d",
29
+ "inputOption.activeBackground": "#e6b45033",
30
+ "inputOption.activeForeground": "#e6b450",
31
+ "inputValidation.errorBackground": "#0d1017",
32
+ "inputValidation.errorBorder": "#d95757",
33
+ "inputValidation.infoBackground": "#0b0e14",
34
+ "inputValidation.infoBorder": "#39bae6",
35
+ "inputValidation.warningBackground": "#0b0e14",
36
+ "inputValidation.warningBorder": "#ffb454",
37
+ "scrollbar.shadow": "#1e232b00",
38
+ "scrollbarSlider.background": "#565b6666",
39
+ "scrollbarSlider.hoverBackground": "#565b6699",
40
+ "scrollbarSlider.activeBackground": "#565b66b3",
41
+ "badge.background": "#e6b45033",
42
+ "badge.foreground": "#e6b450",
43
+ "progressBar.background": "#e6b450",
44
+ "list.activeSelectionBackground": "#47526640",
45
+ "list.activeSelectionForeground": "#bfbdb6",
46
+ "list.focusBackground": "#47526640",
47
+ "list.focusForeground": "#bfbdb6",
48
+ "list.focusOutline": "#47526640",
49
+ "list.highlightForeground": "#e6b450",
50
+ "list.deemphasizedForeground": "#d95757",
51
+ "list.hoverBackground": "#47526640",
52
+ "list.inactiveSelectionBackground": "#47526633",
53
+ "list.inactiveSelectionForeground": "#565b66",
54
+ "list.invalidItemForeground": "#565b664d",
55
+ "list.errorForeground": "#d95757",
56
+ "tree.indentGuidesStroke": "#6c738080",
57
+ "listFilterWidget.background": "#0f131a",
58
+ "listFilterWidget.outline": "#e6b450",
59
+ "listFilterWidget.noMatchesOutline": "#d95757",
60
+ "list.filterMatchBackground": "#5f4c7266",
61
+ "list.filterMatchBorder": "#6c598066",
62
+ "activityBar.background": "#0b0e14",
63
+ "activityBar.foreground": "#565b66cc",
64
+ "activityBar.inactiveForeground": "#565b6699",
65
+ "activityBar.border": "#0b0e14",
66
+ "activityBar.activeBorder": "#e6b450",
67
+ "activityBarBadge.background": "#e6b450",
68
+ "activityBarBadge.foreground": "#734d00",
69
+ "sideBar.background": "#0b0e14",
70
+ "sideBar.border": "#0b0e14",
71
+ "sideBarTitle.foreground": "#565b66",
72
+ "sideBarSectionHeader.background": "#0b0e14",
73
+ "sideBarSectionHeader.foreground": "#565b66",
74
+ "sideBarSectionHeader.border": "#0b0e14",
75
+ "minimap.background": "#0b0e14",
76
+ "minimap.selectionHighlight": "#409fff4d",
77
+ "minimap.errorHighlight": "#d95757",
78
+ "minimap.findMatchHighlight": "#6c5980",
79
+ "minimapGutter.addedBackground": "#7fd962",
80
+ "minimapGutter.modifiedBackground": "#73b8ff",
81
+ "minimapGutter.deletedBackground": "#f26d78",
82
+ "editorGroup.border": "#1e232b",
83
+ "editorGroup.background": "#0f131a",
84
+ "editorGroupHeader.noTabsBackground": "#0b0e14",
85
+ "editorGroupHeader.tabsBackground": "#0b0e14",
86
+ "editorGroupHeader.tabsBorder": "#0b0e14",
87
+ "tab.activeBackground": "#0b0e14",
88
+ "tab.activeForeground": "#bfbdb6",
89
+ "tab.border": "#0b0e14",
90
+ "tab.activeBorder": "#e6b450",
91
+ "tab.unfocusedActiveBorder": "#565b66",
92
+ "tab.inactiveBackground": "#0b0e14",
93
+ "tab.inactiveForeground": "#565b66",
94
+ "tab.unfocusedActiveForeground": "#565b66",
95
+ "tab.unfocusedInactiveForeground": "#565b66",
96
+ "editor.foreground": "#bfbdb6",
97
+ "editorLineNumber.foreground": "#6c738099",
98
+ "editorLineNumber.activeForeground": "#6c7380e6",
99
+ "editorCursor.foreground": "#e6b450",
100
+ "editor.inactiveSelectionBackground": "#409fff21",
101
+ "editor.selectionBackground": "#409fff4d",
102
+ "editor.selectionHighlightBackground": "#7fd96226",
103
+ "editor.selectionHighlightBorder": "#7fd96200",
104
+ "editor.wordHighlightBackground": "#73b8ff14",
105
+ "editor.wordHighlightStrongBackground": "#7fd96214",
106
+ "editor.wordHighlightBorder": "#73b8ff80",
107
+ "editor.wordHighlightStrongBorder": "#7fd96280",
108
+ "editor.findMatchBackground": "#6c5980",
109
+ "editor.findMatchBorder": "#6c5980",
110
+ "editor.findMatchHighlightBackground": "#6c598066",
111
+ "editor.findMatchHighlightBorder": "#5f4c7266",
112
+ "editor.findRangeHighlightBackground": "#6c598040",
113
+ "editor.rangeHighlightBackground": "#6c598033",
114
+ "editor.lineHighlightBackground": "#131721",
115
+ "editorLink.activeForeground": "#e6b450",
116
+ "editorWhitespace.foreground": "#6c738099",
117
+ "editorIndentGuide.background": "#6c738033",
118
+ "editorIndentGuide.activeBackground": "#6c738080",
119
+ "editorRuler.foreground": "#6c738033",
120
+ "editorCodeLens.foreground": "#acb6bf8c",
121
+ "editorBracketMatch.background": "#6c73804d",
122
+ "editorBracketMatch.border": "#6c73804d",
123
+ "editor.snippetTabstopHighlightBackground": "#7fd96233",
124
+ "editorOverviewRuler.border": "#1e232b",
125
+ "editorOverviewRuler.modifiedForeground": "#73b8ff",
126
+ "editorOverviewRuler.addedForeground": "#7fd962",
127
+ "editorOverviewRuler.deletedForeground": "#f26d78",
128
+ "editorOverviewRuler.errorForeground": "#d95757",
129
+ "editorOverviewRuler.warningForeground": "#e6b450",
130
+ "editorOverviewRuler.bracketMatchForeground": "#6c7380b3",
131
+ "editorOverviewRuler.wordHighlightForeground": "#73b8ff66",
132
+ "editorOverviewRuler.wordHighlightStrongForeground": "#7fd96266",
133
+ "editorOverviewRuler.findMatchForeground": "#6c5980",
134
+ "editorError.foreground": "#d95757",
135
+ "editorWarning.foreground": "#e6b450",
136
+ "editorGutter.modifiedBackground": "#73b8ffcc",
137
+ "editorGutter.addedBackground": "#7fd962cc",
138
+ "editorGutter.deletedBackground": "#f26d78cc",
139
+ "diffEditor.insertedTextBackground": "#7fd9621f",
140
+ "diffEditor.removedTextBackground": "#f26d781f",
141
+ "diffEditor.diagonalFill": "#1e232b",
142
+ "editorWidget.background": "#0f131a",
143
+ "editorWidget.border": "#1e232b",
144
+ "editorHoverWidget.background": "#0f131a",
145
+ "editorHoverWidget.border": "#1e232b",
146
+ "editorSuggestWidget.background": "#0f131a",
147
+ "editorSuggestWidget.border": "#1e232b",
148
+ "editorSuggestWidget.highlightForeground": "#e6b450",
149
+ "editorSuggestWidget.selectedBackground": "#47526640",
150
+ "debugExceptionWidget.border": "#1e232b",
151
+ "debugExceptionWidget.background": "#0f131a",
152
+ "editorMarkerNavigation.background": "#0f131a",
153
+ "peekView.border": "#47526640",
154
+ "peekViewTitle.background": "#47526640",
155
+ "peekViewTitleDescription.foreground": "#565b66",
156
+ "peekViewTitleLabel.foreground": "#bfbdb6",
157
+ "peekViewEditor.background": "#0f131a",
158
+ "peekViewEditor.matchHighlightBackground": "#6c598066",
159
+ "peekViewEditor.matchHighlightBorder": "#5f4c7266",
160
+ "peekViewResult.background": "#0f131a",
161
+ "peekViewResult.fileForeground": "#bfbdb6",
162
+ "peekViewResult.lineForeground": "#565b66",
163
+ "peekViewResult.matchHighlightBackground": "#6c598066",
164
+ "peekViewResult.selectionBackground": "#47526640",
165
+ "panel.background": "#0b0e14",
166
+ "panel.border": "#1e232b",
167
+ "panelTitle.activeBorder": "#e6b450",
168
+ "panelTitle.activeForeground": "#bfbdb6",
169
+ "panelTitle.inactiveForeground": "#565b66",
170
+ "statusBar.background": "#0b0e14",
171
+ "statusBar.foreground": "#565b66",
172
+ "statusBar.border": "#0b0e14",
173
+ "statusBar.debuggingBackground": "#f29668",
174
+ "statusBar.debuggingForeground": "#0d1017",
175
+ "statusBar.noFolderBackground": "#0f131a",
176
+ "statusBarItem.activeBackground": "#565b6633",
177
+ "statusBarItem.hoverBackground": "#565b6633",
178
+ "statusBarItem.prominentBackground": "#1e232b",
179
+ "statusBarItem.prominentHoverBackground": "#00000030",
180
+ "statusBarItem.remoteBackground": "#e6b450",
181
+ "statusBarItem.remoteForeground": "#734d00",
182
+ "titleBar.activeBackground": "#0b0e14",
183
+ "titleBar.activeForeground": "#bfbdb6",
184
+ "titleBar.inactiveBackground": "#0b0e14",
185
+ "titleBar.inactiveForeground": "#565b66",
186
+ "titleBar.border": "#0b0e14",
187
+ "extensionButton.prominentForeground": "#734d00",
188
+ "extensionButton.prominentBackground": "#e6b450",
189
+ "extensionButton.prominentHoverBackground": "#e1af4b",
190
+ "pickerGroup.border": "#1e232b",
191
+ "pickerGroup.foreground": "#565b6680",
192
+ "debugToolBar.background": "#0f131a",
193
+ "debugIcon.breakpointForeground": "#f29668",
194
+ "debugIcon.breakpointDisabledForeground": "#f2966880",
195
+ "debugConsoleInputIcon.foreground": "#e6b450",
196
+ "welcomePage.tileBackground": "#0b0e14",
197
+ "welcomePage.tileShadow": "#00000080",
198
+ "welcomePage.progress.background": "#131721",
199
+ "welcomePage.buttonBackground": "#e6b45066",
200
+ "walkThrough.embeddedEditorBackground": "#0f131a",
201
+ "gitDecoration.modifiedResourceForeground": "#73b8ffb3",
202
+ "gitDecoration.deletedResourceForeground": "#f26d78b3",
203
+ "gitDecoration.untrackedResourceForeground": "#7fd962b3",
204
+ "gitDecoration.ignoredResourceForeground": "#565b6680",
205
+ "gitDecoration.conflictingResourceForeground": "",
206
+ "gitDecoration.submoduleResourceForeground": "#d2a6ffb3",
207
+ "settings.headerForeground": "#bfbdb6",
208
+ "settings.modifiedItemIndicator": "#73b8ff",
209
+ "keybindingLabel.background": "#565b661a",
210
+ "keybindingLabel.foreground": "#bfbdb6",
211
+ "keybindingLabel.border": "#bfbdb61a",
212
+ "keybindingLabel.bottomBorder": "#bfbdb61a",
213
+ "terminal.background": "#0b0e14",
214
+ "terminal.foreground": "#bfbdb6",
215
+ "terminal.ansiBlack": "#1e232b",
216
+ "terminal.ansiRed": "#ea6c73",
217
+ "terminal.ansiGreen": "#7fd962",
218
+ "terminal.ansiYellow": "#f9af4f",
219
+ "terminal.ansiBlue": "#53bdfa",
220
+ "terminal.ansiMagenta": "#cda1fa",
221
+ "terminal.ansiCyan": "#90e1c6",
222
+ "terminal.ansiWhite": "#c7c7c7",
223
+ "terminal.ansiBrightBlack": "#686868",
224
+ "terminal.ansiBrightRed": "#f07178",
225
+ "terminal.ansiBrightGreen": "#aad94c",
226
+ "terminal.ansiBrightYellow": "#ffb454",
227
+ "terminal.ansiBrightBlue": "#59c2ff",
228
+ "terminal.ansiBrightMagenta": "#d2a6ff",
229
+ "terminal.ansiBrightCyan": "#95e6cb",
230
+ "terminal.ansiBrightWhite": "#ffffff"
231
+ },
232
+ "tokenColors": [
233
+ {
234
+ "settings": {
235
+ "background": "#0b0e14",
236
+ "foreground": "#bfbdb6"
237
+ }
238
+ },
239
+ {
240
+ "name": "Comment",
241
+ "scope": [
242
+ "comment"
243
+ ],
244
+ "settings": {
245
+ "fontStyle": "italic",
246
+ "foreground": "#acb6bf8c"
247
+ }
248
+ },
249
+ {
250
+ "name": "String",
251
+ "scope": [
252
+ "string",
253
+ "constant.other.symbol"
254
+ ],
255
+ "settings": {
256
+ "foreground": "#aad94c"
257
+ }
258
+ },
259
+ {
260
+ "name": "Regular Expressions and Escape Characters",
261
+ "scope": [
262
+ "string.regexp",
263
+ "constant.character",
264
+ "constant.other"
265
+ ],
266
+ "settings": {
267
+ "foreground": "#95e6cb"
268
+ }
269
+ },
270
+ {
271
+ "name": "Number",
272
+ "scope": [
273
+ "constant.numeric"
274
+ ],
275
+ "settings": {
276
+ "foreground": "#d2a6ff"
277
+ }
278
+ },
279
+ {
280
+ "name": "Built-in constants",
281
+ "scope": [
282
+ "constant.language"
283
+ ],
284
+ "settings": {
285
+ "foreground": "#d2a6ff"
286
+ }
287
+ },
288
+ {
289
+ "name": "Variable",
290
+ "scope": [
291
+ "variable",
292
+ "variable.parameter.function-call"
293
+ ],
294
+ "settings": {
295
+ "foreground": "#bfbdb6"
296
+ }
297
+ },
298
+ {
299
+ "name": "Member Variable",
300
+ "scope": [
301
+ "variable.member"
302
+ ],
303
+ "settings": {
304
+ "foreground": "#f07178"
305
+ }
306
+ },
307
+ {
308
+ "name": "Language variable",
309
+ "scope": [
310
+ "variable.language"
311
+ ],
312
+ "settings": {
313
+ "fontStyle": "italic",
314
+ "foreground": "#39bae6"
315
+ }
316
+ },
317
+ {
318
+ "name": "Storage",
319
+ "scope": [
320
+ "storage"
321
+ ],
322
+ "settings": {
323
+ "foreground": "#ff8f40"
324
+ }
325
+ },
326
+ {
327
+ "name": "Keyword",
328
+ "scope": [
329
+ "keyword"
330
+ ],
331
+ "settings": {
332
+ "foreground": "#ff8f40"
333
+ }
334
+ },
335
+ {
336
+ "name": "Operators",
337
+ "scope": [
338
+ "keyword.operator"
339
+ ],
340
+ "settings": {
341
+ "foreground": "#f29668"
342
+ }
343
+ },
344
+ {
345
+ "name": "Separators like ; or ,",
346
+ "scope": [
347
+ "punctuation.separator",
348
+ "punctuation.terminator"
349
+ ],
350
+ "settings": {
351
+ "foreground": "#bfbdb6b3"
352
+ }
353
+ },
354
+ {
355
+ "name": "Punctuation",
356
+ "scope": [
357
+ "punctuation.section"
358
+ ],
359
+ "settings": {
360
+ "foreground": "#bfbdb6"
361
+ }
362
+ },
363
+ {
364
+ "name": "Accessor",
365
+ "scope": [
366
+ "punctuation.accessor"
367
+ ],
368
+ "settings": {
369
+ "foreground": "#f29668"
370
+ }
371
+ },
372
+ {
373
+ "name": "JavaScript/TypeScript interpolation punctuation",
374
+ "scope": [
375
+ "punctuation.definition.template-expression"
376
+ ],
377
+ "settings": {
378
+ "foreground": "#ff8f40"
379
+ }
380
+ },
381
+ {
382
+ "name": "Ruby interpolation punctuation",
383
+ "scope": [
384
+ "punctuation.section.embedded"
385
+ ],
386
+ "settings": {
387
+ "foreground": "#ff8f40"
388
+ }
389
+ },
390
+ {
391
+ "name": "Interpolation text",
392
+ "scope": [
393
+ "meta.embedded"
394
+ ],
395
+ "settings": {
396
+ "foreground": "#bfbdb6"
397
+ }
398
+ },
399
+ {
400
+ "name": "Types fixes",
401
+ "scope": [
402
+ "source.java storage.type",
403
+ "source.haskell storage.type",
404
+ "source.c storage.type"
405
+ ],
406
+ "settings": {
407
+ "foreground": "#59c2ff"
408
+ }
409
+ },
410
+ {
411
+ "name": "Inherited class type",
412
+ "scope": [
413
+ "entity.other.inherited-class"
414
+ ],
415
+ "settings": {
416
+ "foreground": "#39bae6"
417
+ }
418
+ },
419
+ {
420
+ "name": "Lambda arrow",
421
+ "scope": [
422
+ "storage.type.function"
423
+ ],
424
+ "settings": {
425
+ "foreground": "#ff8f40"
426
+ }
427
+ },
428
+ {
429
+ "name": "Java primitive variable types",
430
+ "scope": [
431
+ "source.java storage.type.primitive"
432
+ ],
433
+ "settings": {
434
+ "foreground": "#39bae6"
435
+ }
436
+ },
437
+ {
438
+ "name": "Function name",
439
+ "scope": [
440
+ "entity.name.function"
441
+ ],
442
+ "settings": {
443
+ "foreground": "#ffb454"
444
+ }
445
+ },
446
+ {
447
+ "name": "Function arguments",
448
+ "scope": [
449
+ "variable.parameter",
450
+ "meta.parameter"
451
+ ],
452
+ "settings": {
453
+ "foreground": "#d2a6ff"
454
+ }
455
+ },
456
+ {
457
+ "name": "Function call",
458
+ "scope": [
459
+ "variable.function",
460
+ "variable.annotation",
461
+ "meta.function-call.generic",
462
+ "support.function.go"
463
+ ],
464
+ "settings": {
465
+ "foreground": "#ffb454"
466
+ }
467
+ },
468
+ {
469
+ "name": "Library function",
470
+ "scope": [
471
+ "support.function",
472
+ "support.macro"
473
+ ],
474
+ "settings": {
475
+ "foreground": "#f07178"
476
+ }
477
+ },
478
+ {
479
+ "name": "Imports and packages",
480
+ "scope": [
481
+ "entity.name.import",
482
+ "entity.name.package"
483
+ ],
484
+ "settings": {
485
+ "foreground": "#aad94c"
486
+ }
487
+ },
488
+ {
489
+ "name": "Entity name",
490
+ "scope": [
491
+ "entity.name"
492
+ ],
493
+ "settings": {
494
+ "foreground": "#59c2ff"
495
+ }
496
+ },
497
+ {
498
+ "name": "Tag",
499
+ "scope": [
500
+ "entity.name.tag",
501
+ "meta.tag.sgml"
502
+ ],
503
+ "settings": {
504
+ "foreground": "#39bae6"
505
+ }
506
+ },
507
+ {
508
+ "name": "JSX Component",
509
+ "scope": [
510
+ "support.class.component"
511
+ ],
512
+ "settings": {
513
+ "foreground": "#59c2ff"
514
+ }
515
+ },
516
+ {
517
+ "name": "Tag start/end",
518
+ "scope": [
519
+ "punctuation.definition.tag.end",
520
+ "punctuation.definition.tag.begin",
521
+ "punctuation.definition.tag"
522
+ ],
523
+ "settings": {
524
+ "foreground": "#39bae680"
525
+ }
526
+ },
527
+ {
528
+ "name": "Tag attribute",
529
+ "scope": [
530
+ "entity.other.attribute-name"
531
+ ],
532
+ "settings": {
533
+ "foreground": "#ffb454"
534
+ }
535
+ },
536
+ {
537
+ "name": "Library constant",
538
+ "scope": [
539
+ "support.constant"
540
+ ],
541
+ "settings": {
542
+ "fontStyle": "italic",
543
+ "foreground": "#f29668"
544
+ }
545
+ },
546
+ {
547
+ "name": "Library class/type",
548
+ "scope": [
549
+ "support.type",
550
+ "support.class",
551
+ "source.go storage.type"
552
+ ],
553
+ "settings": {
554
+ "foreground": "#39bae6"
555
+ }
556
+ },
557
+ {
558
+ "name": "Decorators/annotation",
559
+ "scope": [
560
+ "meta.decorator variable.other",
561
+ "meta.decorator punctuation.decorator",
562
+ "storage.type.annotation"
563
+ ],
564
+ "settings": {
565
+ "foreground": "#e6b673"
566
+ }
567
+ },
568
+ {
569
+ "name": "Invalid",
570
+ "scope": [
571
+ "invalid"
572
+ ],
573
+ "settings": {
574
+ "foreground": "#d95757"
575
+ }
576
+ },
577
+ {
578
+ "name": "diff.header",
579
+ "scope": [
580
+ "meta.diff",
581
+ "meta.diff.header"
582
+ ],
583
+ "settings": {
584
+ "foreground": "#c594c5"
585
+ }
586
+ },
587
+ {
588
+ "name": "Ruby class methods",
589
+ "scope": [
590
+ "source.ruby variable.other.readwrite"
591
+ ],
592
+ "settings": {
593
+ "foreground": "#ffb454"
594
+ }
595
+ },
596
+ {
597
+ "name": "CSS tag names",
598
+ "scope": [
599
+ "source.css entity.name.tag",
600
+ "source.sass entity.name.tag",
601
+ "source.scss entity.name.tag",
602
+ "source.less entity.name.tag",
603
+ "source.stylus entity.name.tag"
604
+ ],
605
+ "settings": {
606
+ "foreground": "#59c2ff"
607
+ }
608
+ },
609
+ {
610
+ "name": "CSS browser prefix",
611
+ "scope": [
612
+ "source.css support.type",
613
+ "source.sass support.type",
614
+ "source.scss support.type",
615
+ "source.less support.type",
616
+ "source.stylus support.type"
617
+ ],
618
+ "settings": {
619
+ "foreground": "#acb6bf8c"
620
+ }
621
+ },
622
+ {
623
+ "name": "CSS Properties",
624
+ "scope": [
625
+ "support.type.property-name"
626
+ ],
627
+ "settings": {
628
+ "fontStyle": "normal",
629
+ "foreground": "#39bae6"
630
+ }
631
+ },
632
+ {
633
+ "name": "Search Results Numbers",
634
+ "scope": [
635
+ "constant.numeric.line-number.find-in-files - match"
636
+ ],
637
+ "settings": {
638
+ "foreground": "#acb6bf8c"
639
+ }
640
+ },
641
+ {
642
+ "name": "Search Results Match Numbers",
643
+ "scope": [
644
+ "constant.numeric.line-number.match"
645
+ ],
646
+ "settings": {
647
+ "foreground": "#ff8f40"
648
+ }
649
+ },
650
+ {
651
+ "name": "Search Results Lines",
652
+ "scope": [
653
+ "entity.name.filename.find-in-files"
654
+ ],
655
+ "settings": {
656
+ "foreground": "#aad94c"
657
+ }
658
+ },
659
+ {
660
+ "scope": [
661
+ "message.error"
662
+ ],
663
+ "settings": {
664
+ "foreground": "#d95757"
665
+ }
666
+ },
667
+ {
668
+ "name": "Markup heading",
669
+ "scope": [
670
+ "markup.heading",
671
+ "markup.heading entity.name"
672
+ ],
673
+ "settings": {
674
+ "fontStyle": "bold",
675
+ "foreground": "#aad94c"
676
+ }
677
+ },
678
+ {
679
+ "name": "Markup links",
680
+ "scope": [
681
+ "markup.underline.link",
682
+ "string.other.link"
683
+ ],
684
+ "settings": {
685
+ "foreground": "#39bae6"
686
+ }
687
+ },
688
+ {
689
+ "name": "Markup Italic",
690
+ "scope": [
691
+ "markup.italic"
692
+ ],
693
+ "settings": {
694
+ "fontStyle": "italic",
695
+ "foreground": "#f07178"
696
+ }
697
+ },
698
+ {
699
+ "name": "Markup Bold",
700
+ "scope": [
701
+ "markup.bold"
702
+ ],
703
+ "settings": {
704
+ "fontStyle": "bold",
705
+ "foreground": "#f07178"
706
+ }
707
+ },
708
+ {
709
+ "name": "Markup Bold/italic",
710
+ "scope": [
711
+ "markup.italic markup.bold",
712
+ "markup.bold markup.italic"
713
+ ],
714
+ "settings": {
715
+ "fontStyle": "bold italic"
716
+ }
717
+ },
718
+ {
719
+ "name": "Markup Code",
720
+ "scope": [
721
+ "markup.raw"
722
+ ],
723
+ "settings": {
724
+ "background": "#bfbdb605"
725
+ }
726
+ },
727
+ {
728
+ "name": "Markup Code Inline",
729
+ "scope": [
730
+ "markup.raw.inline"
731
+ ],
732
+ "settings": {
733
+ "background": "#bfbdb60f"
734
+ }
735
+ },
736
+ {
737
+ "name": "Markdown Separator",
738
+ "scope": [
739
+ "meta.separator"
740
+ ],
741
+ "settings": {
742
+ "fontStyle": "bold",
743
+ "background": "#bfbdb60f",
744
+ "foreground": "#acb6bf8c"
745
+ }
746
+ },
747
+ {
748
+ "name": "Markup Blockquote",
749
+ "scope": [
750
+ "markup.quote"
751
+ ],
752
+ "settings": {
753
+ "foreground": "#95e6cb",
754
+ "fontStyle": "italic"
755
+ }
756
+ },
757
+ {
758
+ "name": "Markup List Bullet",
759
+ "scope": [
760
+ "markup.list punctuation.definition.list.begin"
761
+ ],
762
+ "settings": {
763
+ "foreground": "#ffb454"
764
+ }
765
+ },
766
+ {
767
+ "name": "Markup added",
768
+ "scope": [
769
+ "markup.inserted"
770
+ ],
771
+ "settings": {
772
+ "foreground": "#7fd962"
773
+ }
774
+ },
775
+ {
776
+ "name": "Markup modified",
777
+ "scope": [
778
+ "markup.changed"
779
+ ],
780
+ "settings": {
781
+ "foreground": "#73b8ff"
782
+ }
783
+ },
784
+ {
785
+ "name": "Markup removed",
786
+ "scope": [
787
+ "markup.deleted"
788
+ ],
789
+ "settings": {
790
+ "foreground": "#f26d78"
791
+ }
792
+ },
793
+ {
794
+ "name": "Markup Strike",
795
+ "scope": [
796
+ "markup.strike"
797
+ ],
798
+ "settings": {
799
+ "foreground": "#e6b673"
800
+ }
801
+ },
802
+ {
803
+ "name": "Markup Table",
804
+ "scope": [
805
+ "markup.table"
806
+ ],
807
+ "settings": {
808
+ "background": "#bfbdb60f",
809
+ "foreground": "#39bae6"
810
+ }
811
+ },
812
+ {
813
+ "name": "Markup Raw Inline",
814
+ "scope": [
815
+ "text.html.markdown markup.inline.raw"
816
+ ],
817
+ "settings": {
818
+ "foreground": "#f29668"
819
+ }
820
+ },
821
+ {
822
+ "name": "Markdown - Line Break",
823
+ "scope": [
824
+ "text.html.markdown meta.dummy.line-break"
825
+ ],
826
+ "settings": {
827
+ "background": "#acb6bf8c",
828
+ "foreground": "#acb6bf8c"
829
+ }
830
+ },
831
+ {
832
+ "name": "Markdown - Raw Block Fenced",
833
+ "scope": [
834
+ "punctuation.definition.markdown"
835
+ ],
836
+ "settings": {
837
+ "background": "#bfbdb6",
838
+ "foreground": "#acb6bf8c"
839
+ }
840
+ }
841
+ ],
842
+ "semanticHighlighting": true,
843
+ "semanticTokenColors": {
844
+ "parameter.label": "#bfbdb6"
845
+ }
846
+ }