@uipath/apollo-wind 2.20.1 → 2.22.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/dist/components/forms/metadata-form.cjs +67 -10
- package/dist/components/forms/metadata-form.d.ts +8 -1
- package/dist/components/forms/metadata-form.js +68 -11
- package/dist/components/ui/index.cjs +10 -10
- package/dist/editor-themes/codemirror.cjs +194 -0
- package/dist/editor-themes/codemirror.d.ts +128 -0
- package/dist/editor-themes/codemirror.js +145 -0
- package/dist/editor-themes/index.cjs +70 -0
- package/dist/editor-themes/index.d.ts +23 -0
- package/dist/editor-themes/index.js +3 -0
- package/dist/editor-themes/monaco.cjs +1052 -0
- package/dist/editor-themes/monaco.d.ts +830 -0
- package/dist/editor-themes/monaco.js +1003 -0
- package/dist/index.cjs +9 -13
- package/dist/index.d.ts +0 -2
- package/dist/index.js +1 -2
- package/dist/styles.css +80 -7
- package/package.json +13 -3
- package/dist/components/ui/code-block.cjs +0 -235
- package/dist/components/ui/code-block.d.ts +0 -48
- package/dist/components/ui/code-block.js +0 -201
- /package/dist/templates/{Experiments → Patterns}/ideas-AnimatedGradientText.d.ts +0 -0
|
@@ -0,0 +1,830 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Apollo Monaco Editor themes — Future, Core, and Core HC variants.
|
|
3
|
+
*
|
|
4
|
+
* Pure data — no Monaco import required. Pass these objects directly to
|
|
5
|
+
* `monaco.editor.defineTheme` before rendering your editor instance.
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* ```ts
|
|
9
|
+
* import { apolloCoreDarkMonaco } from '@uipath/apollo-wind/editor-themes';
|
|
10
|
+
* import * as monaco from 'monaco-editor';
|
|
11
|
+
*
|
|
12
|
+
* monaco.editor.defineTheme('apollo-core-dark', apolloCoreDarkMonaco);
|
|
13
|
+
*
|
|
14
|
+
* // Then use the theme name in your editor instance:
|
|
15
|
+
* monaco.editor.create(container, {
|
|
16
|
+
* theme: 'apollo-core-dark',
|
|
17
|
+
* // ...
|
|
18
|
+
* });
|
|
19
|
+
* ```
|
|
20
|
+
*/
|
|
21
|
+
/**
|
|
22
|
+
* Apollo Future Dark — Monaco theme definition.
|
|
23
|
+
*
|
|
24
|
+
* Uses the Apollo Future zinc palette with cyan keywords, emerald strings,
|
|
25
|
+
* amber numbers, and violet literals.
|
|
26
|
+
*/
|
|
27
|
+
export declare const apolloFutureDarkMonaco: {
|
|
28
|
+
base: "vs-dark";
|
|
29
|
+
inherit: boolean;
|
|
30
|
+
rules: readonly [{
|
|
31
|
+
readonly token: "";
|
|
32
|
+
readonly foreground: "a1a1aa";
|
|
33
|
+
}, {
|
|
34
|
+
readonly token: "comment";
|
|
35
|
+
readonly foreground: "52525b";
|
|
36
|
+
}, {
|
|
37
|
+
readonly token: "comment.doc";
|
|
38
|
+
readonly foreground: "52525b";
|
|
39
|
+
}, {
|
|
40
|
+
readonly token: "string";
|
|
41
|
+
readonly foreground: "34d399";
|
|
42
|
+
}, {
|
|
43
|
+
readonly token: "string.escape";
|
|
44
|
+
readonly foreground: "34d399";
|
|
45
|
+
}, {
|
|
46
|
+
readonly token: "regexp";
|
|
47
|
+
readonly foreground: "a78bfa";
|
|
48
|
+
}, {
|
|
49
|
+
readonly token: "number";
|
|
50
|
+
readonly foreground: "fbbf24";
|
|
51
|
+
}, {
|
|
52
|
+
readonly token: "number.float";
|
|
53
|
+
readonly foreground: "fbbf24";
|
|
54
|
+
}, {
|
|
55
|
+
readonly token: "number.hex";
|
|
56
|
+
readonly foreground: "fbbf24";
|
|
57
|
+
}, {
|
|
58
|
+
readonly token: "boolean";
|
|
59
|
+
readonly foreground: "a78bfa";
|
|
60
|
+
}, {
|
|
61
|
+
readonly token: "keyword";
|
|
62
|
+
readonly foreground: "22d3ee";
|
|
63
|
+
}, {
|
|
64
|
+
readonly token: "keyword.control";
|
|
65
|
+
readonly foreground: "22d3ee";
|
|
66
|
+
}, {
|
|
67
|
+
readonly token: "keyword.operator";
|
|
68
|
+
readonly foreground: "71717a";
|
|
69
|
+
}, {
|
|
70
|
+
readonly token: "operator";
|
|
71
|
+
readonly foreground: "71717a";
|
|
72
|
+
}, {
|
|
73
|
+
readonly token: "delimiter";
|
|
74
|
+
readonly foreground: "71717a";
|
|
75
|
+
}, {
|
|
76
|
+
readonly token: "delimiter.bracket";
|
|
77
|
+
readonly foreground: "71717a";
|
|
78
|
+
}, {
|
|
79
|
+
readonly token: "delimiter.array";
|
|
80
|
+
readonly foreground: "71717a";
|
|
81
|
+
}, {
|
|
82
|
+
readonly token: "delimiter.parenthesis";
|
|
83
|
+
readonly foreground: "71717a";
|
|
84
|
+
}, {
|
|
85
|
+
readonly token: "type";
|
|
86
|
+
readonly foreground: "a78bfa";
|
|
87
|
+
}, {
|
|
88
|
+
readonly token: "type.identifier";
|
|
89
|
+
readonly foreground: "a78bfa";
|
|
90
|
+
}, {
|
|
91
|
+
readonly token: "class";
|
|
92
|
+
readonly foreground: "a78bfa";
|
|
93
|
+
}, {
|
|
94
|
+
readonly token: "class.identifier";
|
|
95
|
+
readonly foreground: "a78bfa";
|
|
96
|
+
}, {
|
|
97
|
+
readonly token: "function";
|
|
98
|
+
readonly foreground: "22d3ee";
|
|
99
|
+
}, {
|
|
100
|
+
readonly token: "function.identifier";
|
|
101
|
+
readonly foreground: "22d3ee";
|
|
102
|
+
}, {
|
|
103
|
+
readonly token: "variable";
|
|
104
|
+
readonly foreground: "a1a1aa";
|
|
105
|
+
}, {
|
|
106
|
+
readonly token: "variable.predefined";
|
|
107
|
+
readonly foreground: "a78bfa";
|
|
108
|
+
}, {
|
|
109
|
+
readonly token: "constant";
|
|
110
|
+
readonly foreground: "a78bfa";
|
|
111
|
+
}, {
|
|
112
|
+
readonly token: "identifier";
|
|
113
|
+
readonly foreground: "a1a1aa";
|
|
114
|
+
}, {
|
|
115
|
+
readonly token: "tag";
|
|
116
|
+
readonly foreground: "22d3ee";
|
|
117
|
+
}, {
|
|
118
|
+
readonly token: "attribute.name";
|
|
119
|
+
readonly foreground: "22d3ee";
|
|
120
|
+
}, {
|
|
121
|
+
readonly token: "attribute.value";
|
|
122
|
+
readonly foreground: "34d399";
|
|
123
|
+
}, {
|
|
124
|
+
readonly token: "metatag";
|
|
125
|
+
readonly foreground: "71717a";
|
|
126
|
+
}];
|
|
127
|
+
colors: {
|
|
128
|
+
'editor.background': string;
|
|
129
|
+
'editor.foreground': string;
|
|
130
|
+
'editorLineNumber.foreground': string;
|
|
131
|
+
'editorLineNumber.activeForeground': string;
|
|
132
|
+
'editor.selectionBackground': string;
|
|
133
|
+
'editor.inactiveSelectionBackground': string;
|
|
134
|
+
'editor.lineHighlightBackground': string;
|
|
135
|
+
'editorCursor.foreground': string;
|
|
136
|
+
'editorWhitespace.foreground': string;
|
|
137
|
+
'editorIndentGuide.background1': string;
|
|
138
|
+
'editorIndentGuide.activeBackground1': string;
|
|
139
|
+
'editorBracketMatch.background': string;
|
|
140
|
+
'editorBracketMatch.border': string;
|
|
141
|
+
'editor.findMatchBackground': string;
|
|
142
|
+
'editor.findMatchHighlightBackground': string;
|
|
143
|
+
'editorWidget.background': string;
|
|
144
|
+
'editorWidget.border': string;
|
|
145
|
+
'editorSuggestWidget.background': string;
|
|
146
|
+
'editorSuggestWidget.border': string;
|
|
147
|
+
'editorSuggestWidget.selectedBackground': string;
|
|
148
|
+
'editorHoverWidget.background': string;
|
|
149
|
+
'editorHoverWidget.border': string;
|
|
150
|
+
'scrollbarSlider.background': string;
|
|
151
|
+
'scrollbarSlider.hoverBackground': string;
|
|
152
|
+
'scrollbarSlider.activeBackground': string;
|
|
153
|
+
focusBorder: string;
|
|
154
|
+
'input.background': string;
|
|
155
|
+
'input.border': string;
|
|
156
|
+
'input.foreground': string;
|
|
157
|
+
'input.placeholderForeground': string;
|
|
158
|
+
};
|
|
159
|
+
};
|
|
160
|
+
/**
|
|
161
|
+
* Apollo Future Light — Monaco theme definition.
|
|
162
|
+
*
|
|
163
|
+
* Uses the Apollo Future zinc palette with cyan-700 keywords, emerald-700 strings,
|
|
164
|
+
* amber-700 numbers, and violet-600 literals.
|
|
165
|
+
*/
|
|
166
|
+
export declare const apolloFutureLightMonaco: {
|
|
167
|
+
base: "vs";
|
|
168
|
+
inherit: boolean;
|
|
169
|
+
rules: readonly [{
|
|
170
|
+
readonly token: "";
|
|
171
|
+
readonly foreground: "52525b";
|
|
172
|
+
}, {
|
|
173
|
+
readonly token: "comment";
|
|
174
|
+
readonly foreground: "a1a1aa";
|
|
175
|
+
}, {
|
|
176
|
+
readonly token: "comment.doc";
|
|
177
|
+
readonly foreground: "a1a1aa";
|
|
178
|
+
}, {
|
|
179
|
+
readonly token: "string";
|
|
180
|
+
readonly foreground: "047857";
|
|
181
|
+
}, {
|
|
182
|
+
readonly token: "string.escape";
|
|
183
|
+
readonly foreground: "047857";
|
|
184
|
+
}, {
|
|
185
|
+
readonly token: "regexp";
|
|
186
|
+
readonly foreground: "7c3aed";
|
|
187
|
+
}, {
|
|
188
|
+
readonly token: "number";
|
|
189
|
+
readonly foreground: "b45309";
|
|
190
|
+
}, {
|
|
191
|
+
readonly token: "number.float";
|
|
192
|
+
readonly foreground: "b45309";
|
|
193
|
+
}, {
|
|
194
|
+
readonly token: "number.hex";
|
|
195
|
+
readonly foreground: "b45309";
|
|
196
|
+
}, {
|
|
197
|
+
readonly token: "boolean";
|
|
198
|
+
readonly foreground: "7c3aed";
|
|
199
|
+
}, {
|
|
200
|
+
readonly token: "keyword";
|
|
201
|
+
readonly foreground: "0e7490";
|
|
202
|
+
}, {
|
|
203
|
+
readonly token: "keyword.control";
|
|
204
|
+
readonly foreground: "0e7490";
|
|
205
|
+
}, {
|
|
206
|
+
readonly token: "keyword.operator";
|
|
207
|
+
readonly foreground: "71717a";
|
|
208
|
+
}, {
|
|
209
|
+
readonly token: "operator";
|
|
210
|
+
readonly foreground: "71717a";
|
|
211
|
+
}, {
|
|
212
|
+
readonly token: "delimiter";
|
|
213
|
+
readonly foreground: "71717a";
|
|
214
|
+
}, {
|
|
215
|
+
readonly token: "delimiter.bracket";
|
|
216
|
+
readonly foreground: "71717a";
|
|
217
|
+
}, {
|
|
218
|
+
readonly token: "delimiter.array";
|
|
219
|
+
readonly foreground: "71717a";
|
|
220
|
+
}, {
|
|
221
|
+
readonly token: "delimiter.parenthesis";
|
|
222
|
+
readonly foreground: "71717a";
|
|
223
|
+
}, {
|
|
224
|
+
readonly token: "type";
|
|
225
|
+
readonly foreground: "7c3aed";
|
|
226
|
+
}, {
|
|
227
|
+
readonly token: "type.identifier";
|
|
228
|
+
readonly foreground: "7c3aed";
|
|
229
|
+
}, {
|
|
230
|
+
readonly token: "class";
|
|
231
|
+
readonly foreground: "7c3aed";
|
|
232
|
+
}, {
|
|
233
|
+
readonly token: "class.identifier";
|
|
234
|
+
readonly foreground: "7c3aed";
|
|
235
|
+
}, {
|
|
236
|
+
readonly token: "function";
|
|
237
|
+
readonly foreground: "0e7490";
|
|
238
|
+
}, {
|
|
239
|
+
readonly token: "function.identifier";
|
|
240
|
+
readonly foreground: "0e7490";
|
|
241
|
+
}, {
|
|
242
|
+
readonly token: "variable";
|
|
243
|
+
readonly foreground: "52525b";
|
|
244
|
+
}, {
|
|
245
|
+
readonly token: "variable.predefined";
|
|
246
|
+
readonly foreground: "7c3aed";
|
|
247
|
+
}, {
|
|
248
|
+
readonly token: "constant";
|
|
249
|
+
readonly foreground: "7c3aed";
|
|
250
|
+
}, {
|
|
251
|
+
readonly token: "identifier";
|
|
252
|
+
readonly foreground: "52525b";
|
|
253
|
+
}, {
|
|
254
|
+
readonly token: "tag";
|
|
255
|
+
readonly foreground: "0e7490";
|
|
256
|
+
}, {
|
|
257
|
+
readonly token: "attribute.name";
|
|
258
|
+
readonly foreground: "0e7490";
|
|
259
|
+
}, {
|
|
260
|
+
readonly token: "attribute.value";
|
|
261
|
+
readonly foreground: "047857";
|
|
262
|
+
}, {
|
|
263
|
+
readonly token: "metatag";
|
|
264
|
+
readonly foreground: "71717a";
|
|
265
|
+
}];
|
|
266
|
+
colors: {
|
|
267
|
+
'editor.background': string;
|
|
268
|
+
'editor.foreground': string;
|
|
269
|
+
'editorLineNumber.foreground': string;
|
|
270
|
+
'editorLineNumber.activeForeground': string;
|
|
271
|
+
'editor.selectionBackground': string;
|
|
272
|
+
'editor.inactiveSelectionBackground': string;
|
|
273
|
+
'editor.lineHighlightBackground': string;
|
|
274
|
+
'editorCursor.foreground': string;
|
|
275
|
+
'editorWhitespace.foreground': string;
|
|
276
|
+
'editorIndentGuide.background1': string;
|
|
277
|
+
'editorIndentGuide.activeBackground1': string;
|
|
278
|
+
'editorBracketMatch.background': string;
|
|
279
|
+
'editorBracketMatch.border': string;
|
|
280
|
+
'editor.findMatchBackground': string;
|
|
281
|
+
'editor.findMatchHighlightBackground': string;
|
|
282
|
+
'editorWidget.background': string;
|
|
283
|
+
'editorWidget.border': string;
|
|
284
|
+
'editorSuggestWidget.background': string;
|
|
285
|
+
'editorSuggestWidget.border': string;
|
|
286
|
+
'editorSuggestWidget.selectedBackground': string;
|
|
287
|
+
'editorHoverWidget.background': string;
|
|
288
|
+
'editorHoverWidget.border': string;
|
|
289
|
+
'scrollbarSlider.background': string;
|
|
290
|
+
'scrollbarSlider.hoverBackground': string;
|
|
291
|
+
'scrollbarSlider.activeBackground': string;
|
|
292
|
+
focusBorder: string;
|
|
293
|
+
'input.background': string;
|
|
294
|
+
'input.border': string;
|
|
295
|
+
'input.foreground': string;
|
|
296
|
+
'input.placeholderForeground': string;
|
|
297
|
+
};
|
|
298
|
+
};
|
|
299
|
+
export declare const apolloCoreDarkMonaco: {
|
|
300
|
+
base: "vs-dark";
|
|
301
|
+
inherit: boolean;
|
|
302
|
+
rules: readonly [{
|
|
303
|
+
readonly token: "";
|
|
304
|
+
readonly foreground: "cfd8dd";
|
|
305
|
+
}, {
|
|
306
|
+
readonly token: "comment";
|
|
307
|
+
readonly foreground: "526069";
|
|
308
|
+
}, {
|
|
309
|
+
readonly token: "comment.doc";
|
|
310
|
+
readonly foreground: "526069";
|
|
311
|
+
}, {
|
|
312
|
+
readonly token: "string";
|
|
313
|
+
readonly foreground: "f25a8c";
|
|
314
|
+
}, {
|
|
315
|
+
readonly token: "string.escape";
|
|
316
|
+
readonly foreground: "f25a8c";
|
|
317
|
+
}, {
|
|
318
|
+
readonly token: "regexp";
|
|
319
|
+
readonly foreground: "dc80db";
|
|
320
|
+
}, {
|
|
321
|
+
readonly token: "number";
|
|
322
|
+
readonly foreground: "6ecdb6";
|
|
323
|
+
}, {
|
|
324
|
+
readonly token: "number.float";
|
|
325
|
+
readonly foreground: "6ecdb6";
|
|
326
|
+
}, {
|
|
327
|
+
readonly token: "number.hex";
|
|
328
|
+
readonly foreground: "6ecdb6";
|
|
329
|
+
}, {
|
|
330
|
+
readonly token: "boolean";
|
|
331
|
+
readonly foreground: "dc80db";
|
|
332
|
+
}, {
|
|
333
|
+
readonly token: "keyword";
|
|
334
|
+
readonly foreground: "66adff";
|
|
335
|
+
}, {
|
|
336
|
+
readonly token: "keyword.control";
|
|
337
|
+
readonly foreground: "66adff";
|
|
338
|
+
}, {
|
|
339
|
+
readonly token: "keyword.operator";
|
|
340
|
+
readonly foreground: "8a97a0";
|
|
341
|
+
}, {
|
|
342
|
+
readonly token: "operator";
|
|
343
|
+
readonly foreground: "66adff";
|
|
344
|
+
}, {
|
|
345
|
+
readonly token: "delimiter";
|
|
346
|
+
readonly foreground: "8a97a0";
|
|
347
|
+
}, {
|
|
348
|
+
readonly token: "delimiter.bracket";
|
|
349
|
+
readonly foreground: "8a97a0";
|
|
350
|
+
}, {
|
|
351
|
+
readonly token: "delimiter.array";
|
|
352
|
+
readonly foreground: "8a97a0";
|
|
353
|
+
}, {
|
|
354
|
+
readonly token: "delimiter.parenthesis";
|
|
355
|
+
readonly foreground: "8a97a0";
|
|
356
|
+
}, {
|
|
357
|
+
readonly token: "type";
|
|
358
|
+
readonly foreground: "dc80db";
|
|
359
|
+
}, {
|
|
360
|
+
readonly token: "type.identifier";
|
|
361
|
+
readonly foreground: "dc80db";
|
|
362
|
+
}, {
|
|
363
|
+
readonly token: "class";
|
|
364
|
+
readonly foreground: "dc80db";
|
|
365
|
+
}, {
|
|
366
|
+
readonly token: "class.identifier";
|
|
367
|
+
readonly foreground: "dc80db";
|
|
368
|
+
}, {
|
|
369
|
+
readonly token: "function";
|
|
370
|
+
readonly foreground: "66adff";
|
|
371
|
+
}, {
|
|
372
|
+
readonly token: "function.identifier";
|
|
373
|
+
readonly foreground: "66adff";
|
|
374
|
+
}, {
|
|
375
|
+
readonly token: "variable";
|
|
376
|
+
readonly foreground: "cfd8dd";
|
|
377
|
+
}, {
|
|
378
|
+
readonly token: "variable.predefined";
|
|
379
|
+
readonly foreground: "dc80db";
|
|
380
|
+
}, {
|
|
381
|
+
readonly token: "constant";
|
|
382
|
+
readonly foreground: "dc80db";
|
|
383
|
+
}, {
|
|
384
|
+
readonly token: "identifier";
|
|
385
|
+
readonly foreground: "cfd8dd";
|
|
386
|
+
}, {
|
|
387
|
+
readonly token: "tag";
|
|
388
|
+
readonly foreground: "66adff";
|
|
389
|
+
}, {
|
|
390
|
+
readonly token: "attribute.name";
|
|
391
|
+
readonly foreground: "66adff";
|
|
392
|
+
}, {
|
|
393
|
+
readonly token: "attribute.value";
|
|
394
|
+
readonly foreground: "f25a8c";
|
|
395
|
+
}, {
|
|
396
|
+
readonly token: "metatag";
|
|
397
|
+
readonly foreground: "8a97a0";
|
|
398
|
+
}];
|
|
399
|
+
colors: {
|
|
400
|
+
'editor.background': string;
|
|
401
|
+
'editor.foreground': string;
|
|
402
|
+
'editorLineNumber.foreground': string;
|
|
403
|
+
'editorLineNumber.activeForeground': string;
|
|
404
|
+
'editor.selectionBackground': string;
|
|
405
|
+
'editor.inactiveSelectionBackground': string;
|
|
406
|
+
'editor.lineHighlightBackground': string;
|
|
407
|
+
'editorCursor.foreground': string;
|
|
408
|
+
'editorWhitespace.foreground': string;
|
|
409
|
+
'editorIndentGuide.background1': string;
|
|
410
|
+
'editorIndentGuide.activeBackground1': string;
|
|
411
|
+
'editorBracketMatch.background': string;
|
|
412
|
+
'editorBracketMatch.border': string;
|
|
413
|
+
'editor.findMatchBackground': string;
|
|
414
|
+
'editor.findMatchHighlightBackground': string;
|
|
415
|
+
'editorWidget.background': string;
|
|
416
|
+
'editorWidget.border': string;
|
|
417
|
+
'editorSuggestWidget.background': string;
|
|
418
|
+
'editorSuggestWidget.border': string;
|
|
419
|
+
'editorSuggestWidget.selectedBackground': string;
|
|
420
|
+
'editorHoverWidget.background': string;
|
|
421
|
+
'editorHoverWidget.border': string;
|
|
422
|
+
'scrollbarSlider.background': string;
|
|
423
|
+
'scrollbarSlider.hoverBackground': string;
|
|
424
|
+
'scrollbarSlider.activeBackground': string;
|
|
425
|
+
focusBorder: string;
|
|
426
|
+
'input.background': string;
|
|
427
|
+
'input.border': string;
|
|
428
|
+
'input.foreground': string;
|
|
429
|
+
'input.placeholderForeground': string;
|
|
430
|
+
};
|
|
431
|
+
};
|
|
432
|
+
export declare const apolloCoreLightMonaco: {
|
|
433
|
+
base: "vs";
|
|
434
|
+
inherit: boolean;
|
|
435
|
+
rules: readonly [{
|
|
436
|
+
readonly token: "";
|
|
437
|
+
readonly foreground: "526069";
|
|
438
|
+
}, {
|
|
439
|
+
readonly token: "comment";
|
|
440
|
+
readonly foreground: "a4b1b8";
|
|
441
|
+
}, {
|
|
442
|
+
readonly token: "comment.doc";
|
|
443
|
+
readonly foreground: "a4b1b8";
|
|
444
|
+
}, {
|
|
445
|
+
readonly token: "string";
|
|
446
|
+
readonly foreground: "d91153";
|
|
447
|
+
}, {
|
|
448
|
+
readonly token: "string.escape";
|
|
449
|
+
readonly foreground: "d91153";
|
|
450
|
+
}, {
|
|
451
|
+
readonly token: "regexp";
|
|
452
|
+
readonly foreground: "b748b6";
|
|
453
|
+
}, {
|
|
454
|
+
readonly token: "number";
|
|
455
|
+
readonly foreground: "1e7f5a";
|
|
456
|
+
}, {
|
|
457
|
+
readonly token: "number.float";
|
|
458
|
+
readonly foreground: "1e7f5a";
|
|
459
|
+
}, {
|
|
460
|
+
readonly token: "number.hex";
|
|
461
|
+
readonly foreground: "1e7f5a";
|
|
462
|
+
}, {
|
|
463
|
+
readonly token: "boolean";
|
|
464
|
+
readonly foreground: "b748b6";
|
|
465
|
+
}, {
|
|
466
|
+
readonly token: "keyword";
|
|
467
|
+
readonly foreground: "0067df";
|
|
468
|
+
}, {
|
|
469
|
+
readonly token: "keyword.control";
|
|
470
|
+
readonly foreground: "0067df";
|
|
471
|
+
}, {
|
|
472
|
+
readonly token: "keyword.operator";
|
|
473
|
+
readonly foreground: "6b7882";
|
|
474
|
+
}, {
|
|
475
|
+
readonly token: "operator";
|
|
476
|
+
readonly foreground: "0067df";
|
|
477
|
+
}, {
|
|
478
|
+
readonly token: "delimiter";
|
|
479
|
+
readonly foreground: "6b7882";
|
|
480
|
+
}, {
|
|
481
|
+
readonly token: "delimiter.bracket";
|
|
482
|
+
readonly foreground: "6b7882";
|
|
483
|
+
}, {
|
|
484
|
+
readonly token: "delimiter.array";
|
|
485
|
+
readonly foreground: "6b7882";
|
|
486
|
+
}, {
|
|
487
|
+
readonly token: "delimiter.parenthesis";
|
|
488
|
+
readonly foreground: "6b7882";
|
|
489
|
+
}, {
|
|
490
|
+
readonly token: "type";
|
|
491
|
+
readonly foreground: "b748b6";
|
|
492
|
+
}, {
|
|
493
|
+
readonly token: "type.identifier";
|
|
494
|
+
readonly foreground: "b748b6";
|
|
495
|
+
}, {
|
|
496
|
+
readonly token: "class";
|
|
497
|
+
readonly foreground: "b748b6";
|
|
498
|
+
}, {
|
|
499
|
+
readonly token: "class.identifier";
|
|
500
|
+
readonly foreground: "b748b6";
|
|
501
|
+
}, {
|
|
502
|
+
readonly token: "function";
|
|
503
|
+
readonly foreground: "0067df";
|
|
504
|
+
}, {
|
|
505
|
+
readonly token: "function.identifier";
|
|
506
|
+
readonly foreground: "0067df";
|
|
507
|
+
}, {
|
|
508
|
+
readonly token: "variable";
|
|
509
|
+
readonly foreground: "526069";
|
|
510
|
+
}, {
|
|
511
|
+
readonly token: "variable.predefined";
|
|
512
|
+
readonly foreground: "b748b6";
|
|
513
|
+
}, {
|
|
514
|
+
readonly token: "constant";
|
|
515
|
+
readonly foreground: "b748b6";
|
|
516
|
+
}, {
|
|
517
|
+
readonly token: "identifier";
|
|
518
|
+
readonly foreground: "526069";
|
|
519
|
+
}, {
|
|
520
|
+
readonly token: "tag";
|
|
521
|
+
readonly foreground: "0067df";
|
|
522
|
+
}, {
|
|
523
|
+
readonly token: "attribute.name";
|
|
524
|
+
readonly foreground: "0067df";
|
|
525
|
+
}, {
|
|
526
|
+
readonly token: "attribute.value";
|
|
527
|
+
readonly foreground: "d91153";
|
|
528
|
+
}, {
|
|
529
|
+
readonly token: "metatag";
|
|
530
|
+
readonly foreground: "6b7882";
|
|
531
|
+
}];
|
|
532
|
+
colors: {
|
|
533
|
+
'editor.background': string;
|
|
534
|
+
'editor.foreground': string;
|
|
535
|
+
'editorLineNumber.foreground': string;
|
|
536
|
+
'editorLineNumber.activeForeground': string;
|
|
537
|
+
'editor.selectionBackground': string;
|
|
538
|
+
'editor.inactiveSelectionBackground': string;
|
|
539
|
+
'editor.lineHighlightBackground': string;
|
|
540
|
+
'editorCursor.foreground': string;
|
|
541
|
+
'editorWhitespace.foreground': string;
|
|
542
|
+
'editorIndentGuide.background1': string;
|
|
543
|
+
'editorIndentGuide.activeBackground1': string;
|
|
544
|
+
'editorBracketMatch.background': string;
|
|
545
|
+
'editorBracketMatch.border': string;
|
|
546
|
+
'editor.findMatchBackground': string;
|
|
547
|
+
'editor.findMatchHighlightBackground': string;
|
|
548
|
+
'editorWidget.background': string;
|
|
549
|
+
'editorWidget.border': string;
|
|
550
|
+
'editorSuggestWidget.background': string;
|
|
551
|
+
'editorSuggestWidget.border': string;
|
|
552
|
+
'editorSuggestWidget.selectedBackground': string;
|
|
553
|
+
'editorHoverWidget.background': string;
|
|
554
|
+
'editorHoverWidget.border': string;
|
|
555
|
+
'scrollbarSlider.background': string;
|
|
556
|
+
'scrollbarSlider.hoverBackground': string;
|
|
557
|
+
'scrollbarSlider.activeBackground': string;
|
|
558
|
+
focusBorder: string;
|
|
559
|
+
'input.background': string;
|
|
560
|
+
'input.border': string;
|
|
561
|
+
'input.foreground': string;
|
|
562
|
+
'input.placeholderForeground': string;
|
|
563
|
+
};
|
|
564
|
+
};
|
|
565
|
+
export declare const apolloCoreDarkHCMonaco: {
|
|
566
|
+
base: "hc-black";
|
|
567
|
+
inherit: boolean;
|
|
568
|
+
rules: readonly [{
|
|
569
|
+
readonly token: "";
|
|
570
|
+
readonly foreground: "cfd8dd";
|
|
571
|
+
}, {
|
|
572
|
+
readonly token: "comment";
|
|
573
|
+
readonly foreground: "526069";
|
|
574
|
+
}, {
|
|
575
|
+
readonly token: "comment.doc";
|
|
576
|
+
readonly foreground: "526069";
|
|
577
|
+
}, {
|
|
578
|
+
readonly token: "string";
|
|
579
|
+
readonly foreground: "fd7da7";
|
|
580
|
+
}, {
|
|
581
|
+
readonly token: "string.escape";
|
|
582
|
+
readonly foreground: "fd7da7";
|
|
583
|
+
}, {
|
|
584
|
+
readonly token: "regexp";
|
|
585
|
+
readonly foreground: "dc80db";
|
|
586
|
+
}, {
|
|
587
|
+
readonly token: "number";
|
|
588
|
+
readonly foreground: "6ecdb6";
|
|
589
|
+
}, {
|
|
590
|
+
readonly token: "number.float";
|
|
591
|
+
readonly foreground: "6ecdb6";
|
|
592
|
+
}, {
|
|
593
|
+
readonly token: "number.hex";
|
|
594
|
+
readonly foreground: "6ecdb6";
|
|
595
|
+
}, {
|
|
596
|
+
readonly token: "boolean";
|
|
597
|
+
readonly foreground: "dc80db";
|
|
598
|
+
}, {
|
|
599
|
+
readonly token: "keyword";
|
|
600
|
+
readonly foreground: "badaff";
|
|
601
|
+
}, {
|
|
602
|
+
readonly token: "keyword.control";
|
|
603
|
+
readonly foreground: "badaff";
|
|
604
|
+
}, {
|
|
605
|
+
readonly token: "keyword.operator";
|
|
606
|
+
readonly foreground: "8a97a0";
|
|
607
|
+
}, {
|
|
608
|
+
readonly token: "operator";
|
|
609
|
+
readonly foreground: "badaff";
|
|
610
|
+
}, {
|
|
611
|
+
readonly token: "delimiter";
|
|
612
|
+
readonly foreground: "8a97a0";
|
|
613
|
+
}, {
|
|
614
|
+
readonly token: "delimiter.bracket";
|
|
615
|
+
readonly foreground: "8a97a0";
|
|
616
|
+
}, {
|
|
617
|
+
readonly token: "delimiter.array";
|
|
618
|
+
readonly foreground: "8a97a0";
|
|
619
|
+
}, {
|
|
620
|
+
readonly token: "delimiter.parenthesis";
|
|
621
|
+
readonly foreground: "8a97a0";
|
|
622
|
+
}, {
|
|
623
|
+
readonly token: "type";
|
|
624
|
+
readonly foreground: "dc80db";
|
|
625
|
+
}, {
|
|
626
|
+
readonly token: "type.identifier";
|
|
627
|
+
readonly foreground: "dc80db";
|
|
628
|
+
}, {
|
|
629
|
+
readonly token: "class";
|
|
630
|
+
readonly foreground: "dc80db";
|
|
631
|
+
}, {
|
|
632
|
+
readonly token: "class.identifier";
|
|
633
|
+
readonly foreground: "dc80db";
|
|
634
|
+
}, {
|
|
635
|
+
readonly token: "function";
|
|
636
|
+
readonly foreground: "badaff";
|
|
637
|
+
}, {
|
|
638
|
+
readonly token: "function.identifier";
|
|
639
|
+
readonly foreground: "badaff";
|
|
640
|
+
}, {
|
|
641
|
+
readonly token: "variable";
|
|
642
|
+
readonly foreground: "cfd8dd";
|
|
643
|
+
}, {
|
|
644
|
+
readonly token: "variable.predefined";
|
|
645
|
+
readonly foreground: "dc80db";
|
|
646
|
+
}, {
|
|
647
|
+
readonly token: "constant";
|
|
648
|
+
readonly foreground: "dc80db";
|
|
649
|
+
}, {
|
|
650
|
+
readonly token: "identifier";
|
|
651
|
+
readonly foreground: "cfd8dd";
|
|
652
|
+
}, {
|
|
653
|
+
readonly token: "tag";
|
|
654
|
+
readonly foreground: "badaff";
|
|
655
|
+
}, {
|
|
656
|
+
readonly token: "attribute.name";
|
|
657
|
+
readonly foreground: "badaff";
|
|
658
|
+
}, {
|
|
659
|
+
readonly token: "attribute.value";
|
|
660
|
+
readonly foreground: "fd7da7";
|
|
661
|
+
}, {
|
|
662
|
+
readonly token: "metatag";
|
|
663
|
+
readonly foreground: "8a97a0";
|
|
664
|
+
}];
|
|
665
|
+
colors: {
|
|
666
|
+
'editor.background': string;
|
|
667
|
+
'editor.foreground': string;
|
|
668
|
+
'editorLineNumber.foreground': string;
|
|
669
|
+
'editorLineNumber.activeForeground': string;
|
|
670
|
+
'editor.selectionBackground': string;
|
|
671
|
+
'editor.inactiveSelectionBackground': string;
|
|
672
|
+
'editor.lineHighlightBackground': string;
|
|
673
|
+
'editorCursor.foreground': string;
|
|
674
|
+
'editorWhitespace.foreground': string;
|
|
675
|
+
'editorIndentGuide.background1': string;
|
|
676
|
+
'editorIndentGuide.activeBackground1': string;
|
|
677
|
+
'editorBracketMatch.background': string;
|
|
678
|
+
'editorBracketMatch.border': string;
|
|
679
|
+
'editor.findMatchBackground': string;
|
|
680
|
+
'editor.findMatchHighlightBackground': string;
|
|
681
|
+
'editorWidget.background': string;
|
|
682
|
+
'editorWidget.border': string;
|
|
683
|
+
'editorSuggestWidget.background': string;
|
|
684
|
+
'editorSuggestWidget.border': string;
|
|
685
|
+
'editorSuggestWidget.selectedBackground': string;
|
|
686
|
+
'editorHoverWidget.background': string;
|
|
687
|
+
'editorHoverWidget.border': string;
|
|
688
|
+
'scrollbarSlider.background': string;
|
|
689
|
+
'scrollbarSlider.hoverBackground': string;
|
|
690
|
+
'scrollbarSlider.activeBackground': string;
|
|
691
|
+
focusBorder: string;
|
|
692
|
+
'input.background': string;
|
|
693
|
+
'input.border': string;
|
|
694
|
+
'input.foreground': string;
|
|
695
|
+
'input.placeholderForeground': string;
|
|
696
|
+
};
|
|
697
|
+
};
|
|
698
|
+
export declare const apolloCoreLightHCMonaco: {
|
|
699
|
+
base: "hc-light";
|
|
700
|
+
inherit: boolean;
|
|
701
|
+
rules: readonly [{
|
|
702
|
+
readonly token: "";
|
|
703
|
+
readonly foreground: "374652";
|
|
704
|
+
}, {
|
|
705
|
+
readonly token: "comment";
|
|
706
|
+
readonly foreground: "8a97a0";
|
|
707
|
+
}, {
|
|
708
|
+
readonly token: "comment.doc";
|
|
709
|
+
readonly foreground: "8a97a0";
|
|
710
|
+
}, {
|
|
711
|
+
readonly token: "string";
|
|
712
|
+
readonly foreground: "a60e3f";
|
|
713
|
+
}, {
|
|
714
|
+
readonly token: "string.escape";
|
|
715
|
+
readonly foreground: "a60e3f";
|
|
716
|
+
}, {
|
|
717
|
+
readonly token: "regexp";
|
|
718
|
+
readonly foreground: "8c338b";
|
|
719
|
+
}, {
|
|
720
|
+
readonly token: "number";
|
|
721
|
+
readonly foreground: "176245";
|
|
722
|
+
}, {
|
|
723
|
+
readonly token: "number.float";
|
|
724
|
+
readonly foreground: "176245";
|
|
725
|
+
}, {
|
|
726
|
+
readonly token: "number.hex";
|
|
727
|
+
readonly foreground: "176245";
|
|
728
|
+
}, {
|
|
729
|
+
readonly token: "boolean";
|
|
730
|
+
readonly foreground: "8c338b";
|
|
731
|
+
}, {
|
|
732
|
+
readonly token: "keyword";
|
|
733
|
+
readonly foreground: "00489d";
|
|
734
|
+
}, {
|
|
735
|
+
readonly token: "keyword.control";
|
|
736
|
+
readonly foreground: "00489d";
|
|
737
|
+
}, {
|
|
738
|
+
readonly token: "keyword.operator";
|
|
739
|
+
readonly foreground: "526069";
|
|
740
|
+
}, {
|
|
741
|
+
readonly token: "operator";
|
|
742
|
+
readonly foreground: "00489d";
|
|
743
|
+
}, {
|
|
744
|
+
readonly token: "delimiter";
|
|
745
|
+
readonly foreground: "526069";
|
|
746
|
+
}, {
|
|
747
|
+
readonly token: "delimiter.bracket";
|
|
748
|
+
readonly foreground: "526069";
|
|
749
|
+
}, {
|
|
750
|
+
readonly token: "delimiter.array";
|
|
751
|
+
readonly foreground: "526069";
|
|
752
|
+
}, {
|
|
753
|
+
readonly token: "delimiter.parenthesis";
|
|
754
|
+
readonly foreground: "526069";
|
|
755
|
+
}, {
|
|
756
|
+
readonly token: "type";
|
|
757
|
+
readonly foreground: "8c338b";
|
|
758
|
+
}, {
|
|
759
|
+
readonly token: "type.identifier";
|
|
760
|
+
readonly foreground: "8c338b";
|
|
761
|
+
}, {
|
|
762
|
+
readonly token: "class";
|
|
763
|
+
readonly foreground: "8c338b";
|
|
764
|
+
}, {
|
|
765
|
+
readonly token: "class.identifier";
|
|
766
|
+
readonly foreground: "8c338b";
|
|
767
|
+
}, {
|
|
768
|
+
readonly token: "function";
|
|
769
|
+
readonly foreground: "00489d";
|
|
770
|
+
}, {
|
|
771
|
+
readonly token: "function.identifier";
|
|
772
|
+
readonly foreground: "00489d";
|
|
773
|
+
}, {
|
|
774
|
+
readonly token: "variable";
|
|
775
|
+
readonly foreground: "374652";
|
|
776
|
+
}, {
|
|
777
|
+
readonly token: "variable.predefined";
|
|
778
|
+
readonly foreground: "8c338b";
|
|
779
|
+
}, {
|
|
780
|
+
readonly token: "constant";
|
|
781
|
+
readonly foreground: "8c338b";
|
|
782
|
+
}, {
|
|
783
|
+
readonly token: "identifier";
|
|
784
|
+
readonly foreground: "374652";
|
|
785
|
+
}, {
|
|
786
|
+
readonly token: "tag";
|
|
787
|
+
readonly foreground: "00489d";
|
|
788
|
+
}, {
|
|
789
|
+
readonly token: "attribute.name";
|
|
790
|
+
readonly foreground: "00489d";
|
|
791
|
+
}, {
|
|
792
|
+
readonly token: "attribute.value";
|
|
793
|
+
readonly foreground: "a60e3f";
|
|
794
|
+
}, {
|
|
795
|
+
readonly token: "metatag";
|
|
796
|
+
readonly foreground: "526069";
|
|
797
|
+
}];
|
|
798
|
+
colors: {
|
|
799
|
+
'editor.background': string;
|
|
800
|
+
'editor.foreground': string;
|
|
801
|
+
'editorLineNumber.foreground': string;
|
|
802
|
+
'editorLineNumber.activeForeground': string;
|
|
803
|
+
'editor.selectionBackground': string;
|
|
804
|
+
'editor.inactiveSelectionBackground': string;
|
|
805
|
+
'editor.lineHighlightBackground': string;
|
|
806
|
+
'editorCursor.foreground': string;
|
|
807
|
+
'editorWhitespace.foreground': string;
|
|
808
|
+
'editorIndentGuide.background1': string;
|
|
809
|
+
'editorIndentGuide.activeBackground1': string;
|
|
810
|
+
'editorBracketMatch.background': string;
|
|
811
|
+
'editorBracketMatch.border': string;
|
|
812
|
+
'editor.findMatchBackground': string;
|
|
813
|
+
'editor.findMatchHighlightBackground': string;
|
|
814
|
+
'editorWidget.background': string;
|
|
815
|
+
'editorWidget.border': string;
|
|
816
|
+
'editorSuggestWidget.background': string;
|
|
817
|
+
'editorSuggestWidget.border': string;
|
|
818
|
+
'editorSuggestWidget.selectedBackground': string;
|
|
819
|
+
'editorHoverWidget.background': string;
|
|
820
|
+
'editorHoverWidget.border': string;
|
|
821
|
+
'scrollbarSlider.background': string;
|
|
822
|
+
'scrollbarSlider.hoverBackground': string;
|
|
823
|
+
'scrollbarSlider.activeBackground': string;
|
|
824
|
+
focusBorder: string;
|
|
825
|
+
'input.background': string;
|
|
826
|
+
'input.border': string;
|
|
827
|
+
'input.foreground': string;
|
|
828
|
+
'input.placeholderForeground': string;
|
|
829
|
+
};
|
|
830
|
+
};
|