@uipath/apollo-core 5.9.0 → 5.10.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/14.js +5 -1
- package/dist/6.js +1336 -2
- package/dist/index.cjs +2924 -88
- package/dist/index.js +2 -2
- package/dist/tokens/Border.d.ts +2 -0
- package/dist/tokens/Colors.d.ts +370 -0
- package/dist/tokens/css/theme-variables.css +318 -4
- package/dist/tokens/css/variables.css +372 -0
- package/dist/tokens/index.cjs +2550 -88
- package/dist/tokens/index.d.ts +1 -1
- package/dist/tokens/index.js +2 -2
- package/dist/tokens/jss/palette.cjs +1184 -0
- package/dist/tokens/jss/palette.d.ts +12 -1
- package/dist/tokens/jss/palette.js +1 -1
- package/dist/tokens/less/_variables.less +372 -0
- package/dist/tokens/scss/_variables.scss +895 -119
- package/dist/tokens/scss/base-host.scss +302 -0
- package/dist/tokens/scss/theme-variables.scss +310 -4
- package/dist/tokens/scss/theme.scss +307 -1
- package/package.json +8 -7
package/dist/tokens/Colors.d.ts
CHANGED
|
@@ -90,6 +90,7 @@ export declare const ColorRed500 = "#cc3d45";
|
|
|
90
90
|
export declare const ColorRed600 = "#b6242b";
|
|
91
91
|
export declare const ColorRed700 = "#a6040a";
|
|
92
92
|
export declare const ColorRed800 = "#6c0004";
|
|
93
|
+
export declare const ColorRed950 = "#460809";
|
|
93
94
|
export declare const ColorRed100Contrast = "#182027";
|
|
94
95
|
export declare const ColorRed200Contrast = "#182027";
|
|
95
96
|
export declare const ColorRed300Contrast = "#182027";
|
|
@@ -303,475 +304,844 @@ export declare const ColorBackgroundLight = "#ffffff";
|
|
|
303
304
|
export declare const ColorBackgroundLightHc = "#ffffff";
|
|
304
305
|
export declare const ColorBackgroundDark = "#182027";
|
|
305
306
|
export declare const ColorBackgroundDarkHc = "#182027";
|
|
307
|
+
export declare const ColorBackgroundFutureDark = "#09090b";
|
|
308
|
+
export declare const ColorBackgroundFutureLight = "#fafafa";
|
|
306
309
|
export declare const ColorBackgroundSecondaryLight = "#f4f5f7";
|
|
307
310
|
export declare const ColorBackgroundSecondaryLightHc = "#f4f5f7";
|
|
308
311
|
export declare const ColorBackgroundSecondaryDark = "#273139";
|
|
309
312
|
export declare const ColorBackgroundSecondaryDarkHc = "#273139";
|
|
313
|
+
export declare const ColorBackgroundSecondaryFutureDark = "#18181b";
|
|
314
|
+
export declare const ColorBackgroundSecondaryFutureLight = "#f4f4f5";
|
|
310
315
|
export declare const ColorBackgroundInverseLight = "#182027";
|
|
311
316
|
export declare const ColorBackgroundInverseLightHc = "#182027";
|
|
312
317
|
export declare const ColorBackgroundInverseDark = "#f8f9fa";
|
|
313
318
|
export declare const ColorBackgroundInverseDarkHc = "#f8f9fa";
|
|
319
|
+
export declare const ColorBackgroundInverseFutureDark = "#fafafa";
|
|
320
|
+
export declare const ColorBackgroundInverseFutureLight = "#09090b";
|
|
314
321
|
export declare const ColorBackgroundGrayLight = "#cfd8dd";
|
|
315
322
|
export declare const ColorBackgroundGrayLightHc = "#cfd8dd";
|
|
316
323
|
export declare const ColorBackgroundGrayDark = "#526069";
|
|
317
324
|
export declare const ColorBackgroundGrayDarkHc = "#374652";
|
|
325
|
+
export declare const ColorBackgroundGrayFutureDark = "#52525c";
|
|
326
|
+
export declare const ColorBackgroundGrayFutureLight = "#d4d4d8";
|
|
318
327
|
export declare const ColorBackgroundDisabledLight = "#ecedee";
|
|
319
328
|
export declare const ColorBackgroundDisabledLightHc = "#ecedee";
|
|
320
329
|
export declare const ColorBackgroundDisabledDark = "#273139";
|
|
321
330
|
export declare const ColorBackgroundDisabledDarkHc = "#273139";
|
|
331
|
+
export declare const ColorBackgroundDisabledFutureDark = "#18181b";
|
|
332
|
+
export declare const ColorBackgroundDisabledFutureLight = "#e4e4e7";
|
|
322
333
|
export declare const ColorBackgroundHighlightLight = "#fee3dc";
|
|
323
334
|
export declare const ColorBackgroundHighlightLightHc = "#fee3dc";
|
|
324
335
|
export declare const ColorBackgroundHighlightDark = "#3c383c";
|
|
325
336
|
export declare const ColorBackgroundHighlightDarkHc = "#3c383c";
|
|
337
|
+
export declare const ColorBackgroundHighlightFutureDark = "#053345";
|
|
338
|
+
export declare const ColorBackgroundHighlightFutureLight = "#cefafe";
|
|
326
339
|
export declare const ColorBackgroundRaisedLight = "#ffffff";
|
|
327
340
|
export declare const ColorBackgroundRaisedLightHc = "#ffffff";
|
|
328
341
|
export declare const ColorBackgroundRaisedDark = "#273139";
|
|
329
342
|
export declare const ColorBackgroundRaisedDarkHc = "#273139";
|
|
343
|
+
export declare const ColorBackgroundRaisedFutureDark = "#18181b";
|
|
344
|
+
export declare const ColorBackgroundRaisedFutureLight = "#f4f4f5";
|
|
330
345
|
export declare const ColorBackgroundEditLight = "#ffffff";
|
|
331
346
|
export declare const ColorBackgroundEditLightHc = "#ffffff";
|
|
332
347
|
export declare const ColorBackgroundEditDark = "#00000099";
|
|
333
348
|
export declare const ColorBackgroundEditDarkHc = "#00000099";
|
|
349
|
+
export declare const ColorBackgroundEditFutureDark = "#00000099";
|
|
350
|
+
export declare const ColorBackgroundEditFutureLight = "#ffffff";
|
|
334
351
|
export declare const ColorBackgroundGrayEmpLight = "#a4b1b8";
|
|
335
352
|
export declare const ColorBackgroundGrayEmpLightHc = "#a4b1b8";
|
|
336
353
|
export declare const ColorBackgroundGrayEmpDark = "#8a97a0";
|
|
337
354
|
export declare const ColorBackgroundGrayEmpDarkHc = "#a4b1b8";
|
|
355
|
+
export declare const ColorBackgroundGrayEmpFutureDark = "#71717b";
|
|
356
|
+
export declare const ColorBackgroundGrayEmpFutureLight = "#9f9fa9";
|
|
338
357
|
export declare const ColorBackgroundHoverLight = "#52606914";
|
|
339
358
|
export declare const ColorBackgroundHoverLightHc = "#52606914";
|
|
340
359
|
export declare const ColorBackgroundHoverDark = "#cfd8dd14";
|
|
341
360
|
export declare const ColorBackgroundHoverDarkHc = "#a4b1b814";
|
|
361
|
+
export declare const ColorBackgroundHoverFutureDark = "#d4d4d814";
|
|
362
|
+
export declare const ColorBackgroundHoverFutureLight = "#52525c14";
|
|
342
363
|
export declare const ColorBackgroundPressedLight = "#5260691f";
|
|
343
364
|
export declare const ColorBackgroundPressedLightHc = "#5260691f";
|
|
344
365
|
export declare const ColorBackgroundPressedDark = "#cfd8dd1f";
|
|
345
366
|
export declare const ColorBackgroundPressedDarkHc = "#cfd8dd1f";
|
|
367
|
+
export declare const ColorBackgroundPressedFutureDark = "#d4d4d81f";
|
|
368
|
+
export declare const ColorBackgroundPressedFutureLight = "#52525c1f";
|
|
346
369
|
export declare const ColorBackgroundSelectedLight = "#e9f1fa";
|
|
347
370
|
export declare const ColorBackgroundSelectedLightHc = "#e9f1fa";
|
|
348
371
|
export declare const ColorBackgroundSelectedDark = "#374652";
|
|
349
372
|
export declare const ColorBackgroundSelectedDarkHc = "#374652";
|
|
373
|
+
export declare const ColorBackgroundSelectedFutureDark = "#3f3f46";
|
|
374
|
+
export declare const ColorBackgroundSelectedFutureLight = "#d4d4d8";
|
|
350
375
|
export declare const ColorSelectionIndicatorLight = "#0067df";
|
|
351
376
|
export declare const ColorSelectionIndicatorLightHc = "#00489d";
|
|
352
377
|
export declare const ColorSelectionIndicatorDark = "#66adff";
|
|
353
378
|
export declare const ColorSelectionIndicatorDarkHc = "#dae8fa";
|
|
379
|
+
export declare const ColorSelectionIndicatorFutureDark = "#00b8db";
|
|
380
|
+
export declare const ColorSelectionIndicatorFutureLight = "#00b8db";
|
|
354
381
|
export declare const ColorNotificationBadgeLight = "#000000";
|
|
355
382
|
export declare const ColorNotificationBadgeLightHc = "#000000";
|
|
356
383
|
export declare const ColorNotificationBadgeDark = "#ffffff";
|
|
357
384
|
export declare const ColorNotificationBadgeDarkHc = "#ffffff";
|
|
385
|
+
export declare const ColorNotificationBadgeFutureDark = "#ffffff";
|
|
386
|
+
export declare const ColorNotificationBadgeFutureLight = "#000000";
|
|
358
387
|
export declare const ColorNotificationIndicatorLight = "#da3b11";
|
|
359
388
|
export declare const ColorNotificationIndicatorLightHc = "#832107";
|
|
360
389
|
export declare const ColorNotificationIndicatorDark = "#ff8f70";
|
|
361
390
|
export declare const ColorNotificationIndicatorDarkHc = "#ff8f70";
|
|
391
|
+
export declare const ColorNotificationIndicatorFutureDark = "#ff637e";
|
|
392
|
+
export declare const ColorNotificationIndicatorFutureLight = "#ec003f";
|
|
362
393
|
export declare const ColorHoverLight = "#e9f1fa";
|
|
363
394
|
export declare const ColorHoverLightHc = "#e9f1fa";
|
|
364
395
|
export declare const ColorHoverDark = "#374652";
|
|
365
396
|
export declare const ColorHoverDarkHc = "#273139";
|
|
397
|
+
export declare const ColorHoverFutureDark = "#3f3f46";
|
|
398
|
+
export declare const ColorHoverFutureLight = "#d4d4d8";
|
|
366
399
|
export declare const ColorCurtainLight = "#000000";
|
|
367
400
|
export declare const ColorCurtainLightHc = "#000000";
|
|
368
401
|
export declare const ColorCurtainDark = "#000000";
|
|
369
402
|
export declare const ColorCurtainDarkHc = "#000000";
|
|
403
|
+
export declare const ColorCurtainFutureDark = "#000000";
|
|
404
|
+
export declare const ColorCurtainFutureLight = "#000000";
|
|
370
405
|
export declare const ColorBorderLight = "#a4b1b8";
|
|
371
406
|
export declare const ColorBorderLightHc = "#6b7882";
|
|
372
407
|
export declare const ColorBorderDark = "#8a97a0";
|
|
373
408
|
export declare const ColorBorderDarkHc = "#bbc7cd";
|
|
409
|
+
export declare const ColorBorderFutureDark = "#3f3f46";
|
|
410
|
+
export declare const ColorBorderFutureLight = "#d4d4d8";
|
|
374
411
|
export declare const ColorBorderDisabledLight = "#cfd8dd";
|
|
375
412
|
export declare const ColorBorderDisabledLightHc = "#cfd8dd";
|
|
376
413
|
export declare const ColorBorderDisabledDark = "#526069";
|
|
377
414
|
export declare const ColorBorderDisabledDarkHc = "#8a97a0";
|
|
415
|
+
export declare const ColorBorderDisabledFutureDark = "#27272a";
|
|
416
|
+
export declare const ColorBorderDisabledFutureLight = "#e4e4e7";
|
|
378
417
|
export declare const ColorBorderGridLight = "#f4f5f7";
|
|
379
418
|
export declare const ColorBorderGridLightHc = "#f4f5f7";
|
|
380
419
|
export declare const ColorBorderGridDark = "#273139";
|
|
381
420
|
export declare const ColorBorderGridDarkHc = "#273139";
|
|
421
|
+
export declare const ColorBorderGridFutureDark = "#27272a";
|
|
422
|
+
export declare const ColorBorderGridFutureLight = "#e4e4e7";
|
|
382
423
|
export declare const ColorBorderDeEmpLight = "#cfd8dd";
|
|
383
424
|
export declare const ColorBorderDeEmpLightHc = "#a4b1b8";
|
|
384
425
|
export declare const ColorBorderDeEmpDark = "#526069";
|
|
385
426
|
export declare const ColorBorderDeEmpDarkHc = "#a4b1b8";
|
|
427
|
+
export declare const ColorBorderDeEmpFutureDark = "#27272a";
|
|
428
|
+
export declare const ColorBorderDeEmpFutureLight = "#e4e4e7";
|
|
386
429
|
export declare const ColorSelectionLight = "#da3b11";
|
|
387
430
|
export declare const ColorSelectionLightHc = "#832107";
|
|
388
431
|
export declare const ColorSelectionDark = "#ff8f70";
|
|
389
432
|
export declare const ColorSelectionDarkHc = "#fda891";
|
|
433
|
+
export declare const ColorSelectionFutureDark = "#00d3f2";
|
|
434
|
+
export declare const ColorSelectionFutureLight = "#0092b8";
|
|
390
435
|
export declare const ColorLogoLight = "#fa4616";
|
|
391
436
|
export declare const ColorLogoLightHc = "#fa4616";
|
|
392
437
|
export declare const ColorLogoDark = "#ffffff";
|
|
393
438
|
export declare const ColorLogoDarkHc = "#ffffff";
|
|
439
|
+
export declare const ColorLogoFutureDark = "#ffffff";
|
|
440
|
+
export declare const ColorLogoFutureLight = "#000000";
|
|
394
441
|
export declare const ColorForegroundLight = "#273139";
|
|
395
442
|
export declare const ColorForegroundLightHc = "#273139";
|
|
396
443
|
export declare const ColorForegroundDark = "#f4f5f7";
|
|
397
444
|
export declare const ColorForegroundDarkHc = "#f4f5f7";
|
|
445
|
+
export declare const ColorForegroundFutureDark = "#fafafa";
|
|
446
|
+
export declare const ColorForegroundFutureLight = "#09090b";
|
|
398
447
|
export declare const ColorForegroundLightLight = "#6b7882";
|
|
399
448
|
export declare const ColorForegroundLightLightHc = "#374652";
|
|
400
449
|
export declare const ColorForegroundLightDark = "#a4b1b8";
|
|
401
450
|
export declare const ColorForegroundLightDarkHc = "#bbc7cd";
|
|
451
|
+
export declare const ColorForegroundLightFutureDark = "#9f9fa9";
|
|
452
|
+
export declare const ColorForegroundLightFutureLight = "#71717b";
|
|
402
453
|
export declare const ColorForegroundEmpLight = "#182027";
|
|
403
454
|
export declare const ColorForegroundEmpLightHc = "#182027";
|
|
404
455
|
export declare const ColorForegroundEmpDark = "#f8f9fa";
|
|
405
456
|
export declare const ColorForegroundEmpDarkHc = "#f8f9fa";
|
|
457
|
+
export declare const ColorForegroundEmpFutureDark = "#ffffff";
|
|
458
|
+
export declare const ColorForegroundEmpFutureLight = "#000000";
|
|
406
459
|
export declare const ColorForegroundDeEmpLight = "#526069";
|
|
407
460
|
export declare const ColorForegroundDeEmpLightHc = "#374652";
|
|
408
461
|
export declare const ColorForegroundDeEmpDark = "#cfd8dd";
|
|
409
462
|
export declare const ColorForegroundDeEmpDarkHc = "#cfd8dd";
|
|
463
|
+
export declare const ColorForegroundDeEmpFutureDark = "#9f9fa9";
|
|
464
|
+
export declare const ColorForegroundDeEmpFutureLight = "#71717b";
|
|
410
465
|
export declare const ColorForegroundDisableLight = "#8a97a0";
|
|
411
466
|
export declare const ColorForegroundDisableLightHc = "#8a97a0";
|
|
412
467
|
export declare const ColorForegroundDisableDark = "#a4b1b8";
|
|
413
468
|
export declare const ColorForegroundDisableDarkHc = "#a4b1b8";
|
|
469
|
+
export declare const ColorForegroundDisableFutureDark = "#71717b";
|
|
470
|
+
export declare const ColorForegroundDisableFutureLight = "#9f9fa9";
|
|
414
471
|
export declare const ColorForegroundInverseLight = "#f8f9fa";
|
|
415
472
|
export declare const ColorForegroundInverseLightHc = "#f8f9fa";
|
|
416
473
|
export declare const ColorForegroundInverseDark = "#182027";
|
|
417
474
|
export declare const ColorForegroundInverseDarkHc = "#182027";
|
|
475
|
+
export declare const ColorForegroundInverseFutureDark = "#09090b";
|
|
476
|
+
export declare const ColorForegroundInverseFutureLight = "#fafafa";
|
|
418
477
|
export declare const ColorForegroundHighlightLight = "#da3b11";
|
|
419
478
|
export declare const ColorForegroundHighlightLightHc = "#832107";
|
|
420
479
|
export declare const ColorForegroundHighlightDark = "#ff8f70";
|
|
421
480
|
export declare const ColorForegroundHighlightDarkHc = "#ff8f70";
|
|
481
|
+
export declare const ColorForegroundHighlightFutureDark = "#00d3f2";
|
|
482
|
+
export declare const ColorForegroundHighlightFutureLight = "#0092b8";
|
|
422
483
|
export declare const ColorForegroundHighlightSelectedLight = "#da3b111a";
|
|
423
484
|
export declare const ColorForegroundHighlightSelectedLightHc = "#8321071a";
|
|
424
485
|
export declare const ColorForegroundHighlightSelectedDark = "#ff8f701a";
|
|
425
486
|
export declare const ColorForegroundHighlightSelectedDarkHc = "#ff8f701a";
|
|
487
|
+
export declare const ColorForegroundHighlightSelectedFutureDark = "#00d3f21a";
|
|
488
|
+
export declare const ColorForegroundHighlightSelectedFutureLight = "#0092b81a";
|
|
426
489
|
export declare const ColorForegroundHighlightSelectedHoverLight = "#da3b1126";
|
|
427
490
|
export declare const ColorForegroundHighlightSelectedHoverLightHc = "#83210726";
|
|
428
491
|
export declare const ColorForegroundHighlightSelectedHoverDark = "#ff8f7026";
|
|
429
492
|
export declare const ColorForegroundHighlightSelectedHoverDarkHc = "#ff8f7026";
|
|
493
|
+
export declare const ColorForegroundHighlightSelectedHoverFutureDark = "#00d3f226";
|
|
494
|
+
export declare const ColorForegroundHighlightSelectedHoverFutureLight = "#0092b826";
|
|
430
495
|
export declare const ColorForegroundLinkLight = "#0067df";
|
|
431
496
|
export declare const ColorForegroundLinkLightHc = "#00489d";
|
|
432
497
|
export declare const ColorForegroundLinkDark = "#66adff";
|
|
433
498
|
export declare const ColorForegroundLinkDarkHc = "#87bfff";
|
|
499
|
+
export declare const ColorForegroundLinkFutureDark = "#00d3f2";
|
|
500
|
+
export declare const ColorForegroundLinkFutureLight = "#007595";
|
|
434
501
|
export declare const ColorForegroundLinkPressedLight = "#00489d";
|
|
435
502
|
export declare const ColorForegroundLinkPressedLightHc = "#00336f";
|
|
436
503
|
export declare const ColorForegroundLinkPressedDark = "#badaff";
|
|
437
504
|
export declare const ColorForegroundLinkPressedDarkHc = "#badaff";
|
|
505
|
+
export declare const ColorForegroundLinkPressedFutureDark = "#53eafd";
|
|
506
|
+
export declare const ColorForegroundLinkPressedFutureLight = "#005f78";
|
|
438
507
|
export declare const ColorForegroundInvDeEmpLight = "#cfd8dd";
|
|
439
508
|
export declare const ColorForegroundInvDeEmpLightHc = "#cfd8dd";
|
|
440
509
|
export declare const ColorForegroundInvDeEmpDark = "#526069";
|
|
441
510
|
export declare const ColorForegroundInvDeEmpDarkHc = "#374652";
|
|
511
|
+
export declare const ColorForegroundInvDeEmpFutureDark = "#52525c";
|
|
512
|
+
export declare const ColorForegroundInvDeEmpFutureLight = "#d4d4d8";
|
|
442
513
|
export declare const ColorPrimaryLight = "#0067df";
|
|
443
514
|
export declare const ColorPrimaryLightHc = "#00489d";
|
|
444
515
|
export declare const ColorPrimaryDark = "#66adff";
|
|
445
516
|
export declare const ColorPrimaryDarkHc = "#badaff";
|
|
517
|
+
export declare const ColorPrimaryFutureDark = "#00b8db";
|
|
518
|
+
export declare const ColorPrimaryFutureLight = "#00b8db";
|
|
446
519
|
export declare const ColorPrimaryLighterLight = "#badaff";
|
|
447
520
|
export declare const ColorPrimaryLighterLightHc = "#badaff";
|
|
448
521
|
export declare const ColorPrimaryLighterDark = "#00489d";
|
|
449
522
|
export declare const ColorPrimaryLighterDarkHc = "#00336f";
|
|
523
|
+
export declare const ColorPrimaryLighterFutureDark = "#53eafd";
|
|
524
|
+
export declare const ColorPrimaryLighterFutureLight = "#cefafe";
|
|
450
525
|
export declare const ColorPrimaryDarkerLight = "#00489d";
|
|
451
526
|
export declare const ColorPrimaryDarkerLightHc = "#11508d";
|
|
452
527
|
export declare const ColorPrimaryDarkerDark = "#badaff";
|
|
453
528
|
export declare const ColorPrimaryDarkerDarkHc = "#badaff";
|
|
529
|
+
export declare const ColorPrimaryDarkerFutureDark = "#0092b8";
|
|
530
|
+
export declare const ColorPrimaryDarkerFutureLight = "#007595";
|
|
454
531
|
export declare const ColorPrimaryHoverLight = "#0056ba";
|
|
455
532
|
export declare const ColorPrimaryHoverLightHc = "#00336f";
|
|
456
533
|
export declare const ColorPrimaryHoverDark = "#87bfff";
|
|
457
534
|
export declare const ColorPrimaryHoverDarkHc = "#87bfff";
|
|
535
|
+
export declare const ColorPrimaryHoverFutureDark = "#00d3f2";
|
|
536
|
+
export declare const ColorPrimaryHoverFutureLight = "#0092b8";
|
|
458
537
|
export declare const ColorPrimaryFocusedLight = "#0056ba";
|
|
459
538
|
export declare const ColorPrimaryFocusedLightHc = "#00336f";
|
|
460
539
|
export declare const ColorPrimaryFocusedDark = "#87bfff";
|
|
461
540
|
export declare const ColorPrimaryFocusedDarkHc = "#87bfff";
|
|
541
|
+
export declare const ColorPrimaryFocusedFutureDark = "#00d3f2";
|
|
542
|
+
export declare const ColorPrimaryFocusedFutureLight = "#0092b8";
|
|
462
543
|
export declare const ColorPrimaryPressedLight = "#0067df";
|
|
463
544
|
export declare const ColorPrimaryPressedLightHc = "#00336f";
|
|
464
545
|
export declare const ColorPrimaryPressedDark = "#66adff";
|
|
465
546
|
export declare const ColorPrimaryPressedDarkHc = "#66adff";
|
|
547
|
+
export declare const ColorPrimaryPressedFutureDark = "#00b8db";
|
|
548
|
+
export declare const ColorPrimaryPressedFutureLight = "#00b8db";
|
|
466
549
|
export declare const ColorSecondaryFocusedLight = "#e9f1fa";
|
|
467
550
|
export declare const ColorSecondaryFocusedLightHc = "#e9f1fa";
|
|
468
551
|
export declare const ColorSecondaryFocusedDark = "#374652";
|
|
469
552
|
export declare const ColorSecondaryFocusedDarkHc = "#273139";
|
|
553
|
+
export declare const ColorSecondaryFocusedFutureDark = "#3f3f46";
|
|
554
|
+
export declare const ColorSecondaryFocusedFutureLight = "#cefafe";
|
|
470
555
|
export declare const ColorSecondaryPressedLight = "#b2d2f3";
|
|
471
556
|
export declare const ColorSecondaryPressedLightHc = "#b2d2f3";
|
|
472
557
|
export declare const ColorSecondaryPressedDark = "#11508d";
|
|
473
558
|
export declare const ColorSecondaryPressedDarkHc = "#11508d";
|
|
559
|
+
export declare const ColorSecondaryPressedFutureDark = "#104e64";
|
|
560
|
+
export declare const ColorSecondaryPressedFutureLight = "#a2f4fd";
|
|
474
561
|
export declare const ColorChipDefaultBackgroundLight = "#cfd8dd";
|
|
475
562
|
export declare const ColorChipDefaultBackgroundLightHc = "#cfd8dd";
|
|
476
563
|
export declare const ColorChipDefaultBackgroundDark = "#526069";
|
|
477
564
|
export declare const ColorChipDefaultBackgroundDarkHc = "#526069";
|
|
565
|
+
export declare const ColorChipDefaultBackgroundFutureDark = "#52525c";
|
|
566
|
+
export declare const ColorChipDefaultBackgroundFutureLight = "#d4d4d8";
|
|
478
567
|
export declare const ColorChipErrorBackgroundLight = "#fff0f1";
|
|
479
568
|
export declare const ColorChipErrorBackgroundLightHc = "#fff0f1";
|
|
480
569
|
export declare const ColorChipErrorBackgroundDark = "#000000";
|
|
481
570
|
export declare const ColorChipErrorBackgroundDarkHc = "#000000";
|
|
571
|
+
export declare const ColorChipErrorBackgroundFutureDark = "#460809";
|
|
572
|
+
export declare const ColorChipErrorBackgroundFutureLight = "#fff0f1";
|
|
482
573
|
export declare const ColorChipWarningBackgroundLight = "#fff3db";
|
|
483
574
|
export declare const ColorChipWarningBackgroundLightHc = "#fff3db";
|
|
484
575
|
export declare const ColorChipWarningBackgroundDark = "#000000";
|
|
485
576
|
export declare const ColorChipWarningBackgroundDarkHc = "#000000";
|
|
577
|
+
export declare const ColorChipWarningBackgroundFutureDark = "#461901";
|
|
578
|
+
export declare const ColorChipWarningBackgroundFutureLight = "#fef3c6";
|
|
486
579
|
export declare const ColorChipInfoBackgroundLight = "#e9f1fa";
|
|
487
580
|
export declare const ColorChipInfoBackgroundLightHc = "#e9f1fa";
|
|
488
581
|
export declare const ColorChipInfoBackgroundDark = "#000000";
|
|
489
582
|
export declare const ColorChipInfoBackgroundDarkHc = "#000000";
|
|
583
|
+
export declare const ColorChipInfoBackgroundFutureDark = "#053345";
|
|
584
|
+
export declare const ColorChipInfoBackgroundFutureLight = "#cefafe";
|
|
490
585
|
export declare const ColorChipSuccessBackgroundLight = "#eeffe5";
|
|
491
586
|
export declare const ColorChipSuccessBackgroundLightHc = "#eeffe5";
|
|
492
587
|
export declare const ColorChipSuccessBackgroundDark = "#000000";
|
|
493
588
|
export declare const ColorChipSuccessBackgroundDarkHc = "#000000";
|
|
589
|
+
export declare const ColorChipSuccessBackgroundFutureDark = "#002c22";
|
|
590
|
+
export declare const ColorChipSuccessBackgroundFutureLight = "#d0fae5";
|
|
494
591
|
export declare const ColorErrorIconLight = "#cc3d45";
|
|
495
592
|
export declare const ColorErrorIconLightHc = "#a6040a";
|
|
496
593
|
export declare const ColorErrorIconDark = "#ff8484";
|
|
497
594
|
export declare const ColorErrorIconDarkHc = "#ffadad";
|
|
595
|
+
export declare const ColorErrorIconFutureDark = "#ff8484";
|
|
596
|
+
export declare const ColorErrorIconFutureLight = "#cc3d45";
|
|
498
597
|
export declare const ColorErrorIconInverseLight = "#ff8484";
|
|
499
598
|
export declare const ColorErrorIconInverseLightHc = "#ff8484";
|
|
500
599
|
export declare const ColorErrorIconInverseDark = "#cc3d45";
|
|
501
600
|
export declare const ColorErrorIconInverseDarkHc = "#b6242b";
|
|
601
|
+
export declare const ColorErrorIconInverseFutureDark = "#cc3d45";
|
|
602
|
+
export declare const ColorErrorIconInverseFutureLight = "#ff8484";
|
|
502
603
|
export declare const ColorErrorTextLight = "#a6040a";
|
|
503
604
|
export declare const ColorErrorTextLightHc = "#a6040a";
|
|
504
605
|
export declare const ColorErrorTextDark = "#ff8484";
|
|
505
606
|
export declare const ColorErrorTextDarkHc = "#ffadad";
|
|
607
|
+
export declare const ColorErrorTextFutureDark = "#ff8484";
|
|
608
|
+
export declare const ColorErrorTextFutureLight = "#a6040a";
|
|
506
609
|
export declare const ColorErrorBackgroundLight = "#fff0f1";
|
|
507
610
|
export declare const ColorErrorBackgroundLightHc = "#fff0f1";
|
|
508
611
|
export declare const ColorErrorBackgroundDark = "#000000";
|
|
509
612
|
export declare const ColorErrorBackgroundDarkHc = "#000000";
|
|
613
|
+
export declare const ColorErrorBackgroundFutureDark = "#460809";
|
|
614
|
+
export declare const ColorErrorBackgroundFutureLight = "#fff0f1";
|
|
510
615
|
export declare const ColorErrorForegroundInverseLight = "#ff8484";
|
|
511
616
|
export declare const ColorErrorForegroundInverseLightHc = "#ff8484";
|
|
512
617
|
export declare const ColorErrorForegroundInverseDark = "#cc3d45";
|
|
513
618
|
export declare const ColorErrorForegroundInverseDarkHc = "#b6242b";
|
|
619
|
+
export declare const ColorErrorForegroundInverseFutureDark = "#cc3d45";
|
|
620
|
+
export declare const ColorErrorForegroundInverseFutureLight = "#ff8484";
|
|
514
621
|
export declare const ColorInfoForegroundLight = "#1665b3";
|
|
515
622
|
export declare const ColorInfoForegroundLightHc = "#11508d";
|
|
516
623
|
export declare const ColorInfoForegroundDark = "#42a1ff";
|
|
517
624
|
export declare const ColorInfoForegroundDarkHc = "#42a1ff";
|
|
625
|
+
export declare const ColorInfoForegroundFutureDark = "#00d3f2";
|
|
626
|
+
export declare const ColorInfoForegroundFutureLight = "#007595";
|
|
518
627
|
export declare const ColorInfoIconLight = "#1976d2";
|
|
519
628
|
export declare const ColorInfoIconLightHc = "#11508d";
|
|
520
629
|
export declare const ColorInfoIconDark = "#42a1ff";
|
|
521
630
|
export declare const ColorInfoIconDarkHc = "#8cc2f8";
|
|
631
|
+
export declare const ColorInfoIconFutureDark = "#00d3f2";
|
|
632
|
+
export declare const ColorInfoIconFutureLight = "#0092b8";
|
|
522
633
|
export declare const ColorInfoIconInverseLight = "#42a1ff";
|
|
523
634
|
export declare const ColorInfoIconInverseLightHc = "#42a1ff";
|
|
524
635
|
export declare const ColorInfoIconInverseDark = "#1976d2";
|
|
525
636
|
export declare const ColorInfoIconInverseDarkHc = "#0056ba";
|
|
637
|
+
export declare const ColorInfoIconInverseFutureDark = "#0092b8";
|
|
638
|
+
export declare const ColorInfoIconInverseFutureLight = "#00d3f2";
|
|
526
639
|
export declare const ColorInfoTextLight = "#1665b3";
|
|
527
640
|
export declare const ColorInfoTextLightHc = "#11508d";
|
|
528
641
|
export declare const ColorInfoTextDark = "#42a1ff";
|
|
529
642
|
export declare const ColorInfoTextDarkHc = "#42a1ff";
|
|
643
|
+
export declare const ColorInfoTextFutureDark = "#00d3f2";
|
|
644
|
+
export declare const ColorInfoTextFutureLight = "#007595";
|
|
530
645
|
export declare const ColorInfoForegroundInverseLight = "#42a1ff";
|
|
531
646
|
export declare const ColorInfoForegroundInverseLightHc = "#42a1ff";
|
|
532
647
|
export declare const ColorInfoForegroundInverseDark = "#1976d2";
|
|
533
648
|
export declare const ColorInfoForegroundInverseDarkHc = "#1976d2";
|
|
649
|
+
export declare const ColorInfoForegroundInverseFutureDark = "#0092b8";
|
|
650
|
+
export declare const ColorInfoForegroundInverseFutureLight = "#00d3f2";
|
|
534
651
|
export declare const ColorInfoBackgroundLight = "#e9f1fa";
|
|
535
652
|
export declare const ColorInfoBackgroundLightHc = "#e9f1fa";
|
|
536
653
|
export declare const ColorInfoBackgroundDark = "#000000";
|
|
537
654
|
export declare const ColorInfoBackgroundDarkHc = "#000000";
|
|
655
|
+
export declare const ColorInfoBackgroundFutureDark = "#053345";
|
|
656
|
+
export declare const ColorInfoBackgroundFutureLight = "#cefafe";
|
|
538
657
|
export declare const ColorSuccessIconLight = "#038108";
|
|
539
658
|
export declare const ColorSuccessIconLightHc = "#005603";
|
|
540
659
|
export declare const ColorSuccessIconDark = "#74c94b";
|
|
541
660
|
export declare const ColorSuccessIconDarkHc = "#74c94b";
|
|
661
|
+
export declare const ColorSuccessIconFutureDark = "#00d492";
|
|
662
|
+
export declare const ColorSuccessIconFutureLight = "#007a55";
|
|
542
663
|
export declare const ColorSuccessIconInverseLight = "#74c94b";
|
|
543
664
|
export declare const ColorSuccessIconInverseLightHc = "#74c94b";
|
|
544
665
|
export declare const ColorSuccessIconInverseDark = "#038108";
|
|
545
666
|
export declare const ColorSuccessIconInverseDarkHc = "#6eb84a";
|
|
667
|
+
export declare const ColorSuccessIconInverseFutureDark = "#007a55";
|
|
668
|
+
export declare const ColorSuccessIconInverseFutureLight = "#00d492";
|
|
546
669
|
export declare const ColorSuccessTextLight = "#038108";
|
|
547
670
|
export declare const ColorSuccessTextLightHc = "#005603";
|
|
548
671
|
export declare const ColorSuccessTextDark = "#74c94b";
|
|
549
672
|
export declare const ColorSuccessTextDarkHc = "#74c94b";
|
|
673
|
+
export declare const ColorSuccessTextFutureDark = "#00d492";
|
|
674
|
+
export declare const ColorSuccessTextFutureLight = "#007a55";
|
|
550
675
|
export declare const ColorSuccessBackgroundLight = "#eeffe5";
|
|
551
676
|
export declare const ColorSuccessBackgroundLightHc = "#eeffe5";
|
|
552
677
|
export declare const ColorSuccessBackgroundDark = "#000000";
|
|
553
678
|
export declare const ColorSuccessBackgroundDarkHc = "#000000";
|
|
679
|
+
export declare const ColorSuccessBackgroundFutureDark = "#002c22";
|
|
680
|
+
export declare const ColorSuccessBackgroundFutureLight = "#d0fae5";
|
|
554
681
|
export declare const ColorSuccessForegroundInverseLight = "#74c94b";
|
|
555
682
|
export declare const ColorSuccessForegroundInverseLightHc = "#74c94b";
|
|
556
683
|
export declare const ColorSuccessForegroundInverseDark = "#6eb84a";
|
|
557
684
|
export declare const ColorSuccessForegroundInverseDarkHc = "#6eb84a";
|
|
685
|
+
export declare const ColorSuccessForegroundInverseFutureDark = "#007a55";
|
|
686
|
+
export declare const ColorSuccessForegroundInverseFutureLight = "#00d492";
|
|
558
687
|
export declare const ColorWarningIconLight = "#ffb40e";
|
|
559
688
|
export declare const ColorWarningIconLightHc = "#805a07";
|
|
560
689
|
export declare const ColorWarningIconDark = "#ffbb27";
|
|
561
690
|
export declare const ColorWarningIconDarkHc = "#ffbb27";
|
|
691
|
+
export declare const ColorWarningIconFutureDark = "#ffb900";
|
|
692
|
+
export declare const ColorWarningIconFutureLight = "#fe9a00";
|
|
562
693
|
export declare const ColorWarningIconInverseLight = "#ffbb27";
|
|
563
694
|
export declare const ColorWarningIconInverseLightHc = "#ffbb27";
|
|
564
695
|
export declare const ColorWarningIconInverseDark = "#ffb40e";
|
|
565
696
|
export declare const ColorWarningIconInverseDarkHc = "#ffb40e";
|
|
697
|
+
export declare const ColorWarningIconInverseFutureDark = "#fe9a00";
|
|
698
|
+
export declare const ColorWarningIconInverseFutureLight = "#ffb900";
|
|
566
699
|
export declare const ColorWarningTextLight = "#9e6100";
|
|
567
700
|
export declare const ColorWarningTextLightHc = "#273139";
|
|
568
701
|
export declare const ColorWarningTextDark = "#ffe19e";
|
|
569
702
|
export declare const ColorWarningTextDarkHc = "#ffe19e";
|
|
703
|
+
export declare const ColorWarningTextFutureDark = "#ffb900";
|
|
704
|
+
export declare const ColorWarningTextFutureLight = "#bb4d00";
|
|
570
705
|
export declare const ColorWarningBackgroundLight = "#fff3db";
|
|
571
706
|
export declare const ColorWarningBackgroundLightHc = "#fff3db";
|
|
572
707
|
export declare const ColorWarningBackgroundDark = "#000000";
|
|
573
708
|
export declare const ColorWarningBackgroundDarkHc = "#000000";
|
|
709
|
+
export declare const ColorWarningBackgroundFutureDark = "#461901";
|
|
710
|
+
export declare const ColorWarningBackgroundFutureLight = "#fef3c6";
|
|
574
711
|
export declare const ColorWarningForegroundInverseLight = "#ffbb27";
|
|
575
712
|
export declare const ColorWarningForegroundInverseLightHc = "#ffbb27";
|
|
576
713
|
export declare const ColorWarningForegroundInverseDark = "#ffb40e";
|
|
577
714
|
export declare const ColorWarningForegroundInverseDarkHc = "#ffb40e";
|
|
715
|
+
export declare const ColorWarningForegroundInverseFutureDark = "#fe9a00";
|
|
716
|
+
export declare const ColorWarningForegroundInverseFutureLight = "#ffb900";
|
|
578
717
|
export declare const ColorIconDefaultLight = "#526069";
|
|
579
718
|
export declare const ColorIconDefaultLightHc = "#374652";
|
|
580
719
|
export declare const ColorIconDefaultDark = "#cfd8dd";
|
|
581
720
|
export declare const ColorIconDefaultDarkHc = "#cfd8dd";
|
|
721
|
+
export declare const ColorIconDefaultFutureDark = "#9f9fa9";
|
|
722
|
+
export declare const ColorIconDefaultFutureLight = "#52525c";
|
|
582
723
|
export declare const ColorIconInvertedDefaultLight = "#cfd8dd";
|
|
583
724
|
export declare const ColorIconInvertedDefaultLightHc = "#cfd8dd";
|
|
584
725
|
export declare const ColorIconInvertedDefaultDark = "#526069";
|
|
585
726
|
export declare const ColorIconInvertedDefaultDarkHc = "#374652";
|
|
727
|
+
export declare const ColorIconInvertedDefaultFutureDark = "#52525c";
|
|
728
|
+
export declare const ColorIconInvertedDefaultFutureLight = "#d4d4d8";
|
|
586
729
|
export declare const ColorToggleOffHoverLight = "#52606914";
|
|
587
730
|
export declare const ColorToggleOffHoverLightHc = "#52606914";
|
|
588
731
|
export declare const ColorToggleOffHoverDark = "#cfd8dd14";
|
|
589
732
|
export declare const ColorToggleOffHoverDarkHc = "#cfd8dd14";
|
|
733
|
+
export declare const ColorToggleOffHoverFutureDark = "#d4d4d814";
|
|
734
|
+
export declare const ColorToggleOffHoverFutureLight = "#52525c14";
|
|
590
735
|
export declare const ColorToggleOffFocusLight = "#52606914";
|
|
591
736
|
export declare const ColorToggleOffFocusLightHc = "#52606914";
|
|
592
737
|
export declare const ColorToggleOffFocusDark = "#cfd8dd14";
|
|
593
738
|
export declare const ColorToggleOffFocusDarkHc = "#cfd8dd14";
|
|
739
|
+
export declare const ColorToggleOffFocusFutureDark = "#d4d4d814";
|
|
740
|
+
export declare const ColorToggleOffFocusFutureLight = "#52525c14";
|
|
594
741
|
export declare const ColorToggleOffPressedLight = "#5260691f";
|
|
595
742
|
export declare const ColorToggleOffPressedLightHc = "#5260691f";
|
|
596
743
|
export declare const ColorToggleOffPressedDark = "#cfd8dd1f";
|
|
597
744
|
export declare const ColorToggleOffPressedDarkHc = "#cfd8dd1f";
|
|
745
|
+
export declare const ColorToggleOffPressedFutureDark = "#d4d4d81f";
|
|
746
|
+
export declare const ColorToggleOffPressedFutureLight = "#52525c1f";
|
|
598
747
|
export declare const ColorToggleOnHoverLight = "#0067df14";
|
|
599
748
|
export declare const ColorToggleOnHoverLightHc = "#0067df14";
|
|
600
749
|
export declare const ColorToggleOnHoverDark = "#66adff14";
|
|
601
750
|
export declare const ColorToggleOnHoverDarkHc = "#66adff14";
|
|
751
|
+
export declare const ColorToggleOnHoverFutureDark = "#00b8db14";
|
|
752
|
+
export declare const ColorToggleOnHoverFutureLight = "#00b8db14";
|
|
602
753
|
export declare const ColorToggleOnFocusLight = "#0067df14";
|
|
603
754
|
export declare const ColorToggleOnFocusLightHc = "#0067df14";
|
|
604
755
|
export declare const ColorToggleOnFocusDark = "#66adff14";
|
|
605
756
|
export declare const ColorToggleOnFocusDarkHc = "#66adff14";
|
|
757
|
+
export declare const ColorToggleOnFocusFutureDark = "#00b8db14";
|
|
758
|
+
export declare const ColorToggleOnFocusFutureLight = "#00b8db14";
|
|
606
759
|
export declare const ColorToggleOnPressedLight = "#0067df1f";
|
|
607
760
|
export declare const ColorToggleOnPressedLightHc = "#0067df1f";
|
|
608
761
|
export declare const ColorToggleOnPressedDark = "#66adff1f";
|
|
609
762
|
export declare const ColorToggleOnPressedDarkHc = "#66adff1f";
|
|
763
|
+
export declare const ColorToggleOnPressedFutureDark = "#00b8db1f";
|
|
764
|
+
export declare const ColorToggleOnPressedFutureLight = "#00b8db1f";
|
|
610
765
|
export declare const ColorCalloutBackgroundLight = "#00489d";
|
|
611
766
|
export declare const ColorCalloutBackgroundLightHc = "#00489d";
|
|
612
767
|
export declare const ColorCalloutBackgroundDark = "#00489d";
|
|
613
768
|
export declare const ColorCalloutBackgroundDarkHc = "#00489d";
|
|
769
|
+
export declare const ColorCalloutBackgroundFutureDark = "#007595";
|
|
770
|
+
export declare const ColorCalloutBackgroundFutureLight = "#007595";
|
|
614
771
|
export declare const ColorWarnLight = "#b6242b";
|
|
615
772
|
export declare const ColorWarnLightHc = "#b6242b";
|
|
616
773
|
export declare const ColorWarnDark = "#ff8484";
|
|
617
774
|
export declare const ColorWarnDarkHc = "#ffadad";
|
|
775
|
+
export declare const ColorWarnFutureDark = "#ff8484";
|
|
776
|
+
export declare const ColorWarnFutureLight = "#b6242b";
|
|
618
777
|
export declare const ColorWarnDarkerLight = "#a6040a";
|
|
619
778
|
export declare const ColorWarnDarkerLightHc = "#a6040a";
|
|
620
779
|
export declare const ColorWarnDarkerDark = "#ffadad";
|
|
621
780
|
export declare const ColorWarnDarkerDarkHc = "#ffadad";
|
|
781
|
+
export declare const ColorWarnDarkerFutureDark = "#ffadad";
|
|
782
|
+
export declare const ColorWarnDarkerFutureLight = "#a6040a";
|
|
622
783
|
export declare const ColorWarnHoverLight = "#b6242b0a";
|
|
623
784
|
export declare const ColorWarnHoverLightHc = "#b6242b0a";
|
|
624
785
|
export declare const ColorWarnHoverDark = "#ff84840a";
|
|
625
786
|
export declare const ColorWarnHoverDarkHc = "#ff84840a";
|
|
787
|
+
export declare const ColorWarnHoverFutureDark = "#ff84840a";
|
|
788
|
+
export declare const ColorWarnHoverFutureLight = "#b6242b0a";
|
|
626
789
|
export declare const ColorWarnFocusLight = "#b6242b1f";
|
|
627
790
|
export declare const ColorWarnFocusLightHc = "#b6242b1f";
|
|
628
791
|
export declare const ColorWarnFocusDark = "#ff84841f";
|
|
629
792
|
export declare const ColorWarnFocusDarkHc = "#ff84841f";
|
|
793
|
+
export declare const ColorWarnFocusFutureDark = "#ff84841f";
|
|
794
|
+
export declare const ColorWarnFocusFutureLight = "#b6242b1f";
|
|
630
795
|
export declare const ColorWarnPressedLight = "#b6242b14";
|
|
631
796
|
export declare const ColorWarnPressedLightHc = "#b6242b14";
|
|
632
797
|
export declare const ColorWarnPressedDark = "#ff848414";
|
|
633
798
|
export declare const ColorWarnPressedDarkHc = "#ff848414";
|
|
799
|
+
export declare const ColorWarnPressedFutureDark = "#ff848414";
|
|
800
|
+
export declare const ColorWarnPressedFutureLight = "#b6242b14";
|
|
634
801
|
export declare const ColorCarouselBackgroundLight = "#f5f9fe";
|
|
635
802
|
export declare const ColorCarouselBackgroundLightHc = "#f5f9fe";
|
|
636
803
|
export declare const ColorCarouselBackgroundDark = "#1b2630";
|
|
637
804
|
export declare const ColorCarouselBackgroundDarkHc = "#1b2630";
|
|
805
|
+
export declare const ColorCarouselBackgroundFutureDark = "#053345";
|
|
806
|
+
export declare const ColorCarouselBackgroundFutureLight = "#ecfeff";
|
|
638
807
|
export declare const ColorIconButtonHoverLight = "#52606914";
|
|
639
808
|
export declare const ColorIconButtonHoverLightHc = "#52606914";
|
|
640
809
|
export declare const ColorIconButtonHoverDark = "#cfd8dd14";
|
|
641
810
|
export declare const ColorIconButtonHoverDarkHc = "#cfd8dd14";
|
|
811
|
+
export declare const ColorIconButtonHoverFutureDark = "#d4d4d814";
|
|
812
|
+
export declare const ColorIconButtonHoverFutureLight = "#52525c14";
|
|
642
813
|
export declare const ColorIconButtonFocusLight = "#52606914";
|
|
643
814
|
export declare const ColorIconButtonFocusLightHc = "#52606914";
|
|
644
815
|
export declare const ColorIconButtonFocusDark = "#cfd8dd14";
|
|
645
816
|
export declare const ColorIconButtonFocusDarkHc = "#cfd8dd14";
|
|
817
|
+
export declare const ColorIconButtonFocusFutureDark = "#d4d4d814";
|
|
818
|
+
export declare const ColorIconButtonFocusFutureLight = "#52525c14";
|
|
646
819
|
export declare const ColorIconButtonPressedLight = "#5260691f";
|
|
647
820
|
export declare const ColorIconButtonPressedLightHc = "#5260691f";
|
|
648
821
|
export declare const ColorIconButtonPressedDark = "#cfd8dd1f";
|
|
649
822
|
export declare const ColorIconButtonPressedDarkHc = "#cfd8dd1f";
|
|
823
|
+
export declare const ColorIconButtonPressedFutureDark = "#d4d4d81f";
|
|
824
|
+
export declare const ColorIconButtonPressedFutureLight = "#52525c1f";
|
|
650
825
|
export declare const ColorCodeFunctionLight = "#b748b6";
|
|
651
826
|
export declare const ColorCodeFunctionLightHc = "#8c338b";
|
|
652
827
|
export declare const ColorCodeFunctionDark = "#dc80db";
|
|
653
828
|
export declare const ColorCodeFunctionDarkHc = "#dc80db";
|
|
829
|
+
export declare const ColorCodeFunctionFutureDark = "#a684ff";
|
|
830
|
+
export declare const ColorCodeFunctionFutureLight = "#7f22fe";
|
|
654
831
|
export declare const ColorCodeOperatorLight = "#0067df";
|
|
655
832
|
export declare const ColorCodeOperatorLightHc = "#00489d";
|
|
656
833
|
export declare const ColorCodeOperatorDark = "#66adff";
|
|
657
834
|
export declare const ColorCodeOperatorDarkHc = "#66adff";
|
|
835
|
+
export declare const ColorCodeOperatorFutureDark = "#00d3f2";
|
|
836
|
+
export declare const ColorCodeOperatorFutureLight = "#007595";
|
|
658
837
|
export declare const ColorCodeNumericLight = "#1e7f5a";
|
|
659
838
|
export declare const ColorCodeNumericLightHc = "#176245";
|
|
660
839
|
export declare const ColorCodeNumericDark = "#6ecdb6";
|
|
661
840
|
export declare const ColorCodeNumericDarkHc = "#6ecdb6";
|
|
841
|
+
export declare const ColorCodeNumericFutureDark = "#ffb900";
|
|
842
|
+
export declare const ColorCodeNumericFutureLight = "#bb4d00";
|
|
662
843
|
export declare const ColorCodeTextLight = "#d91153";
|
|
663
844
|
export declare const ColorCodeTextLightHc = "#a60e3f";
|
|
664
845
|
export declare const ColorCodeTextDark = "#f25a8c";
|
|
665
846
|
export declare const ColorCodeTextDarkHc = "#fd7da7";
|
|
847
|
+
export declare const ColorCodeTextFutureDark = "#00d492";
|
|
848
|
+
export declare const ColorCodeTextFutureLight = "#007a55";
|
|
666
849
|
export declare const ColorToggleThumbOffLight = "#526069";
|
|
667
850
|
export declare const ColorToggleThumbOffLightHc = "#374652";
|
|
668
851
|
export declare const ColorToggleThumbOffDark = "#cfd8dd";
|
|
669
852
|
export declare const ColorToggleThumbOffDarkHc = "#cfd8dd";
|
|
853
|
+
export declare const ColorToggleThumbOffFutureDark = "#d4d4d8";
|
|
854
|
+
export declare const ColorToggleThumbOffFutureLight = "#52525c";
|
|
670
855
|
export declare const ColorToggleTrackOffLight = "#cfd8dd";
|
|
671
856
|
export declare const ColorToggleTrackOffLightHc = "#cfd8dd";
|
|
672
857
|
export declare const ColorToggleTrackOffDark = "#526069";
|
|
673
858
|
export declare const ColorToggleTrackOffDarkHc = "#526069";
|
|
859
|
+
export declare const ColorToggleTrackOffFutureDark = "#52525c";
|
|
860
|
+
export declare const ColorToggleTrackOffFutureLight = "#d4d4d8";
|
|
674
861
|
export declare const ColorToggleThumbOnLight = "#0067df";
|
|
675
862
|
export declare const ColorToggleThumbOnLightHc = "#00489d";
|
|
676
863
|
export declare const ColorToggleThumbOnDark = "#66adff";
|
|
677
864
|
export declare const ColorToggleThumbOnDarkHc = "#66adff";
|
|
865
|
+
export declare const ColorToggleThumbOnFutureDark = "#00b8db";
|
|
866
|
+
export declare const ColorToggleThumbOnFutureLight = "#00b8db";
|
|
678
867
|
export declare const ColorToggleTrackOnLight = "#badaff";
|
|
679
868
|
export declare const ColorToggleTrackOnLightHc = "#badaff";
|
|
680
869
|
export declare const ColorToggleTrackOnDark = "#00489d";
|
|
681
870
|
export declare const ColorToggleTrackOnDarkHc = "#00489d";
|
|
871
|
+
export declare const ColorToggleTrackOnFutureDark = "#005f78";
|
|
872
|
+
export declare const ColorToggleTrackOnFutureLight = "#a2f4fd";
|
|
682
873
|
export declare const ColorToggleThumbOffDisabledLight = "#cfd8dd";
|
|
683
874
|
export declare const ColorToggleThumbOffDisabledLightHc = "#cfd8dd";
|
|
684
875
|
export declare const ColorToggleThumbOffDisabledDark = "#526069";
|
|
685
876
|
export declare const ColorToggleThumbOffDisabledDarkHc = "#526069";
|
|
877
|
+
export declare const ColorToggleThumbOffDisabledFutureDark = "#52525c";
|
|
878
|
+
export declare const ColorToggleThumbOffDisabledFutureLight = "#d4d4d8";
|
|
686
879
|
export declare const ColorToggleTrackOffDisabledLight = "#ecedee";
|
|
687
880
|
export declare const ColorToggleTrackOffDisabledLightHc = "#ecedee";
|
|
688
881
|
export declare const ColorToggleTrackOffDisabledDark = "#374652";
|
|
689
882
|
export declare const ColorToggleTrackOffDisabledDarkHc = "#374652";
|
|
883
|
+
export declare const ColorToggleTrackOffDisabledFutureDark = "#3f3f46";
|
|
884
|
+
export declare const ColorToggleTrackOffDisabledFutureLight = "#e4e4e7";
|
|
690
885
|
export declare const ColorToggleThumbOnDisabledLight = "#0067df47";
|
|
691
886
|
export declare const ColorToggleThumbOnDisabledLightHc = "#0067df47";
|
|
692
887
|
export declare const ColorToggleThumbOnDisabledDark = "#66adff47";
|
|
693
888
|
export declare const ColorToggleThumbOnDisabledDarkHc = "#66adff47";
|
|
889
|
+
export declare const ColorToggleThumbOnDisabledFutureDark = "#00b8db47";
|
|
890
|
+
export declare const ColorToggleThumbOnDisabledFutureLight = "#00b8db47";
|
|
694
891
|
export declare const ColorToggleTrackOnDisabledLight = "#badaff61";
|
|
695
892
|
export declare const ColorToggleTrackOnDisabledLightHc = "#badaff61";
|
|
696
893
|
export declare const ColorToggleTrackOnDisabledDark = "#00489d61";
|
|
697
894
|
export declare const ColorToggleTrackOnDisabledDarkHc = "#00489d61";
|
|
895
|
+
export declare const ColorToggleTrackOnDisabledFutureDark = "#005f7861";
|
|
896
|
+
export declare const ColorToggleTrackOnDisabledFutureLight = "#a2f4fd61";
|
|
698
897
|
export declare const ColorSkeletonLight = "#ecedee";
|
|
699
898
|
export declare const ColorSkeletonLightHc = "#ecedee";
|
|
700
899
|
export declare const ColorSkeletonDark = "#273139";
|
|
701
900
|
export declare const ColorSkeletonDarkHc = "#273139";
|
|
901
|
+
export declare const ColorSkeletonFutureDark = "#27272a";
|
|
902
|
+
export declare const ColorSkeletonFutureLight = "#e4e4e7";
|
|
702
903
|
export declare const ColorSkeletonGlowLight = "#fbfbfc";
|
|
703
904
|
export declare const ColorSkeletonGlowLightHc = "#fbfbfc";
|
|
704
905
|
export declare const ColorSkeletonGlowDark = "#525a61";
|
|
705
906
|
export declare const ColorSkeletonGlowDarkHc = "#525a61";
|
|
907
|
+
export declare const ColorSkeletonGlowFutureDark = "#52525c";
|
|
908
|
+
export declare const ColorSkeletonGlowFutureLight = "#fafafa";
|
|
706
909
|
export declare const ColorDataGridHoverLight = "#f1f2f3";
|
|
707
910
|
export declare const ColorDataGridHoverLightHc = "#f1f2f3";
|
|
708
911
|
export declare const ColorDataGridHoverDark = "#272f36";
|
|
709
912
|
export declare const ColorDataGridHoverDarkHc = "#272f36";
|
|
913
|
+
export declare const ColorDataGridHoverFutureDark = "#27272a";
|
|
914
|
+
export declare const ColorDataGridHoverFutureLight = "#f4f4f5";
|
|
710
915
|
export declare const ColorDataGridPressedLight = "#eaeced";
|
|
711
916
|
export declare const ColorDataGridPressedLightHc = "#eaeced";
|
|
712
917
|
export declare const ColorDataGridPressedDark = "#2e363d";
|
|
713
918
|
export declare const ColorDataGridPressedDarkHc = "#2e363d";
|
|
919
|
+
export declare const ColorDataGridPressedFutureDark = "#3f3f46";
|
|
920
|
+
export declare const ColorDataGridPressedFutureLight = "#e4e4e7";
|
|
714
921
|
export declare const ColorFocusIndicatorLight = "#0067df";
|
|
715
922
|
export declare const ColorFocusIndicatorLightHc = "#00489d";
|
|
716
923
|
export declare const ColorFocusIndicatorDark = "#66adff";
|
|
717
924
|
export declare const ColorFocusIndicatorDarkHc = "#b2d2f3";
|
|
925
|
+
export declare const ColorFocusIndicatorFutureDark = "#9f9fa9";
|
|
926
|
+
export declare const ColorFocusIndicatorFutureLight = "#52525c";
|
|
718
927
|
export declare const ColorFocusIndicatorInverseLight = "#66adff";
|
|
719
928
|
export declare const ColorFocusIndicatorInverseLightHc = "#badaff";
|
|
720
929
|
export declare const ColorFocusIndicatorInverseDark = "#0067df";
|
|
721
930
|
export declare const ColorFocusIndicatorInverseDarkHc = "#0067df";
|
|
931
|
+
export declare const ColorFocusIndicatorInverseFutureDark = "#52525c";
|
|
932
|
+
export declare const ColorFocusIndicatorInverseFutureLight = "#9f9fa9";
|
|
722
933
|
export declare const ColorChartPurpleLight = "#933692";
|
|
723
934
|
export declare const ColorChartPurpleLightHc = "#8c338b";
|
|
724
935
|
export declare const ColorChartPurpleDark = "#b748b6";
|
|
725
936
|
export declare const ColorChartPurpleDarkHc = "#dc80db";
|
|
937
|
+
export declare const ColorChartPurpleFutureDark = "#a684ff";
|
|
938
|
+
export declare const ColorChartPurpleFutureLight = "#7f22fe";
|
|
726
939
|
export declare const ColorChartPinkLight = "#ed145b";
|
|
727
940
|
export declare const ColorChartPinkLightHc = "#d91153";
|
|
728
941
|
export declare const ColorChartPinkDark = "#f25a8c";
|
|
729
942
|
export declare const ColorChartPinkDarkHc = "#fd7da7";
|
|
943
|
+
export declare const ColorChartPinkFutureDark = "#ff637e";
|
|
944
|
+
export declare const ColorChartPinkFutureLight = "#ec003f";
|
|
730
945
|
export declare const ColorChartBlueSecondaryLight = "#42a1ff";
|
|
731
946
|
export declare const ColorChartBlueSecondaryLightHc = "#1976d2";
|
|
732
947
|
export declare const ColorChartBlueSecondaryDark = "#42a1ff";
|
|
733
948
|
export declare const ColorChartBlueSecondaryDarkHc = "#8cc2f8";
|
|
949
|
+
export declare const ColorChartBlueSecondaryFutureDark = "#00d3f2";
|
|
950
|
+
export declare const ColorChartBlueSecondaryFutureLight = "#0092b8";
|
|
734
951
|
export declare const ColorChartLightBlueLight = "#38c6f4";
|
|
735
952
|
export declare const ColorChartLightBlueLightHc = "#278aab";
|
|
736
953
|
export declare const ColorChartLightBlueDark = "#44cffc";
|
|
737
954
|
export declare const ColorChartLightBlueDarkHc = "#44cffc";
|
|
955
|
+
export declare const ColorChartLightBlueFutureDark = "#00bcff";
|
|
956
|
+
export declare const ColorChartLightBlueFutureLight = "#0084d1";
|
|
738
957
|
export declare const ColorChartGreenLight = "#6eb84a";
|
|
739
958
|
export declare const ColorChartGreenLightHc = "#038108";
|
|
740
959
|
export declare const ColorChartGreenDark = "#74c94b";
|
|
741
960
|
export declare const ColorChartGreenDarkHc = "#74c94b";
|
|
961
|
+
export declare const ColorChartGreenFutureDark = "#00d492";
|
|
962
|
+
export declare const ColorChartGreenFutureLight = "#009966";
|
|
742
963
|
export declare const ColorChartYellowLight = "#ffb40e";
|
|
743
964
|
export declare const ColorChartYellowLightHc = "#9e6100";
|
|
744
965
|
export declare const ColorChartYellowDark = "#ffbb27";
|
|
745
966
|
export declare const ColorChartYellowDarkHc = "#ffbb27";
|
|
967
|
+
export declare const ColorChartYellowFutureDark = "#ffb900";
|
|
968
|
+
export declare const ColorChartYellowFutureLight = "#e17100";
|
|
746
969
|
export declare const ColorGradientGeneralStartLight = "#fafafb";
|
|
747
970
|
export declare const ColorGradientGeneralStartLightHc = "#fafafb";
|
|
748
971
|
export declare const ColorGradientGeneralStartDark = "#526069";
|
|
749
972
|
export declare const ColorGradientGeneralStartDarkHc = "#526069";
|
|
973
|
+
export declare const ColorGradientGeneralStartFutureDark = "#526069";
|
|
974
|
+
export declare const ColorGradientGeneralStartFutureLight = "#fafafb";
|
|
750
975
|
export declare const ColorGradientGeneralEndLight = "#ecedef";
|
|
751
976
|
export declare const ColorGradientGeneralEndLightHc = "#ecedef";
|
|
752
977
|
export declare const ColorGradientGeneralEndDark = "#323c42";
|
|
753
978
|
export declare const ColorGradientGeneralEndDarkHc = "#323c42";
|
|
979
|
+
export declare const ColorGradientGeneralEndFutureDark = "#323c42";
|
|
980
|
+
export declare const ColorGradientGeneralEndFutureLight = "#ecedef";
|
|
754
981
|
export declare const ColorGradientAgentStartLight = "#ffe0ff";
|
|
755
982
|
export declare const ColorGradientAgentStartLightHc = "#ffe0ff";
|
|
756
983
|
export declare const ColorGradientAgentStartDark = "#a280bc";
|
|
757
984
|
export declare const ColorGradientAgentStartDarkHc = "#a280bc";
|
|
985
|
+
export declare const ColorGradientAgentStartFutureDark = "#a280bc";
|
|
986
|
+
export declare const ColorGradientAgentStartFutureLight = "#ffe0ff";
|
|
758
987
|
export declare const ColorGradientAgentEndLight = "#cfd9ff";
|
|
759
988
|
export declare const ColorGradientAgentEndLightHc = "#cfd9ff";
|
|
760
989
|
export declare const ColorGradientAgentEndDark = "#577bae";
|
|
761
990
|
export declare const ColorGradientAgentEndDarkHc = "#577bae";
|
|
991
|
+
export declare const ColorGradientAgentEndFutureDark = "#577bae";
|
|
992
|
+
export declare const ColorGradientAgentEndFutureLight = "#cfd9ff";
|
|
762
993
|
export declare const ColorGradientInvokedStartLight = "#ddfbf1";
|
|
763
994
|
export declare const ColorGradientInvokedStartLightHc = "#ddfbf1";
|
|
764
995
|
export declare const ColorGradientInvokedStartDark = "#51868e";
|
|
765
996
|
export declare const ColorGradientInvokedStartDarkHc = "#51868e";
|
|
997
|
+
export declare const ColorGradientInvokedStartFutureDark = "#51868e";
|
|
998
|
+
export declare const ColorGradientInvokedStartFutureLight = "#ddfbf1";
|
|
766
999
|
export declare const ColorGradientInvokedEndLight = "#daf3ff";
|
|
767
1000
|
export declare const ColorGradientInvokedEndLightHc = "#daf3ff";
|
|
768
1001
|
export declare const ColorGradientInvokedEndDark = "#35667d";
|
|
769
1002
|
export declare const ColorGradientInvokedEndDarkHc = "#35667d";
|
|
1003
|
+
export declare const ColorGradientInvokedEndFutureDark = "#35667d";
|
|
1004
|
+
export declare const ColorGradientInvokedEndFutureLight = "#daf3ff";
|
|
770
1005
|
export declare const ColorGradientHumanStartLight = "#f6faff";
|
|
771
1006
|
export declare const ColorGradientHumanStartLightHc = "#f6faff";
|
|
772
1007
|
export declare const ColorGradientHumanStartDark = "#6885ab";
|
|
773
1008
|
export declare const ColorGradientHumanStartDarkHc = "#6885ab";
|
|
1009
|
+
export declare const ColorGradientHumanStartFutureDark = "#6885ab";
|
|
1010
|
+
export declare const ColorGradientHumanStartFutureLight = "#f6faff";
|
|
774
1011
|
export declare const ColorGradientHumanEndLight = "#d8eeff";
|
|
775
1012
|
export declare const ColorGradientHumanEndLightHc = "#d8eeff";
|
|
776
1013
|
export declare const ColorGradientHumanEndDark = "#2b5372";
|
|
777
1014
|
export declare const ColorGradientHumanEndDarkHc = "#2b5372";
|
|
1015
|
+
export declare const ColorGradientHumanEndFutureDark = "#2b5372";
|
|
1016
|
+
export declare const ColorGradientHumanEndFutureLight = "#d8eeff";
|
|
1017
|
+
export declare const ColorBackgroundOverlayLight = "#f4f5f7";
|
|
1018
|
+
export declare const ColorBackgroundOverlayLightHc = "#f4f5f7";
|
|
1019
|
+
export declare const ColorBackgroundOverlayDark = "#374652";
|
|
1020
|
+
export declare const ColorBackgroundOverlayDarkHc = "#374652";
|
|
1021
|
+
export declare const ColorBackgroundOverlayFutureDark = "#27272a";
|
|
1022
|
+
export declare const ColorBackgroundOverlayFutureLight = "#e4e4e7";
|
|
1023
|
+
export declare const ColorForegroundSecondaryLight = "#182027";
|
|
1024
|
+
export declare const ColorForegroundSecondaryLightHc = "#182027";
|
|
1025
|
+
export declare const ColorForegroundSecondaryDark = "#f8f9fa";
|
|
1026
|
+
export declare const ColorForegroundSecondaryDarkHc = "#f8f9fa";
|
|
1027
|
+
export declare const ColorForegroundSecondaryFutureDark = "#f4f4f5";
|
|
1028
|
+
export declare const ColorForegroundSecondaryFutureLight = "#18181b";
|
|
1029
|
+
export declare const ColorForegroundHoverLight = "#526069";
|
|
1030
|
+
export declare const ColorForegroundHoverLightHc = "#374652";
|
|
1031
|
+
export declare const ColorForegroundHoverDark = "#cfd8dd";
|
|
1032
|
+
export declare const ColorForegroundHoverDarkHc = "#cfd8dd";
|
|
1033
|
+
export declare const ColorForegroundHoverFutureDark = "#d4d4d8";
|
|
1034
|
+
export declare const ColorForegroundHoverFutureLight = "#52525c";
|
|
1035
|
+
export declare const ColorForegroundOnAccentLight = "#f8f9fa";
|
|
1036
|
+
export declare const ColorForegroundOnAccentLightHc = "#f8f9fa";
|
|
1037
|
+
export declare const ColorForegroundOnAccentDark = "#182027";
|
|
1038
|
+
export declare const ColorForegroundOnAccentDarkHc = "#182027";
|
|
1039
|
+
export declare const ColorForegroundOnAccentFutureDark = "#09090b";
|
|
1040
|
+
export declare const ColorForegroundOnAccentFutureLight = "#09090b";
|
|
1041
|
+
export declare const ColorPrimarySubtleLight = "#badaff";
|
|
1042
|
+
export declare const ColorPrimarySubtleLightHc = "#badaff";
|
|
1043
|
+
export declare const ColorPrimarySubtleDark = "#00489d";
|
|
1044
|
+
export declare const ColorPrimarySubtleDarkHc = "#00336f";
|
|
1045
|
+
export declare const ColorPrimarySubtleFutureDark = "#053345";
|
|
1046
|
+
export declare const ColorPrimarySubtleFutureLight = "#ecfeff";
|
|
1047
|
+
export declare const ColorBorderMutedLight = "#f4f5f7";
|
|
1048
|
+
export declare const ColorBorderMutedLightHc = "#f4f5f7";
|
|
1049
|
+
export declare const ColorBorderMutedDark = "#273139";
|
|
1050
|
+
export declare const ColorBorderMutedDarkHc = "#273139";
|
|
1051
|
+
export declare const ColorBorderMutedFutureDark = "#18181b";
|
|
1052
|
+
export declare const ColorBorderMutedFutureLight = "#f4f4f5";
|
|
1053
|
+
export declare const ColorBorderDeepLight = "#f4f5f7";
|
|
1054
|
+
export declare const ColorBorderDeepLightHc = "#f4f5f7";
|
|
1055
|
+
export declare const ColorBorderDeepDark = "#273139";
|
|
1056
|
+
export declare const ColorBorderDeepDarkHc = "#273139";
|
|
1057
|
+
export declare const ColorBorderDeepFutureDark = "#09090b";
|
|
1058
|
+
export declare const ColorBorderDeepFutureLight = "#fafafa";
|
|
1059
|
+
export declare const ColorBorderInverseLight = "#a4b1b8";
|
|
1060
|
+
export declare const ColorBorderInverseLightHc = "#6b7882";
|
|
1061
|
+
export declare const ColorBorderInverseDark = "#8a97a0";
|
|
1062
|
+
export declare const ColorBorderInverseDarkHc = "#bbc7cd";
|
|
1063
|
+
export declare const ColorBorderInverseFutureDark = "#e4e4e7";
|
|
1064
|
+
export declare const ColorBorderInverseFutureLight = "#3f3f46";
|
|
1065
|
+
export declare const ColorBorderHoverLight = "#a4b1b8";
|
|
1066
|
+
export declare const ColorBorderHoverLightHc = "#6b7882";
|
|
1067
|
+
export declare const ColorBorderHoverDark = "#8a97a0";
|
|
1068
|
+
export declare const ColorBorderHoverDarkHc = "#bbc7cd";
|
|
1069
|
+
export declare const ColorBorderHoverFutureDark = "#52525c";
|
|
1070
|
+
export declare const ColorBorderHoverFutureLight = "#9f9fa9";
|
|
1071
|
+
export declare const ColorZinc50 = "#fafafa";
|
|
1072
|
+
export declare const ColorZinc100 = "#f4f4f5";
|
|
1073
|
+
export declare const ColorZinc200 = "#e4e4e7";
|
|
1074
|
+
export declare const ColorZinc300 = "#d4d4d8";
|
|
1075
|
+
export declare const ColorZinc400 = "#9f9fa9";
|
|
1076
|
+
export declare const ColorZinc500 = "#71717b";
|
|
1077
|
+
export declare const ColorZinc600 = "#52525c";
|
|
1078
|
+
export declare const ColorZinc700 = "#3f3f46";
|
|
1079
|
+
export declare const ColorZinc800 = "#27272a";
|
|
1080
|
+
export declare const ColorZinc900 = "#18181b";
|
|
1081
|
+
export declare const ColorZinc950 = "#09090b";
|
|
1082
|
+
export declare const ColorCyan50 = "#ecfeff";
|
|
1083
|
+
export declare const ColorCyan100 = "#cefafe";
|
|
1084
|
+
export declare const ColorCyan200 = "#a2f4fd";
|
|
1085
|
+
export declare const ColorCyan300 = "#53eafd";
|
|
1086
|
+
export declare const ColorCyan400 = "#00d3f2";
|
|
1087
|
+
export declare const ColorCyan500 = "#00b8db";
|
|
1088
|
+
export declare const ColorCyan600 = "#0092b8";
|
|
1089
|
+
export declare const ColorCyan700 = "#007595";
|
|
1090
|
+
export declare const ColorCyan800 = "#005f78";
|
|
1091
|
+
export declare const ColorCyan900 = "#104e64";
|
|
1092
|
+
export declare const ColorCyan950 = "#053345";
|
|
1093
|
+
export declare const ColorEmerald50 = "#ecfdf5";
|
|
1094
|
+
export declare const ColorEmerald100 = "#d0fae5";
|
|
1095
|
+
export declare const ColorEmerald200 = "#a4f4cf";
|
|
1096
|
+
export declare const ColorEmerald300 = "#5ee9b5";
|
|
1097
|
+
export declare const ColorEmerald400 = "#00d492";
|
|
1098
|
+
export declare const ColorEmerald500 = "#00bc7d";
|
|
1099
|
+
export declare const ColorEmerald600 = "#009966";
|
|
1100
|
+
export declare const ColorEmerald700 = "#007a55";
|
|
1101
|
+
export declare const ColorEmerald800 = "#006045";
|
|
1102
|
+
export declare const ColorEmerald900 = "#004f3b";
|
|
1103
|
+
export declare const ColorEmerald950 = "#002c22";
|
|
1104
|
+
export declare const ColorAmber50 = "#fffbeb";
|
|
1105
|
+
export declare const ColorAmber100 = "#fef3c6";
|
|
1106
|
+
export declare const ColorAmber200 = "#fee685";
|
|
1107
|
+
export declare const ColorAmber300 = "#ffd230";
|
|
1108
|
+
export declare const ColorAmber400 = "#ffb900";
|
|
1109
|
+
export declare const ColorAmber500 = "#fe9a00";
|
|
1110
|
+
export declare const ColorAmber600 = "#e17100";
|
|
1111
|
+
export declare const ColorAmber700 = "#bb4d00";
|
|
1112
|
+
export declare const ColorAmber800 = "#973c00";
|
|
1113
|
+
export declare const ColorAmber900 = "#7b3306";
|
|
1114
|
+
export declare const ColorAmber950 = "#461901";
|
|
1115
|
+
export declare const ColorViolet50 = "#f5f3ff";
|
|
1116
|
+
export declare const ColorViolet100 = "#ede9fe";
|
|
1117
|
+
export declare const ColorViolet200 = "#ddd6ff";
|
|
1118
|
+
export declare const ColorViolet300 = "#c4b4ff";
|
|
1119
|
+
export declare const ColorViolet400 = "#a684ff";
|
|
1120
|
+
export declare const ColorViolet500 = "#8e51ff";
|
|
1121
|
+
export declare const ColorViolet600 = "#7f22fe";
|
|
1122
|
+
export declare const ColorViolet700 = "#7008e7";
|
|
1123
|
+
export declare const ColorViolet800 = "#5d0ec0";
|
|
1124
|
+
export declare const ColorViolet900 = "#4d179a";
|
|
1125
|
+
export declare const ColorViolet950 = "#2f0d68";
|
|
1126
|
+
export declare const ColorRose50 = "#fff1f2";
|
|
1127
|
+
export declare const ColorRose100 = "#ffe4e6";
|
|
1128
|
+
export declare const ColorRose200 = "#ffccd3";
|
|
1129
|
+
export declare const ColorRose300 = "#ffa1ad";
|
|
1130
|
+
export declare const ColorRose400 = "#ff637e";
|
|
1131
|
+
export declare const ColorRose500 = "#ff2056";
|
|
1132
|
+
export declare const ColorRose600 = "#ec003f";
|
|
1133
|
+
export declare const ColorRose700 = "#c70036";
|
|
1134
|
+
export declare const ColorRose800 = "#a50036";
|
|
1135
|
+
export declare const ColorRose900 = "#8b0836";
|
|
1136
|
+
export declare const ColorRose950 = "#4d0218";
|
|
1137
|
+
export declare const ColorSky50 = "#f0f9ff";
|
|
1138
|
+
export declare const ColorSky100 = "#dff2fe";
|
|
1139
|
+
export declare const ColorSky200 = "#b8e6fe";
|
|
1140
|
+
export declare const ColorSky300 = "#74d4ff";
|
|
1141
|
+
export declare const ColorSky400 = "#00bcff";
|
|
1142
|
+
export declare const ColorSky500 = "#00a6f4";
|
|
1143
|
+
export declare const ColorSky600 = "#0084d1";
|
|
1144
|
+
export declare const ColorSky700 = "#0069a8";
|
|
1145
|
+
export declare const ColorSky800 = "#00598a";
|
|
1146
|
+
export declare const ColorSky900 = "#024a70";
|
|
1147
|
+
export declare const ColorSky950 = "#052f4a";
|