@mantine/code-highlight 7.17.0 → 8.0.0-alpha.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/cjs/CodeHighlight/CodeHighlight.cjs +168 -0
- package/cjs/CodeHighlight/CodeHighlight.cjs.map +1 -0
- package/cjs/CodeHighlight/CodeHighlight.context.cjs +12 -0
- package/cjs/CodeHighlight/CodeHighlight.context.cjs.map +1 -0
- package/cjs/CodeHighlight/CodeHighlightControl/CodeHighlightControl.cjs +48 -0
- package/cjs/CodeHighlight/CodeHighlightControl/CodeHighlightControl.cjs.map +1 -0
- package/cjs/CodeHighlight/CopyCodeButton/CopyCodeButton.cjs +28 -0
- package/cjs/CodeHighlight/CopyCodeButton/CopyCodeButton.cjs.map +1 -0
- package/cjs/CodeHighlight/CopyCodeButton/CopyIcon.cjs +32 -0
- package/cjs/CodeHighlight/CopyCodeButton/CopyIcon.cjs.map +1 -0
- package/cjs/CodeHighlight/ExpandCodeButton/ExpandCodeButton.cjs +26 -0
- package/cjs/CodeHighlight/ExpandCodeButton/ExpandCodeButton.cjs.map +1 -0
- package/cjs/CodeHighlight/ExpandCodeButton/ExpandIcon.cjs +39 -0
- package/cjs/CodeHighlight/ExpandCodeButton/ExpandIcon.cjs.map +1 -0
- package/cjs/CodeHighlight/InlineCodeHighlight.cjs +40 -0
- package/cjs/CodeHighlight/InlineCodeHighlight.cjs.map +1 -0
- package/cjs/CodeHighlight.module.css.cjs +2 -2
- package/cjs/CodeHighlightProvider/CodeHighlightProvider.cjs +35 -0
- package/cjs/CodeHighlightProvider/CodeHighlightProvider.cjs.map +1 -0
- package/cjs/CodeHighlightProvider/adapters/highlight-js-adapter.cjs +17 -0
- package/cjs/CodeHighlightProvider/adapters/highlight-js-adapter.cjs.map +1 -0
- package/cjs/CodeHighlightProvider/adapters/plain-text-adapter.cjs +8 -0
- package/cjs/CodeHighlightProvider/adapters/plain-text-adapter.cjs.map +1 -0
- package/cjs/CodeHighlightProvider/adapters/shiki-adapter.cjs +42 -0
- package/cjs/CodeHighlightProvider/adapters/shiki-adapter.cjs.map +1 -0
- package/cjs/CodeHighlightProvider/adapters/shiki-themes.cjs +1240 -0
- package/cjs/CodeHighlightProvider/adapters/shiki-themes.cjs.map +1 -0
- package/cjs/CodeHighlightTabs/CodeHighlightTabs.cjs +127 -0
- package/cjs/CodeHighlightTabs/CodeHighlightTabs.cjs.map +1 -0
- package/cjs/CodeHighlightTabs/FileIcon.cjs +17 -0
- package/cjs/CodeHighlightTabs/FileIcon.cjs.map +1 -0
- package/cjs/index.cjs +16 -4
- package/cjs/index.cjs.map +1 -1
- package/esm/CodeHighlight/CodeHighlight.context.mjs +9 -0
- package/esm/CodeHighlight/CodeHighlight.context.mjs.map +1 -0
- package/esm/CodeHighlight/CodeHighlight.mjs +162 -0
- package/esm/CodeHighlight/CodeHighlight.mjs.map +1 -0
- package/esm/CodeHighlight/CodeHighlightControl/CodeHighlightControl.mjs +46 -0
- package/esm/CodeHighlight/CodeHighlightControl/CodeHighlightControl.mjs.map +1 -0
- package/esm/CodeHighlight/CopyCodeButton/CopyCodeButton.mjs +26 -0
- package/esm/CodeHighlight/CopyCodeButton/CopyCodeButton.mjs.map +1 -0
- package/esm/CodeHighlight/CopyCodeButton/CopyIcon.mjs +30 -0
- package/esm/CodeHighlight/CopyCodeButton/CopyIcon.mjs.map +1 -0
- package/esm/CodeHighlight/ExpandCodeButton/ExpandCodeButton.mjs +24 -0
- package/esm/CodeHighlight/ExpandCodeButton/ExpandCodeButton.mjs.map +1 -0
- package/esm/CodeHighlight/ExpandCodeButton/ExpandIcon.mjs +37 -0
- package/esm/CodeHighlight/ExpandCodeButton/ExpandIcon.mjs.map +1 -0
- package/esm/CodeHighlight/InlineCodeHighlight.mjs +38 -0
- package/esm/CodeHighlight/InlineCodeHighlight.mjs.map +1 -0
- package/esm/CodeHighlight.module.css.mjs +2 -2
- package/esm/CodeHighlightProvider/CodeHighlightProvider.mjs +30 -0
- package/esm/CodeHighlightProvider/CodeHighlightProvider.mjs.map +1 -0
- package/esm/CodeHighlightProvider/adapters/highlight-js-adapter.mjs +15 -0
- package/esm/CodeHighlightProvider/adapters/highlight-js-adapter.mjs.map +1 -0
- package/esm/CodeHighlightProvider/adapters/plain-text-adapter.mjs +6 -0
- package/esm/CodeHighlightProvider/adapters/plain-text-adapter.mjs.map +1 -0
- package/esm/CodeHighlightProvider/adapters/shiki-adapter.mjs +39 -0
- package/esm/CodeHighlightProvider/adapters/shiki-adapter.mjs.map +1 -0
- package/esm/CodeHighlightProvider/adapters/shiki-themes.mjs +1237 -0
- package/esm/CodeHighlightProvider/adapters/shiki-themes.mjs.map +1 -0
- package/esm/CodeHighlightTabs/CodeHighlightTabs.mjs +125 -0
- package/esm/CodeHighlightTabs/CodeHighlightTabs.mjs.map +1 -0
- package/esm/CodeHighlightTabs/FileIcon.mjs +15 -0
- package/esm/CodeHighlightTabs/FileIcon.mjs.map +1 -0
- package/esm/index.mjs +8 -3
- package/esm/index.mjs.map +1 -1
- package/lib/CodeHighlight/CodeHighlight.context.d.ts +11 -0
- package/lib/CodeHighlight/CodeHighlight.d.ts +66 -0
- package/lib/CodeHighlight/CodeHighlightControl/CodeHighlightControl.d.ts +33 -0
- package/lib/CodeHighlight/CopyCodeButton/CopyCodeButton.d.ts +10 -0
- package/lib/CodeHighlight/CopyCodeButton/CopyIcon.d.ts +8 -0
- package/lib/CodeHighlight/ExpandCodeButton/ExpandCodeButton.d.ts +11 -0
- package/lib/CodeHighlight/ExpandCodeButton/ExpandIcon.d.ts +8 -0
- package/lib/CodeHighlight/InlineCodeHighlight.d.ts +29 -0
- package/lib/CodeHighlightProvider/CodeHighlightProvider.d.ts +32 -0
- package/lib/CodeHighlightProvider/adapters/highlight-js-adapter.d.ts +2 -0
- package/lib/CodeHighlightProvider/adapters/plain-text-adapter.d.ts +2 -0
- package/lib/CodeHighlightProvider/adapters/shiki-adapter.d.ts +7 -0
- package/lib/CodeHighlightProvider/adapters/shiki-themes.d.ts +430 -0
- package/lib/CodeHighlightTabs/CodeHighlightTabs.d.ts +34 -0
- package/lib/CodeHighlightTabs/FileIcon.d.ts +9 -0
- package/lib/index.d.mts +12 -6
- package/lib/index.d.ts +12 -6
- package/package.json +4 -4
- package/styles.css +214 -190
- package/styles.layer.css +214 -190
|
@@ -0,0 +1,1237 @@
|
|
|
1
|
+
const light = {
|
|
2
|
+
colors: {
|
|
3
|
+
"activityBar.activeBorder": "#fd8c73",
|
|
4
|
+
"activityBar.background": "#ffffff",
|
|
5
|
+
"activityBar.border": "#d0d7de",
|
|
6
|
+
"activityBar.foreground": "#1f2328",
|
|
7
|
+
"activityBar.inactiveForeground": "#656d76",
|
|
8
|
+
"activityBarBadge.background": "#0969da",
|
|
9
|
+
"activityBarBadge.foreground": "#ffffff",
|
|
10
|
+
"badge.background": "#0969da",
|
|
11
|
+
"badge.foreground": "#ffffff",
|
|
12
|
+
"breadcrumb.activeSelectionForeground": "#656d76",
|
|
13
|
+
"breadcrumb.focusForeground": "#1f2328",
|
|
14
|
+
"breadcrumb.foreground": "#656d76",
|
|
15
|
+
"breadcrumbPicker.background": "#ffffff",
|
|
16
|
+
"button.background": "#1f883d",
|
|
17
|
+
"button.foreground": "#ffffff",
|
|
18
|
+
"button.hoverBackground": "#1a7f37",
|
|
19
|
+
"button.secondaryBackground": "#ebecf0",
|
|
20
|
+
"button.secondaryForeground": "#24292f",
|
|
21
|
+
"button.secondaryHoverBackground": "#f3f4f6",
|
|
22
|
+
"checkbox.background": "#f6f8fa",
|
|
23
|
+
"checkbox.border": "#d0d7de",
|
|
24
|
+
"debugConsole.errorForeground": "#cf222e",
|
|
25
|
+
"debugConsole.infoForeground": "#57606a",
|
|
26
|
+
"debugConsole.sourceForeground": "#9a6700",
|
|
27
|
+
"debugConsole.warningForeground": "#7d4e00",
|
|
28
|
+
"debugConsoleInputIcon.foreground": "#6639ba",
|
|
29
|
+
"debugIcon.breakpointForeground": "#cf222e",
|
|
30
|
+
"debugTokenExpression.boolean": "#116329",
|
|
31
|
+
"debugTokenExpression.error": "#a40e26",
|
|
32
|
+
"debugTokenExpression.name": "#0550ae",
|
|
33
|
+
"debugTokenExpression.number": "#116329",
|
|
34
|
+
"debugTokenExpression.string": "#0a3069",
|
|
35
|
+
"debugTokenExpression.value": "#0a3069",
|
|
36
|
+
"debugToolBar.background": "#ffffff",
|
|
37
|
+
descriptionForeground: "#656d76",
|
|
38
|
+
"diffEditor.insertedLineBackground": "#aceebb4d",
|
|
39
|
+
"diffEditor.insertedTextBackground": "#6fdd8b80",
|
|
40
|
+
"diffEditor.removedLineBackground": "#ffcecb4d",
|
|
41
|
+
"diffEditor.removedTextBackground": "#ff818266",
|
|
42
|
+
"dropdown.background": "#ffffff",
|
|
43
|
+
"dropdown.border": "#d0d7de",
|
|
44
|
+
"dropdown.foreground": "#1f2328",
|
|
45
|
+
"dropdown.listBackground": "#ffffff",
|
|
46
|
+
"editor.background": "#ffffff",
|
|
47
|
+
"editor.findMatchBackground": "#bf8700",
|
|
48
|
+
"editor.findMatchHighlightBackground": "#fae17d80",
|
|
49
|
+
"editor.focusedStackFrameHighlightBackground": "#4ac26b66",
|
|
50
|
+
"editor.foldBackground": "#6e77811a",
|
|
51
|
+
"editor.foreground": "#1f2328",
|
|
52
|
+
"editor.lineHighlightBackground": "#eaeef280",
|
|
53
|
+
"editor.linkedEditingBackground": "#0969da12",
|
|
54
|
+
"editor.selectionHighlightBackground": "#4ac26b40",
|
|
55
|
+
"editor.stackFrameHighlightBackground": "#d4a72c66",
|
|
56
|
+
"editor.wordHighlightBackground": "#eaeef280",
|
|
57
|
+
"editor.wordHighlightBorder": "#afb8c199",
|
|
58
|
+
"editor.wordHighlightStrongBackground": "#afb8c14d",
|
|
59
|
+
"editor.wordHighlightStrongBorder": "#afb8c199",
|
|
60
|
+
"editorBracketHighlight.foreground1": "#0969da",
|
|
61
|
+
"editorBracketHighlight.foreground2": "#1a7f37",
|
|
62
|
+
"editorBracketHighlight.foreground3": "#9a6700",
|
|
63
|
+
"editorBracketHighlight.foreground4": "#cf222e",
|
|
64
|
+
"editorBracketHighlight.foreground5": "#bf3989",
|
|
65
|
+
"editorBracketHighlight.foreground6": "#8250df",
|
|
66
|
+
"editorBracketHighlight.unexpectedBracket.foreground": "#656d76",
|
|
67
|
+
"editorBracketMatch.background": "#4ac26b40",
|
|
68
|
+
"editorBracketMatch.border": "#4ac26b99",
|
|
69
|
+
"editorCursor.foreground": "#0969da",
|
|
70
|
+
"editorGroup.border": "#d0d7de",
|
|
71
|
+
"editorGroupHeader.tabsBackground": "#f6f8fa",
|
|
72
|
+
"editorGroupHeader.tabsBorder": "#d0d7de",
|
|
73
|
+
"editorGutter.addedBackground": "#4ac26b66",
|
|
74
|
+
"editorGutter.deletedBackground": "#ff818266",
|
|
75
|
+
"editorGutter.modifiedBackground": "#d4a72c66",
|
|
76
|
+
"editorIndentGuide.activeBackground": "#1f23283d",
|
|
77
|
+
"editorIndentGuide.background": "#1f23281f",
|
|
78
|
+
"editorInlayHint.background": "#afb8c133",
|
|
79
|
+
"editorInlayHint.foreground": "#656d76",
|
|
80
|
+
"editorInlayHint.paramBackground": "#afb8c133",
|
|
81
|
+
"editorInlayHint.paramForeground": "#656d76",
|
|
82
|
+
"editorInlayHint.typeBackground": "#afb8c133",
|
|
83
|
+
"editorInlayHint.typeForeground": "#656d76",
|
|
84
|
+
"editorLineNumber.activeForeground": "#1f2328",
|
|
85
|
+
"editorLineNumber.foreground": "#8c959f",
|
|
86
|
+
"editorOverviewRuler.border": "#ffffff",
|
|
87
|
+
"editorWhitespace.foreground": "#afb8c1",
|
|
88
|
+
"editorWidget.background": "#ffffff",
|
|
89
|
+
errorForeground: "#cf222e",
|
|
90
|
+
focusBorder: "#0969da",
|
|
91
|
+
foreground: "#1f2328",
|
|
92
|
+
"gitDecoration.addedResourceForeground": "#1a7f37",
|
|
93
|
+
"gitDecoration.conflictingResourceForeground": "#bc4c00",
|
|
94
|
+
"gitDecoration.deletedResourceForeground": "#cf222e",
|
|
95
|
+
"gitDecoration.ignoredResourceForeground": "#6e7781",
|
|
96
|
+
"gitDecoration.modifiedResourceForeground": "#9a6700",
|
|
97
|
+
"gitDecoration.submoduleResourceForeground": "#656d76",
|
|
98
|
+
"gitDecoration.untrackedResourceForeground": "#1a7f37",
|
|
99
|
+
"icon.foreground": "#656d76",
|
|
100
|
+
"input.background": "#ffffff",
|
|
101
|
+
"input.border": "#d0d7de",
|
|
102
|
+
"input.foreground": "#1f2328",
|
|
103
|
+
"input.placeholderForeground": "#6e7781",
|
|
104
|
+
"keybindingLabel.foreground": "#1f2328",
|
|
105
|
+
"list.activeSelectionBackground": "#afb8c133",
|
|
106
|
+
"list.activeSelectionForeground": "#1f2328",
|
|
107
|
+
"list.focusBackground": "#ddf4ff",
|
|
108
|
+
"list.focusForeground": "#1f2328",
|
|
109
|
+
"list.highlightForeground": "#0969da",
|
|
110
|
+
"list.hoverBackground": "#eaeef280",
|
|
111
|
+
"list.hoverForeground": "#1f2328",
|
|
112
|
+
"list.inactiveFocusBackground": "#ddf4ff",
|
|
113
|
+
"list.inactiveSelectionBackground": "#afb8c133",
|
|
114
|
+
"list.inactiveSelectionForeground": "#1f2328",
|
|
115
|
+
"minimapSlider.activeBackground": "#8c959f47",
|
|
116
|
+
"minimapSlider.background": "#8c959f33",
|
|
117
|
+
"minimapSlider.hoverBackground": "#8c959f3d",
|
|
118
|
+
"notificationCenterHeader.background": "#f6f8fa",
|
|
119
|
+
"notificationCenterHeader.foreground": "#656d76",
|
|
120
|
+
"notifications.background": "#ffffff",
|
|
121
|
+
"notifications.border": "#d0d7de",
|
|
122
|
+
"notifications.foreground": "#1f2328",
|
|
123
|
+
"notificationsErrorIcon.foreground": "#cf222e",
|
|
124
|
+
"notificationsInfoIcon.foreground": "#0969da",
|
|
125
|
+
"notificationsWarningIcon.foreground": "#9a6700",
|
|
126
|
+
"panel.background": "#f6f8fa",
|
|
127
|
+
"panel.border": "#d0d7de",
|
|
128
|
+
"panelInput.border": "#d0d7de",
|
|
129
|
+
"panelTitle.activeBorder": "#fd8c73",
|
|
130
|
+
"panelTitle.activeForeground": "#1f2328",
|
|
131
|
+
"panelTitle.inactiveForeground": "#656d76",
|
|
132
|
+
"pickerGroup.border": "#d0d7de",
|
|
133
|
+
"pickerGroup.foreground": "#656d76",
|
|
134
|
+
"progressBar.background": "#0969da",
|
|
135
|
+
"quickInput.background": "#ffffff",
|
|
136
|
+
"quickInput.foreground": "#1f2328",
|
|
137
|
+
"scrollbar.shadow": "#6e778133",
|
|
138
|
+
"scrollbarSlider.activeBackground": "#8c959f47",
|
|
139
|
+
"scrollbarSlider.background": "#8c959f33",
|
|
140
|
+
"scrollbarSlider.hoverBackground": "#8c959f3d",
|
|
141
|
+
"settings.headerForeground": "#1f2328",
|
|
142
|
+
"settings.modifiedItemIndicator": "#d4a72c66",
|
|
143
|
+
"sideBar.background": "#f6f8fa",
|
|
144
|
+
"sideBar.border": "#d0d7de",
|
|
145
|
+
"sideBar.foreground": "#1f2328",
|
|
146
|
+
"sideBarSectionHeader.background": "#f6f8fa",
|
|
147
|
+
"sideBarSectionHeader.border": "#d0d7de",
|
|
148
|
+
"sideBarSectionHeader.foreground": "#1f2328",
|
|
149
|
+
"sideBarTitle.foreground": "#1f2328",
|
|
150
|
+
"statusBar.background": "#ffffff",
|
|
151
|
+
"statusBar.border": "#d0d7de",
|
|
152
|
+
"statusBar.debuggingBackground": "#cf222e",
|
|
153
|
+
"statusBar.debuggingForeground": "#ffffff",
|
|
154
|
+
"statusBar.focusBorder": "#0969da80",
|
|
155
|
+
"statusBar.foreground": "#656d76",
|
|
156
|
+
"statusBar.noFolderBackground": "#ffffff",
|
|
157
|
+
"statusBarItem.activeBackground": "#1f23281f",
|
|
158
|
+
"statusBarItem.focusBorder": "#0969da",
|
|
159
|
+
"statusBarItem.hoverBackground": "#1f232814",
|
|
160
|
+
"statusBarItem.prominentBackground": "#afb8c133",
|
|
161
|
+
"statusBarItem.remoteBackground": "#eaeef2",
|
|
162
|
+
"statusBarItem.remoteForeground": "#1f2328",
|
|
163
|
+
"symbolIcon.arrayForeground": "#953800",
|
|
164
|
+
"symbolIcon.booleanForeground": "#0550ae",
|
|
165
|
+
"symbolIcon.classForeground": "#953800",
|
|
166
|
+
"symbolIcon.colorForeground": "#0a3069",
|
|
167
|
+
"symbolIcon.constantForeground": "#116329",
|
|
168
|
+
"symbolIcon.constructorForeground": "#3e1f79",
|
|
169
|
+
"symbolIcon.enumeratorForeground": "#953800",
|
|
170
|
+
"symbolIcon.enumeratorMemberForeground": "#0550ae",
|
|
171
|
+
"symbolIcon.eventForeground": "#57606a",
|
|
172
|
+
"symbolIcon.fieldForeground": "#953800",
|
|
173
|
+
"symbolIcon.fileForeground": "#7d4e00",
|
|
174
|
+
"symbolIcon.folderForeground": "#7d4e00",
|
|
175
|
+
"symbolIcon.functionForeground": "#6639ba",
|
|
176
|
+
"symbolIcon.interfaceForeground": "#953800",
|
|
177
|
+
"symbolIcon.keyForeground": "#0550ae",
|
|
178
|
+
"symbolIcon.keywordForeground": "#a40e26",
|
|
179
|
+
"symbolIcon.methodForeground": "#6639ba",
|
|
180
|
+
"symbolIcon.moduleForeground": "#a40e26",
|
|
181
|
+
"symbolIcon.namespaceForeground": "#a40e26",
|
|
182
|
+
"symbolIcon.nullForeground": "#0550ae",
|
|
183
|
+
"symbolIcon.numberForeground": "#116329",
|
|
184
|
+
"symbolIcon.objectForeground": "#953800",
|
|
185
|
+
"symbolIcon.operatorForeground": "#0a3069",
|
|
186
|
+
"symbolIcon.packageForeground": "#953800",
|
|
187
|
+
"symbolIcon.propertyForeground": "#953800",
|
|
188
|
+
"symbolIcon.referenceForeground": "#0550ae",
|
|
189
|
+
"symbolIcon.snippetForeground": "#0550ae",
|
|
190
|
+
"symbolIcon.stringForeground": "#0a3069",
|
|
191
|
+
"symbolIcon.structForeground": "#953800",
|
|
192
|
+
"symbolIcon.textForeground": "#0a3069",
|
|
193
|
+
"symbolIcon.typeParameterForeground": "#0a3069",
|
|
194
|
+
"symbolIcon.unitForeground": "#0550ae",
|
|
195
|
+
"symbolIcon.variableForeground": "#953800",
|
|
196
|
+
"tab.activeBackground": "#ffffff",
|
|
197
|
+
"tab.activeBorder": "#ffffff",
|
|
198
|
+
"tab.activeBorderTop": "#fd8c73",
|
|
199
|
+
"tab.activeForeground": "#1f2328",
|
|
200
|
+
"tab.border": "#d0d7de",
|
|
201
|
+
"tab.hoverBackground": "#ffffff",
|
|
202
|
+
"tab.inactiveBackground": "#f6f8fa",
|
|
203
|
+
"tab.inactiveForeground": "#656d76",
|
|
204
|
+
"tab.unfocusedActiveBorder": "#ffffff",
|
|
205
|
+
"tab.unfocusedActiveBorderTop": "#d0d7de",
|
|
206
|
+
"tab.unfocusedHoverBackground": "#eaeef280",
|
|
207
|
+
"terminal.ansiBlack": "#24292f",
|
|
208
|
+
"terminal.ansiBlue": "#0969da",
|
|
209
|
+
"terminal.ansiBrightBlack": "#57606a",
|
|
210
|
+
"terminal.ansiBrightBlue": "#218bff",
|
|
211
|
+
"terminal.ansiBrightCyan": "#3192aa",
|
|
212
|
+
"terminal.ansiBrightGreen": "#1a7f37",
|
|
213
|
+
"terminal.ansiBrightMagenta": "#a475f9",
|
|
214
|
+
"terminal.ansiBrightRed": "#a40e26",
|
|
215
|
+
"terminal.ansiBrightWhite": "#8c959f",
|
|
216
|
+
"terminal.ansiBrightYellow": "#633c01",
|
|
217
|
+
"terminal.ansiCyan": "#1b7c83",
|
|
218
|
+
"terminal.ansiGreen": "#116329",
|
|
219
|
+
"terminal.ansiMagenta": "#8250df",
|
|
220
|
+
"terminal.ansiRed": "#cf222e",
|
|
221
|
+
"terminal.ansiWhite": "#6e7781",
|
|
222
|
+
"terminal.ansiYellow": "#4d2d00",
|
|
223
|
+
"terminal.foreground": "#1f2328",
|
|
224
|
+
"textBlockQuote.background": "#f6f8fa",
|
|
225
|
+
"textBlockQuote.border": "#d0d7de",
|
|
226
|
+
"textCodeBlock.background": "#afb8c133",
|
|
227
|
+
"textLink.activeForeground": "#0969da",
|
|
228
|
+
"textLink.foreground": "#0969da",
|
|
229
|
+
"textPreformat.foreground": "#656d76",
|
|
230
|
+
"textSeparator.foreground": "#d8dee4",
|
|
231
|
+
"titleBar.activeBackground": "#ffffff",
|
|
232
|
+
"titleBar.activeForeground": "#656d76",
|
|
233
|
+
"titleBar.border": "#d0d7de",
|
|
234
|
+
"titleBar.inactiveBackground": "#f6f8fa",
|
|
235
|
+
"titleBar.inactiveForeground": "#656d76",
|
|
236
|
+
"tree.indentGuidesStroke": "#d8dee4",
|
|
237
|
+
"welcomePage.buttonBackground": "#f6f8fa",
|
|
238
|
+
"welcomePage.buttonHoverBackground": "#f3f4f6"
|
|
239
|
+
},
|
|
240
|
+
displayName: "GitHub Light Default",
|
|
241
|
+
semanticHighlighting: true,
|
|
242
|
+
tokenColors: [
|
|
243
|
+
{
|
|
244
|
+
scope: ["comment", "punctuation.definition.comment", "string.comment"],
|
|
245
|
+
settings: {
|
|
246
|
+
foreground: "#6e7781"
|
|
247
|
+
}
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
scope: ["constant.other.placeholder", "constant.character"],
|
|
251
|
+
settings: {
|
|
252
|
+
foreground: "#cf222e"
|
|
253
|
+
}
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
scope: [
|
|
257
|
+
"constant",
|
|
258
|
+
"entity.name.constant",
|
|
259
|
+
"variable.other.constant",
|
|
260
|
+
"variable.other.enummember",
|
|
261
|
+
"variable.language",
|
|
262
|
+
"entity"
|
|
263
|
+
],
|
|
264
|
+
settings: {
|
|
265
|
+
foreground: "#0550ae"
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
scope: ["entity.name", "meta.export.default", "meta.definition.variable"],
|
|
270
|
+
settings: {
|
|
271
|
+
foreground: "#953800"
|
|
272
|
+
}
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
scope: [
|
|
276
|
+
"variable.parameter.function",
|
|
277
|
+
"meta.jsx.children",
|
|
278
|
+
"meta.block",
|
|
279
|
+
"meta.tag.attributes",
|
|
280
|
+
"entity.name.constant",
|
|
281
|
+
"meta.object.member",
|
|
282
|
+
"meta.embedded.expression"
|
|
283
|
+
],
|
|
284
|
+
settings: {
|
|
285
|
+
foreground: "#1f2328"
|
|
286
|
+
}
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
scope: "entity.name.function",
|
|
290
|
+
settings: {
|
|
291
|
+
foreground: "#8250df"
|
|
292
|
+
}
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
scope: ["entity.name.tag", "support.class.component"],
|
|
296
|
+
settings: {
|
|
297
|
+
foreground: "#116329"
|
|
298
|
+
}
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
scope: "keyword",
|
|
302
|
+
settings: {
|
|
303
|
+
foreground: "#cf222e"
|
|
304
|
+
}
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
scope: ["storage", "storage.type"],
|
|
308
|
+
settings: {
|
|
309
|
+
foreground: "#cf222e"
|
|
310
|
+
}
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
scope: ["storage.modifier.package", "storage.modifier.import", "storage.type.java"],
|
|
314
|
+
settings: {
|
|
315
|
+
foreground: "#1f2328"
|
|
316
|
+
}
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
scope: ["string", "string punctuation.section.embedded source"],
|
|
320
|
+
settings: {
|
|
321
|
+
foreground: "#0a3069"
|
|
322
|
+
}
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
scope: "support",
|
|
326
|
+
settings: {
|
|
327
|
+
foreground: "#0550ae"
|
|
328
|
+
}
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
scope: "meta.property-name",
|
|
332
|
+
settings: {
|
|
333
|
+
foreground: "#0550ae"
|
|
334
|
+
}
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
scope: "variable",
|
|
338
|
+
settings: {
|
|
339
|
+
foreground: "#953800"
|
|
340
|
+
}
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
scope: "variable.other",
|
|
344
|
+
settings: {
|
|
345
|
+
foreground: "#1f2328"
|
|
346
|
+
}
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
scope: "invalid.broken",
|
|
350
|
+
settings: {
|
|
351
|
+
fontStyle: "italic",
|
|
352
|
+
foreground: "#82071e"
|
|
353
|
+
}
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
scope: "invalid.deprecated",
|
|
357
|
+
settings: {
|
|
358
|
+
fontStyle: "italic",
|
|
359
|
+
foreground: "#82071e"
|
|
360
|
+
}
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
scope: "invalid.illegal",
|
|
364
|
+
settings: {
|
|
365
|
+
fontStyle: "italic",
|
|
366
|
+
foreground: "#82071e"
|
|
367
|
+
}
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
scope: "invalid.unimplemented",
|
|
371
|
+
settings: {
|
|
372
|
+
fontStyle: "italic",
|
|
373
|
+
foreground: "#82071e"
|
|
374
|
+
}
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
scope: "carriage-return",
|
|
378
|
+
settings: {
|
|
379
|
+
background: "#cf222e",
|
|
380
|
+
content: "^M",
|
|
381
|
+
fontStyle: "italic underline",
|
|
382
|
+
foreground: "#f6f8fa"
|
|
383
|
+
}
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
scope: "message.error",
|
|
387
|
+
settings: {
|
|
388
|
+
foreground: "#82071e"
|
|
389
|
+
}
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
scope: "string variable",
|
|
393
|
+
settings: {
|
|
394
|
+
foreground: "#0550ae"
|
|
395
|
+
}
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
scope: ["source.regexp", "string.regexp"],
|
|
399
|
+
settings: {
|
|
400
|
+
foreground: "#0a3069"
|
|
401
|
+
}
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
scope: [
|
|
405
|
+
"string.regexp.character-class",
|
|
406
|
+
"string.regexp constant.character.escape",
|
|
407
|
+
"string.regexp source.ruby.embedded",
|
|
408
|
+
"string.regexp string.regexp.arbitrary-repitition"
|
|
409
|
+
],
|
|
410
|
+
settings: {
|
|
411
|
+
foreground: "#0a3069"
|
|
412
|
+
}
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
scope: "string.regexp constant.character.escape",
|
|
416
|
+
settings: {
|
|
417
|
+
fontStyle: "bold",
|
|
418
|
+
foreground: "#116329"
|
|
419
|
+
}
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
scope: "support.constant",
|
|
423
|
+
settings: {
|
|
424
|
+
foreground: "#0550ae"
|
|
425
|
+
}
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
scope: "support.variable",
|
|
429
|
+
settings: {
|
|
430
|
+
foreground: "#0550ae"
|
|
431
|
+
}
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
scope: "support.type.property-name.json",
|
|
435
|
+
settings: {
|
|
436
|
+
foreground: "#116329"
|
|
437
|
+
}
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
scope: "meta.module-reference",
|
|
441
|
+
settings: {
|
|
442
|
+
foreground: "#0550ae"
|
|
443
|
+
}
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
scope: "punctuation.definition.list.begin.markdown",
|
|
447
|
+
settings: {
|
|
448
|
+
foreground: "#953800"
|
|
449
|
+
}
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
scope: ["markup.heading", "markup.heading entity.name"],
|
|
453
|
+
settings: {
|
|
454
|
+
fontStyle: "bold",
|
|
455
|
+
foreground: "#0550ae"
|
|
456
|
+
}
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
scope: "markup.quote",
|
|
460
|
+
settings: {
|
|
461
|
+
foreground: "#116329"
|
|
462
|
+
}
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
scope: "markup.italic",
|
|
466
|
+
settings: {
|
|
467
|
+
fontStyle: "italic",
|
|
468
|
+
foreground: "#1f2328"
|
|
469
|
+
}
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
scope: "markup.bold",
|
|
473
|
+
settings: {
|
|
474
|
+
fontStyle: "bold",
|
|
475
|
+
foreground: "#1f2328"
|
|
476
|
+
}
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
scope: ["markup.underline"],
|
|
480
|
+
settings: {
|
|
481
|
+
fontStyle: "underline"
|
|
482
|
+
}
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
scope: ["markup.strikethrough"],
|
|
486
|
+
settings: {
|
|
487
|
+
fontStyle: "strikethrough"
|
|
488
|
+
}
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
scope: "markup.inline.raw",
|
|
492
|
+
settings: {
|
|
493
|
+
foreground: "#0550ae"
|
|
494
|
+
}
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
scope: ["markup.deleted", "meta.diff.header.from-file", "punctuation.definition.deleted"],
|
|
498
|
+
settings: {
|
|
499
|
+
background: "#ffebe9",
|
|
500
|
+
foreground: "#82071e"
|
|
501
|
+
}
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
scope: ["punctuation.section.embedded"],
|
|
505
|
+
settings: {
|
|
506
|
+
foreground: "#cf222e"
|
|
507
|
+
}
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
scope: ["markup.inserted", "meta.diff.header.to-file", "punctuation.definition.inserted"],
|
|
511
|
+
settings: {
|
|
512
|
+
background: "#dafbe1",
|
|
513
|
+
foreground: "#116329"
|
|
514
|
+
}
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
scope: ["markup.changed", "punctuation.definition.changed"],
|
|
518
|
+
settings: {
|
|
519
|
+
background: "#ffd8b5",
|
|
520
|
+
foreground: "#953800"
|
|
521
|
+
}
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
scope: ["markup.ignored", "markup.untracked"],
|
|
525
|
+
settings: {
|
|
526
|
+
background: "#0550ae",
|
|
527
|
+
foreground: "#eaeef2"
|
|
528
|
+
}
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
scope: "meta.diff.range",
|
|
532
|
+
settings: {
|
|
533
|
+
fontStyle: "bold",
|
|
534
|
+
foreground: "#8250df"
|
|
535
|
+
}
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
scope: "meta.diff.header",
|
|
539
|
+
settings: {
|
|
540
|
+
foreground: "#0550ae"
|
|
541
|
+
}
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
scope: "meta.separator",
|
|
545
|
+
settings: {
|
|
546
|
+
fontStyle: "bold",
|
|
547
|
+
foreground: "#0550ae"
|
|
548
|
+
}
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
scope: "meta.output",
|
|
552
|
+
settings: {
|
|
553
|
+
foreground: "#0550ae"
|
|
554
|
+
}
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
scope: [
|
|
558
|
+
"brackethighlighter.tag",
|
|
559
|
+
"brackethighlighter.curly",
|
|
560
|
+
"brackethighlighter.round",
|
|
561
|
+
"brackethighlighter.square",
|
|
562
|
+
"brackethighlighter.angle",
|
|
563
|
+
"brackethighlighter.quote"
|
|
564
|
+
],
|
|
565
|
+
settings: {
|
|
566
|
+
foreground: "#57606a"
|
|
567
|
+
}
|
|
568
|
+
},
|
|
569
|
+
{
|
|
570
|
+
scope: "brackethighlighter.unmatched",
|
|
571
|
+
settings: {
|
|
572
|
+
foreground: "#82071e"
|
|
573
|
+
}
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
scope: ["constant.other.reference.link", "string.other.link"],
|
|
577
|
+
settings: {
|
|
578
|
+
foreground: "#0a3069"
|
|
579
|
+
}
|
|
580
|
+
}
|
|
581
|
+
],
|
|
582
|
+
type: "light"
|
|
583
|
+
};
|
|
584
|
+
const dark = {
|
|
585
|
+
type: "dark",
|
|
586
|
+
colors: {
|
|
587
|
+
"dropdown.background": "#525252",
|
|
588
|
+
"list.activeSelectionBackground": "#707070",
|
|
589
|
+
"quickInputList.focusBackground": "#707070",
|
|
590
|
+
"list.inactiveSelectionBackground": "#4e4e4e",
|
|
591
|
+
"list.hoverBackground": "#444444",
|
|
592
|
+
"list.highlightForeground": "#e58520",
|
|
593
|
+
"button.background": "#565656",
|
|
594
|
+
"editor.background": "#1e1e1e",
|
|
595
|
+
"editor.foreground": "#c5c8c6",
|
|
596
|
+
"editor.selectionBackground": "#676b7180",
|
|
597
|
+
"minimap.selectionHighlight": "#676b7180",
|
|
598
|
+
"editor.selectionHighlightBackground": "#575b6180",
|
|
599
|
+
"editor.lineHighlightBackground": "#303030",
|
|
600
|
+
"editorLineNumber.activeForeground": "#949494",
|
|
601
|
+
"editor.wordHighlightBackground": "#4747a180",
|
|
602
|
+
"editor.wordHighlightStrongBackground": "#6767ce80",
|
|
603
|
+
"editorCursor.foreground": "#c07020",
|
|
604
|
+
"editorWhitespace.foreground": "#505037",
|
|
605
|
+
"editorIndentGuide.background": "#505037",
|
|
606
|
+
"editorIndentGuide.activeBackground": "#707057",
|
|
607
|
+
"editorGroupHeader.tabsBackground": "#282828",
|
|
608
|
+
"tab.inactiveBackground": "#404040",
|
|
609
|
+
"tab.border": "#303030",
|
|
610
|
+
"tab.inactiveForeground": "#d8d8d8",
|
|
611
|
+
"tab.lastPinnedBorder": "#505050",
|
|
612
|
+
"peekView.border": "#3655b5",
|
|
613
|
+
"panelTitle.activeForeground": "#ffffff",
|
|
614
|
+
"statusBar.background": "#505050",
|
|
615
|
+
"statusBar.debuggingBackground": "#505050",
|
|
616
|
+
"statusBar.noFolderBackground": "#505050",
|
|
617
|
+
"titleBar.activeBackground": "#505050",
|
|
618
|
+
"statusBarItem.remoteBackground": "#3655b5",
|
|
619
|
+
"ports.iconRunningProcessForeground": "#CCCCCC",
|
|
620
|
+
"activityBar.background": "#353535",
|
|
621
|
+
"activityBar.foreground": "#ffffff",
|
|
622
|
+
"activityBarBadge.background": "#3655b5",
|
|
623
|
+
"sideBar.background": "#272727",
|
|
624
|
+
"sideBarSectionHeader.background": "#505050",
|
|
625
|
+
"menu.background": "#272727",
|
|
626
|
+
"menu.foreground": "#CCCCCC",
|
|
627
|
+
"pickerGroup.foreground": "#b0b0b0",
|
|
628
|
+
"inputOption.activeBorder": "#3655b5",
|
|
629
|
+
focusBorder: "#3655b5",
|
|
630
|
+
"terminal.ansiBlack": "#1e1e1e",
|
|
631
|
+
"terminal.ansiRed": "#C4265E",
|
|
632
|
+
// the bright color with ~75% transparent on the background
|
|
633
|
+
"terminal.ansiGreen": "#86B42B",
|
|
634
|
+
"terminal.ansiYellow": "#B3B42B",
|
|
635
|
+
"terminal.ansiBlue": "#6A7EC8",
|
|
636
|
+
"terminal.ansiMagenta": "#8C6BC8",
|
|
637
|
+
"terminal.ansiCyan": "#56ADBC",
|
|
638
|
+
"terminal.ansiWhite": "#e3e3dd",
|
|
639
|
+
"terminal.ansiBrightBlack": "#666666",
|
|
640
|
+
"terminal.ansiBrightRed": "#f92672",
|
|
641
|
+
"terminal.ansiBrightGreen": "#A6E22E",
|
|
642
|
+
"terminal.ansiBrightYellow": "#e2e22e",
|
|
643
|
+
// hue shifted #A6E22E
|
|
644
|
+
"terminal.ansiBrightBlue": "#819aff",
|
|
645
|
+
// hue shifted #AE81FF
|
|
646
|
+
"terminal.ansiBrightMagenta": "#AE81FF",
|
|
647
|
+
"terminal.ansiBrightCyan": "#66D9EF",
|
|
648
|
+
"terminal.ansiBrightWhite": "#f8f8f2",
|
|
649
|
+
"terminal.inactiveSelectionBackground": "#676b7140"
|
|
650
|
+
},
|
|
651
|
+
tokenColors: [
|
|
652
|
+
{
|
|
653
|
+
settings: {
|
|
654
|
+
foreground: "#C5C8C6"
|
|
655
|
+
}
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
scope: ["meta.embedded", "source.groovy.embedded", "variable.legacy.builtin.python"],
|
|
659
|
+
settings: {
|
|
660
|
+
foreground: "#C5C8C6"
|
|
661
|
+
}
|
|
662
|
+
},
|
|
663
|
+
{
|
|
664
|
+
name: "Comment",
|
|
665
|
+
scope: "comment",
|
|
666
|
+
settings: {
|
|
667
|
+
fontStyle: "",
|
|
668
|
+
foreground: "#9A9B99"
|
|
669
|
+
}
|
|
670
|
+
},
|
|
671
|
+
{
|
|
672
|
+
name: "String",
|
|
673
|
+
scope: "string",
|
|
674
|
+
settings: {
|
|
675
|
+
fontStyle: "",
|
|
676
|
+
foreground: "#9AA83A"
|
|
677
|
+
}
|
|
678
|
+
},
|
|
679
|
+
{
|
|
680
|
+
name: "String Embedded Source",
|
|
681
|
+
scope: "string source",
|
|
682
|
+
settings: {
|
|
683
|
+
fontStyle: "",
|
|
684
|
+
foreground: "#D08442"
|
|
685
|
+
}
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
name: "Number",
|
|
689
|
+
scope: "constant.numeric",
|
|
690
|
+
settings: {
|
|
691
|
+
fontStyle: "",
|
|
692
|
+
foreground: "#6089B4"
|
|
693
|
+
}
|
|
694
|
+
},
|
|
695
|
+
{
|
|
696
|
+
name: "Built-in constant",
|
|
697
|
+
scope: "constant.language",
|
|
698
|
+
settings: {
|
|
699
|
+
fontStyle: "",
|
|
700
|
+
foreground: "#408080"
|
|
701
|
+
}
|
|
702
|
+
},
|
|
703
|
+
{
|
|
704
|
+
name: "User-defined constant",
|
|
705
|
+
scope: "constant.character, constant.other",
|
|
706
|
+
settings: {
|
|
707
|
+
fontStyle: "",
|
|
708
|
+
foreground: "#8080FF"
|
|
709
|
+
}
|
|
710
|
+
},
|
|
711
|
+
{
|
|
712
|
+
name: "Keyword",
|
|
713
|
+
scope: "keyword",
|
|
714
|
+
settings: {
|
|
715
|
+
fontStyle: "",
|
|
716
|
+
foreground: "#6089B4"
|
|
717
|
+
}
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
name: "Support",
|
|
721
|
+
scope: "support",
|
|
722
|
+
settings: {
|
|
723
|
+
fontStyle: "",
|
|
724
|
+
foreground: "#C7444A"
|
|
725
|
+
}
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
name: "Storage",
|
|
729
|
+
scope: "storage",
|
|
730
|
+
settings: {
|
|
731
|
+
fontStyle: "",
|
|
732
|
+
foreground: "#9872A2"
|
|
733
|
+
}
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
name: "Class name",
|
|
737
|
+
scope: "entity.name.class, entity.name.type, entity.name.namespace, entity.name.scope-resolution",
|
|
738
|
+
settings: {
|
|
739
|
+
fontStyle: "",
|
|
740
|
+
foreground: "#9B0000"
|
|
741
|
+
}
|
|
742
|
+
},
|
|
743
|
+
{
|
|
744
|
+
name: "Inherited class",
|
|
745
|
+
scope: "entity.other.inherited-class",
|
|
746
|
+
settings: {
|
|
747
|
+
fontStyle: "",
|
|
748
|
+
foreground: "#C7444A"
|
|
749
|
+
}
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
name: "Function name",
|
|
753
|
+
scope: "entity.name.function",
|
|
754
|
+
settings: {
|
|
755
|
+
fontStyle: "",
|
|
756
|
+
foreground: "#CE6700"
|
|
757
|
+
}
|
|
758
|
+
},
|
|
759
|
+
{
|
|
760
|
+
name: "Function argument",
|
|
761
|
+
scope: "variable.parameter",
|
|
762
|
+
settings: {
|
|
763
|
+
fontStyle: "",
|
|
764
|
+
foreground: "#6089B4"
|
|
765
|
+
}
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
name: "Tag name",
|
|
769
|
+
scope: "entity.name.tag",
|
|
770
|
+
settings: {
|
|
771
|
+
fontStyle: "",
|
|
772
|
+
foreground: "#9872A2"
|
|
773
|
+
}
|
|
774
|
+
},
|
|
775
|
+
{
|
|
776
|
+
name: "Tag attribute",
|
|
777
|
+
scope: "entity.other.attribute-name",
|
|
778
|
+
settings: {
|
|
779
|
+
fontStyle: "",
|
|
780
|
+
foreground: "#9872A2"
|
|
781
|
+
}
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
name: "Library function",
|
|
785
|
+
scope: "support.function",
|
|
786
|
+
settings: {
|
|
787
|
+
fontStyle: "",
|
|
788
|
+
foreground: "#9872A2"
|
|
789
|
+
}
|
|
790
|
+
},
|
|
791
|
+
{
|
|
792
|
+
name: "Keyword",
|
|
793
|
+
scope: "keyword",
|
|
794
|
+
settings: {
|
|
795
|
+
fontStyle: "",
|
|
796
|
+
foreground: "#676867"
|
|
797
|
+
}
|
|
798
|
+
},
|
|
799
|
+
{
|
|
800
|
+
name: "Class Variable",
|
|
801
|
+
scope: "variable.other, variable.js, punctuation.separator.variable",
|
|
802
|
+
settings: {
|
|
803
|
+
fontStyle: "",
|
|
804
|
+
foreground: "#6089B4"
|
|
805
|
+
}
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
name: "Meta Brace",
|
|
809
|
+
scope: "punctuation.section.embedded -(source string source punctuation.section.embedded), meta.brace.erb.html",
|
|
810
|
+
settings: {
|
|
811
|
+
fontStyle: "",
|
|
812
|
+
foreground: "#008200"
|
|
813
|
+
}
|
|
814
|
+
},
|
|
815
|
+
{
|
|
816
|
+
name: "Invalid",
|
|
817
|
+
scope: "invalid",
|
|
818
|
+
settings: {
|
|
819
|
+
fontStyle: "",
|
|
820
|
+
foreground: "#FF0B00"
|
|
821
|
+
}
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
name: "Normal Variable",
|
|
825
|
+
scope: "variable.other.php, variable.other.normal",
|
|
826
|
+
settings: {
|
|
827
|
+
fontStyle: "",
|
|
828
|
+
foreground: "#6089B4"
|
|
829
|
+
}
|
|
830
|
+
},
|
|
831
|
+
{
|
|
832
|
+
name: "Function Object",
|
|
833
|
+
scope: "meta.function-call.object",
|
|
834
|
+
settings: {
|
|
835
|
+
fontStyle: "",
|
|
836
|
+
foreground: "#9872A2"
|
|
837
|
+
}
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
name: "Function Call Variable",
|
|
841
|
+
scope: "variable.other.property",
|
|
842
|
+
settings: {
|
|
843
|
+
fontStyle: "",
|
|
844
|
+
foreground: "#9872A2"
|
|
845
|
+
}
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
name: "Keyword Control / Special",
|
|
849
|
+
scope: [
|
|
850
|
+
"keyword.control",
|
|
851
|
+
"keyword.operator.new.cpp",
|
|
852
|
+
"keyword.operator.delete.cpp",
|
|
853
|
+
"keyword.other.using",
|
|
854
|
+
"keyword.other.directive.using",
|
|
855
|
+
"keyword.other.operator"
|
|
856
|
+
],
|
|
857
|
+
settings: {
|
|
858
|
+
fontStyle: "",
|
|
859
|
+
foreground: "#9872A2"
|
|
860
|
+
}
|
|
861
|
+
},
|
|
862
|
+
{
|
|
863
|
+
name: "Tag",
|
|
864
|
+
scope: "meta.tag",
|
|
865
|
+
settings: {
|
|
866
|
+
fontStyle: "",
|
|
867
|
+
foreground: "#D0B344"
|
|
868
|
+
}
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
name: "Tag Name",
|
|
872
|
+
scope: "entity.name.tag",
|
|
873
|
+
settings: {
|
|
874
|
+
fontStyle: "",
|
|
875
|
+
foreground: "#6089B4"
|
|
876
|
+
}
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
name: "Doctype",
|
|
880
|
+
scope: "meta.doctype, meta.tag.sgml-declaration.doctype, meta.tag.sgml.doctype",
|
|
881
|
+
settings: {
|
|
882
|
+
fontStyle: "",
|
|
883
|
+
foreground: "#9AA83A"
|
|
884
|
+
}
|
|
885
|
+
},
|
|
886
|
+
{
|
|
887
|
+
name: "Tag Inline Source",
|
|
888
|
+
scope: "meta.tag.inline source, text.html.php.source",
|
|
889
|
+
settings: {
|
|
890
|
+
fontStyle: "",
|
|
891
|
+
foreground: "#9AA83A"
|
|
892
|
+
}
|
|
893
|
+
},
|
|
894
|
+
{
|
|
895
|
+
name: "Tag Other",
|
|
896
|
+
scope: "meta.tag.other, entity.name.tag.style, entity.name.tag.script, meta.tag.block.script, source.js.embedded punctuation.definition.tag.html, source.css.embedded punctuation.definition.tag.html",
|
|
897
|
+
settings: {
|
|
898
|
+
fontStyle: "",
|
|
899
|
+
foreground: "#9872A2"
|
|
900
|
+
}
|
|
901
|
+
},
|
|
902
|
+
{
|
|
903
|
+
name: "Tag Attribute",
|
|
904
|
+
scope: "entity.other.attribute-name, meta.tag punctuation.definition.string",
|
|
905
|
+
settings: {
|
|
906
|
+
fontStyle: "",
|
|
907
|
+
foreground: "#D0B344"
|
|
908
|
+
}
|
|
909
|
+
},
|
|
910
|
+
{
|
|
911
|
+
name: "Tag Value",
|
|
912
|
+
scope: "meta.tag string -source -punctuation, text source text meta.tag string -punctuation",
|
|
913
|
+
settings: {
|
|
914
|
+
fontStyle: "",
|
|
915
|
+
foreground: "#6089B4"
|
|
916
|
+
}
|
|
917
|
+
},
|
|
918
|
+
{
|
|
919
|
+
name: "Meta Brace",
|
|
920
|
+
scope: "punctuation.section.embedded -(source string source punctuation.section.embedded), meta.brace.erb.html",
|
|
921
|
+
settings: {
|
|
922
|
+
fontStyle: "",
|
|
923
|
+
foreground: "#D0B344"
|
|
924
|
+
}
|
|
925
|
+
},
|
|
926
|
+
{
|
|
927
|
+
name: "HTML ID",
|
|
928
|
+
scope: "meta.toc-list.id",
|
|
929
|
+
settings: {
|
|
930
|
+
foreground: "#9AA83A"
|
|
931
|
+
}
|
|
932
|
+
},
|
|
933
|
+
{
|
|
934
|
+
name: "HTML String",
|
|
935
|
+
scope: "string.quoted.double.html, punctuation.definition.string.begin.html, punctuation.definition.string.end.html, punctuation.definition.string.end.html source, string.quoted.double.html source",
|
|
936
|
+
settings: {
|
|
937
|
+
fontStyle: "",
|
|
938
|
+
foreground: "#9AA83A"
|
|
939
|
+
}
|
|
940
|
+
},
|
|
941
|
+
{
|
|
942
|
+
name: "HTML Tags",
|
|
943
|
+
scope: "punctuation.definition.tag.html, punctuation.definition.tag.begin, punctuation.definition.tag.end",
|
|
944
|
+
settings: {
|
|
945
|
+
fontStyle: "",
|
|
946
|
+
foreground: "#6089B4"
|
|
947
|
+
}
|
|
948
|
+
},
|
|
949
|
+
{
|
|
950
|
+
name: "CSS ID",
|
|
951
|
+
scope: "meta.selector entity.other.attribute-name.id",
|
|
952
|
+
settings: {
|
|
953
|
+
fontStyle: "",
|
|
954
|
+
foreground: "#9872A2"
|
|
955
|
+
}
|
|
956
|
+
},
|
|
957
|
+
{
|
|
958
|
+
name: "CSS Property Name",
|
|
959
|
+
scope: "source.css support.type.property-name",
|
|
960
|
+
settings: {
|
|
961
|
+
fontStyle: "",
|
|
962
|
+
foreground: "#676867"
|
|
963
|
+
}
|
|
964
|
+
},
|
|
965
|
+
{
|
|
966
|
+
name: "CSS Property Value",
|
|
967
|
+
scope: "meta.property-group support.constant.property-value, meta.property-value support.constant.property-value",
|
|
968
|
+
settings: {
|
|
969
|
+
fontStyle: "",
|
|
970
|
+
foreground: "#C7444A"
|
|
971
|
+
}
|
|
972
|
+
},
|
|
973
|
+
{
|
|
974
|
+
name: "JavaScript Variable",
|
|
975
|
+
scope: "variable.language.js",
|
|
976
|
+
settings: {
|
|
977
|
+
foreground: "#CC555A"
|
|
978
|
+
}
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
name: "Template Definition",
|
|
982
|
+
scope: ["punctuation.definition.template-expression", "punctuation.section.embedded.coffee"],
|
|
983
|
+
settings: {
|
|
984
|
+
foreground: "#D08442"
|
|
985
|
+
}
|
|
986
|
+
},
|
|
987
|
+
{
|
|
988
|
+
name: "Reset JavaScript string interpolation expression",
|
|
989
|
+
scope: ["meta.template.expression"],
|
|
990
|
+
settings: {
|
|
991
|
+
foreground: "#C5C8C6"
|
|
992
|
+
}
|
|
993
|
+
},
|
|
994
|
+
{
|
|
995
|
+
name: "PHP Function Call",
|
|
996
|
+
scope: "meta.function-call.object.php",
|
|
997
|
+
settings: {
|
|
998
|
+
fontStyle: "",
|
|
999
|
+
foreground: "#D0B344"
|
|
1000
|
+
}
|
|
1001
|
+
},
|
|
1002
|
+
{
|
|
1003
|
+
name: "PHP Single Quote HMTL Fix",
|
|
1004
|
+
scope: "punctuation.definition.string.end.php, punctuation.definition.string.begin.php",
|
|
1005
|
+
settings: {
|
|
1006
|
+
foreground: "#9AA83A"
|
|
1007
|
+
}
|
|
1008
|
+
},
|
|
1009
|
+
{
|
|
1010
|
+
name: "PHP Parenthesis HMTL Fix",
|
|
1011
|
+
scope: "source.php.embedded.line.html",
|
|
1012
|
+
settings: {
|
|
1013
|
+
foreground: "#676867"
|
|
1014
|
+
}
|
|
1015
|
+
},
|
|
1016
|
+
{
|
|
1017
|
+
name: "PHP Punctuation Embedded",
|
|
1018
|
+
scope: "punctuation.section.embedded.begin.php, punctuation.section.embedded.end.php",
|
|
1019
|
+
settings: {
|
|
1020
|
+
fontStyle: "",
|
|
1021
|
+
foreground: "#D08442"
|
|
1022
|
+
}
|
|
1023
|
+
},
|
|
1024
|
+
{
|
|
1025
|
+
name: "Ruby Symbol",
|
|
1026
|
+
scope: "constant.other.symbol.ruby",
|
|
1027
|
+
settings: {
|
|
1028
|
+
fontStyle: "",
|
|
1029
|
+
foreground: "#9AA83A"
|
|
1030
|
+
}
|
|
1031
|
+
},
|
|
1032
|
+
{
|
|
1033
|
+
name: "Ruby Variable",
|
|
1034
|
+
scope: "variable.language.ruby",
|
|
1035
|
+
settings: {
|
|
1036
|
+
fontStyle: "",
|
|
1037
|
+
foreground: "#D0B344"
|
|
1038
|
+
}
|
|
1039
|
+
},
|
|
1040
|
+
{
|
|
1041
|
+
name: "Ruby Special Method",
|
|
1042
|
+
scope: "keyword.other.special-method.ruby",
|
|
1043
|
+
settings: {
|
|
1044
|
+
fontStyle: "",
|
|
1045
|
+
foreground: "#D9B700"
|
|
1046
|
+
}
|
|
1047
|
+
},
|
|
1048
|
+
{
|
|
1049
|
+
name: "Ruby Embedded Source",
|
|
1050
|
+
scope: ["punctuation.section.embedded.begin.ruby", "punctuation.section.embedded.end.ruby"],
|
|
1051
|
+
settings: {
|
|
1052
|
+
foreground: "#D08442"
|
|
1053
|
+
}
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
name: "SQL",
|
|
1057
|
+
scope: "keyword.other.DML.sql",
|
|
1058
|
+
settings: {
|
|
1059
|
+
fontStyle: "",
|
|
1060
|
+
foreground: "#D0B344"
|
|
1061
|
+
}
|
|
1062
|
+
},
|
|
1063
|
+
{
|
|
1064
|
+
name: "diff: header",
|
|
1065
|
+
scope: "meta.diff, meta.diff.header",
|
|
1066
|
+
settings: {
|
|
1067
|
+
fontStyle: "italic",
|
|
1068
|
+
foreground: "#E0EDDD"
|
|
1069
|
+
}
|
|
1070
|
+
},
|
|
1071
|
+
{
|
|
1072
|
+
name: "diff: deleted",
|
|
1073
|
+
scope: "markup.deleted",
|
|
1074
|
+
settings: {
|
|
1075
|
+
fontStyle: "",
|
|
1076
|
+
foreground: "#dc322f"
|
|
1077
|
+
}
|
|
1078
|
+
},
|
|
1079
|
+
{
|
|
1080
|
+
name: "diff: changed",
|
|
1081
|
+
scope: "markup.changed",
|
|
1082
|
+
settings: {
|
|
1083
|
+
fontStyle: "",
|
|
1084
|
+
foreground: "#cb4b16"
|
|
1085
|
+
}
|
|
1086
|
+
},
|
|
1087
|
+
{
|
|
1088
|
+
name: "diff: inserted",
|
|
1089
|
+
scope: "markup.inserted",
|
|
1090
|
+
settings: {
|
|
1091
|
+
foreground: "#219186"
|
|
1092
|
+
}
|
|
1093
|
+
},
|
|
1094
|
+
{
|
|
1095
|
+
name: "Markup Quote",
|
|
1096
|
+
scope: "markup.quote",
|
|
1097
|
+
settings: {
|
|
1098
|
+
foreground: "#9872A2"
|
|
1099
|
+
}
|
|
1100
|
+
},
|
|
1101
|
+
{
|
|
1102
|
+
name: "Markup Lists",
|
|
1103
|
+
scope: "markup.list",
|
|
1104
|
+
settings: {
|
|
1105
|
+
foreground: "#9AA83A"
|
|
1106
|
+
}
|
|
1107
|
+
},
|
|
1108
|
+
{
|
|
1109
|
+
name: "Markup Styling",
|
|
1110
|
+
scope: "markup.bold, markup.italic",
|
|
1111
|
+
settings: {
|
|
1112
|
+
foreground: "#6089B4"
|
|
1113
|
+
}
|
|
1114
|
+
},
|
|
1115
|
+
{
|
|
1116
|
+
name: "Markup Inline",
|
|
1117
|
+
scope: "markup.inline.raw",
|
|
1118
|
+
settings: {
|
|
1119
|
+
fontStyle: "",
|
|
1120
|
+
foreground: "#FF0080"
|
|
1121
|
+
}
|
|
1122
|
+
},
|
|
1123
|
+
{
|
|
1124
|
+
name: "Markup Headings",
|
|
1125
|
+
scope: "markup.heading",
|
|
1126
|
+
settings: {
|
|
1127
|
+
foreground: "#D0B344"
|
|
1128
|
+
}
|
|
1129
|
+
},
|
|
1130
|
+
{
|
|
1131
|
+
name: "Markup Setext Header",
|
|
1132
|
+
scope: "markup.heading.setext",
|
|
1133
|
+
settings: {
|
|
1134
|
+
fontStyle: "",
|
|
1135
|
+
foreground: "#D0B344"
|
|
1136
|
+
}
|
|
1137
|
+
},
|
|
1138
|
+
{
|
|
1139
|
+
name: "Markdown Headings",
|
|
1140
|
+
scope: "markup.heading.markdown",
|
|
1141
|
+
settings: {
|
|
1142
|
+
fontStyle: "bold"
|
|
1143
|
+
}
|
|
1144
|
+
},
|
|
1145
|
+
{
|
|
1146
|
+
name: "Markdown Quote",
|
|
1147
|
+
scope: "markup.quote.markdown",
|
|
1148
|
+
settings: {
|
|
1149
|
+
fontStyle: "italic",
|
|
1150
|
+
foreground: ""
|
|
1151
|
+
}
|
|
1152
|
+
},
|
|
1153
|
+
{
|
|
1154
|
+
name: "Markdown Bold",
|
|
1155
|
+
scope: "markup.bold.markdown",
|
|
1156
|
+
settings: {
|
|
1157
|
+
fontStyle: "bold"
|
|
1158
|
+
}
|
|
1159
|
+
},
|
|
1160
|
+
{
|
|
1161
|
+
name: "Markdown Link Title/Description",
|
|
1162
|
+
scope: "string.other.link.title.markdown,string.other.link.description.markdown",
|
|
1163
|
+
settings: {
|
|
1164
|
+
foreground: "#AE81FF"
|
|
1165
|
+
}
|
|
1166
|
+
},
|
|
1167
|
+
{
|
|
1168
|
+
name: "Markdown Underline Link/Image",
|
|
1169
|
+
scope: "markup.underline.link.markdown,markup.underline.link.image.markdown",
|
|
1170
|
+
settings: {
|
|
1171
|
+
foreground: ""
|
|
1172
|
+
}
|
|
1173
|
+
},
|
|
1174
|
+
{
|
|
1175
|
+
name: "Markdown Emphasis",
|
|
1176
|
+
scope: "markup.italic.markdown",
|
|
1177
|
+
settings: {
|
|
1178
|
+
fontStyle: "italic"
|
|
1179
|
+
}
|
|
1180
|
+
},
|
|
1181
|
+
{
|
|
1182
|
+
scope: "markup.strikethrough",
|
|
1183
|
+
settings: {
|
|
1184
|
+
fontStyle: "strikethrough"
|
|
1185
|
+
}
|
|
1186
|
+
},
|
|
1187
|
+
{
|
|
1188
|
+
name: "Markdown Punctuation Definition Link",
|
|
1189
|
+
scope: "markup.list.unnumbered.markdown, markup.list.numbered.markdown",
|
|
1190
|
+
settings: {
|
|
1191
|
+
foreground: ""
|
|
1192
|
+
}
|
|
1193
|
+
},
|
|
1194
|
+
{
|
|
1195
|
+
name: "Markdown List Punctuation",
|
|
1196
|
+
scope: ["punctuation.definition.list.begin.markdown"],
|
|
1197
|
+
settings: {
|
|
1198
|
+
foreground: ""
|
|
1199
|
+
}
|
|
1200
|
+
},
|
|
1201
|
+
{
|
|
1202
|
+
scope: "token.info-token",
|
|
1203
|
+
settings: {
|
|
1204
|
+
foreground: "#6796e6"
|
|
1205
|
+
}
|
|
1206
|
+
},
|
|
1207
|
+
{
|
|
1208
|
+
scope: "token.warn-token",
|
|
1209
|
+
settings: {
|
|
1210
|
+
foreground: "#cd9731"
|
|
1211
|
+
}
|
|
1212
|
+
},
|
|
1213
|
+
{
|
|
1214
|
+
scope: "token.error-token",
|
|
1215
|
+
settings: {
|
|
1216
|
+
foreground: "#f44747"
|
|
1217
|
+
}
|
|
1218
|
+
},
|
|
1219
|
+
{
|
|
1220
|
+
scope: "token.debug-token",
|
|
1221
|
+
settings: {
|
|
1222
|
+
foreground: "#b267e6"
|
|
1223
|
+
}
|
|
1224
|
+
},
|
|
1225
|
+
{
|
|
1226
|
+
name: "this.self",
|
|
1227
|
+
scope: "variable.language",
|
|
1228
|
+
settings: {
|
|
1229
|
+
foreground: "#c7444a"
|
|
1230
|
+
}
|
|
1231
|
+
}
|
|
1232
|
+
],
|
|
1233
|
+
semanticHighlighting: true
|
|
1234
|
+
};
|
|
1235
|
+
|
|
1236
|
+
export { dark, light };
|
|
1237
|
+
//# sourceMappingURL=shiki-themes.mjs.map
|