@journeyapps-labs/reactor-mod-editor 0.0.0-dev-20250801180850

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