@finos/legend-lego 0.1.12 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/{src/code-editor/CodeEditorConfig.ts → lib/application/ActivityBar.d.ts} +7 -16
- package/lib/application/ActivityBar.d.ts.map +1 -0
- package/lib/application/ActivityBar.js +19 -0
- package/lib/application/ActivityBar.js.map +1 -0
- package/lib/application/index.d.ts +1 -0
- package/lib/application/index.d.ts.map +1 -1
- package/lib/application/index.js +1 -0
- package/lib/application/index.js.map +1 -1
- package/lib/code-editor/CodeDiffView.d.ts +1 -1
- package/lib/code-editor/CodeDiffView.d.ts.map +1 -1
- package/lib/code-editor/CodeDiffView.js +4 -11
- package/lib/code-editor/CodeDiffView.js.map +1 -1
- package/lib/code-editor/CodeEditor.d.ts +5 -2
- package/lib/code-editor/CodeEditor.d.ts.map +1 -1
- package/lib/code-editor/CodeEditor.js +15 -17
- package/lib/code-editor/CodeEditor.js.map +1 -1
- package/lib/code-editor/CodeEditorTheme.d.ts +39 -0
- package/lib/code-editor/CodeEditorTheme.d.ts.map +1 -0
- package/lib/code-editor/CodeEditorTheme.js +72 -0
- package/lib/code-editor/CodeEditorTheme.js.map +1 -0
- package/lib/code-editor/CodeEditorUtils.d.ts +11 -0
- package/lib/code-editor/CodeEditorUtils.d.ts.map +1 -1
- package/lib/code-editor/CodeEditorUtils.js +23 -0
- package/lib/code-editor/CodeEditorUtils.js.map +1 -1
- package/lib/code-editor/PureLanguage.d.ts +38 -0
- package/lib/code-editor/PureLanguage.d.ts.map +1 -0
- package/lib/code-editor/PureLanguage.js +39 -0
- package/lib/code-editor/PureLanguage.js.map +1 -0
- package/lib/code-editor/PureLanguageService.d.ts +0 -22
- package/lib/code-editor/PureLanguageService.d.ts.map +1 -1
- package/lib/code-editor/PureLanguageService.js +3 -48
- package/lib/code-editor/PureLanguageService.js.map +1 -1
- package/lib/code-editor/index.d.ts +3 -2
- package/lib/code-editor/index.d.ts.map +1 -1
- package/lib/code-editor/index.js +3 -2
- package/lib/code-editor/index.js.map +1 -1
- package/lib/code-editor/themes/Github-Theme-dark-dimmed.json +613 -0
- package/lib/code-editor/themes/Github-Theme-dark.json +513 -0
- package/lib/code-editor/themes/Material-Theme-Darker.json +816 -0
- package/lib/code-editor/themes/Material-Theme-Default.json +816 -0
- package/lib/code-editor/themes/MonacoEditorThemeUtils.d.ts +31 -0
- package/lib/code-editor/themes/MonacoEditorThemeUtils.d.ts.map +1 -0
- package/lib/code-editor/themes/MonacoEditorThemeUtils.js +88 -0
- package/lib/code-editor/themes/MonacoEditorThemeUtils.js.map +1 -0
- package/lib/code-editor/themes/OneDark-Pro-darker.json +2061 -0
- package/lib/code-editor/themes/OneDark-Pro.json +2090 -0
- package/lib/code-editor/themes/solarized-dark-color-theme.json +398 -0
- package/lib/data-grid/DataGrid.d.ts.map +1 -1
- package/lib/data-grid/DataGrid.js +13 -1
- package/lib/data-grid/DataGrid.js.map +1 -1
- package/lib/index.css +2 -2
- package/lib/index.css.map +1 -1
- package/package.json +7 -7
- package/{lib/code-editor/CodeEditorConfig.d.ts → src/application/ActivityBar.tsx} +16 -15
- package/src/application/index.ts +1 -0
- package/src/code-editor/CodeDiffView.tsx +4 -12
- package/src/code-editor/CodeEditor.tsx +25 -22
- package/src/code-editor/CodeEditorTheme.ts +118 -0
- package/src/code-editor/CodeEditorUtils.ts +55 -0
- package/src/code-editor/PureLanguage.ts +42 -0
- package/src/code-editor/PureLanguageService.ts +3 -56
- package/src/code-editor/index.ts +3 -5
- package/src/code-editor/themes/Github-Theme-dark-dimmed.json +613 -0
- package/src/code-editor/themes/Github-Theme-dark.json +513 -0
- package/src/code-editor/themes/Material-Theme-Darker.json +816 -0
- package/src/code-editor/themes/Material-Theme-Default.json +816 -0
- package/src/code-editor/themes/MonacoEditorThemeUtils.ts +128 -0
- package/src/code-editor/themes/OneDark-Pro-darker.json +2061 -0
- package/src/code-editor/themes/OneDark-Pro.json +2090 -0
- package/src/code-editor/themes/README.md +8 -0
- package/src/code-editor/themes/solarized-dark-color-theme.json +423 -0
- package/src/data-grid/DataGrid.tsx +12 -1
- package/tsconfig.json +12 -2
- package/lib/code-editor/CodeEditorConfig.d.ts.map +0 -1
- package/lib/code-editor/CodeEditorConfig.js +0 -33
- package/lib/code-editor/CodeEditorConfig.js.map +0 -1
@@ -0,0 +1,613 @@
|
|
1
|
+
{
|
2
|
+
"name": "GitHub Dark Dimmed",
|
3
|
+
"colors": {
|
4
|
+
"focusBorder": "#316dca",
|
5
|
+
"foreground": "#adbac7",
|
6
|
+
"descriptionForeground": "#768390",
|
7
|
+
"errorForeground": "#e5534b",
|
8
|
+
"textLink.foreground": "#539bf5",
|
9
|
+
"textLink.activeForeground": "#539bf5",
|
10
|
+
"textBlockQuote.background": "#1c2128",
|
11
|
+
"textBlockQuote.border": "#444c56",
|
12
|
+
"textCodeBlock.background": "#636e7b66",
|
13
|
+
"textPreformat.foreground": "#768390",
|
14
|
+
"textSeparator.foreground": "#373e47",
|
15
|
+
"icon.foreground": "#768390",
|
16
|
+
"keybindingLabel.foreground": "#adbac7",
|
17
|
+
"button.background": "#347d39",
|
18
|
+
"button.foreground": "#ffffff",
|
19
|
+
"button.hoverBackground": "#46954a",
|
20
|
+
"button.secondaryBackground": "#3d444d",
|
21
|
+
"button.secondaryForeground": "#adbac7",
|
22
|
+
"button.secondaryHoverBackground": "#444c56",
|
23
|
+
"checkbox.background": "#2d333b",
|
24
|
+
"checkbox.border": "#444c56",
|
25
|
+
"dropdown.background": "#2d333b",
|
26
|
+
"dropdown.border": "#444c56",
|
27
|
+
"dropdown.foreground": "#adbac7",
|
28
|
+
"dropdown.listBackground": "#2d333b",
|
29
|
+
"input.background": "#22272e",
|
30
|
+
"input.border": "#444c56",
|
31
|
+
"input.foreground": "#adbac7",
|
32
|
+
"input.placeholderForeground": "#636e7b",
|
33
|
+
"badge.foreground": "#cdd9e5",
|
34
|
+
"badge.background": "#316dca",
|
35
|
+
"progressBar.background": "#316dca",
|
36
|
+
"titleBar.activeForeground": "#768390",
|
37
|
+
"titleBar.activeBackground": "#22272e",
|
38
|
+
"titleBar.inactiveForeground": "#768390",
|
39
|
+
"titleBar.inactiveBackground": "#1c2128",
|
40
|
+
"titleBar.border": "#444c56",
|
41
|
+
"activityBar.foreground": "#adbac7",
|
42
|
+
"activityBar.inactiveForeground": "#768390",
|
43
|
+
"activityBar.background": "#22272e",
|
44
|
+
"activityBarBadge.foreground": "#cdd9e5",
|
45
|
+
"activityBarBadge.background": "#316dca",
|
46
|
+
"activityBar.activeBorder": "#ec775c",
|
47
|
+
"activityBar.border": "#444c56",
|
48
|
+
"sideBar.foreground": "#adbac7",
|
49
|
+
"sideBar.background": "#1c2128",
|
50
|
+
"sideBar.border": "#444c56",
|
51
|
+
"sideBarTitle.foreground": "#adbac7",
|
52
|
+
"sideBarSectionHeader.foreground": "#adbac7",
|
53
|
+
"sideBarSectionHeader.background": "#1c2128",
|
54
|
+
"sideBarSectionHeader.border": "#444c56",
|
55
|
+
"list.hoverForeground": "#adbac7",
|
56
|
+
"list.inactiveSelectionForeground": "#adbac7",
|
57
|
+
"list.activeSelectionForeground": "#adbac7",
|
58
|
+
"list.hoverBackground": "#636e7b1a",
|
59
|
+
"list.inactiveSelectionBackground": "#636e7b66",
|
60
|
+
"list.activeSelectionBackground": "#636e7b66",
|
61
|
+
"list.focusForeground": "#adbac7",
|
62
|
+
"list.focusBackground": "#4184e426",
|
63
|
+
"list.inactiveFocusBackground": "#4184e426",
|
64
|
+
"list.highlightForeground": "#539bf5",
|
65
|
+
"tree.indentGuidesStroke": "#373e47",
|
66
|
+
"notificationCenterHeader.foreground": "#768390",
|
67
|
+
"notificationCenterHeader.background": "#2d333b",
|
68
|
+
"notifications.foreground": "#adbac7",
|
69
|
+
"notifications.background": "#2d333b",
|
70
|
+
"notifications.border": "#444c56",
|
71
|
+
"notificationsErrorIcon.foreground": "#e5534b",
|
72
|
+
"notificationsWarningIcon.foreground": "#c69026",
|
73
|
+
"notificationsInfoIcon.foreground": "#539bf5",
|
74
|
+
"pickerGroup.border": "#444c56",
|
75
|
+
"pickerGroup.foreground": "#768390",
|
76
|
+
"quickInput.background": "#2d333b",
|
77
|
+
"quickInput.foreground": "#adbac7",
|
78
|
+
"statusBar.foreground": "#768390",
|
79
|
+
"statusBar.background": "#22272e",
|
80
|
+
"statusBar.border": "#444c56",
|
81
|
+
"statusBar.focusBorder": "#316dca80",
|
82
|
+
"statusBar.noFolderBackground": "#22272e",
|
83
|
+
"statusBar.debuggingForeground": "#cdd9e5",
|
84
|
+
"statusBar.debuggingBackground": "#c93c37",
|
85
|
+
"statusBarItem.prominentBackground": "#636e7b66",
|
86
|
+
"statusBarItem.remoteForeground": "#adbac7",
|
87
|
+
"statusBarItem.remoteBackground": "#444c56",
|
88
|
+
"statusBarItem.hoverBackground": "#adbac714",
|
89
|
+
"statusBarItem.activeBackground": "#adbac71f",
|
90
|
+
"statusBarItem.focusBorder": "#316dca",
|
91
|
+
"editorGroupHeader.tabsBackground": "#1c2128",
|
92
|
+
"editorGroupHeader.tabsBorder": "#444c56",
|
93
|
+
"editorGroup.border": "#444c56",
|
94
|
+
"tab.activeForeground": "#adbac7",
|
95
|
+
"tab.inactiveForeground": "#768390",
|
96
|
+
"tab.inactiveBackground": "#1c2128",
|
97
|
+
"tab.activeBackground": "#22272e",
|
98
|
+
"tab.hoverBackground": "#22272e",
|
99
|
+
"tab.unfocusedHoverBackground": "#636e7b1a",
|
100
|
+
"tab.border": "#444c56",
|
101
|
+
"tab.unfocusedActiveBorderTop": "#444c56",
|
102
|
+
"tab.activeBorder": "#22272e",
|
103
|
+
"tab.unfocusedActiveBorder": "#22272e",
|
104
|
+
"tab.activeBorderTop": "#ec775c",
|
105
|
+
"breadcrumb.foreground": "#768390",
|
106
|
+
"breadcrumb.focusForeground": "#adbac7",
|
107
|
+
"breadcrumb.activeSelectionForeground": "#768390",
|
108
|
+
"breadcrumbPicker.background": "#2d333b",
|
109
|
+
"editor.foreground": "#adbac7",
|
110
|
+
"editor.background": "#22272e",
|
111
|
+
"editorWidget.background": "#2d333b",
|
112
|
+
"editor.foldBackground": "#636e7b1a",
|
113
|
+
"editor.lineHighlightBackground": "#636e7b1a",
|
114
|
+
"editorLineNumber.foreground": "#636e7b",
|
115
|
+
"editorLineNumber.activeForeground": "#adbac7",
|
116
|
+
"editorIndentGuide.background": "#adbac71f",
|
117
|
+
"editorIndentGuide.activeBackground": "#adbac73d",
|
118
|
+
"editorWhitespace.foreground": "#545d68",
|
119
|
+
"editorCursor.foreground": "#539bf5",
|
120
|
+
"editor.findMatchBackground": "#966600",
|
121
|
+
"editor.findMatchHighlightBackground": "#eac55f80",
|
122
|
+
"editor.linkedEditingBackground": "#539bf512",
|
123
|
+
"editor.selectionHighlightBackground": "#57ab5a40",
|
124
|
+
"editor.wordHighlightBackground": "#636e7b80",
|
125
|
+
"editor.wordHighlightBorder": "#636e7b99",
|
126
|
+
"editor.wordHighlightStrongBackground": "#636e7b4d",
|
127
|
+
"editor.wordHighlightStrongBorder": "#636e7b99",
|
128
|
+
"editorBracketMatch.background": "#57ab5a40",
|
129
|
+
"editorBracketMatch.border": "#57ab5a99",
|
130
|
+
"editorInlayHint.background": "#76839033",
|
131
|
+
"editorInlayHint.foreground": "#768390",
|
132
|
+
"editorInlayHint.typeBackground": "#76839033",
|
133
|
+
"editorInlayHint.typeForeground": "#768390",
|
134
|
+
"editorInlayHint.paramBackground": "#76839033",
|
135
|
+
"editorInlayHint.paramForeground": "#768390",
|
136
|
+
"editorGutter.modifiedBackground": "#ae7c1466",
|
137
|
+
"editorGutter.addedBackground": "#46954a66",
|
138
|
+
"editorGutter.deletedBackground": "#e5534b66",
|
139
|
+
"diffEditor.insertedLineBackground": "#347d3926",
|
140
|
+
"diffEditor.insertedTextBackground": "#57ab5a4d",
|
141
|
+
"diffEditor.removedLineBackground": "#c93c3726",
|
142
|
+
"diffEditor.removedTextBackground": "#f470674d",
|
143
|
+
"scrollbar.shadow": "#545d6833",
|
144
|
+
"scrollbarSlider.background": "#76839033",
|
145
|
+
"scrollbarSlider.hoverBackground": "#7683903d",
|
146
|
+
"scrollbarSlider.activeBackground": "#76839047",
|
147
|
+
"editorOverviewRuler.border": "#1c2128",
|
148
|
+
"minimapSlider.background": "#76839033",
|
149
|
+
"minimapSlider.hoverBackground": "#7683903d",
|
150
|
+
"minimapSlider.activeBackground": "#76839047",
|
151
|
+
"panel.background": "#1c2128",
|
152
|
+
"panel.border": "#444c56",
|
153
|
+
"panelTitle.activeBorder": "#ec775c",
|
154
|
+
"panelTitle.activeForeground": "#adbac7",
|
155
|
+
"panelTitle.inactiveForeground": "#768390",
|
156
|
+
"panelInput.border": "#444c56",
|
157
|
+
"debugIcon.breakpointForeground": "#e5534b",
|
158
|
+
"debugConsole.infoForeground": "#768390",
|
159
|
+
"debugConsole.warningForeground": "#c69026",
|
160
|
+
"debugConsole.errorForeground": "#ff938a",
|
161
|
+
"debugConsole.sourceForeground": "#daaa3f",
|
162
|
+
"debugConsoleInputIcon.foreground": "#b083f0",
|
163
|
+
"debugTokenExpression.name": "#6cb6ff",
|
164
|
+
"debugTokenExpression.value": "#96d0ff",
|
165
|
+
"debugTokenExpression.string": "#96d0ff",
|
166
|
+
"debugTokenExpression.boolean": "#6bc46d",
|
167
|
+
"debugTokenExpression.number": "#6bc46d",
|
168
|
+
"debugTokenExpression.error": "#ff938a",
|
169
|
+
"symbolIcon.arrayForeground": "#e0823d",
|
170
|
+
"symbolIcon.booleanForeground": "#539bf5",
|
171
|
+
"symbolIcon.classForeground": "#e0823d",
|
172
|
+
"symbolIcon.colorForeground": "#6cb6ff",
|
173
|
+
"symbolIcon.constructorForeground": "#dcbdfb",
|
174
|
+
"symbolIcon.enumeratorForeground": "#e0823d",
|
175
|
+
"symbolIcon.enumeratorMemberForeground": "#539bf5",
|
176
|
+
"symbolIcon.eventForeground": "#636e7b",
|
177
|
+
"symbolIcon.fieldForeground": "#e0823d",
|
178
|
+
"symbolIcon.fileForeground": "#c69026",
|
179
|
+
"symbolIcon.folderForeground": "#c69026",
|
180
|
+
"symbolIcon.functionForeground": "#b083f0",
|
181
|
+
"symbolIcon.interfaceForeground": "#e0823d",
|
182
|
+
"symbolIcon.keyForeground": "#539bf5",
|
183
|
+
"symbolIcon.keywordForeground": "#f47067",
|
184
|
+
"symbolIcon.methodForeground": "#b083f0",
|
185
|
+
"symbolIcon.moduleForeground": "#f47067",
|
186
|
+
"symbolIcon.namespaceForeground": "#f47067",
|
187
|
+
"symbolIcon.nullForeground": "#539bf5",
|
188
|
+
"symbolIcon.numberForeground": "#57ab5a",
|
189
|
+
"symbolIcon.objectForeground": "#e0823d",
|
190
|
+
"symbolIcon.operatorForeground": "#6cb6ff",
|
191
|
+
"symbolIcon.packageForeground": "#e0823d",
|
192
|
+
"symbolIcon.propertyForeground": "#e0823d",
|
193
|
+
"symbolIcon.referenceForeground": "#539bf5",
|
194
|
+
"symbolIcon.snippetForeground": "#539bf5",
|
195
|
+
"symbolIcon.stringForeground": "#6cb6ff",
|
196
|
+
"symbolIcon.structForeground": "#e0823d",
|
197
|
+
"symbolIcon.textForeground": "#6cb6ff",
|
198
|
+
"symbolIcon.typeParameterForeground": "#6cb6ff",
|
199
|
+
"symbolIcon.unitForeground": "#539bf5",
|
200
|
+
"symbolIcon.variableForeground": "#e0823d",
|
201
|
+
"symbolIcon.constantForeground": [
|
202
|
+
"#b4f1b4",
|
203
|
+
"#8ddb8c",
|
204
|
+
"#6bc46d",
|
205
|
+
"#57ab5a",
|
206
|
+
"#46954a",
|
207
|
+
"#347d39",
|
208
|
+
"#2b6a30",
|
209
|
+
"#245829",
|
210
|
+
"#1b4721",
|
211
|
+
"#113417"
|
212
|
+
],
|
213
|
+
"terminal.foreground": "#adbac7",
|
214
|
+
"terminal.ansiBlack": "#545d68",
|
215
|
+
"terminal.ansiRed": "#f47067",
|
216
|
+
"terminal.ansiGreen": "#57ab5a",
|
217
|
+
"terminal.ansiYellow": "#c69026",
|
218
|
+
"terminal.ansiBlue": "#539bf5",
|
219
|
+
"terminal.ansiMagenta": "#b083f0",
|
220
|
+
"terminal.ansiCyan": "#39c5cf",
|
221
|
+
"terminal.ansiWhite": "#909dab",
|
222
|
+
"terminal.ansiBrightBlack": "#636e7b",
|
223
|
+
"terminal.ansiBrightRed": "#ff938a",
|
224
|
+
"terminal.ansiBrightGreen": "#6bc46d",
|
225
|
+
"terminal.ansiBrightYellow": "#daaa3f",
|
226
|
+
"terminal.ansiBrightBlue": "#6cb6ff",
|
227
|
+
"terminal.ansiBrightMagenta": "#dcbdfb",
|
228
|
+
"terminal.ansiBrightCyan": "#56d4dd",
|
229
|
+
"terminal.ansiBrightWhite": "#cdd9e5",
|
230
|
+
"editorBracketHighlight.foreground1": "#6cb6ff",
|
231
|
+
"editorBracketHighlight.foreground2": "#6bc46d",
|
232
|
+
"editorBracketHighlight.foreground3": "#daaa3f",
|
233
|
+
"editorBracketHighlight.foreground4": "#ff938a",
|
234
|
+
"editorBracketHighlight.foreground5": "#fc8dc7",
|
235
|
+
"editorBracketHighlight.foreground6": "#dcbdfb",
|
236
|
+
"editorBracketHighlight.unexpectedBracket.foreground": "#768390",
|
237
|
+
"gitDecoration.addedResourceForeground": "#57ab5a",
|
238
|
+
"gitDecoration.modifiedResourceForeground": "#c69026",
|
239
|
+
"gitDecoration.deletedResourceForeground": "#e5534b",
|
240
|
+
"gitDecoration.untrackedResourceForeground": "#57ab5a",
|
241
|
+
"gitDecoration.ignoredResourceForeground": "#636e7b",
|
242
|
+
"gitDecoration.conflictingResourceForeground": "#cc6b2c",
|
243
|
+
"gitDecoration.submoduleResourceForeground": "#768390",
|
244
|
+
"debugToolBar.background": "#2d333b",
|
245
|
+
"editor.stackFrameHighlightBackground": "#ae7c1466",
|
246
|
+
"editor.focusedStackFrameHighlightBackground": "#46954a66",
|
247
|
+
"peekViewEditor.matchHighlightBackground": "#ae7c1466",
|
248
|
+
"peekViewResult.matchHighlightBackground": "#ae7c1466",
|
249
|
+
"peekViewEditor.background": "#636e7b1a",
|
250
|
+
"peekViewResult.background": "#22272e",
|
251
|
+
"settings.headerForeground": "#adbac7",
|
252
|
+
"settings.modifiedItemIndicator": "#ae7c1466",
|
253
|
+
"welcomePage.buttonBackground": "#373e47",
|
254
|
+
"welcomePage.buttonHoverBackground": "#444c56"
|
255
|
+
},
|
256
|
+
"semanticHighlighting": true,
|
257
|
+
"tokenColors": [
|
258
|
+
{
|
259
|
+
"scope": ["comment", "punctuation.definition.comment", "string.comment"],
|
260
|
+
"settings": {
|
261
|
+
"foreground": "#768390"
|
262
|
+
}
|
263
|
+
},
|
264
|
+
{
|
265
|
+
"scope": ["constant.other.placeholder", "constant.character"],
|
266
|
+
"settings": {
|
267
|
+
"foreground": "#f47067"
|
268
|
+
}
|
269
|
+
},
|
270
|
+
{
|
271
|
+
"scope": [
|
272
|
+
"constant",
|
273
|
+
"entity.name.constant",
|
274
|
+
"variable.other.constant",
|
275
|
+
"variable.other.enummember",
|
276
|
+
"variable.language",
|
277
|
+
"entity"
|
278
|
+
],
|
279
|
+
"settings": {
|
280
|
+
"foreground": "#6cb6ff"
|
281
|
+
}
|
282
|
+
},
|
283
|
+
{
|
284
|
+
"scope": [
|
285
|
+
"entity.name",
|
286
|
+
"meta.export.default",
|
287
|
+
"meta.definition.variable"
|
288
|
+
],
|
289
|
+
"settings": {
|
290
|
+
"foreground": "#f69d50"
|
291
|
+
}
|
292
|
+
},
|
293
|
+
{
|
294
|
+
"scope": [
|
295
|
+
"variable.parameter.function",
|
296
|
+
"meta.jsx.children",
|
297
|
+
"meta.block",
|
298
|
+
"meta.tag.attributes",
|
299
|
+
"entity.name.constant",
|
300
|
+
"meta.object.member",
|
301
|
+
"meta.embedded.expression"
|
302
|
+
],
|
303
|
+
"settings": {
|
304
|
+
"foreground": "#adbac7"
|
305
|
+
}
|
306
|
+
},
|
307
|
+
{
|
308
|
+
"scope": "entity.name.function",
|
309
|
+
"settings": {
|
310
|
+
"foreground": "#dcbdfb"
|
311
|
+
}
|
312
|
+
},
|
313
|
+
{
|
314
|
+
"scope": ["entity.name.tag", "support.class.component"],
|
315
|
+
"settings": {
|
316
|
+
"foreground": "#8ddb8c"
|
317
|
+
}
|
318
|
+
},
|
319
|
+
{
|
320
|
+
"scope": "keyword",
|
321
|
+
"settings": {
|
322
|
+
"foreground": "#f47067"
|
323
|
+
}
|
324
|
+
},
|
325
|
+
{
|
326
|
+
"scope": ["storage", "storage.type"],
|
327
|
+
"settings": {
|
328
|
+
"foreground": "#f47067"
|
329
|
+
}
|
330
|
+
},
|
331
|
+
{
|
332
|
+
"scope": [
|
333
|
+
"storage.modifier.package",
|
334
|
+
"storage.modifier.import",
|
335
|
+
"storage.type.java"
|
336
|
+
],
|
337
|
+
"settings": {
|
338
|
+
"foreground": "#adbac7"
|
339
|
+
}
|
340
|
+
},
|
341
|
+
{
|
342
|
+
"scope": ["string", "string punctuation.section.embedded source"],
|
343
|
+
"settings": {
|
344
|
+
"foreground": "#96d0ff"
|
345
|
+
}
|
346
|
+
},
|
347
|
+
{
|
348
|
+
"scope": "support",
|
349
|
+
"settings": {
|
350
|
+
"foreground": "#6cb6ff"
|
351
|
+
}
|
352
|
+
},
|
353
|
+
{
|
354
|
+
"scope": "meta.property-name",
|
355
|
+
"settings": {
|
356
|
+
"foreground": "#6cb6ff"
|
357
|
+
}
|
358
|
+
},
|
359
|
+
{
|
360
|
+
"scope": "variable",
|
361
|
+
"settings": {
|
362
|
+
"foreground": "#f69d50"
|
363
|
+
}
|
364
|
+
},
|
365
|
+
{
|
366
|
+
"scope": "variable.other",
|
367
|
+
"settings": {
|
368
|
+
"foreground": "#adbac7"
|
369
|
+
}
|
370
|
+
},
|
371
|
+
{
|
372
|
+
"scope": "invalid.broken",
|
373
|
+
"settings": {
|
374
|
+
"fontStyle": "italic",
|
375
|
+
"foreground": "#ff938a"
|
376
|
+
}
|
377
|
+
},
|
378
|
+
{
|
379
|
+
"scope": "invalid.deprecated",
|
380
|
+
"settings": {
|
381
|
+
"fontStyle": "italic",
|
382
|
+
"foreground": "#ff938a"
|
383
|
+
}
|
384
|
+
},
|
385
|
+
{
|
386
|
+
"scope": "invalid.illegal",
|
387
|
+
"settings": {
|
388
|
+
"fontStyle": "italic",
|
389
|
+
"foreground": "#ff938a"
|
390
|
+
}
|
391
|
+
},
|
392
|
+
{
|
393
|
+
"scope": "invalid.unimplemented",
|
394
|
+
"settings": {
|
395
|
+
"fontStyle": "italic",
|
396
|
+
"foreground": "#ff938a"
|
397
|
+
}
|
398
|
+
},
|
399
|
+
{
|
400
|
+
"scope": "carriage-return",
|
401
|
+
"settings": {
|
402
|
+
"fontStyle": "italic underline",
|
403
|
+
"background": "#f47067",
|
404
|
+
"foreground": "#cdd9e5",
|
405
|
+
"content": "^M"
|
406
|
+
}
|
407
|
+
},
|
408
|
+
{
|
409
|
+
"scope": "message.error",
|
410
|
+
"settings": {
|
411
|
+
"foreground": "#ff938a"
|
412
|
+
}
|
413
|
+
},
|
414
|
+
{
|
415
|
+
"scope": "string variable",
|
416
|
+
"settings": {
|
417
|
+
"foreground": "#6cb6ff"
|
418
|
+
}
|
419
|
+
},
|
420
|
+
{
|
421
|
+
"scope": ["source.regexp", "string.regexp"],
|
422
|
+
"settings": {
|
423
|
+
"foreground": "#96d0ff"
|
424
|
+
}
|
425
|
+
},
|
426
|
+
{
|
427
|
+
"scope": [
|
428
|
+
"string.regexp.character-class",
|
429
|
+
"string.regexp constant.character.escape",
|
430
|
+
"string.regexp source.ruby.embedded",
|
431
|
+
"string.regexp string.regexp.arbitrary-repitition"
|
432
|
+
],
|
433
|
+
"settings": {
|
434
|
+
"foreground": "#96d0ff"
|
435
|
+
}
|
436
|
+
},
|
437
|
+
{
|
438
|
+
"scope": "string.regexp constant.character.escape",
|
439
|
+
"settings": {
|
440
|
+
"fontStyle": "bold",
|
441
|
+
"foreground": "#8ddb8c"
|
442
|
+
}
|
443
|
+
},
|
444
|
+
{
|
445
|
+
"scope": "support.constant",
|
446
|
+
"settings": {
|
447
|
+
"foreground": "#6cb6ff"
|
448
|
+
}
|
449
|
+
},
|
450
|
+
{
|
451
|
+
"scope": "support.variable",
|
452
|
+
"settings": {
|
453
|
+
"foreground": "#6cb6ff"
|
454
|
+
}
|
455
|
+
},
|
456
|
+
{
|
457
|
+
"scope": "support.type.property-name.json",
|
458
|
+
"settings": {
|
459
|
+
"foreground": "#8ddb8c"
|
460
|
+
}
|
461
|
+
},
|
462
|
+
{
|
463
|
+
"scope": "meta.module-reference",
|
464
|
+
"settings": {
|
465
|
+
"foreground": "#6cb6ff"
|
466
|
+
}
|
467
|
+
},
|
468
|
+
{
|
469
|
+
"scope": "punctuation.definition.list.begin.markdown",
|
470
|
+
"settings": {
|
471
|
+
"foreground": "#f69d50"
|
472
|
+
}
|
473
|
+
},
|
474
|
+
{
|
475
|
+
"scope": ["markup.heading", "markup.heading entity.name"],
|
476
|
+
"settings": {
|
477
|
+
"fontStyle": "bold",
|
478
|
+
"foreground": "#6cb6ff"
|
479
|
+
}
|
480
|
+
},
|
481
|
+
{
|
482
|
+
"scope": "markup.quote",
|
483
|
+
"settings": {
|
484
|
+
"foreground": "#8ddb8c"
|
485
|
+
}
|
486
|
+
},
|
487
|
+
{
|
488
|
+
"scope": "markup.italic",
|
489
|
+
"settings": {
|
490
|
+
"fontStyle": "italic",
|
491
|
+
"foreground": "#adbac7"
|
492
|
+
}
|
493
|
+
},
|
494
|
+
{
|
495
|
+
"scope": "markup.bold",
|
496
|
+
"settings": {
|
497
|
+
"fontStyle": "bold",
|
498
|
+
"foreground": "#adbac7"
|
499
|
+
}
|
500
|
+
},
|
501
|
+
{
|
502
|
+
"scope": ["markup.underline"],
|
503
|
+
"settings": {
|
504
|
+
"fontStyle": "underline"
|
505
|
+
}
|
506
|
+
},
|
507
|
+
{
|
508
|
+
"scope": ["markup.strikethrough"],
|
509
|
+
"settings": {
|
510
|
+
"fontStyle": "strikethrough"
|
511
|
+
}
|
512
|
+
},
|
513
|
+
{
|
514
|
+
"scope": "markup.inline.raw",
|
515
|
+
"settings": {
|
516
|
+
"foreground": "#6cb6ff"
|
517
|
+
}
|
518
|
+
},
|
519
|
+
{
|
520
|
+
"scope": [
|
521
|
+
"markup.deleted",
|
522
|
+
"meta.diff.header.from-file",
|
523
|
+
"punctuation.definition.deleted"
|
524
|
+
],
|
525
|
+
"settings": {
|
526
|
+
"background": "#5d0f12",
|
527
|
+
"foreground": "#ff938a"
|
528
|
+
}
|
529
|
+
},
|
530
|
+
{
|
531
|
+
"scope": ["punctuation.section.embedded"],
|
532
|
+
"settings": {
|
533
|
+
"foreground": "#f47067"
|
534
|
+
}
|
535
|
+
},
|
536
|
+
{
|
537
|
+
"scope": [
|
538
|
+
"markup.inserted",
|
539
|
+
"meta.diff.header.to-file",
|
540
|
+
"punctuation.definition.inserted"
|
541
|
+
],
|
542
|
+
"settings": {
|
543
|
+
"background": "#113417",
|
544
|
+
"foreground": "#8ddb8c"
|
545
|
+
}
|
546
|
+
},
|
547
|
+
{
|
548
|
+
"scope": ["markup.changed", "punctuation.definition.changed"],
|
549
|
+
"settings": {
|
550
|
+
"background": "#682d0f",
|
551
|
+
"foreground": "#f69d50"
|
552
|
+
}
|
553
|
+
},
|
554
|
+
{
|
555
|
+
"scope": ["markup.ignored", "markup.untracked"],
|
556
|
+
"settings": {
|
557
|
+
"foreground": "#2d333b",
|
558
|
+
"background": "#6cb6ff"
|
559
|
+
}
|
560
|
+
},
|
561
|
+
{
|
562
|
+
"scope": "meta.diff.range",
|
563
|
+
"settings": {
|
564
|
+
"foreground": "#dcbdfb",
|
565
|
+
"fontStyle": "bold"
|
566
|
+
}
|
567
|
+
},
|
568
|
+
{
|
569
|
+
"scope": "meta.diff.header",
|
570
|
+
"settings": {
|
571
|
+
"foreground": "#6cb6ff"
|
572
|
+
}
|
573
|
+
},
|
574
|
+
{
|
575
|
+
"scope": "meta.separator",
|
576
|
+
"settings": {
|
577
|
+
"fontStyle": "bold",
|
578
|
+
"foreground": "#6cb6ff"
|
579
|
+
}
|
580
|
+
},
|
581
|
+
{
|
582
|
+
"scope": "meta.output",
|
583
|
+
"settings": {
|
584
|
+
"foreground": "#6cb6ff"
|
585
|
+
}
|
586
|
+
},
|
587
|
+
{
|
588
|
+
"scope": [
|
589
|
+
"brackethighlighter.tag",
|
590
|
+
"brackethighlighter.curly",
|
591
|
+
"brackethighlighter.round",
|
592
|
+
"brackethighlighter.square",
|
593
|
+
"brackethighlighter.angle",
|
594
|
+
"brackethighlighter.quote"
|
595
|
+
],
|
596
|
+
"settings": {
|
597
|
+
"foreground": "#768390"
|
598
|
+
}
|
599
|
+
},
|
600
|
+
{
|
601
|
+
"scope": "brackethighlighter.unmatched",
|
602
|
+
"settings": {
|
603
|
+
"foreground": "#ff938a"
|
604
|
+
}
|
605
|
+
},
|
606
|
+
{
|
607
|
+
"scope": ["constant.other.reference.link", "string.other.link"],
|
608
|
+
"settings": {
|
609
|
+
"foreground": "#96d0ff"
|
610
|
+
}
|
611
|
+
}
|
612
|
+
]
|
613
|
+
}
|