-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
4017 lines (4014 loc) · 187 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
:root,
:root .DesignTokenThemeDisabler,
:root .DesignTokenThemeSelectors-theme--colorRefreshMode,
:root .DesignTokenThemeSelectors-theme--colorRefreshMode .DesignTokenThemeDisabler {
--color-annotation-indicator-text: #151b26;
--color-annotation-indicator-border: #fff;
--color-annotation-indicator-border-active: #f2a100;
--color-annotation-indicator-icon: #fcbd01;
--color-annotation-indicator-icon-rgb: 252, 189, 1;
--color-attachments-carousel-text: #fff;
--color-attachments-carousel-text-weak: #6f7782;
--color-attachments-carousel-border: #6f7782;
--color-attachments-carousel-border-rgb: 111, 119, 130;
--color-attachments-carousel-background: #273240;
--color-attachments-carousel-background-strong: rgba(255, 255, 255, 0.12);
--color-attachments-carousel-background-strong-rgb: 255, 255, 255;
--color-banner-text: #151b26;
--color-banner-icon: #6f7782;
--color-banner-background: #f6f8f9;
--color-banner-important-text: #151b26;
--color-banner-important-icon: #6f7782;
--color-banner-important-icon-deprecated: #f2a100;
--color-banner-important-background: #fffede;
--color-banner-warning-text: #f2a100;
--color-banner-warning-icon: #6f7782;
--color-banner-warning-icon-deprecated: #f2a100;
--color-banner-warning-background: #fffede;
--color-banner-warning-background-deprecated: #f2a100;
--color-banner-upsell-text-deprecated: #f2a100;
--color-banner-upsell-background: #fffede;
--color-banner-error-text: #ff5263;
--color-banner-error-text-deprecated: #151b26;
--color-banner-error-icon: #6f7782;
--color-banner-error-icon-deprecated: #ed4758;
--color-banner-error-background: #ffedef;
--color-banner-success-text: #00bf9c;
--color-banner-success-icon: #6f7782;
--color-banner-success-background: #e2fffa;
--color-banner-success-background-deprecated: #00bf9c;
--color-banner-beta-text: #796eff;
--color-banner-beta-icon: #6f7782;
--color-banner-beta-background: #f0f0ff;
--color-box-shadow-small: 0 1px 4px 0 rgba(21, 7, 38, 0.08);
--color-box-shadow-medium: 0 2px 10px 0 rgba(21, 7, 38, 0.1);
--color-box-shadow-large: 0 5px 20px 0 rgba(21, 7, 38, 0.08);
--color-box-shadow-large-dark: 0 5px 20px 0 rgba(21, 7, 38, 0.25);
--color-box-shadow-none-inset: inset 0 0 0 -0.01 #fff;
--color-box-shadow-top-small: 0 -1px 3px 0 rgba(21, 7, 38, 0.15);
--color-box-shadow-top-small-inset: inset 0 4px 4px -2px rgba(21, 7, 38, 0.08);
--color-box-shadow-top-large: 0 -5px 20px 0 rgba(21, 7, 38, 0.08);
--color-box-shadow-bottom-small: 0 1px 4px 0 rgba(21, 7, 38, 0.08);
--color-box-shadow-bottom-small-inset: inset 0 -4px 4px -2px rgba(21, 7, 38, 0.08);
--color-box-shadow-marketing: 0 14px 80px 0 rgba(21, 7, 38, 0.06);
--color-button-text-primary: #fff;
--color-button-text-primary-disabled: #9ca6af;
--color-button-text-secondary: #273240;
--color-button-text-secondary-hover: #151b26;
--color-button-text-tertiary-experimental: #6f7782;
--color-button-text-tertiary-hover-experimental: #151b26;
--color-button-text-subtle: #6f7782;
--color-button-text-subtle-inverse: #fff;
--color-button-text-subtle-hover: #151b26;
--color-button-text-subtle-hover-inverse: #fff;
--color-button-text-subtle-disabled: #cbd4db;
--color-button-text-subtle-disabled-inverse: #6f7782;
--color-button-text-shrouded: #fff;
--color-button-icon-primary: #fff;
--color-button-icon-secondary: #6f7782;
--color-button-icon-secondary-hover: #273240;
--color-button-icon-shrouded: #fff;
--color-button-border-primary-disabled: #e8ecee;
--color-button-border-secondary: #cbd4db;
--color-button-border-secondary-inverse: #fff;
--color-button-border-secondary-hover: #cbd4db;
--color-button-border-secondary-hover-inverse: #cbd4db;
--color-button-border-secondary-active: #cbd4db;
--color-button-border-secondary-active-inverse: #cbd4db;
--color-button-border-subtle: transparent;
--color-button-border-subtle-inverse: transparent;
--color-button-border-tertiary-experimental: #e8ecee;
--color-button-border-tertiary-hover-experimental: #cbd4db;
--color-button-background-primary: #14aaf5;
--color-button-background-primary-hover: #129ce1;
--color-button-background-primary-active: #1296d8;
--color-button-background-primary-disabled: #f6f8f9;
--color-button-background-secondary: #fff;
--color-button-background-secondary-opaque: #fff;
--color-button-background-secondary-hover: #f6f6f6;
--color-button-background-secondary-hover-opaque: #f6f6f6;
--color-button-background-secondary-hover-inverse: rgba(255, 255, 255, 0.12);
--color-button-background-secondary-active: #e3e4e5;
--color-button-background-secondary-active-opaque: #e3e4e5;
--color-button-background-secondary-active-inverse: rgba(255, 255, 255, 0.16);
--color-button-background-tertiary-experimental: #e8ecee;
--color-button-background-tertiary-hover-experimental: #cbd4db;
--color-button-background-subtle: transparent;
--color-button-background-subtle-inverse: transparent;
--color-button-background-subtle-hover: rgba(21, 7, 38, 0.04);
--color-button-background-subtle-hover-inverse: rgba(255, 255, 255, 0.12);
--color-button-background-subtle-active: rgba(21, 7, 38, 0.08);
--color-button-background-subtle-active-inverse: rgba(255, 255, 255, 0.2);
--color-button-background-subtle-pressed: #caeeff;
--color-button-background-subtle-pressedHover: #bae6fd;
--color-button-background-subtle-pressedActive: #b2e2fc;
--color-button-background-shrouded: rgba(39, 50, 64, 0.6);
--color-button-background-shrouded-hover: rgba(39, 50, 64, 0.78);
--color-button-background-shrouded-active: rgba(39, 50, 64, 0.84);
--color-button-error-background-subtle-deprecated: #ffedef;
--color-button-error-background-subtle: rgba(255, 82, 99, 0.08);
--color-button-error-background-subtle-hover-deprecated: #ffedef;
--color-button-error-background-subtle-hover: rgba(255, 82, 99, 0.16);
--color-button-error-background-subtle-active-deprecated: #ffedef;
--color-button-error-background-subtle-active: rgba(255, 82, 99, 0.24);
--color-button-error-background: #fff;
--color-button-error-background-hover: #ffedef;
--color-button-error-background-active: #ff9ca5;
--color-button-error-background-pressed: #ff5263;
--color-button-error-background-pressedHover: #ed4758;
--color-button-error-background-pressedActive: #e8192e;
--color-button-error-background-secondary-hover: rgba(255, 82, 99, 0.08);
--color-button-error-background-secondary-active: rgba(255, 82, 99, 0.16);
--color-button-error-text: #273240;
--color-button-error-text-hover: #151b26;
--color-button-error-text-pressed: #fff;
--color-button-error-text-pressedHover: #fff;
--color-button-error-icon: #ed4758;
--color-button-error-icon-hover: #ed4758;
--color-button-error-icon-pressed: #fff;
--color-button-error-icon-pressedHover: #fff;
--color-button-error-border: #cbd4db;
--color-button-error-border-hover: #ed4758;
--color-button-error-border-pressed: #ff5263;
--color-button-error-border-pressedHover: #ed4758;
--color-button-error-border-pressedActive: #e8192e;
--color-button-success-text: #273240;
--color-button-success-text-hover: #151b26;
--color-button-success-text-pressed: #fff;
--color-button-success-text-pressedHover: #fff;
--color-button-success-icon: #00bf9c;
--color-button-success-icon-hover: #00bf9c;
--color-button-success-icon-pressed: #fff;
--color-button-success-icon-pressedHover: #fff;
--color-button-success-border: #cbd4db;
--color-button-success-border-hover: #00bf9c;
--color-button-success-border-pressed: #25e8c8;
--color-button-success-border-pressedHover: #00bf9c;
--color-button-success-border-pressedActive: #008c72;
--color-button-success-background: #fff;
--color-button-success-background-hover: #e2fffa;
--color-button-success-background-active: #b0fff1;
--color-button-success-background-pressed: #25e8c8;
--color-button-success-background-pressedHover: #00bf9c;
--color-button-success-background-pressedActive: #008c72;
--color-button-warning-text: #273240;
--color-button-warning-text-hover: #151b26;
--color-button-warning-text-pressed: #fff;
--color-button-warning-text-pressedHover: #fff;
--color-button-warning-icon: #f2a100;
--color-button-warning-icon-hover: #f2a100;
--color-button-warning-icon-pressed: #fff;
--color-button-warning-icon-pressedHover: #fff;
--color-button-warning-border: #cbd4db;
--color-button-warning-border-hover: #f2a100;
--color-button-warning-border-pressed: #fcbd01;
--color-button-warning-border-pressedHover: #f2a100;
--color-button-warning-border-pressedActive: #bf7f00;
--color-button-warning-background: #fff;
--color-button-warning-background-hover: #fffede;
--color-button-warning-background-active: #fff78f;
--color-button-warning-background-pressed: #fcbd01;
--color-button-warning-background-pressedHover: #f2a100;
--color-button-warning-background-pressedActive: #bf7f00;
--color-button-creation-text: #fff;
--color-button-creation-icon: #fff;
--color-button-creation-background: #ff5263;
--color-button-creation-background-hover: #eb4b5b;
--color-button-creation-background-active: #e04857;
--color-button-creation-border-secondary: #ff5263;
--color-button-danger-text: #fff;
--color-button-danger-background: #ff5263;
--color-button-danger-background-hover: #eb4b5b;
--color-button-danger-background-active: #e04857;
--color-button-danger-background-secondary-hover: #fff8f9;
--color-button-danger-background-secondary-active: #fff1f3;
--color-button-danger-border-secondary: #ff5263;
--color-button-upsell-text: #fff;
--color-button-upsell-text-extra: #fff;
--color-button-upsell-text-subtle: #fcbd01;
--color-button-upsell-text-subtle-hover: #f2a100;
--color-button-upsell-text-subtle-disabled: #9ca6af;
--color-button-upsell-background: #fcbd01;
--color-button-upsell-background-extra: #796eff;
--color-button-upsell-background-hover: #e8ae01;
--color-button-upsell-background-hover-extra: #635ac7;
--color-button-upsell-background-active: #dea601;
--color-button-upsell-background-active-extra: #463cb2;
--color-button-upsell-background-subtle: transparent;
--color-button-upsell-background-subtle-hover: #fffede;
--color-button-upsell-background-subtle-active: #fff78f;
--color-button-upsell-icon-subtle: #fcbd01;
--color-button-upsell-icon-subtle-hover: #f2a100;
--color-button-nux-background-active: #463cb2;
--color-button-switch-icon: #fff;
--color-button-switch-icon-disabled: #fff;
--color-button-switch-background: #e8ecee;
--color-button-switch-background-hover: #cbd4db;
--color-button-switch-background-disabled: #e8ecee;
--color-button-switch-background-selected: #14aaf5;
--color-button-switch-background-selected-hover: #14aaf5;
--color-button-switch-background-selected-active: #14aaf5;
--color-card-background: #fff;
--color-chart-background-export: #fff;
--color-chart-border: #fff;
--color-chart-text: #151b26;
--color-chart-text-export: #151b26;
--color-chart-text-y-axis: #6f7782;
--color-chart-text-y-axis-export: #6f7782;
--color-chart-text-x-axis: #273240;
--color-chart-text-x-axis-export: #273240;
--color-chart-red-area-gradient-legend: #fb6884;
--color-chart-red-area-gradient-start: #fc8d9e;
--color-chart-red-area-gradient-end: #fb3769;
--color-chart-red-area-solid: #feebed;
--color-chart-red-area-solid-border: #d91652;
--color-chart-red-bar-gradient-start: #fc8d9e;
--color-chart-red-bar-gradient-end: #fb5779;
--color-chart-red-donut-1: #d91652;
--color-chart-red-donut-2: #fb3769;
--color-chart-red-donut-3: #fb6884;
--color-chart-red-donut-4: #fc8d9e;
--color-chart-red-donut-5: #fcadb8;
--color-chart-red-donut-6: #fdc9d0;
--color-chart-red-donut-7: #fee1e4;
--color-chart-red-donut-8: #feebed;
--color-chart-red-donut-core: #fb5779;
--color-chart-red-lollipop-connector: #fdc9d0;
--color-chart-red-lollipop-head: #fb5779;
--color-chart-orange-area-gradient-legend: #fa7100;
--color-chart-orange-area-gradient-start: #ff9064;
--color-chart-orange-area-gradient-end: #dc6300;
--color-chart-orange-area-solid: #ffebe7;
--color-chart-orange-area-solid-border: #b85100;
--color-chart-orange-bar-gradient-start: #ff9064;
--color-chart-orange-bar-gradient-end: #ff7511;
--color-chart-orange-donut-1: #b85100;
--color-chart-orange-donut-2: #dc6300;
--color-chart-orange-donut-3: #fa7100;
--color-chart-orange-donut-4: #ff9064;
--color-chart-orange-donut-5: #ffaf97;
--color-chart-orange-donut-6: #ffcabd;
--color-chart-orange-donut-7: #ffe1da;
--color-chart-orange-donut-8: #ffebe7;
--color-chart-orange-donut-core: #ff7511;
--color-chart-orange-lollipop-connector: #ffcabd;
--color-chart-orange-lollipop-head: #ff7511;
--color-chart-yellow-orange-area-gradient-legend: #d38b00;
--color-chart-yellow-orange-area-gradient-start: #ee9d00;
--color-chart-yellow-orange-area-gradient-end: #ba7900;
--color-chart-yellow-orange-area-solid: #ffecdf;
--color-chart-yellow-orange-area-solid-border: #9a6400;
--color-chart-yellow-orange-bar-gradient-start: #ffcda1;
--color-chart-yellow-orange-bar-gradient-end: #ffa800;
--color-chart-yellow-orange-donut-1: #9a6400;
--color-chart-yellow-orange-donut-2: #ba7900;
--color-chart-yellow-orange-donut-3: #d38b00;
--color-chart-yellow-orange-donut-4: #ee9d00;
--color-chart-yellow-orange-donut-5: #ffb356;
--color-chart-yellow-orange-donut-6: #ffcda1;
--color-chart-yellow-orange-donut-7: #ffe3cd;
--color-chart-yellow-orange-donut-8: #ffecdf;
--color-chart-yellow-orange-donut-core: #ffa800;
--color-chart-yellow-orange-lollipop-connector: #ffcda1;
--color-chart-yellow-orange-lollipop-head: #ffa800;
--color-chart-yellow-area-gradient-legend: #b89700;
--color-chart-yellow-area-gradient-start: #d0aa00;
--color-chart-yellow-area-gradient-end: #a38400;
--color-chart-yellow-area-solid: #ffedc7;
--color-chart-yellow-area-solid-border: #866d00;
--color-chart-yellow-bar-gradient-start: #ffe5ab;
--color-chart-yellow-bar-gradient-end: #ffd100;
--color-chart-yellow-donut-1: #866d00;
--color-chart-yellow-donut-2: #a38400;
--color-chart-yellow-donut-3: #b89700;
--color-chart-yellow-donut-4: #d0aa00;
--color-chart-yellow-donut-5: #e8be00;
--color-chart-yellow-donut-6: #ffd21c;
--color-chart-yellow-donut-7: #ffe5ab;
--color-chart-yellow-donut-8: #ffedc7;
--color-chart-yellow-donut-core: #ffd100;
--color-chart-yellow-lollipop-connector: #ffd21c;
--color-chart-yellow-lollipop-head: #ffd100;
--color-chart-yellow-green-area-gradient-legend: #7ca808;
--color-chart-yellow-green-area-gradient-start: #8cbd0a;
--color-chart-yellow-green-area-gradient-end: #6d9406;
--color-chart-yellow-green-area-solid: #cfff80;
--color-chart-yellow-green-area-solid-border: #597a04;
--color-chart-yellow-green-bar-gradient-start: #aee90f;
--color-chart-yellow-green-bar-gradient-end: #ace60f;
--color-chart-yellow-green-donut-1: #597a04;
--color-chart-yellow-green-donut-2: #6d9406;
--color-chart-yellow-green-donut-3: #7ca808;
--color-chart-yellow-green-donut-4: #8cbd0a;
--color-chart-yellow-green-donut-5: #9ed30d;
--color-chart-yellow-green-donut-6: #aee90f;
--color-chart-yellow-green-donut-7: #bdfc12;
--color-chart-yellow-green-donut-8: #cfff80;
--color-chart-yellow-green-donut-core: #ace60f;
--color-chart-yellow-green-lollipop-connector: #aee90f;
--color-chart-yellow-green-lollipop-head: #ace60f;
--color-chart-green-area-gradient-legend: #12b064;
--color-chart-green-area-gradient-start: #16c772;
--color-chart-green-area-gradient-end: #0e9b58;
--color-chart-green-area-solid: #b6ffce;
--color-chart-green-area-solid-border: #0a8048;
--color-chart-green-bar-gradient-start: #1df58d;
--color-chart-green-bar-gradient-end: #19db7e;
--color-chart-green-donut-1: #0a8048;
--color-chart-green-donut-2: #0e9b58;
--color-chart-green-donut-3: #12b064;
--color-chart-green-donut-4: #16c772;
--color-chart-green-donut-5: #1ade80;
--color-chart-green-donut-6: #1df58d;
--color-chart-green-donut-7: #8effb7;
--color-chart-green-donut-8: #b6ffce;
--color-chart-green-donut-core: #19db7e;
--color-chart-green-lollipop-connector: #1df58d;
--color-chart-green-lollipop-head: #19db7e;
--color-chart-blue-green-area-gradient-legend: #00aca2;
--color-chart-blue-green-area-gradient-start: #00c2b7;
--color-chart-blue-green-area-gradient-end: #00978f;
--color-chart-blue-green-area-solid: #a9fff7;
--color-chart-blue-green-area-solid-border: #007e76;
--color-chart-blue-green-bar-gradient-start: #00efe2;
--color-chart-blue-green-bar-gradient-end: #00d4c8;
--color-chart-blue-green-donut-1: #007e76;
--color-chart-blue-green-donut-2: #00978f;
--color-chart-blue-green-donut-3: #00aca2;
--color-chart-blue-green-donut-4: #00c2b7;
--color-chart-blue-green-donut-5: #00d9cd;
--color-chart-blue-green-donut-6: #00efe2;
--color-chart-blue-green-donut-7: #5ffff2;
--color-chart-blue-green-donut-8: #a9fff7;
--color-chart-blue-green-donut-core: #00d4c8;
--color-chart-blue-green-lollipop-connector: #00efe2;
--color-chart-blue-green-lollipop-head: #00d4c8;
--color-chart-aqua-area-gradient-legend: #1fa8c5;
--color-chart-aqua-area-gradient-start: #24bddd;
--color-chart-aqua-area-gradient-end: #1a93ad;
--color-chart-aqua-area-solid: #d8f4fe;
--color-chart-aqua-area-solid-border: #147a8f;
--color-chart-aqua-bar-gradient-start: #8ce3fd;
--color-chart-aqua-bar-gradient-end: #48dafd;
--color-chart-aqua-donut-1: #147a8f;
--color-chart-aqua-donut-2: #1a93ad;
--color-chart-aqua-donut-3: #1fa8c5;
--color-chart-aqua-donut-4: #24bddd;
--color-chart-aqua-donut-5: #2ad3f7;
--color-chart-aqua-donut-6: #8ce3fd;
--color-chart-aqua-donut-7: #c5eefe;
--color-chart-aqua-donut-8: #d8f4fe;
--color-chart-aqua-donut-core: #48dafd;
--color-chart-aqua-lollipop-connector: #8ce3fd;
--color-chart-aqua-lollipop-head: #48dafd;
--color-chart-blue-area-gradient-legend: #7893ff;
--color-chart-blue-area-gradient-start: #95a9ff;
--color-chart-blue-area-gradient-end: #557eff;
--color-chart-blue-area-solid: #ebeeff;
--color-chart-blue-area-solid-border: #0064fa;
--color-chart-blue-bar-gradient-start: #95a9ff;
--color-chart-blue-bar-gradient-end: #0064fb;
--color-chart-blue-donut-1: #0064fa;
--color-chart-blue-donut-2: #557eff;
--color-chart-blue-donut-3: #7893ff;
--color-chart-blue-donut-4: #95a9ff;
--color-chart-blue-donut-5: #b3bfff;
--color-chart-blue-donut-6: #cdd4ff;
--color-chart-blue-donut-7: #e3e7ff;
--color-chart-blue-donut-8: #ebeeff;
--color-chart-blue-donut-core: #0064fb;
--color-chart-blue-lollipop-connector: #cdd4ff;
--color-chart-blue-lollipop-head: #0064fb;
--color-chart-indigo-area-gradient-legend: #938dfb;
--color-chart-indigo-area-gradient-start: #a9a4fc;
--color-chart-indigo-area-gradient-end: #7e75fa;
--color-chart-indigo-area-solid: #efeefe;
--color-chart-indigo-area-solid-border: #6355f9;
--color-chart-indigo-bar-gradient-start: #a9a4fc;
--color-chart-indigo-bar-gradient-end: #6457f9;
--color-chart-indigo-donut-1: #6355f9;
--color-chart-indigo-donut-2: #7e75fa;
--color-chart-indigo-donut-3: #938dfb;
--color-chart-indigo-donut-4: #a9a4fc;
--color-chart-indigo-donut-5: #bfbcfd;
--color-chart-indigo-donut-6: #d4d2fe;
--color-chart-indigo-donut-7: #e7e6fe;
--color-chart-indigo-donut-8: #efeefe;
--color-chart-indigo-donut-core: #6457f9;
--color-chart-indigo-lollipop-connector: #d4d2fe;
--color-chart-indigo-lollipop-head: #6457f9;
--color-chart-purple-area-gradient-legend: #b782ed;
--color-chart-purple-area-gradient-start: #c49cf1;
--color-chart-purple-area-gradient-end: #ab67e9;
--color-chart-purple-area-solid: #f3edfc;
--color-chart-purple-area-solid-border: #9c3de3;
--color-chart-purple-bar-gradient-start: #c49cf1;
--color-chart-purple-bar-gradient-end: #9f46e4;
--color-chart-purple-donut-1: #9c3de3;
--color-chart-purple-donut-2: #ab67e9;
--color-chart-purple-donut-3: #b782ed;
--color-chart-purple-donut-4: #c49cf1;
--color-chart-purple-donut-5: #d2b7f5;
--color-chart-purple-donut-6: #e1cff8;
--color-chart-purple-donut-7: #ede4fb;
--color-chart-purple-donut-8: #f3edfc;
--color-chart-purple-donut-core: #9f46e4;
--color-chart-purple-lollipop-connector: #e1cff8;
--color-chart-purple-lollipop-head: #9f46e4;
--color-chart-magenta-area-gradient-legend: #ff40ff;
--color-chart-magenta-area-gradient-start: #ff79ff;
--color-chart-magenta-area-gradient-end: #e0e;
--color-chart-magenta-area-solid: #ffe8ff;
--color-chart-magenta-area-solid-border: #c600c6;
--color-chart-magenta-bar-gradient-start: #ffa1ff;
--color-chart-magenta-bar-gradient-end: #ff78ff;
--color-chart-magenta-donut-1: #c600c6;
--color-chart-magenta-donut-2: #e0e;
--color-chart-magenta-donut-3: #ff40ff;
--color-chart-magenta-donut-4: #ff79ff;
--color-chart-magenta-donut-5: #ffa1ff;
--color-chart-magenta-donut-6: #ffc3ff;
--color-chart-magenta-donut-7: #fdf;
--color-chart-magenta-donut-8: #ffe8ff;
--color-chart-magenta-donut-core: #ff78ff;
--color-chart-magenta-lollipop-connector: #ffc3ff;
--color-chart-magenta-lollipop-head: #ff78ff;
--color-chart-hot-pink-area-gradient-legend: #ff5eab;
--color-chart-hot-pink-area-gradient-start: #ff87bb;
--color-chart-hot-pink-area-gradient-end: #ff159d;
--color-chart-hot-pink-area-solid: #ffeaf2;
--color-chart-hot-pink-area-solid-border: #d60083;
--color-chart-hot-pink-bar-gradient-start: #ff87bb;
--color-chart-hot-pink-bar-gradient-end: #ff4ba6;
--color-chart-hot-pink-donut-1: #d60083;
--color-chart-hot-pink-donut-2: #ff159d;
--color-chart-hot-pink-donut-3: #ff5eab;
--color-chart-hot-pink-donut-4: #ff87bb;
--color-chart-hot-pink-donut-5: #ffa9cb;
--color-chart-hot-pink-donut-6: #ffc7dc;
--color-chart-hot-pink-donut-7: #ffe0eb;
--color-chart-hot-pink-donut-8: #ffeaf2;
--color-chart-hot-pink-donut-core: #ff4ba6;
--color-chart-hot-pink-lollipop-connector: #ffc7dc;
--color-chart-hot-pink-lollipop-head: #ff4ba6;
--color-chart-pink-area-gradient-legend: #ff6293;
--color-chart-pink-area-gradient-start: #ff89a9;
--color-chart-pink-area-gradient-end: #ff277e;
--color-chart-pink-area-solid: #ffeaee;
--color-chart-pink-area-solid-border: #db0067;
--color-chart-pink-bar-gradient-start: #ffabbf;
--color-chart-pink-bar-gradient-end: #ff93af;
--color-chart-pink-donut-1: #db0067;
--color-chart-pink-donut-2: #ff277e;
--color-chart-pink-donut-3: #ff6293;
--color-chart-pink-donut-4: #ff89a9;
--color-chart-pink-donut-5: #ffabbf;
--color-chart-pink-donut-6: #ffc8d4;
--color-chart-pink-donut-7: #ffe0e7;
--color-chart-pink-donut-8: #ffeaee;
--color-chart-pink-donut-core: #ff93af;
--color-chart-pink-lollipop-connector: #ffc8d4;
--color-chart-pink-lollipop-head: #ff93af;
--color-chart-cool-gray-area-gradient-legend: #779ec4;
--color-chart-cool-gray-area-gradient-start: #8eb1d6;
--color-chart-cool-gray-area-gradient-end: #688bad;
--color-chart-cool-gray-area-solid: #ebf0f7;
--color-chart-cool-gray-area-solid-border: #56728f;
--color-chart-cool-gray-bar-gradient-start: #8eb1d6;
--color-chart-cool-gray-bar-gradient-end: #5a7896;
--color-chart-cool-gray-donut-1: #56728f;
--color-chart-cool-gray-donut-2: #688bad;
--color-chart-cool-gray-donut-3: #779ec4;
--color-chart-cool-gray-donut-4: #8eb1d6;
--color-chart-cool-gray-donut-5: #acc4e0;
--color-chart-cool-gray-donut-6: #c9d8ea;
--color-chart-cool-gray-donut-7: #e0e9f3;
--color-chart-cool-gray-donut-8: #ebf0f7;
--color-chart-cool-gray-donut-core: #5a7896;
--color-chart-cool-gray-lollipop-connector: #c9d8ea;
--color-chart-cool-gray-lollipop-head: #5a7896;
--color-chart-none-area-gradient-legend: #919ba3;
--color-chart-none-area-gradient-start: #a4afb8;
--color-chart-none-area-gradient-end: #808890;
--color-chart-none-area-solid: #edeff1;
--color-chart-none-area-solid-border: #6a7177;
--color-chart-none-bar-gradient-start: #a4afb8;
--color-chart-none-bar-gradient-end: #9ca6af;
--color-chart-none-donut-1: #6a7177;
--color-chart-none-donut-2: #808890;
--color-chart-none-donut-3: #919ba3;
--color-chart-none-donut-4: #a4afb8;
--color-chart-none-donut-5: #bcc3cb;
--color-chart-none-donut-6: #d2d7dc;
--color-chart-none-donut-7: #e5e8eb;
--color-chart-none-donut-8: #edeff1;
--color-chart-none-donut-core: #9ca6af;
--color-chart-none-lollipop-connector: #d2d7dc;
--color-chart-none-lollipop-head: #9ca6af;
--color-chart-status-on-track: #25e8c8;
--color-chart-status-off-track: #ff5263;
--color-chart-status-at-risk: #ffe01b;
--color-chart-status-on-hold: #14aaf5;
--color-chart-status-none: #9ca6af;
--color-chart-customization-other: #cbd4db;
--color-chart-customization-none: #9ca6af;
--color-text: #151b26;
--color-text-rgb: 21, 27, 38;
--color-text-deprecated: #273240;
--color-text-foreground: #fff;
--color-text-disabled: #9ca6af;
--color-text-disabled-deprecated: #cbd4db;
--color-text-weak: #6f7782;
--color-text-weak-deprecated: #9ca6af;
--color-text-weak-hover: #151b26;
--color-text-strong-disabled: #6f7782;
--color-text-strong-deprecated: #008ce3;
--color-icon: #6f7782;
--color-icon-rgb: 111, 119, 130;
--color-icon-deprecated: #273240;
--color-icon-foreground: #fff;
--color-icon-hover: #273240;
--color-icon-active: #151b26;
--color-icon-disabled: #9ca6af;
--color-icon-weak-deprecated: #9ca6af;
--color-icon-strong: #151b26;
--color-border: #e8ecee;
--color-border-rgb: 232, 236, 238;
--color-border-deprecated: #cbd4db;
--color-border-inverse: #f6f8f9;
--color-border-hover: #cbd4db;
--color-border-active: #9ca6af;
--color-border-active-deprecated: #14aaf5;
--color-border-strong: #cbd4db;
--color-background-weak: #fff;
--color-background-weak-rgb: 255, 255, 255;
--color-background-weak-hover: #f6f8f9;
--color-background-weak-hover-deprecated: #f6f8f9;
--color-background-medium: #f6f8f9;
--color-background-medium-rgb: 246, 248, 249;
--color-background-hover: #e8ecee;
--color-background-active: #cbd4db;
--color-background-strong: #e8ecee;
--color-background-strong-rgb: 232, 236, 238;
--color-background-strong-deprecated: rgba(232, 236, 238, 0.5);
--color-selected-text: #008ce3;
--color-selected-text-deprecated: #14aaf5;
--color-selected-text-hover: #008ce3;
--color-selected-text-strong: #fff;
--color-selected-icon: #14aaf5;
--color-selected-icon-rgb: 20, 170, 245;
--color-selected-icon-deprecated: #32c1ff;
--color-selected-icon-strong-deprecated: #008ce3;
--color-selected-icon-strong: #fff;
--color-selected-border: #14aaf5;
--color-selected-border-deprecated: #caeeff;
--color-selected-border-hover: #008ce3;
--color-selected-border-active: #008ce3;
--color-selected-border-strong-deprecated: #273240;
--color-selected-background: #edf8ff;
--color-selected-background-deprecated: #caeeff;
--color-selected-background-hover: #caeeff;
--color-selected-background-active: #caeeff;
--color-selected-background-strong: #14aaf5;
--color-selected-background-strong-deprecated: #edf8ff;
--color-selected-background-strong-hover: #14aaf5;
--color-selected-background-strong-active: #14aaf5;
--color-selected-background-weak-deprecated: rgba(202, 238, 255, 0.2);
--color-success-text: #00bf9c;
--color-success-text-hover: #00bf9c;
--color-success-text-hover-deprecated: #25e8c8;
--color-success-text-strong: #fff;
--color-success-icon: #25e8c8;
--color-success-icon-deprecated: #00bf9c;
--color-success-icon-hover: #00bf9c;
--color-success-icon-strong: #fff;
--color-success-border: #25e8c8;
--color-success-border-hover: #00bf9c;
--color-success-background: #e2fffa;
--color-success-background-hover: #b0fff1;
--color-success-background-strong: #00bf9c;
--color-success-background-strong-hover: #00bf9c;
--color-success-background-strong-active: #00bf9c;
--color-warning-text: #f2a100;
--color-warning-text-hover: #fcbd01;
--color-warning-text-strong: #151b26;
--color-warning-icon: #fcbd01;
--color-warning-icon-rgb: 252, 189, 1;
--color-warning-icon-deprecated: #f2a100;
--color-warning-icon-hover: #f2a100;
--color-warning-icon-strong: #151b26;
--color-warning-border: #fcbd01;
--color-warning-border-deprecated: #ffe01b;
--color-warning-border-hover: #f2a100;
--color-warning-background: #fffede;
--color-warning-background-strong: #f2a100;
--color-warning-background-strong-hover: #f2a100;
--color-warning-background-strong-active: #f2a100;
--color-upsell-text: #fcbd01;
--color-upsell-text-deprecated: #f2a100;
--color-upsell-text-hover: #f2a100;
--color-upsell-text-hover-deprecated: #fcbd01;
--color-upsell-text-strong: #151b26;
--color-upsell-icon: #fcbd01;
--color-upsell-icon-deprecated: #f2a100;
--color-upsell-icon-hover: #f2a100;
--color-upsell-icon-strong: #151b26;
--color-upsell-background: #fffede;
--color-upsell-background-hover: #fff78f;
--color-upsell-background-weak-hover: #fffede;
--color-upsell-background-weak-active: #fff78f;
--color-upsell-background-strong: #f2a100;
--color-upsell-background-strong-hover: #f2a100;
--color-upsell-background-strong-active: #f2a100;
--color-upsell-border: #fcbd01;
--color-danger-text: #ed4758;
--color-danger-text-deprecated: #ff5263;
--color-danger-text-hover: #ed4758;
--color-danger-text-hover-deprecated: #ff5263;
--color-danger-text-active: #ed4758;
--color-danger-text-strong: #fff;
--color-danger-icon: #ff5263;
--color-danger-icon-deprecated: #ed4758;
--color-danger-icon-hover: #ff5263;
--color-danger-icon-hover-deprecated: #ed4758;
--color-danger-icon-strong: #fff;
--color-danger-border: #ed4758;
--color-danger-border-deprecated: #ff5263;
--color-danger-border-hover: #ff5263;
--color-danger-border-hover-deprecated: #ed4758;
--color-danger-background-weak: #ffedef;
--color-danger-background-strong: #ff5263;
--color-danger-background-strong-hover: #ed4758;
--color-danger-background-strong-active: #ed4758;
--color-drop-target-background: rgba(255, 255, 255, 0.95);
--color-beta-text: #796eff;
--color-beta-text-deprecated: #635ac7;
--color-beta-text-weak: #aba3ff;
--color-beta-text-strong: #fff;
--color-beta-icon: #796eff;
--color-beta-icon-rgb: 121, 110, 255;
--color-beta-icon-hover: #796eff;
--color-beta-icon-strong: #fff;
--color-beta-background: #796eff;
--color-beta-background-deprecated: #9287ff;
--color-beta-background-hover: #635ac7;
--color-beta-background-weak: #f0f0ff;
--color-beta-background-strong: #796eff;
--color-beta-border: #796eff;
--color-beta-border-deprecated: #9287ff;
--color-beta-border-hover: #635ac7;
--color-beta-border-hover-deprecated: #aba3ff;
--color-beta-border-active: #635ac7;
--color-beta-border-active-deprecated: #aba3ff;
--color-customization-background: #cbd4db;
--color-customization-background-deprecated: #e8ecee;
--color-customization-background-deprecated-opaque: #cbd4db;
--color-customization-background-hover: #e8ecee;
--color-customization-background-hover-deprecated: #adbbc6;
--color-customization-background-active: #bcc8d1;
--color-customization-background-active-deprecated: #cbd4db;
--color-customization-background-weak: #e8ecee;
--color-customization-background-weak-deprecated-opaque: #cbd4db;
--color-customization-background-weak-deprecated: #cbd4db;
--color-customization-background-weak-hover: #adbbc6;
--color-customization-background-weak-hover-deprecated: #e8ecee;
--color-customization-foreground: #151b26;
--color-customization-foreground-weak: #151b26;
--color-customization-foreground-weak-deprecated: #6f7782;
--color-customization-red-background: #fb5779;
--color-customization-red-background-rgb: 251, 87, 121;
--color-customization-red-background-hover: #fa2f59;
--color-customization-red-foreground: #fff;
--color-customization-red-foreground-hover: #fff;
--color-customization-red-text-deprecated: #e8384f;
--color-customization-orange-background: #ff7511;
--color-customization-orange-background-rgb: 255, 117, 17;
--color-customization-orange-background-hover: #e76100;
--color-customization-orange-foreground: #331a00;
--color-customization-orange-foreground-hover: #0a0500;
--color-customization-orange-text-deprecated: #fd612c;
--color-customization-yellow-orange-background: #ffa800;
--color-customization-yellow-orange-background-rgb: 255, 168, 0;
--color-customization-yellow-orange-background-hover: #d68d00;
--color-customization-yellow-orange-foreground: #4d3400;
--color-customization-yellow-orange-foreground-hover: #241800;
--color-customization-yellow-orange-text-deprecated: #c28100;
--color-customization-yellow-background: #ffd100;
--color-customization-yellow-background-rgb: 255, 209, 0;
--color-customization-yellow-background-hover: #d6b000;
--color-customization-yellow-foreground: #574500;
--color-customization-yellow-foreground-hover: #2e2500;
--color-customization-yellow-text-deprecated: #b78f00;
--color-customization-yellow-green-background: #ace60f;
--color-customization-yellow-green-background-rgb: 172, 230, 15;
--color-customization-yellow-green-background-hover: #8fc00d;
--color-customization-yellow-green-foreground: #3c5007;
--color-customization-yellow-green-foreground-hover: #202a04;
--color-customization-yellow-green-text-deprecated: #779f09;
--color-customization-green-background: #19db7e;
--color-customization-green-background-rgb: 25, 219, 126;
--color-customization-green-background-hover: #15b669;
--color-customization-green-foreground: #084426;
--color-customization-green-foreground-hover: #041f12;
--color-customization-green-text-deprecated: #13aa61;
--color-customization-blue-green-background: #00d4c8;
--color-customization-blue-green-background-rgb: 0, 212, 200;
--color-customization-blue-green-background-hover: #00aba2;
--color-customization-blue-green-foreground: #00423f;
--color-customization-blue-green-foreground-hover: #001918;
--color-customization-blue-green-text-deprecated: #00a39b;
--color-customization-aqua-background: #48dafd;
--color-customization-aqua-background-rgb: 72, 218, 253;
--color-customization-aqua-background-hover: #20d2fd;
--color-customization-aqua-foreground: #02485a;
--color-customization-aqua-foreground-hover: #012832;
--color-customization-aqua-text-deprecated: #029ec5;
--color-customization-blue-background: #0064fb;
--color-customization-blue-background-rgb: 0, 100, 251;
--color-customization-blue-background-hover: #0054d2;
--color-customization-blue-foreground: #fff;
--color-customization-blue-foreground-hover: #fff;
--color-customization-blue-text-deprecated: #4186e0;
--color-customization-indigo-background: #6457f9;
--color-customization-indigo-background-rgb: 100, 87, 249;
--color-customization-indigo-background-hover: #4030f8;
--color-customization-indigo-foreground: #fff;
--color-customization-indigo-foreground-hover: #fff;
--color-customization-indigo-text-deprecated: #7a6ff0;
--color-customization-purple-background: #9f46e4;
--color-customization-purple-background-rgb: 159, 70, 228;
--color-customization-purple-background-hover: #8d22df;
--color-customization-purple-foreground: #fff;
--color-customization-purple-foreground-hover: #fff;
--color-customization-purple-text-deprecated: #aa62e3;
--color-customization-magenta-background: #ff78ff;
--color-customization-magenta-background-rgb: 255, 120, 255;
--color-customization-magenta-background-hover: #ff4fff;
--color-customization-magenta-foreground: #570057;
--color-customization-magenta-foreground-hover: #2e002e;
--color-customization-magenta-text-deprecated: #ff24ff;
--color-customization-hot-pink-background: #ff4ba6;
--color-customization-hot-pink-background-rgb: 255, 75, 166;
--color-customization-hot-pink-background-hover: #ff2292;
--color-customization-hot-pink-foreground: #fff;
--color-customization-hot-pink-foreground-hover: #fff;
--color-customization-hot-pink-text-deprecated: #ea4e9d;
--color-customization-pink-background: #ff93af;
--color-customization-pink-background-rgb: 255, 147, 175;
--color-customization-pink-background-hover: #ff6a91;
--color-customization-pink-foreground: #6b001d;
--color-customization-pink-foreground-hover: #420012;
--color-customization-pink-text-deprecated: #ff5280;
--color-customization-cool-gray-background: #5a7896;
--color-customization-cool-gray-background-rgb: 90, 120, 150;
--color-customization-cool-gray-background-hover: #4b647d;
--color-customization-cool-gray-foreground: #fff;
--color-customization-cool-gray-foreground-hover: #fff;
--color-customization-cool-gray-text-deprecated: #151b26;
--color-date-picker-background-hover: #32c1ff;
--color-date-picker-unselected-background: #e8ecee;
--color-date-picker-selected-background: #14aaf5;
--color-date-picker-selected-background-strong: #caeeff;
--color-date-picker-selected-background-weak: #8ed6fa;
--color-date-picker-selected-icon-deprecated: #14aaf5;
--color-date-picker-border-active-deprecated: #32c1ff;
--color-deprecated-white: #fff;
--color-deprecated-white-rgb: 255, 255, 255;
--color-deprecated-lightGray1: #f6f8f9;
--color-deprecated-lightGray1-rgb: 246, 248, 249;
--color-deprecated-lightGray2: #e8ecee;
--color-deprecated-lightGray2-rgb: 232, 236, 238;
--color-deprecated-lightGray3: #cbd4db;
--color-deprecated-lightGray3-rgb: 203, 212, 219;
--color-deprecated-mediumGray: #9ca6af;
--color-deprecated-mediumGray-rgb: 156, 166, 175;
--color-deprecated-darkGray1: #6f7782;
--color-deprecated-darkGray1-rgb: 111, 119, 130;
--color-deprecated-darkGray2: #273240;
--color-deprecated-darkGray2-rgb: 39, 50, 64;
--color-deprecated-darkGray3: #151b26;
--color-deprecated-darkGray3-rgb: 21, 27, 38;
--color-deprecated-black: #000;
--color-deprecated-black-rgb: 0, 0, 0;
--color-deprecated-darkGreen: #00bf9c;
--color-deprecated-darkGreen-rgb: 0, 191, 156;
--color-deprecated-green: #25e8c8;
--color-deprecated-green-rgb: 37, 232, 200;
--color-deprecated-brightGreen: #58f5d9;
--color-deprecated-brightGreen-rgb: 88, 245, 217;
--color-deprecated-medGreen: #b0fff1;
--color-deprecated-medGreen-rgb: 176, 255, 241;
--color-deprecated-lightGreen: #e2fffa;
--color-deprecated-lightGreen-rgb: 226, 255, 250;
--color-deprecated-fadedGreen: #b2ebe1;
--color-deprecated-fadedGreen-rgb: 178, 235, 225;
--color-deprecated-darkTeal: #008ce3;
--color-deprecated-darkTeal-rgb: 0, 140, 227;
--color-deprecated-teal: #14aaf5;
--color-deprecated-teal-rgb: 20, 170, 245;
--color-deprecated-brightTeal: #32c1ff;
--color-deprecated-brightTeal-rgb: 50, 193, 255;
--color-deprecated-medTeal: #caeeff;
--color-deprecated-medTeal-rgb: 202, 238, 255;
--color-deprecated-lightTeal: #edf8ff;
--color-deprecated-lightTeal-rgb: 237, 248, 255;
--color-deprecated-darkPurple: #635ac7;
--color-deprecated-darkPurple-rgb: 99, 90, 199;
--color-deprecated-purple: #796eff;
--color-deprecated-purple-rgb: 121, 110, 255;
--color-deprecated-brightPurple: #9287ff;
--color-deprecated-brightPurple-rgb: 146, 135, 255;
--color-deprecated-medPurple: #aba3ff;
--color-deprecated-medPurple-rgb: 171, 163, 255;
--color-deprecated-lightPurple: #f0f0ff;
--color-deprecated-lightPurple-rgb: 240, 240, 255;
--color-deprecated-darkGold: #f2a100;
--color-deprecated-darkGold-rgb: 242, 161, 0;
--color-deprecated-gold: #fcbd01;
--color-deprecated-gold-rgb: 252, 189, 1;
--color-deprecated-brightGold: #ffe01b;
--color-deprecated-brightGold-rgb: 255, 224, 27;
--color-deprecated-medGold: #fff78f;
--color-deprecated-medGold-rgb: 255, 247, 143;
--color-deprecated-lightGold: #fffede;
--color-deprecated-lightGold-rgb: 255, 254, 222;
--color-deprecated-darkCoral: #ed4758;
--color-deprecated-darkCoral-rgb: 237, 71, 88;
--color-deprecated-coral: #ff5263;
--color-deprecated-coral-rgb: 255, 82, 99;
--color-deprecated-brightCoral: #ff7381;
--color-deprecated-brightCoral-rgb: 255, 115, 129;
--color-deprecated-medCoral: #ff9ca5;
--color-deprecated-medCoral-rgb: 255, 156, 165;
--color-deprecated-lightCoral: #ffedef;
--color-deprecated-lightCoral-rgb: 255, 237, 239;
--color-elevation-small: 0 0 0 1px #e8ecee, 0 1px 4px 0 rgba(21, 7, 38, 0.08);
--color-elevation-medium: 0 0 0 1px #e8ecee, 0 2px 10px 0 rgba(21, 7, 38, 0.1);
--color-elevation-medium-hover: 0 0 0 1px #cbd4db, 0 2px 10px 0 rgba(21, 7, 38, 0.1);
--color-elevation-medium-active: 0 0 0 1px #9ca6af, 0 2px 10px 0 rgba(21, 7, 38, 0.1);
--color-elevation-large: 0 0 0 1px #e8ecee, 0 5px 20px 0 rgba(21, 7, 38, 0.08);
--color-elevation-selected-small: 0 0 0 1px #14aaf5, 0 1px 4px 0 rgba(21, 7, 38, 0.08);
--color-elevation-selected-medium-hover: 0 0 0 1px #008ce3, 0 2px 10px 0 rgba(21, 7, 38, 0.1);
--color-elevation-selected-medium-active: 0 0 0 1px #008ce3, 0 2px 10px 0 rgba(21, 7, 38, 0.1);
--color-elevation-selected-large-active: 0 0 0 1px #008ce3, 0 5px 20px 0 rgba(21, 7, 38, 0.08);
--color-elevation-danger-small: 0 0 0 1px #ed4758, 0 1px 4px 0 rgba(21, 7, 38, 0.08);
--color-home-text-light-accent: #fff;
--color-home-text-dark-accent: #6f7782;
--color-home-text-dark-accent-strong: #151b26;
--color-home-text-dark-accent-classic: #151b26;
--color-home-icon-light-accent: #fff;
--color-home-icon-dark-accent: #6f7782;
--color-home-icon-dark-accent-strong: #151b26;
--color-home-icon-dark-accent-classic: #6f7782;
--color-home-background-light-accent: rgba(255, 255, 255, 0.12);
--color-home-background-dark-accent: #f6f8f9;
--color-home-background-weak-light-accent: rgba(255, 255, 255, 0.12);
--color-home-background-weak-dark-accent: rgba(109, 110, 111, 0.15);
--color-home-border-light-accent: rgba(255, 255, 255, 0.5);
--color-home-border-dark-accent: #e8ecee;
--color-home-classic-background: #fff;
--color-home-maroon-background: #5b073a;
--color-home-orange-yellow-background: #e2a039;
--color-home-yellow-green-background: #aecf55;
--color-home-forest-background: #285b52;
--color-home-blue-green-background: #36b8b1;
--color-home-aqua-background: #a9dcd9;
--color-home-blue-background: #4573d2;
--color-home-purple-background: #938ce1;
--color-home-pink-purple-background: #ad7cc4;
--color-home-pink-background: #f6a0a3;
--color-home-oat-background: #e0dedc;
--color-inbox-background-hover: #fff;
--color-inbox-background-active: #f6f8f9;
--color-keyboard-shortcut-label-text-weak: #cbd4db;
--color-keyboard-shortcut-label-background-strong: #273240;
--color-light-asset-background: #fff;
--color-light-asset-text: #151b26;
--color-link-text-primary: #14aaf5;
--color-link-text-primary-deprecated: #008ce3;
--color-link-text-primary-hover: #129ce1;
--color-link-text-primary-active: #1296d8;
--color-link-text-hidden-hover: #14aaf5;
--color-link-text-hidden-hover-deprecated: #32c1ff;
--color-link-text-hidden-active: #008ce3;
--color-link-text-upsell: #f2a100;
--color-link-text-upsell-hover: #fcbd01;
--color-link-text-upsell-active: #f2a100;
--color-link-icon-primary: #14aaf5;
--color-link-icon-primary-deprecated: #008ce3;
--color-link-icon-primary-hover: #129ce1;
--color-link-icon-primary-active: #1296d8;
--color-link-icon-hidden-hover: #008ce3;
--color-link-icon-hidden-hover-deprecated: #32c1ff;
--color-modal-shroud: rgba(39, 50, 64, 0.6);
--color-multi-color-icon-weak: #fff;
--color-multi-color-icon-medium: rgba(255, 255, 255, 0.6);
--color-multi-color-icon-strong: rgba(21, 7, 38, 0.75);
--color-multi-color-icon-unselected-weak: rgba(21, 7, 38, 0.25);
--color-multi-color-icon-unselected-medium: rgba(21, 7, 38, 0.35);
--color-multi-color-icon-unselected-strong: #151b26;
--color-multi-select-toolbar-background-strong: #151b26;
--color-pop-out-background: #fff;
--color-scrollable-border-edge: rgba(232, 236, 238, 0);
--color-scrollable-border: #e8ecee;
--color-sidebar-text: #cbd4db;
--color-sidebar-text-weak: #6f7782;
--color-sidebar-text-weak-hover: #9ca6af;
--color-sidebar-text-weak-active: #9ca6af;
--color-sidebar-text-strong: #f6f8f9;
--color-sidebar-text-strong-disabled: #cbd4db;
--color-sidebar-icon: #cbd4db;
--color-sidebar-icon-hover: #fff;
--color-sidebar-icon-weak: #6f7782;
--color-sidebar-icon-weak-deprecated: rgba(255, 255, 255, 0.5);
--color-sidebar-icon-strong: #f6f8f9;
--color-sidebar-icon-strong-deprecated: #fff;
--color-sidebar-icon-strong-active-deprecated: #273240;
--color-sidebar-border: #273240;
--color-sidebar-border-deprecated: rgba(111, 119, 130, 0.3);
--color-sidebar-border-strong: #6f7782;
--color-sidebar-border-strong-hover: #9ca6af;
--color-sidebar-border-strong-active: #cbd4db;
--color-sidebar-background: #273240;
--color-sidebar-background-strong: #151b26;
--color-status-bar-background: #e8ecee;
--color-status-bar-background-strong: #cbd4db;
--color-status-bar-indicator: #6f7782;
--color-status-icon-weak: #9ca6af;
--color-status-icon-weak-deprecated: #e8ecee;
--color-status-icon: #6f7782;
--color-status-achieved-bar-background: #e2fffa;
--color-status-achieved-bar-indicator: #25e8c8;
--color-status-achieved-icon-strong: #00bf9c;
--color-status-on-track-bar-background: #e2fffa;
--color-status-on-track-bar-indicator: #25e8c8;
--color-status-on-track-icon-strong: #00bf9c;
--color-status-partial-bar-background: #fffede;
--color-status-partial-bar-indicator: #fcbd01;
--color-status-partial-icon-strong: #f2a100;
--color-status-at-risk-bar-background: #fffede;
--color-status-at-risk-bar-indicator: #fcbd01;
--color-status-at-risk-icon-strong: #f2a100;
--color-status-missed-bar-background: #ffedef;
--color-status-missed-bar-indicator: #ff5263;
--color-status-missed-icon-strong: #ed4758;
--color-status-off-track-bar-background: #ffedef;
--color-status-off-track-bar-indicator: #ff5263;
--color-status-off-track-icon-strong: #ed4758;
--color-status-dropped-bar-background: #e8ecee;
--color-status-dropped-bar-indicator: #6f7782;
--color-status-on-hold-icon-strong: #008ce3;
--color-status-completed-bar-background: #e2fffa;
--color-status-completed-bar-indicator: #25e8c8;
--color-status-completed-icon: #25e8c8;
--color-status-completed-icon-strong: #00bf9c;
--color-status-approved-icon: #25e8c8;
--color-status-approved-icon-strong: #00bf9c;
--color-status-approved-text: #00bf9c;
--color-status-approved-text-hover: #25e8c8;
--color-status-revise-icon: #fcbd01;
--color-status-revise-icon-strong: #f2a100;
--color-status-revise-text: #f2a100;
--color-status-revise-text-hover: #fcbd01;
--color-status-rejected-icon: #ff5263;
--color-status-rejected-icon-strong: #ed4758;
--color-status-rejected-text: #ed4758;
--color-status-rejected-text-hover: #ff5263;
--color-status-overdue-icon: #ff5263;
--color-status-overdue-icon-strong: #ed4758;
--color-status-overdue-text: #ed4758;
--color-status-overdue-text-hover: #ff5263;
--color-status-overdue-border: #ed4758;
--color-status-soon-border: #25e8c8;
--color-status-soon-text: #00bf9c;
--color-status-soon-icon: #00bf9c;
--color-status-soon-background: #e2fffa;
--color-task-dependency-precedent-text: #f2a100;
--color-task-dependency-precedent-text-hover: #cb8700;
--color-task-dependency-dependent-text: #ed4758;
--color-task-dependency-dependent-text-hover: #b43643;
--color-task-dependency-completed-text: #6f7782;
--color-task-dependency-completed-text-hover: #4b5158;
--color-tooltip-background: rgba(21, 7, 38, 0.97);
--color-tooltip-background-strong: #273240;
--color-tooltip-text: #f6f8f9;
--color-tooltip-text-weak: #6f7782;
--color-top-bar-warning-background: #fcbd01;
--color-top-bar-warning-background-deprecated: #f2a100;
--color-top-bar-announcement-background: #9287ff;
--color-top-bar-announcement-background-deprecated: #32c1ff;
--color-top-bar-overage-background: #25e8c8;