@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.
@@ -0,0 +1,1003 @@
1
+ const darkRules = [
2
+ {
3
+ token: '',
4
+ foreground: 'a1a1aa'
5
+ },
6
+ {
7
+ token: 'comment',
8
+ foreground: '52525b'
9
+ },
10
+ {
11
+ token: 'comment.doc',
12
+ foreground: '52525b'
13
+ },
14
+ {
15
+ token: 'string',
16
+ foreground: '34d399'
17
+ },
18
+ {
19
+ token: 'string.escape',
20
+ foreground: '34d399'
21
+ },
22
+ {
23
+ token: 'regexp',
24
+ foreground: 'a78bfa'
25
+ },
26
+ {
27
+ token: 'number',
28
+ foreground: 'fbbf24'
29
+ },
30
+ {
31
+ token: 'number.float',
32
+ foreground: 'fbbf24'
33
+ },
34
+ {
35
+ token: 'number.hex',
36
+ foreground: 'fbbf24'
37
+ },
38
+ {
39
+ token: 'boolean',
40
+ foreground: 'a78bfa'
41
+ },
42
+ {
43
+ token: 'keyword',
44
+ foreground: '22d3ee'
45
+ },
46
+ {
47
+ token: 'keyword.control',
48
+ foreground: '22d3ee'
49
+ },
50
+ {
51
+ token: 'keyword.operator',
52
+ foreground: '71717a'
53
+ },
54
+ {
55
+ token: 'operator',
56
+ foreground: '71717a'
57
+ },
58
+ {
59
+ token: 'delimiter',
60
+ foreground: '71717a'
61
+ },
62
+ {
63
+ token: 'delimiter.bracket',
64
+ foreground: '71717a'
65
+ },
66
+ {
67
+ token: 'delimiter.array',
68
+ foreground: '71717a'
69
+ },
70
+ {
71
+ token: 'delimiter.parenthesis',
72
+ foreground: '71717a'
73
+ },
74
+ {
75
+ token: 'type',
76
+ foreground: 'a78bfa'
77
+ },
78
+ {
79
+ token: 'type.identifier',
80
+ foreground: 'a78bfa'
81
+ },
82
+ {
83
+ token: 'class',
84
+ foreground: 'a78bfa'
85
+ },
86
+ {
87
+ token: 'class.identifier',
88
+ foreground: 'a78bfa'
89
+ },
90
+ {
91
+ token: 'function',
92
+ foreground: '22d3ee'
93
+ },
94
+ {
95
+ token: 'function.identifier',
96
+ foreground: '22d3ee'
97
+ },
98
+ {
99
+ token: 'variable',
100
+ foreground: 'a1a1aa'
101
+ },
102
+ {
103
+ token: 'variable.predefined',
104
+ foreground: 'a78bfa'
105
+ },
106
+ {
107
+ token: 'constant',
108
+ foreground: 'a78bfa'
109
+ },
110
+ {
111
+ token: 'identifier',
112
+ foreground: 'a1a1aa'
113
+ },
114
+ {
115
+ token: 'tag',
116
+ foreground: '22d3ee'
117
+ },
118
+ {
119
+ token: 'attribute.name',
120
+ foreground: '22d3ee'
121
+ },
122
+ {
123
+ token: 'attribute.value',
124
+ foreground: '34d399'
125
+ },
126
+ {
127
+ token: 'metatag',
128
+ foreground: '71717a'
129
+ }
130
+ ];
131
+ const lightRules = [
132
+ {
133
+ token: '',
134
+ foreground: '52525b'
135
+ },
136
+ {
137
+ token: 'comment',
138
+ foreground: 'a1a1aa'
139
+ },
140
+ {
141
+ token: 'comment.doc',
142
+ foreground: 'a1a1aa'
143
+ },
144
+ {
145
+ token: 'string',
146
+ foreground: '047857'
147
+ },
148
+ {
149
+ token: 'string.escape',
150
+ foreground: '047857'
151
+ },
152
+ {
153
+ token: 'regexp',
154
+ foreground: '7c3aed'
155
+ },
156
+ {
157
+ token: 'number',
158
+ foreground: 'b45309'
159
+ },
160
+ {
161
+ token: 'number.float',
162
+ foreground: 'b45309'
163
+ },
164
+ {
165
+ token: 'number.hex',
166
+ foreground: 'b45309'
167
+ },
168
+ {
169
+ token: 'boolean',
170
+ foreground: '7c3aed'
171
+ },
172
+ {
173
+ token: 'keyword',
174
+ foreground: '0e7490'
175
+ },
176
+ {
177
+ token: 'keyword.control',
178
+ foreground: '0e7490'
179
+ },
180
+ {
181
+ token: 'keyword.operator',
182
+ foreground: '71717a'
183
+ },
184
+ {
185
+ token: 'operator',
186
+ foreground: '71717a'
187
+ },
188
+ {
189
+ token: 'delimiter',
190
+ foreground: '71717a'
191
+ },
192
+ {
193
+ token: 'delimiter.bracket',
194
+ foreground: '71717a'
195
+ },
196
+ {
197
+ token: 'delimiter.array',
198
+ foreground: '71717a'
199
+ },
200
+ {
201
+ token: 'delimiter.parenthesis',
202
+ foreground: '71717a'
203
+ },
204
+ {
205
+ token: 'type',
206
+ foreground: '7c3aed'
207
+ },
208
+ {
209
+ token: 'type.identifier',
210
+ foreground: '7c3aed'
211
+ },
212
+ {
213
+ token: 'class',
214
+ foreground: '7c3aed'
215
+ },
216
+ {
217
+ token: 'class.identifier',
218
+ foreground: '7c3aed'
219
+ },
220
+ {
221
+ token: 'function',
222
+ foreground: '0e7490'
223
+ },
224
+ {
225
+ token: 'function.identifier',
226
+ foreground: '0e7490'
227
+ },
228
+ {
229
+ token: 'variable',
230
+ foreground: '52525b'
231
+ },
232
+ {
233
+ token: 'variable.predefined',
234
+ foreground: '7c3aed'
235
+ },
236
+ {
237
+ token: 'constant',
238
+ foreground: '7c3aed'
239
+ },
240
+ {
241
+ token: 'identifier',
242
+ foreground: '52525b'
243
+ },
244
+ {
245
+ token: 'tag',
246
+ foreground: '0e7490'
247
+ },
248
+ {
249
+ token: 'attribute.name',
250
+ foreground: '0e7490'
251
+ },
252
+ {
253
+ token: 'attribute.value',
254
+ foreground: '047857'
255
+ },
256
+ {
257
+ token: 'metatag',
258
+ foreground: '71717a'
259
+ }
260
+ ];
261
+ const apolloFutureDarkMonaco = {
262
+ base: 'vs-dark',
263
+ inherit: false,
264
+ rules: darkRules,
265
+ colors: {
266
+ 'editor.background': '#18181b',
267
+ 'editor.foreground': '#a1a1aa',
268
+ 'editorLineNumber.foreground': '#52525b',
269
+ 'editorLineNumber.activeForeground': '#a1a1aa',
270
+ 'editor.selectionBackground': '#3f3f4666',
271
+ 'editor.inactiveSelectionBackground': '#3f3f4633',
272
+ 'editor.lineHighlightBackground': '#27272a80',
273
+ 'editorCursor.foreground': '#22d3ee',
274
+ 'editorWhitespace.foreground': '#3f3f46',
275
+ 'editorIndentGuide.background1': '#27272a',
276
+ 'editorIndentGuide.activeBackground1': '#3f3f46',
277
+ 'editorBracketMatch.background': '#22d3ee1a',
278
+ 'editorBracketMatch.border': '#22d3ee',
279
+ 'editor.findMatchBackground': '#fbbf2440',
280
+ 'editor.findMatchHighlightBackground': '#fbbf2420',
281
+ 'editorWidget.background': '#09090b',
282
+ 'editorWidget.border': '#3f3f46',
283
+ 'editorSuggestWidget.background': '#09090b',
284
+ 'editorSuggestWidget.border': '#3f3f46',
285
+ 'editorSuggestWidget.selectedBackground': '#27272a',
286
+ 'editorHoverWidget.background': '#09090b',
287
+ 'editorHoverWidget.border': '#3f3f46',
288
+ 'scrollbarSlider.background': '#3f3f4666',
289
+ 'scrollbarSlider.hoverBackground': '#52525b80',
290
+ 'scrollbarSlider.activeBackground': '#71717a80',
291
+ focusBorder: '#22d3ee',
292
+ 'input.background': '#27272a',
293
+ 'input.border': '#3f3f46',
294
+ 'input.foreground': '#a1a1aa',
295
+ 'input.placeholderForeground': '#52525b'
296
+ }
297
+ };
298
+ const apolloFutureLightMonaco = {
299
+ base: 'vs',
300
+ inherit: false,
301
+ rules: lightRules,
302
+ colors: {
303
+ 'editor.background': '#f4f4f5',
304
+ 'editor.foreground': '#52525b',
305
+ 'editorLineNumber.foreground': '#a1a1aa',
306
+ 'editorLineNumber.activeForeground': '#71717a',
307
+ 'editor.selectionBackground': '#d4d4d866',
308
+ 'editor.inactiveSelectionBackground': '#d4d4d833',
309
+ 'editor.lineHighlightBackground': '#e4e4e780',
310
+ 'editorCursor.foreground': '#0891b2',
311
+ 'editorWhitespace.foreground': '#d4d4d8',
312
+ 'editorIndentGuide.background1': '#e4e4e7',
313
+ 'editorIndentGuide.activeBackground1': '#d4d4d8',
314
+ 'editorBracketMatch.background': '#0891b21a',
315
+ 'editorBracketMatch.border': '#0891b2',
316
+ 'editor.findMatchBackground': '#b4530940',
317
+ 'editor.findMatchHighlightBackground': '#b4530920',
318
+ 'editorWidget.background': '#e4e4e7',
319
+ 'editorWidget.border': '#d4d4d8',
320
+ 'editorSuggestWidget.background': '#e4e4e7',
321
+ 'editorSuggestWidget.border': '#d4d4d8',
322
+ 'editorSuggestWidget.selectedBackground': '#d4d4d8',
323
+ 'editorHoverWidget.background': '#e4e4e7',
324
+ 'editorHoverWidget.border': '#d4d4d8',
325
+ 'scrollbarSlider.background': '#d4d4d866',
326
+ 'scrollbarSlider.hoverBackground': '#a1a1aa80',
327
+ 'scrollbarSlider.activeBackground': '#71717a80',
328
+ focusBorder: '#0891b2',
329
+ 'input.background': '#ffffff',
330
+ 'input.border': '#d4d4d8',
331
+ 'input.foreground': '#52525b',
332
+ 'input.placeholderForeground': '#a1a1aa'
333
+ }
334
+ };
335
+ const coreDarkRules = [
336
+ {
337
+ token: '',
338
+ foreground: 'cfd8dd'
339
+ },
340
+ {
341
+ token: 'comment',
342
+ foreground: '526069'
343
+ },
344
+ {
345
+ token: 'comment.doc',
346
+ foreground: '526069'
347
+ },
348
+ {
349
+ token: 'string',
350
+ foreground: 'f25a8c'
351
+ },
352
+ {
353
+ token: 'string.escape',
354
+ foreground: 'f25a8c'
355
+ },
356
+ {
357
+ token: 'regexp',
358
+ foreground: 'dc80db'
359
+ },
360
+ {
361
+ token: 'number',
362
+ foreground: '6ecdb6'
363
+ },
364
+ {
365
+ token: 'number.float',
366
+ foreground: '6ecdb6'
367
+ },
368
+ {
369
+ token: 'number.hex',
370
+ foreground: '6ecdb6'
371
+ },
372
+ {
373
+ token: 'boolean',
374
+ foreground: 'dc80db'
375
+ },
376
+ {
377
+ token: 'keyword',
378
+ foreground: '66adff'
379
+ },
380
+ {
381
+ token: 'keyword.control',
382
+ foreground: '66adff'
383
+ },
384
+ {
385
+ token: 'keyword.operator',
386
+ foreground: '8a97a0'
387
+ },
388
+ {
389
+ token: 'operator',
390
+ foreground: '66adff'
391
+ },
392
+ {
393
+ token: 'delimiter',
394
+ foreground: '8a97a0'
395
+ },
396
+ {
397
+ token: 'delimiter.bracket',
398
+ foreground: '8a97a0'
399
+ },
400
+ {
401
+ token: 'delimiter.array',
402
+ foreground: '8a97a0'
403
+ },
404
+ {
405
+ token: 'delimiter.parenthesis',
406
+ foreground: '8a97a0'
407
+ },
408
+ {
409
+ token: 'type',
410
+ foreground: 'dc80db'
411
+ },
412
+ {
413
+ token: 'type.identifier',
414
+ foreground: 'dc80db'
415
+ },
416
+ {
417
+ token: 'class',
418
+ foreground: 'dc80db'
419
+ },
420
+ {
421
+ token: 'class.identifier',
422
+ foreground: 'dc80db'
423
+ },
424
+ {
425
+ token: 'function',
426
+ foreground: '66adff'
427
+ },
428
+ {
429
+ token: 'function.identifier',
430
+ foreground: '66adff'
431
+ },
432
+ {
433
+ token: 'variable',
434
+ foreground: 'cfd8dd'
435
+ },
436
+ {
437
+ token: 'variable.predefined',
438
+ foreground: 'dc80db'
439
+ },
440
+ {
441
+ token: 'constant',
442
+ foreground: 'dc80db'
443
+ },
444
+ {
445
+ token: 'identifier',
446
+ foreground: 'cfd8dd'
447
+ },
448
+ {
449
+ token: 'tag',
450
+ foreground: '66adff'
451
+ },
452
+ {
453
+ token: 'attribute.name',
454
+ foreground: '66adff'
455
+ },
456
+ {
457
+ token: 'attribute.value',
458
+ foreground: 'f25a8c'
459
+ },
460
+ {
461
+ token: 'metatag',
462
+ foreground: '8a97a0'
463
+ }
464
+ ];
465
+ const coreLightRules = [
466
+ {
467
+ token: '',
468
+ foreground: '526069'
469
+ },
470
+ {
471
+ token: 'comment',
472
+ foreground: 'a4b1b8'
473
+ },
474
+ {
475
+ token: 'comment.doc',
476
+ foreground: 'a4b1b8'
477
+ },
478
+ {
479
+ token: 'string',
480
+ foreground: 'd91153'
481
+ },
482
+ {
483
+ token: 'string.escape',
484
+ foreground: 'd91153'
485
+ },
486
+ {
487
+ token: 'regexp',
488
+ foreground: 'b748b6'
489
+ },
490
+ {
491
+ token: 'number',
492
+ foreground: '1e7f5a'
493
+ },
494
+ {
495
+ token: 'number.float',
496
+ foreground: '1e7f5a'
497
+ },
498
+ {
499
+ token: 'number.hex',
500
+ foreground: '1e7f5a'
501
+ },
502
+ {
503
+ token: 'boolean',
504
+ foreground: 'b748b6'
505
+ },
506
+ {
507
+ token: 'keyword',
508
+ foreground: '0067df'
509
+ },
510
+ {
511
+ token: 'keyword.control',
512
+ foreground: '0067df'
513
+ },
514
+ {
515
+ token: 'keyword.operator',
516
+ foreground: '6b7882'
517
+ },
518
+ {
519
+ token: 'operator',
520
+ foreground: '0067df'
521
+ },
522
+ {
523
+ token: 'delimiter',
524
+ foreground: '6b7882'
525
+ },
526
+ {
527
+ token: 'delimiter.bracket',
528
+ foreground: '6b7882'
529
+ },
530
+ {
531
+ token: 'delimiter.array',
532
+ foreground: '6b7882'
533
+ },
534
+ {
535
+ token: 'delimiter.parenthesis',
536
+ foreground: '6b7882'
537
+ },
538
+ {
539
+ token: 'type',
540
+ foreground: 'b748b6'
541
+ },
542
+ {
543
+ token: 'type.identifier',
544
+ foreground: 'b748b6'
545
+ },
546
+ {
547
+ token: 'class',
548
+ foreground: 'b748b6'
549
+ },
550
+ {
551
+ token: 'class.identifier',
552
+ foreground: 'b748b6'
553
+ },
554
+ {
555
+ token: 'function',
556
+ foreground: '0067df'
557
+ },
558
+ {
559
+ token: 'function.identifier',
560
+ foreground: '0067df'
561
+ },
562
+ {
563
+ token: 'variable',
564
+ foreground: '526069'
565
+ },
566
+ {
567
+ token: 'variable.predefined',
568
+ foreground: 'b748b6'
569
+ },
570
+ {
571
+ token: 'constant',
572
+ foreground: 'b748b6'
573
+ },
574
+ {
575
+ token: 'identifier',
576
+ foreground: '526069'
577
+ },
578
+ {
579
+ token: 'tag',
580
+ foreground: '0067df'
581
+ },
582
+ {
583
+ token: 'attribute.name',
584
+ foreground: '0067df'
585
+ },
586
+ {
587
+ token: 'attribute.value',
588
+ foreground: 'd91153'
589
+ },
590
+ {
591
+ token: 'metatag',
592
+ foreground: '6b7882'
593
+ }
594
+ ];
595
+ const coreDarkHCRules = [
596
+ {
597
+ token: '',
598
+ foreground: 'cfd8dd'
599
+ },
600
+ {
601
+ token: 'comment',
602
+ foreground: '526069'
603
+ },
604
+ {
605
+ token: 'comment.doc',
606
+ foreground: '526069'
607
+ },
608
+ {
609
+ token: 'string',
610
+ foreground: 'fd7da7'
611
+ },
612
+ {
613
+ token: 'string.escape',
614
+ foreground: 'fd7da7'
615
+ },
616
+ {
617
+ token: 'regexp',
618
+ foreground: 'dc80db'
619
+ },
620
+ {
621
+ token: 'number',
622
+ foreground: '6ecdb6'
623
+ },
624
+ {
625
+ token: 'number.float',
626
+ foreground: '6ecdb6'
627
+ },
628
+ {
629
+ token: 'number.hex',
630
+ foreground: '6ecdb6'
631
+ },
632
+ {
633
+ token: 'boolean',
634
+ foreground: 'dc80db'
635
+ },
636
+ {
637
+ token: 'keyword',
638
+ foreground: 'badaff'
639
+ },
640
+ {
641
+ token: 'keyword.control',
642
+ foreground: 'badaff'
643
+ },
644
+ {
645
+ token: 'keyword.operator',
646
+ foreground: '8a97a0'
647
+ },
648
+ {
649
+ token: 'operator',
650
+ foreground: 'badaff'
651
+ },
652
+ {
653
+ token: 'delimiter',
654
+ foreground: '8a97a0'
655
+ },
656
+ {
657
+ token: 'delimiter.bracket',
658
+ foreground: '8a97a0'
659
+ },
660
+ {
661
+ token: 'delimiter.array',
662
+ foreground: '8a97a0'
663
+ },
664
+ {
665
+ token: 'delimiter.parenthesis',
666
+ foreground: '8a97a0'
667
+ },
668
+ {
669
+ token: 'type',
670
+ foreground: 'dc80db'
671
+ },
672
+ {
673
+ token: 'type.identifier',
674
+ foreground: 'dc80db'
675
+ },
676
+ {
677
+ token: 'class',
678
+ foreground: 'dc80db'
679
+ },
680
+ {
681
+ token: 'class.identifier',
682
+ foreground: 'dc80db'
683
+ },
684
+ {
685
+ token: 'function',
686
+ foreground: 'badaff'
687
+ },
688
+ {
689
+ token: 'function.identifier',
690
+ foreground: 'badaff'
691
+ },
692
+ {
693
+ token: 'variable',
694
+ foreground: 'cfd8dd'
695
+ },
696
+ {
697
+ token: 'variable.predefined',
698
+ foreground: 'dc80db'
699
+ },
700
+ {
701
+ token: 'constant',
702
+ foreground: 'dc80db'
703
+ },
704
+ {
705
+ token: 'identifier',
706
+ foreground: 'cfd8dd'
707
+ },
708
+ {
709
+ token: 'tag',
710
+ foreground: 'badaff'
711
+ },
712
+ {
713
+ token: 'attribute.name',
714
+ foreground: 'badaff'
715
+ },
716
+ {
717
+ token: 'attribute.value',
718
+ foreground: 'fd7da7'
719
+ },
720
+ {
721
+ token: 'metatag',
722
+ foreground: '8a97a0'
723
+ }
724
+ ];
725
+ const coreLightHCRules = [
726
+ {
727
+ token: '',
728
+ foreground: '374652'
729
+ },
730
+ {
731
+ token: 'comment',
732
+ foreground: '8a97a0'
733
+ },
734
+ {
735
+ token: 'comment.doc',
736
+ foreground: '8a97a0'
737
+ },
738
+ {
739
+ token: 'string',
740
+ foreground: 'a60e3f'
741
+ },
742
+ {
743
+ token: 'string.escape',
744
+ foreground: 'a60e3f'
745
+ },
746
+ {
747
+ token: 'regexp',
748
+ foreground: '8c338b'
749
+ },
750
+ {
751
+ token: 'number',
752
+ foreground: '176245'
753
+ },
754
+ {
755
+ token: 'number.float',
756
+ foreground: '176245'
757
+ },
758
+ {
759
+ token: 'number.hex',
760
+ foreground: '176245'
761
+ },
762
+ {
763
+ token: 'boolean',
764
+ foreground: '8c338b'
765
+ },
766
+ {
767
+ token: 'keyword',
768
+ foreground: '00489d'
769
+ },
770
+ {
771
+ token: 'keyword.control',
772
+ foreground: '00489d'
773
+ },
774
+ {
775
+ token: 'keyword.operator',
776
+ foreground: '526069'
777
+ },
778
+ {
779
+ token: 'operator',
780
+ foreground: '00489d'
781
+ },
782
+ {
783
+ token: 'delimiter',
784
+ foreground: '526069'
785
+ },
786
+ {
787
+ token: 'delimiter.bracket',
788
+ foreground: '526069'
789
+ },
790
+ {
791
+ token: 'delimiter.array',
792
+ foreground: '526069'
793
+ },
794
+ {
795
+ token: 'delimiter.parenthesis',
796
+ foreground: '526069'
797
+ },
798
+ {
799
+ token: 'type',
800
+ foreground: '8c338b'
801
+ },
802
+ {
803
+ token: 'type.identifier',
804
+ foreground: '8c338b'
805
+ },
806
+ {
807
+ token: 'class',
808
+ foreground: '8c338b'
809
+ },
810
+ {
811
+ token: 'class.identifier',
812
+ foreground: '8c338b'
813
+ },
814
+ {
815
+ token: 'function',
816
+ foreground: '00489d'
817
+ },
818
+ {
819
+ token: 'function.identifier',
820
+ foreground: '00489d'
821
+ },
822
+ {
823
+ token: 'variable',
824
+ foreground: '374652'
825
+ },
826
+ {
827
+ token: 'variable.predefined',
828
+ foreground: '8c338b'
829
+ },
830
+ {
831
+ token: 'constant',
832
+ foreground: '8c338b'
833
+ },
834
+ {
835
+ token: 'identifier',
836
+ foreground: '374652'
837
+ },
838
+ {
839
+ token: 'tag',
840
+ foreground: '00489d'
841
+ },
842
+ {
843
+ token: 'attribute.name',
844
+ foreground: '00489d'
845
+ },
846
+ {
847
+ token: 'attribute.value',
848
+ foreground: 'a60e3f'
849
+ },
850
+ {
851
+ token: 'metatag',
852
+ foreground: '526069'
853
+ }
854
+ ];
855
+ const apolloCoreDarkMonaco = {
856
+ base: 'vs-dark',
857
+ inherit: false,
858
+ rules: coreDarkRules,
859
+ colors: {
860
+ 'editor.background': '#182027',
861
+ 'editor.foreground': '#cfd8dd',
862
+ 'editorLineNumber.foreground': '#526069',
863
+ 'editorLineNumber.activeForeground': '#8a97a0',
864
+ 'editor.selectionBackground': '#37465266',
865
+ 'editor.inactiveSelectionBackground': '#37465233',
866
+ 'editor.lineHighlightBackground': '#27313980',
867
+ 'editorCursor.foreground': '#66adff',
868
+ 'editorWhitespace.foreground': '#374652',
869
+ 'editorIndentGuide.background1': '#273139',
870
+ 'editorIndentGuide.activeBackground1': '#374652',
871
+ 'editorBracketMatch.background': '#66adff1a',
872
+ 'editorBracketMatch.border': '#66adff',
873
+ 'editor.findMatchBackground': '#6ecdb640',
874
+ 'editor.findMatchHighlightBackground': '#6ecdb620',
875
+ 'editorWidget.background': '#0f1922',
876
+ 'editorWidget.border': '#374652',
877
+ 'editorSuggestWidget.background': '#0f1922',
878
+ 'editorSuggestWidget.border': '#374652',
879
+ 'editorSuggestWidget.selectedBackground': '#273139',
880
+ 'editorHoverWidget.background': '#0f1922',
881
+ 'editorHoverWidget.border': '#374652',
882
+ 'scrollbarSlider.background': '#37465266',
883
+ 'scrollbarSlider.hoverBackground': '#52606980',
884
+ 'scrollbarSlider.activeBackground': '#8a97a080',
885
+ focusBorder: '#66adff',
886
+ 'input.background': '#273139',
887
+ 'input.border': '#374652',
888
+ 'input.foreground': '#cfd8dd',
889
+ 'input.placeholderForeground': '#526069'
890
+ }
891
+ };
892
+ const apolloCoreLightMonaco = {
893
+ base: 'vs',
894
+ inherit: false,
895
+ rules: coreLightRules,
896
+ colors: {
897
+ 'editor.background': '#ffffff',
898
+ 'editor.foreground': '#526069',
899
+ 'editorLineNumber.foreground': '#a4b1b8',
900
+ 'editorLineNumber.activeForeground': '#6b7882',
901
+ 'editor.selectionBackground': '#e9f1fa',
902
+ 'editor.inactiveSelectionBackground': '#e9f1fa80',
903
+ 'editor.lineHighlightBackground': '#f4f5f780',
904
+ 'editorCursor.foreground': '#0067df',
905
+ 'editorWhitespace.foreground': '#cfd8dd',
906
+ 'editorIndentGuide.background1': '#f4f5f7',
907
+ 'editorIndentGuide.activeBackground1': '#cfd8dd',
908
+ 'editorBracketMatch.background': '#0067df1a',
909
+ 'editorBracketMatch.border': '#0067df',
910
+ 'editor.findMatchBackground': '#1e7f5a40',
911
+ 'editor.findMatchHighlightBackground': '#1e7f5a20',
912
+ 'editorWidget.background': '#f4f5f7',
913
+ 'editorWidget.border': '#cfd8dd',
914
+ 'editorSuggestWidget.background': '#f4f5f7',
915
+ 'editorSuggestWidget.border': '#cfd8dd',
916
+ 'editorSuggestWidget.selectedBackground': '#e9f1fa',
917
+ 'editorHoverWidget.background': '#f4f5f7',
918
+ 'editorHoverWidget.border': '#cfd8dd',
919
+ 'scrollbarSlider.background': '#cfd8dd66',
920
+ 'scrollbarSlider.hoverBackground': '#a4b1b880',
921
+ 'scrollbarSlider.activeBackground': '#6b788280',
922
+ focusBorder: '#0067df',
923
+ 'input.background': '#ffffff',
924
+ 'input.border': '#a4b1b8',
925
+ 'input.foreground': '#526069',
926
+ 'input.placeholderForeground': '#a4b1b8'
927
+ }
928
+ };
929
+ const apolloCoreDarkHCMonaco = {
930
+ base: 'hc-black',
931
+ inherit: false,
932
+ rules: coreDarkHCRules,
933
+ colors: {
934
+ 'editor.background': '#182027',
935
+ 'editor.foreground': '#cfd8dd',
936
+ 'editorLineNumber.foreground': '#526069',
937
+ 'editorLineNumber.activeForeground': '#bbc7cd',
938
+ 'editor.selectionBackground': '#37465266',
939
+ 'editor.inactiveSelectionBackground': '#37465233',
940
+ 'editor.lineHighlightBackground': '#27313980',
941
+ 'editorCursor.foreground': '#badaff',
942
+ 'editorWhitespace.foreground': '#374652',
943
+ 'editorIndentGuide.background1': '#273139',
944
+ 'editorIndentGuide.activeBackground1': '#374652',
945
+ 'editorBracketMatch.background': '#badaff1a',
946
+ 'editorBracketMatch.border': '#badaff',
947
+ 'editor.findMatchBackground': '#6ecdb640',
948
+ 'editor.findMatchHighlightBackground': '#6ecdb620',
949
+ 'editorWidget.background': '#0f1922',
950
+ 'editorWidget.border': '#526069',
951
+ 'editorSuggestWidget.background': '#0f1922',
952
+ 'editorSuggestWidget.border': '#526069',
953
+ 'editorSuggestWidget.selectedBackground': '#273139',
954
+ 'editorHoverWidget.background': '#0f1922',
955
+ 'editorHoverWidget.border': '#526069',
956
+ 'scrollbarSlider.background': '#37465266',
957
+ 'scrollbarSlider.hoverBackground': '#52606980',
958
+ 'scrollbarSlider.activeBackground': '#8a97a080',
959
+ focusBorder: '#badaff',
960
+ 'input.background': '#273139',
961
+ 'input.border': '#526069',
962
+ 'input.foreground': '#cfd8dd',
963
+ 'input.placeholderForeground': '#526069'
964
+ }
965
+ };
966
+ const apolloCoreLightHCMonaco = {
967
+ base: 'hc-light',
968
+ inherit: false,
969
+ rules: coreLightHCRules,
970
+ colors: {
971
+ 'editor.background': '#ffffff',
972
+ 'editor.foreground': '#374652',
973
+ 'editorLineNumber.foreground': '#8a97a0',
974
+ 'editorLineNumber.activeForeground': '#526069',
975
+ 'editor.selectionBackground': '#e9f1fa',
976
+ 'editor.inactiveSelectionBackground': '#e9f1fa80',
977
+ 'editor.lineHighlightBackground': '#f4f5f780',
978
+ 'editorCursor.foreground': '#00489d',
979
+ 'editorWhitespace.foreground': '#cfd8dd',
980
+ 'editorIndentGuide.background1': '#f4f5f7',
981
+ 'editorIndentGuide.activeBackground1': '#cfd8dd',
982
+ 'editorBracketMatch.background': '#00489d1a',
983
+ 'editorBracketMatch.border': '#00489d',
984
+ 'editor.findMatchBackground': '#17624540',
985
+ 'editor.findMatchHighlightBackground': '#17624520',
986
+ 'editorWidget.background': '#f4f5f7',
987
+ 'editorWidget.border': '#6b7882',
988
+ 'editorSuggestWidget.background': '#f4f5f7',
989
+ 'editorSuggestWidget.border': '#6b7882',
990
+ 'editorSuggestWidget.selectedBackground': '#e9f1fa',
991
+ 'editorHoverWidget.background': '#f4f5f7',
992
+ 'editorHoverWidget.border': '#6b7882',
993
+ 'scrollbarSlider.background': '#a4b1b866',
994
+ 'scrollbarSlider.hoverBackground': '#6b788280',
995
+ 'scrollbarSlider.activeBackground': '#52606980',
996
+ focusBorder: '#00489d',
997
+ 'input.background': '#ffffff',
998
+ 'input.border': '#6b7882',
999
+ 'input.foreground': '#374652',
1000
+ 'input.placeholderForeground': '#8a97a0'
1001
+ }
1002
+ };
1003
+ export { apolloCoreDarkHCMonaco, apolloCoreDarkMonaco, apolloCoreLightHCMonaco, apolloCoreLightMonaco, apolloFutureDarkMonaco, apolloFutureLightMonaco };