@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.
- package/README.md +10 -0
- package/dist/@types/EditorModule.d.ts +7 -0
- package/dist/@types/MonacoCommandPalletSearchEngine.d.ts +21 -0
- package/dist/@types/actions/ChangeEditorThemeAction.d.ts +9 -0
- package/dist/@types/index.d.ts +16 -0
- package/dist/@types/languages/languages.d.ts +39 -0
- package/dist/@types/languages/logs.d.ts +3 -0
- package/dist/@types/providers/EditorThemeProvider.d.ts +14 -0
- package/dist/@types/settings/StoredThemesSettings.d.ts +13 -0
- package/dist/@types/settings/VimSupportSetting.d.ts +7 -0
- package/dist/@types/shortcuts/MonacoShortcut.d.ts +9 -0
- package/dist/@types/shortcuts/MonacoShortcutHandler.d.ts +17 -0
- package/dist/@types/shortcuts/MonacoShortcutMap.d.ts +83 -0
- package/dist/@types/stores/MonacoStore.d.ts +38 -0
- package/dist/@types/stores/MonacoThemeStore.d.ts +34 -0
- package/dist/@types/stores/keybindings/KeybindingsRegistry.d.ts +46 -0
- package/dist/@types/stores/keybindings/MonacoKeybindingStore.d.ts +27 -0
- package/dist/@types/stores/keybindings/definitions.d.ts +21 -0
- package/dist/@types/stores/keybindings/utils.d.ts +2 -0
- package/dist/@types/theme/EditorThemePreferencesWidget.d.ts +26 -0
- package/dist/@types/theme/SmartEditorThemePreferencesWidget.d.ts +8 -0
- package/dist/@types/theme/UploadVSIXThemeBtnWidget.d.ts +12 -0
- package/dist/@types/theme/patchThemeService.d.ts +9 -0
- package/dist/@types/theme/theme-utils.d.ts +61 -0
- package/dist/@types/theme-reactor/editor-theme-fragment.d.ts +41 -0
- package/dist/@types/utils/paths.d.ts +23 -0
- package/dist/@types/utils/useEditorStickyHeader.d.ts +8 -0
- package/dist/@types/widgets/DualEditorWidget.d.ts +7 -0
- package/dist/@types/widgets/EditorWidget.d.ts +15 -0
- package/dist/@types/widgets/MonacoEditorWidget.d.ts +10 -0
- package/dist/@types/widgets/SimpleEditorWidget.d.ts +8 -0
- package/dist/EditorModule.js +73 -0
- package/dist/EditorModule.js.map +1 -0
- package/dist/MonacoCommandPalletSearchEngine.js +52 -0
- package/dist/MonacoCommandPalletSearchEngine.js.map +1 -0
- package/dist/actions/ChangeEditorThemeAction.js +43 -0
- package/dist/actions/ChangeEditorThemeAction.js.map +1 -0
- package/dist/index.js +33 -0
- package/dist/index.js.map +1 -0
- package/dist/languages/languages.js +155 -0
- package/dist/languages/languages.js.map +1 -0
- package/dist/languages/logs.js +110 -0
- package/dist/languages/logs.js.map +1 -0
- package/dist/providers/EditorThemeProvider.js +26 -0
- package/dist/providers/EditorThemeProvider.js.map +1 -0
- package/dist/settings/StoredThemesSettings.js +45 -0
- package/dist/settings/StoredThemesSettings.js.map +1 -0
- package/dist/settings/VimSupportSetting.js +19 -0
- package/dist/settings/VimSupportSetting.js.map +1 -0
- package/dist/shortcuts/MonacoShortcut.js +27 -0
- package/dist/shortcuts/MonacoShortcut.js.map +1 -0
- package/dist/shortcuts/MonacoShortcutHandler.js +119 -0
- package/dist/shortcuts/MonacoShortcutHandler.js.map +1 -0
- package/dist/shortcuts/MonacoShortcutMap.js +84 -0
- package/dist/shortcuts/MonacoShortcutMap.js.map +1 -0
- package/dist/stores/MonacoStore.js +119 -0
- package/dist/stores/MonacoStore.js.map +1 -0
- package/dist/stores/MonacoThemeStore.js +143 -0
- package/dist/stores/MonacoThemeStore.js.map +1 -0
- package/dist/stores/keybindings/KeybindingsRegistry.js +131 -0
- package/dist/stores/keybindings/KeybindingsRegistry.js.map +1 -0
- package/dist/stores/keybindings/MonacoKeybindingStore.js +105 -0
- package/dist/stores/keybindings/MonacoKeybindingStore.js.map +1 -0
- package/dist/stores/keybindings/definitions.js +5 -0
- package/dist/stores/keybindings/definitions.js.map +1 -0
- package/dist/stores/keybindings/utils.js +12 -0
- package/dist/stores/keybindings/utils.js.map +1 -0
- package/dist/theme/EditorThemePreferencesWidget.js +160 -0
- package/dist/theme/EditorThemePreferencesWidget.js.map +1 -0
- package/dist/theme/SmartEditorThemePreferencesWidget.js +62 -0
- package/dist/theme/SmartEditorThemePreferencesWidget.js.map +1 -0
- package/dist/theme/UploadVSIXThemeBtnWidget.js +93 -0
- package/dist/theme/UploadVSIXThemeBtnWidget.js.map +1 -0
- package/dist/theme/patchThemeService.js +146 -0
- package/dist/theme/patchThemeService.js.map +1 -0
- package/dist/theme/theme-utils.js +65 -0
- package/dist/theme/theme-utils.js.map +1 -0
- package/dist/theme-reactor/editor-theme-fragment.js +70 -0
- package/dist/theme-reactor/editor-theme-fragment.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/dist/utils/paths.js +110 -0
- package/dist/utils/paths.js.map +1 -0
- package/dist/utils/useEditorStickyHeader.js +45 -0
- package/dist/utils/useEditorStickyHeader.js.map +1 -0
- package/dist/widgets/DualEditorWidget.js +79 -0
- package/dist/widgets/DualEditorWidget.js.map +1 -0
- package/dist/widgets/EditorWidget.js +85 -0
- package/dist/widgets/EditorWidget.js.map +1 -0
- package/dist/widgets/MonacoEditorWidget.js +29 -0
- package/dist/widgets/MonacoEditorWidget.js.map +1 -0
- package/dist/widgets/SimpleEditorWidget.js +71 -0
- package/dist/widgets/SimpleEditorWidget.js.map +1 -0
- package/dist-module/00a5102416a37050fa62.tmLanguage +1282 -0
- package/dist-module/092ac75109eb363dd826.tmLanguage +424 -0
- package/dist-module/100.bundle.js +1 -0
- package/dist-module/116.bundle.js +1 -0
- package/dist-module/173.bundle.js +1 -0
- package/dist-module/179.bundle.js +1 -0
- package/dist-module/18358219dee0ad14cc0c.tmLanguage +765 -0
- package/dist-module/195.bundle.js +1 -0
- package/dist-module/277.bundle.js +1 -0
- package/dist-module/299.bundle.js +1 -0
- package/dist-module/306.bundle.js +1 -0
- package/dist-module/344.bundle.js +1 -0
- package/dist-module/399345f371a7cb9eb1ba.tmLanguage +629 -0
- package/dist-module/404.bundle.js +4 -0
- package/dist-module/404.bundle.js.LICENSE.txt +6 -0
- package/dist-module/404.bundle.js.map +1 -0
- package/dist-module/43.bundle.js +1 -0
- package/dist-module/438.bundle.js +3 -0
- package/dist-module/438.bundle.js.map +1 -0
- package/dist-module/479.bundle.js +1 -0
- package/dist-module/491.bundle.js +1 -0
- package/dist-module/513.bundle.js +1 -0
- package/dist-module/549.bundle.js +1 -0
- package/dist-module/5e221c90a0dcbd4af855.tmLanguage +237 -0
- package/dist-module/6486a2df9ca5896c2cb6.tmLanguage +5739 -0
- package/dist-module/65.bundle.js +1 -0
- package/dist-module/66.bundle.js +1 -0
- package/dist-module/685.bundle.js +1 -0
- package/dist-module/6e3d5ec6699a8d147d29.wasm +0 -0
- package/dist-module/7.bundle.js +1 -0
- package/dist-module/703774d50b4d4526a465.tmLanguage +386 -0
- package/dist-module/717.bundle.js +2 -0
- package/dist-module/728.bundle.js +1 -0
- package/dist-module/77a7afbe329083ed0f59.tmLanguage +1183 -0
- package/dist-module/78.bundle.js +1 -0
- package/dist-module/829.bundle.js +1 -0
- package/dist-module/831968f77a9412d07cc2.tmLanguage +506 -0
- package/dist-module/862.bundle.js +1 -0
- package/dist-module/87.bundle.js +1 -0
- package/dist-module/923.bundle.js +1 -0
- package/dist-module/931.bundle.js +1 -0
- package/dist-module/933.bundle.js +3 -0
- package/dist-module/933.bundle.js.map +1 -0
- package/dist-module/970.bundle.js +1 -0
- package/dist-module/984.bundle.js +1 -0
- package/dist-module/992.bundle.js +1 -0
- package/dist-module/996.bundle.js +1 -0
- package/dist-module/9c8494157d226e95da5e.tmLanguage +1377 -0
- package/dist-module/a3e215de85a86294de8a.tmLanguage +385 -0
- package/dist-module/ba5650c2a0269a236153.tmLanguage +9349 -0
- package/dist-module/bundle.js +97 -0
- package/dist-module/bundle.js.LICENSE.txt +27 -0
- package/dist-module/bundle.js.map +1 -0
- package/dist-module/editor.worker.bundle.js +1 -0
- package/dist-module/f6283f7ccaed1249d9eb.ttf +0 -0
- package/dist-module/json.worker.bundle.js +2 -0
- package/dist-module/json.worker.bundle.js.LICENSE.txt +6 -0
- package/dist-module/yaml.worker.bundle.js +1 -0
- package/media/css.tmLanguage +1183 -0
- package/media/handlebars.tmLanguage +1282 -0
- package/media/html.tmLanguage +506 -0
- package/media/javascript.tmLanguage +5739 -0
- package/media/json.tmLanguage +386 -0
- package/media/jxml.tmLanguage +424 -0
- package/media/markdown.tmLanguage +1377 -0
- package/media/regularExpressions.tmLanguage +237 -0
- package/media/sql.tmLanguage +765 -0
- package/media/themes/ayu-light.json5 +847 -0
- package/media/themes/ayu-mirage.json5 +846 -0
- package/media/themes/journey.json5 +1061 -0
- package/media/themes/oxide.json5 +579 -0
- package/media/themes/reactor.json5 +775 -0
- package/media/themes/scarlet.json5 +836 -0
- package/media/typescript.tmLanguage +9349 -0
- package/media/xml.tmLanguage +385 -0
- package/media/yaml.tmLanguage +629 -0
- package/package.json +45 -0
- package/reactor.config.json +4 -0
|
@@ -0,0 +1,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
|
+
}
|