@utilitywarehouse/hearth-react-native 0.2.0 → 0.3.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.
Files changed (187) hide show
  1. package/.turbo/turbo-build.log +1 -1
  2. package/.turbo/turbo-lint.log +1 -1
  3. package/CHANGELOG.md +22 -0
  4. package/build/components/Badge/Badge.js +101 -14
  5. package/build/components/Badge/Badge.props.d.ts +2 -2
  6. package/build/components/Badge/BadgeIcon.js +5 -79
  7. package/build/components/Badge/BadgeText.js +7 -81
  8. package/build/components/Button/Button.d.ts +2 -2
  9. package/build/components/Button/ButtonGroupRoot.d.ts +3 -2
  10. package/build/components/Button/ButtonGroupRoot.js +9 -0
  11. package/build/components/Card/Card.props.d.ts +2 -2
  12. package/build/components/CurrencyInput/CurrencyInput.d.ts +6 -0
  13. package/build/components/CurrencyInput/CurrencyInput.js +47 -0
  14. package/build/components/CurrencyInput/CurrencyInput.props.d.ts +14 -0
  15. package/build/components/CurrencyInput/CurrencyInput.props.js +1 -0
  16. package/build/components/CurrencyInput/index.d.ts +1 -0
  17. package/build/components/CurrencyInput/index.js +1 -0
  18. package/build/components/DescriptionList/DescriptionList.context.d.ts +6 -0
  19. package/build/components/DescriptionList/DescriptionList.context.js +9 -0
  20. package/build/components/DescriptionList/DescriptionList.d.ts +6 -0
  21. package/build/components/DescriptionList/DescriptionList.js +25 -0
  22. package/build/components/DescriptionList/DescriptionList.props.d.ts +18 -0
  23. package/build/components/DescriptionList/DescriptionList.props.js +1 -0
  24. package/build/components/DescriptionList/DescriptionListItem.d.ts +6 -0
  25. package/build/components/DescriptionList/DescriptionListItem.js +49 -0
  26. package/build/components/DescriptionList/DescriptionListItem.props.d.ts +17 -0
  27. package/build/components/DescriptionList/DescriptionListItem.props.js +1 -0
  28. package/build/components/DescriptionList/index.d.ts +4 -0
  29. package/build/components/DescriptionList/index.js +2 -0
  30. package/build/components/Divider/Divider.js +46 -0
  31. package/build/components/Divider/Divider.props.d.ts +2 -2
  32. package/build/components/Flex/Flex.props.d.ts +3 -2
  33. package/build/components/Grid/Grid.props.d.ts +2 -2
  34. package/build/components/IconContainer/IconContainer.d.ts +5 -0
  35. package/build/components/IconContainer/IconContainer.js +161 -0
  36. package/build/components/IconContainer/IconContainer.props.d.ts +15 -0
  37. package/build/components/IconContainer/IconContainer.props.js +1 -0
  38. package/build/components/IconContainer/index.d.ts +2 -0
  39. package/build/components/IconContainer/index.js +1 -0
  40. package/build/components/Icons/CircleIcon.js +3 -3
  41. package/build/components/Input/Input.js +2 -34
  42. package/build/components/Input/Input.props.d.ts +1 -17
  43. package/build/components/Input/InputField.js +0 -7
  44. package/build/components/Modal/Modal.js +17 -1
  45. package/build/components/SectionHeader/SectionHeader.js +1 -0
  46. package/build/components/Tabs/Tab.d.ts +18 -0
  47. package/build/components/Tabs/Tab.js +74 -0
  48. package/build/components/Tabs/Tab.props.d.ts +14 -0
  49. package/build/components/Tabs/Tab.props.js +1 -0
  50. package/build/components/Tabs/TabPanel.d.ts +3 -0
  51. package/build/components/Tabs/TabPanel.js +34 -0
  52. package/build/components/Tabs/TabPanel.props.d.ts +8 -0
  53. package/build/components/Tabs/TabPanel.props.js +1 -0
  54. package/build/components/Tabs/Tabs.context.d.ts +23 -0
  55. package/build/components/Tabs/Tabs.context.js +8 -0
  56. package/build/components/Tabs/Tabs.d.ts +6 -0
  57. package/build/components/Tabs/Tabs.js +114 -0
  58. package/build/components/Tabs/Tabs.props.d.ts +19 -0
  59. package/build/components/Tabs/Tabs.props.js +1 -0
  60. package/build/components/Tabs/TabsList.d.ts +6 -0
  61. package/build/components/Tabs/TabsList.js +112 -0
  62. package/build/components/Tabs/TabsList.props.d.ts +6 -0
  63. package/build/components/Tabs/TabsList.props.js +1 -0
  64. package/build/components/Tabs/index.d.ts +8 -0
  65. package/build/components/Tabs/index.js +4 -0
  66. package/build/components/index.d.ts +4 -0
  67. package/build/components/index.js +4 -0
  68. package/build/core/themes.d.ts +416 -148
  69. package/build/core/themes.js +57 -1
  70. package/build/tokens/color.d.ts +76 -68
  71. package/build/tokens/color.js +38 -34
  72. package/build/tokens/components/dark/button.d.ts +1 -0
  73. package/build/tokens/components/dark/button.js +1 -0
  74. package/build/tokens/components/dark/checkbox.d.ts +1 -1
  75. package/build/tokens/components/dark/checkbox.js +1 -1
  76. package/build/tokens/components/dark/icon-button.d.ts +3 -3
  77. package/build/tokens/components/dark/icon-button.js +3 -3
  78. package/build/tokens/components/dark/radio.d.ts +1 -1
  79. package/build/tokens/components/dark/radio.js +1 -1
  80. package/build/tokens/components/dark/tabs.d.ts +2 -0
  81. package/build/tokens/components/dark/tabs.js +2 -0
  82. package/build/tokens/components/light/badge.d.ts +1 -1
  83. package/build/tokens/components/light/badge.js +1 -1
  84. package/build/tokens/components/light/button.d.ts +1 -0
  85. package/build/tokens/components/light/button.js +1 -0
  86. package/build/tokens/components/light/checkbox.d.ts +3 -3
  87. package/build/tokens/components/light/checkbox.js +3 -3
  88. package/build/tokens/components/light/icon-button.d.ts +1 -1
  89. package/build/tokens/components/light/icon-button.js +1 -1
  90. package/build/tokens/components/light/radio.d.ts +3 -3
  91. package/build/tokens/components/light/radio.js +3 -3
  92. package/build/tokens/components/light/tabs.d.ts +2 -0
  93. package/build/tokens/components/light/tabs.js +2 -0
  94. package/build/tokens/layout.d.ts +48 -30
  95. package/build/tokens/layout.js +24 -15
  96. package/build/tokens/semantic-dark.d.ts +21 -19
  97. package/build/tokens/semantic-dark.js +21 -19
  98. package/build/tokens/semantic-light.d.ts +17 -15
  99. package/build/tokens/semantic-light.js +17 -15
  100. package/build/types/values.d.ts +2 -1
  101. package/build/utils/formatThousands.d.ts +2 -0
  102. package/build/utils/formatThousands.js +16 -0
  103. package/build/utils/index.d.ts +1 -0
  104. package/build/utils/index.js +1 -0
  105. package/docs/components/AllComponents.web.tsx +97 -8
  106. package/docs/components/NextPrevPage.tsx +11 -3
  107. package/docs/components/UsageWrap.tsx +2 -2
  108. package/docs/heplers/addReactNativePrefix.ts +8 -0
  109. package/docs/heplers/index.ts +1 -0
  110. package/docs/theme-tokens.mdx +42 -0
  111. package/package.json +2 -3
  112. package/src/components/Badge/Badge.docs.mdx +7 -7
  113. package/src/components/Badge/Badge.props.ts +3 -2
  114. package/src/components/Badge/Badge.stories.tsx +81 -92
  115. package/src/components/Badge/Badge.tsx +101 -14
  116. package/src/components/Badge/BadgeIcon.tsx +5 -79
  117. package/src/components/Badge/BadgeText.tsx +7 -81
  118. package/src/components/Button/ButtonGroupRoot.tsx +12 -2
  119. package/src/components/Card/Card.docs.mdx +1 -1
  120. package/src/components/Card/Card.props.ts +2 -2
  121. package/src/components/CurrencyInput/CurrencyInput.docs.mdx +120 -0
  122. package/src/components/CurrencyInput/CurrencyInput.props.ts +19 -0
  123. package/src/components/CurrencyInput/CurrencyInput.stories.tsx +116 -0
  124. package/src/components/CurrencyInput/CurrencyInput.tsx +91 -0
  125. package/src/components/CurrencyInput/index.ts +1 -0
  126. package/src/components/DescriptionList/DescriptionList.context.ts +18 -0
  127. package/src/components/DescriptionList/DescriptionList.docs.mdx +98 -0
  128. package/src/components/DescriptionList/DescriptionList.props.ts +20 -0
  129. package/src/components/DescriptionList/DescriptionList.stories.tsx +154 -0
  130. package/src/components/DescriptionList/DescriptionList.tsx +64 -0
  131. package/src/components/DescriptionList/DescriptionListItem.props.ts +19 -0
  132. package/src/components/DescriptionList/DescriptionListItem.tsx +101 -0
  133. package/src/components/DescriptionList/index.ts +4 -0
  134. package/src/components/Divider/Divider.props.ts +2 -2
  135. package/src/components/Divider/Divider.stories.tsx +3 -3
  136. package/src/components/Divider/Divider.tsx +46 -0
  137. package/src/components/Flex/Flex.docs.mdx +4 -4
  138. package/src/components/Flex/Flex.props.ts +3 -2
  139. package/src/components/Flex/Flex.stories.tsx +1 -1
  140. package/src/components/Grid/Grid.docs.mdx +12 -12
  141. package/src/components/Grid/Grid.props.ts +2 -2
  142. package/src/components/Grid/Grid.stories.tsx +2 -2
  143. package/src/components/IconContainer/IconContainer.docs.mdx +90 -0
  144. package/src/components/IconContainer/IconContainer.props.ts +17 -0
  145. package/src/components/IconContainer/IconContainer.stories.tsx +130 -0
  146. package/src/components/IconContainer/IconContainer.tsx +180 -0
  147. package/src/components/IconContainer/index.tsx +2 -0
  148. package/src/components/Icons/CircleIcon.tsx +9 -11
  149. package/src/components/Input/Input.docs.mdx +3 -3
  150. package/src/components/Input/Input.props.ts +0 -20
  151. package/src/components/Input/Input.stories.tsx +0 -6
  152. package/src/components/Input/Input.tsx +2 -49
  153. package/src/components/Input/InputField.tsx +0 -7
  154. package/src/components/Modal/Modal.tsx +18 -0
  155. package/src/components/SectionHeader/SectionHeader.tsx +1 -0
  156. package/src/components/Tabs/Tab.props.ts +16 -0
  157. package/src/components/Tabs/Tab.tsx +113 -0
  158. package/src/components/Tabs/TabPanel.props.ts +10 -0
  159. package/src/components/Tabs/TabPanel.tsx +46 -0
  160. package/src/components/Tabs/Tabs.context.ts +26 -0
  161. package/src/components/Tabs/Tabs.docs.mdx +214 -0
  162. package/src/components/Tabs/Tabs.props.ts +21 -0
  163. package/src/components/Tabs/Tabs.stories.tsx +270 -0
  164. package/src/components/Tabs/Tabs.tsx +139 -0
  165. package/src/components/Tabs/TabsList.props.ts +8 -0
  166. package/src/components/Tabs/TabsList.tsx +194 -0
  167. package/src/components/Tabs/index.ts +8 -0
  168. package/src/components/index.ts +4 -0
  169. package/src/core/themes.ts +57 -1
  170. package/src/tokens/color.ts +38 -34
  171. package/src/tokens/components/dark/button.ts +1 -0
  172. package/src/tokens/components/dark/checkbox.ts +1 -1
  173. package/src/tokens/components/dark/icon-button.ts +3 -3
  174. package/src/tokens/components/dark/radio.ts +1 -1
  175. package/src/tokens/components/dark/tabs.ts +2 -0
  176. package/src/tokens/components/light/badge.ts +1 -1
  177. package/src/tokens/components/light/button.ts +1 -0
  178. package/src/tokens/components/light/checkbox.ts +3 -3
  179. package/src/tokens/components/light/icon-button.ts +1 -1
  180. package/src/tokens/components/light/radio.ts +3 -3
  181. package/src/tokens/components/light/tabs.ts +2 -0
  182. package/src/tokens/layout.ts +24 -15
  183. package/src/tokens/semantic-dark.ts +21 -19
  184. package/src/tokens/semantic-light.ts +17 -15
  185. package/src/types/values.ts +3 -1
  186. package/src/utils/formatThousands.ts +14 -0
  187. package/src/utils/index.ts +1 -0
@@ -27,6 +27,42 @@ export declare const lightTheme: {
27
27
  readonly '4/6': "66.666%";
28
28
  readonly '5/6': "83.333%";
29
29
  readonly full: DimensionValue;
30
+ readonly none: 0;
31
+ readonly '2xs': {
32
+ readonly base: 2;
33
+ readonly md: 2;
34
+ readonly lg: 2;
35
+ };
36
+ readonly xs: {
37
+ readonly base: 4;
38
+ readonly md: 4;
39
+ readonly lg: 4;
40
+ };
41
+ readonly sm: {
42
+ readonly base: 8;
43
+ readonly md: 8;
44
+ readonly lg: 8;
45
+ };
46
+ readonly md: {
47
+ readonly base: 12;
48
+ readonly md: 12;
49
+ readonly lg: 12;
50
+ };
51
+ readonly lg: {
52
+ readonly base: 16;
53
+ readonly md: 16;
54
+ readonly lg: 16;
55
+ };
56
+ readonly xl: {
57
+ readonly base: 20;
58
+ readonly md: 24;
59
+ readonly lg: 24;
60
+ };
61
+ readonly '2xl': {
62
+ readonly base: 28;
63
+ readonly md: 28;
64
+ readonly lg: 40;
65
+ };
30
66
  readonly '0': 0;
31
67
  readonly '25': 2;
32
68
  readonly '50': 4;
@@ -441,11 +477,14 @@ export declare const lightTheme: {
441
477
  readonly margin: 16;
442
478
  };
443
479
  readonly spacing: {
444
- readonly lg: 20;
445
- readonly md: 16;
446
- readonly sm: 12;
447
- readonly xl: 28;
448
- readonly xs: 8;
480
+ readonly '2xl': 28;
481
+ readonly '2xs': 2;
482
+ readonly lg: 16;
483
+ readonly md: 12;
484
+ readonly none: 0;
485
+ readonly sm: 8;
486
+ readonly xl: 20;
487
+ readonly xs: 4;
449
488
  };
450
489
  };
451
490
  readonly tablet: {
@@ -467,11 +506,14 @@ export declare const lightTheme: {
467
506
  readonly margin: 32;
468
507
  };
469
508
  readonly spacing: {
470
- readonly lg: 24;
471
- readonly md: 16;
472
- readonly sm: 12;
473
- readonly xl: 28;
474
- readonly xs: 8;
509
+ readonly '2xl': 28;
510
+ readonly '2xs': 2;
511
+ readonly lg: 16;
512
+ readonly md: 12;
513
+ readonly none: 0;
514
+ readonly sm: 8;
515
+ readonly xl: 24;
516
+ readonly xs: 4;
475
517
  };
476
518
  };
477
519
  readonly desktop: {
@@ -493,11 +535,14 @@ export declare const lightTheme: {
493
535
  readonly margin: 32;
494
536
  };
495
537
  readonly spacing: {
496
- readonly lg: 24;
497
- readonly md: 16;
498
- readonly sm: 12;
499
- readonly xl: 40;
500
- readonly xs: 8;
538
+ readonly '2xl': 40;
539
+ readonly '2xs': 2;
540
+ readonly lg: 16;
541
+ readonly md: 12;
542
+ readonly none: 0;
543
+ readonly sm: 8;
544
+ readonly xl: 24;
545
+ readonly xs: 4;
501
546
  };
502
547
  };
503
548
  };
@@ -664,36 +709,56 @@ export declare const lightTheme: {
664
709
  };
665
710
  };
666
711
  readonly space: {
667
- readonly none: {};
712
+ readonly none: {
713
+ readonly gap: {
714
+ readonly base: 0;
715
+ readonly md: 0;
716
+ readonly lg: 0;
717
+ };
718
+ };
719
+ readonly '2xs': {
720
+ readonly gap: {
721
+ readonly base: 2;
722
+ readonly md: 2;
723
+ readonly lg: 2;
724
+ };
725
+ };
668
726
  readonly xs: {
727
+ readonly gap: {
728
+ readonly base: 4;
729
+ readonly md: 4;
730
+ readonly lg: 4;
731
+ };
732
+ };
733
+ readonly sm: {
669
734
  readonly gap: {
670
735
  readonly base: 8;
671
736
  readonly md: 8;
672
737
  readonly lg: 8;
673
738
  };
674
739
  };
675
- readonly sm: {
740
+ readonly md: {
676
741
  readonly gap: {
677
742
  readonly base: 12;
678
743
  readonly md: 12;
679
744
  readonly lg: 12;
680
745
  };
681
746
  };
682
- readonly md: {
747
+ readonly lg: {
683
748
  readonly gap: {
684
749
  readonly base: 16;
685
750
  readonly md: 16;
686
751
  readonly lg: 16;
687
752
  };
688
753
  };
689
- readonly lg: {
754
+ readonly xl: {
690
755
  readonly gap: {
691
756
  readonly base: 20;
692
757
  readonly md: 24;
693
758
  readonly lg: 24;
694
759
  };
695
760
  };
696
- readonly xl: {
761
+ readonly '2xl': {
697
762
  readonly gap: {
698
763
  readonly base: 28;
699
764
  readonly md: 28;
@@ -722,55 +787,55 @@ export declare const lightTheme: {
722
787
  readonly danger: {
723
788
  readonly border: "#de2612";
724
789
  readonly foreground: {
725
- readonly default: "#fcfbf2";
790
+ readonly default: "#101010";
726
791
  readonly subtle: "#de2612";
727
792
  };
728
793
  readonly surface: {
729
- readonly default: "#de2612";
730
- readonly subtle: "#ffccc5";
794
+ readonly default: "#ff634a";
795
+ readonly subtle: "#ffa89d";
731
796
  };
732
797
  };
733
798
  readonly functional: {
734
- readonly border: "#888888";
799
+ readonly border: "#5b5b5b";
735
800
  readonly foreground: {
736
- readonly default: "#fcfbf2";
737
- readonly subtle: "#888888";
801
+ readonly default: "#101010";
802
+ readonly subtle: "#5b5b5b";
738
803
  };
739
804
  readonly surface: {
740
- readonly default: "#888888";
805
+ readonly default: "#919191";
741
806
  readonly subtle: "#d3d3d3";
742
807
  };
743
808
  };
744
809
  readonly info: {
745
810
  readonly border: "#1c6cd4";
746
811
  readonly foreground: {
747
- readonly default: "#fcfbf2";
812
+ readonly default: "#101010";
748
813
  readonly subtle: "#1c6cd4";
749
814
  };
750
815
  readonly surface: {
751
- readonly default: "#1c6cd4";
816
+ readonly default: "#6bb0ff";
752
817
  readonly subtle: "#bcddff";
753
818
  };
754
819
  };
755
820
  readonly positive: {
756
821
  readonly border: "#0f834a";
757
822
  readonly foreground: {
758
- readonly default: "#fcfbf2";
823
+ readonly default: "#101010";
759
824
  readonly subtle: "#0f834a";
760
825
  };
761
826
  readonly surface: {
762
- readonly default: "#0f834a";
827
+ readonly default: "#36bf7d";
763
828
  readonly subtle: "#a2e2c3";
764
829
  };
765
830
  };
766
831
  readonly warning: {
767
832
  readonly border: "#be5400";
768
833
  readonly foreground: {
769
- readonly default: "#fcfbf2";
834
+ readonly default: "#101010";
770
835
  readonly subtle: "#be5400";
771
836
  };
772
837
  readonly surface: {
773
- readonly default: "#be5400";
838
+ readonly default: "#ff8010";
774
839
  readonly subtle: "#ffcca8";
775
840
  };
776
841
  };
@@ -843,14 +908,14 @@ export declare const lightTheme: {
843
908
  };
844
909
  readonly functional: {
845
910
  readonly border: {
911
+ readonly inverted: "#f7f7f7";
846
912
  readonly strong: "#101010";
847
913
  readonly subtle: "#101010";
848
- readonly inverted: "#f7f7f7";
849
914
  };
850
915
  readonly foreground: {
916
+ readonly inverted: "#f7f7f7";
851
917
  readonly strong: "#fcfbf2";
852
918
  readonly subtle: "#101010";
853
- readonly inverted: "#f7f7f7";
854
919
  };
855
920
  readonly surface: {
856
921
  readonly strong: {
@@ -948,6 +1013,8 @@ export declare const lightTheme: {
948
1013
  };
949
1014
  };
950
1015
  readonly text: {
1016
+ readonly affirmative: "#0f834a";
1017
+ readonly brand: "#7a42c8";
951
1018
  readonly inverted: "#fcfbf2";
952
1019
  readonly primary: "#101010";
953
1020
  readonly secondary: "#888888";
@@ -1195,6 +1262,42 @@ export declare const darkTheme: {
1195
1262
  readonly '4/6': "66.666%";
1196
1263
  readonly '5/6': "83.333%";
1197
1264
  readonly full: DimensionValue;
1265
+ readonly none: 0;
1266
+ readonly '2xs': {
1267
+ readonly base: 2;
1268
+ readonly md: 2;
1269
+ readonly lg: 2;
1270
+ };
1271
+ readonly xs: {
1272
+ readonly base: 4;
1273
+ readonly md: 4;
1274
+ readonly lg: 4;
1275
+ };
1276
+ readonly sm: {
1277
+ readonly base: 8;
1278
+ readonly md: 8;
1279
+ readonly lg: 8;
1280
+ };
1281
+ readonly md: {
1282
+ readonly base: 12;
1283
+ readonly md: 12;
1284
+ readonly lg: 12;
1285
+ };
1286
+ readonly lg: {
1287
+ readonly base: 16;
1288
+ readonly md: 16;
1289
+ readonly lg: 16;
1290
+ };
1291
+ readonly xl: {
1292
+ readonly base: 20;
1293
+ readonly md: 24;
1294
+ readonly lg: 24;
1295
+ };
1296
+ readonly '2xl': {
1297
+ readonly base: 28;
1298
+ readonly md: 28;
1299
+ readonly lg: 40;
1300
+ };
1198
1301
  readonly '0': 0;
1199
1302
  readonly '25': 2;
1200
1303
  readonly '50': 4;
@@ -1609,11 +1712,14 @@ export declare const darkTheme: {
1609
1712
  readonly margin: 16;
1610
1713
  };
1611
1714
  readonly spacing: {
1612
- readonly lg: 20;
1613
- readonly md: 16;
1614
- readonly sm: 12;
1615
- readonly xl: 28;
1616
- readonly xs: 8;
1715
+ readonly '2xl': 28;
1716
+ readonly '2xs': 2;
1717
+ readonly lg: 16;
1718
+ readonly md: 12;
1719
+ readonly none: 0;
1720
+ readonly sm: 8;
1721
+ readonly xl: 20;
1722
+ readonly xs: 4;
1617
1723
  };
1618
1724
  };
1619
1725
  readonly tablet: {
@@ -1635,11 +1741,14 @@ export declare const darkTheme: {
1635
1741
  readonly margin: 32;
1636
1742
  };
1637
1743
  readonly spacing: {
1638
- readonly lg: 24;
1639
- readonly md: 16;
1640
- readonly sm: 12;
1641
- readonly xl: 28;
1642
- readonly xs: 8;
1744
+ readonly '2xl': 28;
1745
+ readonly '2xs': 2;
1746
+ readonly lg: 16;
1747
+ readonly md: 12;
1748
+ readonly none: 0;
1749
+ readonly sm: 8;
1750
+ readonly xl: 24;
1751
+ readonly xs: 4;
1643
1752
  };
1644
1753
  };
1645
1754
  readonly desktop: {
@@ -1661,11 +1770,14 @@ export declare const darkTheme: {
1661
1770
  readonly margin: 32;
1662
1771
  };
1663
1772
  readonly spacing: {
1664
- readonly lg: 24;
1665
- readonly md: 16;
1666
- readonly sm: 12;
1667
- readonly xl: 40;
1668
- readonly xs: 8;
1773
+ readonly '2xl': 40;
1774
+ readonly '2xs': 2;
1775
+ readonly lg: 16;
1776
+ readonly md: 12;
1777
+ readonly none: 0;
1778
+ readonly sm: 8;
1779
+ readonly xl: 24;
1780
+ readonly xs: 4;
1669
1781
  };
1670
1782
  };
1671
1783
  };
@@ -1832,36 +1944,56 @@ export declare const darkTheme: {
1832
1944
  };
1833
1945
  };
1834
1946
  readonly space: {
1835
- readonly none: {};
1947
+ readonly none: {
1948
+ readonly gap: {
1949
+ readonly base: 0;
1950
+ readonly md: 0;
1951
+ readonly lg: 0;
1952
+ };
1953
+ };
1954
+ readonly '2xs': {
1955
+ readonly gap: {
1956
+ readonly base: 2;
1957
+ readonly md: 2;
1958
+ readonly lg: 2;
1959
+ };
1960
+ };
1836
1961
  readonly xs: {
1962
+ readonly gap: {
1963
+ readonly base: 4;
1964
+ readonly md: 4;
1965
+ readonly lg: 4;
1966
+ };
1967
+ };
1968
+ readonly sm: {
1837
1969
  readonly gap: {
1838
1970
  readonly base: 8;
1839
1971
  readonly md: 8;
1840
1972
  readonly lg: 8;
1841
1973
  };
1842
1974
  };
1843
- readonly sm: {
1975
+ readonly md: {
1844
1976
  readonly gap: {
1845
1977
  readonly base: 12;
1846
1978
  readonly md: 12;
1847
1979
  readonly lg: 12;
1848
1980
  };
1849
1981
  };
1850
- readonly md: {
1982
+ readonly lg: {
1851
1983
  readonly gap: {
1852
1984
  readonly base: 16;
1853
1985
  readonly md: 16;
1854
1986
  readonly lg: 16;
1855
1987
  };
1856
1988
  };
1857
- readonly lg: {
1989
+ readonly xl: {
1858
1990
  readonly gap: {
1859
1991
  readonly base: 20;
1860
1992
  readonly md: 24;
1861
1993
  readonly lg: 24;
1862
1994
  };
1863
1995
  };
1864
- readonly xl: {
1996
+ readonly '2xl': {
1865
1997
  readonly gap: {
1866
1998
  readonly base: 28;
1867
1999
  readonly md: 28;
@@ -1890,56 +2022,56 @@ export declare const darkTheme: {
1890
2022
  readonly danger: {
1891
2023
  readonly border: "#ff7964";
1892
2024
  readonly foreground: {
1893
- readonly default: "#fcfbf2";
2025
+ readonly default: "#101010";
1894
2026
  readonly subtle: "#ff7964";
1895
2027
  };
1896
2028
  readonly surface: {
1897
- readonly default: "#de2612";
1898
- readonly subtle: "#521a16";
2029
+ readonly default: "#ff634a";
2030
+ readonly subtle: "#ffa89d";
1899
2031
  };
1900
2032
  };
1901
2033
  readonly functional: {
1902
2034
  readonly border: "#b2afae";
1903
2035
  readonly foreground: {
1904
- readonly default: "#fcfbf2";
2036
+ readonly default: "#101010";
1905
2037
  readonly subtle: "#b2afae";
1906
2038
  };
1907
2039
  readonly surface: {
1908
- readonly default: "#888888";
1909
- readonly subtle: "#232323";
2040
+ readonly default: "#919191";
2041
+ readonly subtle: "#d3d3d3";
1910
2042
  };
1911
2043
  };
1912
2044
  readonly info: {
1913
2045
  readonly border: "#6bb0ff";
1914
2046
  readonly foreground: {
1915
- readonly default: "#fcfbf2";
2047
+ readonly default: "#101010";
1916
2048
  readonly subtle: "#6bb0ff";
1917
2049
  };
1918
2050
  readonly surface: {
1919
- readonly default: "#1c6cd4";
1920
- readonly subtle: "#042455";
2051
+ readonly default: "#6bb0ff";
2052
+ readonly subtle: "#bcddff";
1921
2053
  };
1922
2054
  };
1923
2055
  readonly positive: {
1924
2056
  readonly border: "#58ca93";
1925
2057
  readonly foreground: {
1926
- readonly default: "#fcfbf2";
2058
+ readonly default: "#101010";
1927
2059
  readonly subtle: "#58ca93";
1928
2060
  };
1929
2061
  readonly surface: {
1930
- readonly default: "#0f834a";
1931
- readonly subtle: "#033d21";
2062
+ readonly default: "#36bf7d";
2063
+ readonly subtle: "#a2e2c3";
1932
2064
  };
1933
2065
  };
1934
2066
  readonly warning: {
1935
2067
  readonly border: "#ff9639";
1936
2068
  readonly foreground: {
1937
- readonly default: "#fcfbf2";
2069
+ readonly default: "#101010";
1938
2070
  readonly subtle: "#ff9639";
1939
2071
  };
1940
2072
  readonly surface: {
1941
- readonly default: "#cb5b00";
1942
- readonly subtle: "#6b2d00";
2073
+ readonly default: "#ff8010";
2074
+ readonly subtle: "#ffcca8";
1943
2075
  };
1944
2076
  };
1945
2077
  };
@@ -2011,14 +2143,14 @@ export declare const darkTheme: {
2011
2143
  };
2012
2144
  readonly functional: {
2013
2145
  readonly border: {
2146
+ readonly inverted: "#f7f7f7";
2014
2147
  readonly strong: "#ebebeb";
2015
2148
  readonly subtle: "#ebebeb";
2016
- readonly inverted: "#f7f7f7";
2017
2149
  };
2018
2150
  readonly foreground: {
2151
+ readonly inverted: "#f7f7f7";
2019
2152
  readonly strong: "#fcfbf2";
2020
2153
  readonly subtle: "#ebebeb";
2021
- readonly inverted: "#f7f7f7";
2022
2154
  };
2023
2155
  readonly surface: {
2024
2156
  readonly strong: {
@@ -2030,8 +2162,8 @@ export declare const darkTheme: {
2030
2162
  readonly active: "#4c4c4c";
2031
2163
  readonly hover: "#3a3837";
2032
2164
  readonly inverted: {
2033
- readonly active: "#d3d3d3";
2034
- readonly hover: "#ebebeb";
2165
+ readonly active: "#3a3837";
2166
+ readonly hover: "#3f3f3f";
2035
2167
  };
2036
2168
  };
2037
2169
  };
@@ -2116,6 +2248,8 @@ export declare const darkTheme: {
2116
2248
  };
2117
2249
  };
2118
2250
  readonly text: {
2251
+ readonly affirmative: "#58ca93";
2252
+ readonly brand: "#af90de";
2119
2253
  readonly inverted: "#191917";
2120
2254
  readonly primary: "#ebebeb";
2121
2255
  readonly secondary: "#b2afae";
@@ -2364,6 +2498,42 @@ export declare const themes: {
2364
2498
  readonly '4/6': "66.666%";
2365
2499
  readonly '5/6': "83.333%";
2366
2500
  readonly full: DimensionValue;
2501
+ readonly none: 0;
2502
+ readonly '2xs': {
2503
+ readonly base: 2;
2504
+ readonly md: 2;
2505
+ readonly lg: 2;
2506
+ };
2507
+ readonly xs: {
2508
+ readonly base: 4;
2509
+ readonly md: 4;
2510
+ readonly lg: 4;
2511
+ };
2512
+ readonly sm: {
2513
+ readonly base: 8;
2514
+ readonly md: 8;
2515
+ readonly lg: 8;
2516
+ };
2517
+ readonly md: {
2518
+ readonly base: 12;
2519
+ readonly md: 12;
2520
+ readonly lg: 12;
2521
+ };
2522
+ readonly lg: {
2523
+ readonly base: 16;
2524
+ readonly md: 16;
2525
+ readonly lg: 16;
2526
+ };
2527
+ readonly xl: {
2528
+ readonly base: 20;
2529
+ readonly md: 24;
2530
+ readonly lg: 24;
2531
+ };
2532
+ readonly '2xl': {
2533
+ readonly base: 28;
2534
+ readonly md: 28;
2535
+ readonly lg: 40;
2536
+ };
2367
2537
  readonly '0': 0;
2368
2538
  readonly '25': 2;
2369
2539
  readonly '50': 4;
@@ -2778,11 +2948,14 @@ export declare const themes: {
2778
2948
  readonly margin: 16;
2779
2949
  };
2780
2950
  readonly spacing: {
2781
- readonly lg: 20;
2782
- readonly md: 16;
2783
- readonly sm: 12;
2784
- readonly xl: 28;
2785
- readonly xs: 8;
2951
+ readonly '2xl': 28;
2952
+ readonly '2xs': 2;
2953
+ readonly lg: 16;
2954
+ readonly md: 12;
2955
+ readonly none: 0;
2956
+ readonly sm: 8;
2957
+ readonly xl: 20;
2958
+ readonly xs: 4;
2786
2959
  };
2787
2960
  };
2788
2961
  readonly tablet: {
@@ -2804,11 +2977,14 @@ export declare const themes: {
2804
2977
  readonly margin: 32;
2805
2978
  };
2806
2979
  readonly spacing: {
2807
- readonly lg: 24;
2808
- readonly md: 16;
2809
- readonly sm: 12;
2810
- readonly xl: 28;
2811
- readonly xs: 8;
2980
+ readonly '2xl': 28;
2981
+ readonly '2xs': 2;
2982
+ readonly lg: 16;
2983
+ readonly md: 12;
2984
+ readonly none: 0;
2985
+ readonly sm: 8;
2986
+ readonly xl: 24;
2987
+ readonly xs: 4;
2812
2988
  };
2813
2989
  };
2814
2990
  readonly desktop: {
@@ -2830,11 +3006,14 @@ export declare const themes: {
2830
3006
  readonly margin: 32;
2831
3007
  };
2832
3008
  readonly spacing: {
2833
- readonly lg: 24;
2834
- readonly md: 16;
2835
- readonly sm: 12;
2836
- readonly xl: 40;
2837
- readonly xs: 8;
3009
+ readonly '2xl': 40;
3010
+ readonly '2xs': 2;
3011
+ readonly lg: 16;
3012
+ readonly md: 12;
3013
+ readonly none: 0;
3014
+ readonly sm: 8;
3015
+ readonly xl: 24;
3016
+ readonly xs: 4;
2838
3017
  };
2839
3018
  };
2840
3019
  };
@@ -3001,36 +3180,56 @@ export declare const themes: {
3001
3180
  };
3002
3181
  };
3003
3182
  readonly space: {
3004
- readonly none: {};
3183
+ readonly none: {
3184
+ readonly gap: {
3185
+ readonly base: 0;
3186
+ readonly md: 0;
3187
+ readonly lg: 0;
3188
+ };
3189
+ };
3190
+ readonly '2xs': {
3191
+ readonly gap: {
3192
+ readonly base: 2;
3193
+ readonly md: 2;
3194
+ readonly lg: 2;
3195
+ };
3196
+ };
3005
3197
  readonly xs: {
3198
+ readonly gap: {
3199
+ readonly base: 4;
3200
+ readonly md: 4;
3201
+ readonly lg: 4;
3202
+ };
3203
+ };
3204
+ readonly sm: {
3006
3205
  readonly gap: {
3007
3206
  readonly base: 8;
3008
3207
  readonly md: 8;
3009
3208
  readonly lg: 8;
3010
3209
  };
3011
3210
  };
3012
- readonly sm: {
3211
+ readonly md: {
3013
3212
  readonly gap: {
3014
3213
  readonly base: 12;
3015
3214
  readonly md: 12;
3016
3215
  readonly lg: 12;
3017
3216
  };
3018
3217
  };
3019
- readonly md: {
3218
+ readonly lg: {
3020
3219
  readonly gap: {
3021
3220
  readonly base: 16;
3022
3221
  readonly md: 16;
3023
3222
  readonly lg: 16;
3024
3223
  };
3025
3224
  };
3026
- readonly lg: {
3225
+ readonly xl: {
3027
3226
  readonly gap: {
3028
3227
  readonly base: 20;
3029
3228
  readonly md: 24;
3030
3229
  readonly lg: 24;
3031
3230
  };
3032
3231
  };
3033
- readonly xl: {
3232
+ readonly '2xl': {
3034
3233
  readonly gap: {
3035
3234
  readonly base: 28;
3036
3235
  readonly md: 28;
@@ -3059,55 +3258,55 @@ export declare const themes: {
3059
3258
  readonly danger: {
3060
3259
  readonly border: "#de2612";
3061
3260
  readonly foreground: {
3062
- readonly default: "#fcfbf2";
3261
+ readonly default: "#101010";
3063
3262
  readonly subtle: "#de2612";
3064
3263
  };
3065
3264
  readonly surface: {
3066
- readonly default: "#de2612";
3067
- readonly subtle: "#ffccc5";
3265
+ readonly default: "#ff634a";
3266
+ readonly subtle: "#ffa89d";
3068
3267
  };
3069
3268
  };
3070
3269
  readonly functional: {
3071
- readonly border: "#888888";
3270
+ readonly border: "#5b5b5b";
3072
3271
  readonly foreground: {
3073
- readonly default: "#fcfbf2";
3074
- readonly subtle: "#888888";
3272
+ readonly default: "#101010";
3273
+ readonly subtle: "#5b5b5b";
3075
3274
  };
3076
3275
  readonly surface: {
3077
- readonly default: "#888888";
3276
+ readonly default: "#919191";
3078
3277
  readonly subtle: "#d3d3d3";
3079
3278
  };
3080
3279
  };
3081
3280
  readonly info: {
3082
3281
  readonly border: "#1c6cd4";
3083
3282
  readonly foreground: {
3084
- readonly default: "#fcfbf2";
3283
+ readonly default: "#101010";
3085
3284
  readonly subtle: "#1c6cd4";
3086
3285
  };
3087
3286
  readonly surface: {
3088
- readonly default: "#1c6cd4";
3287
+ readonly default: "#6bb0ff";
3089
3288
  readonly subtle: "#bcddff";
3090
3289
  };
3091
3290
  };
3092
3291
  readonly positive: {
3093
3292
  readonly border: "#0f834a";
3094
3293
  readonly foreground: {
3095
- readonly default: "#fcfbf2";
3294
+ readonly default: "#101010";
3096
3295
  readonly subtle: "#0f834a";
3097
3296
  };
3098
3297
  readonly surface: {
3099
- readonly default: "#0f834a";
3298
+ readonly default: "#36bf7d";
3100
3299
  readonly subtle: "#a2e2c3";
3101
3300
  };
3102
3301
  };
3103
3302
  readonly warning: {
3104
3303
  readonly border: "#be5400";
3105
3304
  readonly foreground: {
3106
- readonly default: "#fcfbf2";
3305
+ readonly default: "#101010";
3107
3306
  readonly subtle: "#be5400";
3108
3307
  };
3109
3308
  readonly surface: {
3110
- readonly default: "#be5400";
3309
+ readonly default: "#ff8010";
3111
3310
  readonly subtle: "#ffcca8";
3112
3311
  };
3113
3312
  };
@@ -3180,14 +3379,14 @@ export declare const themes: {
3180
3379
  };
3181
3380
  readonly functional: {
3182
3381
  readonly border: {
3382
+ readonly inverted: "#f7f7f7";
3183
3383
  readonly strong: "#101010";
3184
3384
  readonly subtle: "#101010";
3185
- readonly inverted: "#f7f7f7";
3186
3385
  };
3187
3386
  readonly foreground: {
3387
+ readonly inverted: "#f7f7f7";
3188
3388
  readonly strong: "#fcfbf2";
3189
3389
  readonly subtle: "#101010";
3190
- readonly inverted: "#f7f7f7";
3191
3390
  };
3192
3391
  readonly surface: {
3193
3392
  readonly strong: {
@@ -3285,6 +3484,8 @@ export declare const themes: {
3285
3484
  };
3286
3485
  };
3287
3486
  readonly text: {
3487
+ readonly affirmative: "#0f834a";
3488
+ readonly brand: "#7a42c8";
3288
3489
  readonly inverted: "#fcfbf2";
3289
3490
  readonly primary: "#101010";
3290
3491
  readonly secondary: "#888888";
@@ -3532,6 +3733,42 @@ export declare const themes: {
3532
3733
  readonly '4/6': "66.666%";
3533
3734
  readonly '5/6': "83.333%";
3534
3735
  readonly full: DimensionValue;
3736
+ readonly none: 0;
3737
+ readonly '2xs': {
3738
+ readonly base: 2;
3739
+ readonly md: 2;
3740
+ readonly lg: 2;
3741
+ };
3742
+ readonly xs: {
3743
+ readonly base: 4;
3744
+ readonly md: 4;
3745
+ readonly lg: 4;
3746
+ };
3747
+ readonly sm: {
3748
+ readonly base: 8;
3749
+ readonly md: 8;
3750
+ readonly lg: 8;
3751
+ };
3752
+ readonly md: {
3753
+ readonly base: 12;
3754
+ readonly md: 12;
3755
+ readonly lg: 12;
3756
+ };
3757
+ readonly lg: {
3758
+ readonly base: 16;
3759
+ readonly md: 16;
3760
+ readonly lg: 16;
3761
+ };
3762
+ readonly xl: {
3763
+ readonly base: 20;
3764
+ readonly md: 24;
3765
+ readonly lg: 24;
3766
+ };
3767
+ readonly '2xl': {
3768
+ readonly base: 28;
3769
+ readonly md: 28;
3770
+ readonly lg: 40;
3771
+ };
3535
3772
  readonly '0': 0;
3536
3773
  readonly '25': 2;
3537
3774
  readonly '50': 4;
@@ -3946,11 +4183,14 @@ export declare const themes: {
3946
4183
  readonly margin: 16;
3947
4184
  };
3948
4185
  readonly spacing: {
3949
- readonly lg: 20;
3950
- readonly md: 16;
3951
- readonly sm: 12;
3952
- readonly xl: 28;
3953
- readonly xs: 8;
4186
+ readonly '2xl': 28;
4187
+ readonly '2xs': 2;
4188
+ readonly lg: 16;
4189
+ readonly md: 12;
4190
+ readonly none: 0;
4191
+ readonly sm: 8;
4192
+ readonly xl: 20;
4193
+ readonly xs: 4;
3954
4194
  };
3955
4195
  };
3956
4196
  readonly tablet: {
@@ -3972,11 +4212,14 @@ export declare const themes: {
3972
4212
  readonly margin: 32;
3973
4213
  };
3974
4214
  readonly spacing: {
3975
- readonly lg: 24;
3976
- readonly md: 16;
3977
- readonly sm: 12;
3978
- readonly xl: 28;
3979
- readonly xs: 8;
4215
+ readonly '2xl': 28;
4216
+ readonly '2xs': 2;
4217
+ readonly lg: 16;
4218
+ readonly md: 12;
4219
+ readonly none: 0;
4220
+ readonly sm: 8;
4221
+ readonly xl: 24;
4222
+ readonly xs: 4;
3980
4223
  };
3981
4224
  };
3982
4225
  readonly desktop: {
@@ -3998,11 +4241,14 @@ export declare const themes: {
3998
4241
  readonly margin: 32;
3999
4242
  };
4000
4243
  readonly spacing: {
4001
- readonly lg: 24;
4002
- readonly md: 16;
4003
- readonly sm: 12;
4004
- readonly xl: 40;
4005
- readonly xs: 8;
4244
+ readonly '2xl': 40;
4245
+ readonly '2xs': 2;
4246
+ readonly lg: 16;
4247
+ readonly md: 12;
4248
+ readonly none: 0;
4249
+ readonly sm: 8;
4250
+ readonly xl: 24;
4251
+ readonly xs: 4;
4006
4252
  };
4007
4253
  };
4008
4254
  };
@@ -4169,36 +4415,56 @@ export declare const themes: {
4169
4415
  };
4170
4416
  };
4171
4417
  readonly space: {
4172
- readonly none: {};
4418
+ readonly none: {
4419
+ readonly gap: {
4420
+ readonly base: 0;
4421
+ readonly md: 0;
4422
+ readonly lg: 0;
4423
+ };
4424
+ };
4425
+ readonly '2xs': {
4426
+ readonly gap: {
4427
+ readonly base: 2;
4428
+ readonly md: 2;
4429
+ readonly lg: 2;
4430
+ };
4431
+ };
4173
4432
  readonly xs: {
4433
+ readonly gap: {
4434
+ readonly base: 4;
4435
+ readonly md: 4;
4436
+ readonly lg: 4;
4437
+ };
4438
+ };
4439
+ readonly sm: {
4174
4440
  readonly gap: {
4175
4441
  readonly base: 8;
4176
4442
  readonly md: 8;
4177
4443
  readonly lg: 8;
4178
4444
  };
4179
4445
  };
4180
- readonly sm: {
4446
+ readonly md: {
4181
4447
  readonly gap: {
4182
4448
  readonly base: 12;
4183
4449
  readonly md: 12;
4184
4450
  readonly lg: 12;
4185
4451
  };
4186
4452
  };
4187
- readonly md: {
4453
+ readonly lg: {
4188
4454
  readonly gap: {
4189
4455
  readonly base: 16;
4190
4456
  readonly md: 16;
4191
4457
  readonly lg: 16;
4192
4458
  };
4193
4459
  };
4194
- readonly lg: {
4460
+ readonly xl: {
4195
4461
  readonly gap: {
4196
4462
  readonly base: 20;
4197
4463
  readonly md: 24;
4198
4464
  readonly lg: 24;
4199
4465
  };
4200
4466
  };
4201
- readonly xl: {
4467
+ readonly '2xl': {
4202
4468
  readonly gap: {
4203
4469
  readonly base: 28;
4204
4470
  readonly md: 28;
@@ -4227,56 +4493,56 @@ export declare const themes: {
4227
4493
  readonly danger: {
4228
4494
  readonly border: "#ff7964";
4229
4495
  readonly foreground: {
4230
- readonly default: "#fcfbf2";
4496
+ readonly default: "#101010";
4231
4497
  readonly subtle: "#ff7964";
4232
4498
  };
4233
4499
  readonly surface: {
4234
- readonly default: "#de2612";
4235
- readonly subtle: "#521a16";
4500
+ readonly default: "#ff634a";
4501
+ readonly subtle: "#ffa89d";
4236
4502
  };
4237
4503
  };
4238
4504
  readonly functional: {
4239
4505
  readonly border: "#b2afae";
4240
4506
  readonly foreground: {
4241
- readonly default: "#fcfbf2";
4507
+ readonly default: "#101010";
4242
4508
  readonly subtle: "#b2afae";
4243
4509
  };
4244
4510
  readonly surface: {
4245
- readonly default: "#888888";
4246
- readonly subtle: "#232323";
4511
+ readonly default: "#919191";
4512
+ readonly subtle: "#d3d3d3";
4247
4513
  };
4248
4514
  };
4249
4515
  readonly info: {
4250
4516
  readonly border: "#6bb0ff";
4251
4517
  readonly foreground: {
4252
- readonly default: "#fcfbf2";
4518
+ readonly default: "#101010";
4253
4519
  readonly subtle: "#6bb0ff";
4254
4520
  };
4255
4521
  readonly surface: {
4256
- readonly default: "#1c6cd4";
4257
- readonly subtle: "#042455";
4522
+ readonly default: "#6bb0ff";
4523
+ readonly subtle: "#bcddff";
4258
4524
  };
4259
4525
  };
4260
4526
  readonly positive: {
4261
4527
  readonly border: "#58ca93";
4262
4528
  readonly foreground: {
4263
- readonly default: "#fcfbf2";
4529
+ readonly default: "#101010";
4264
4530
  readonly subtle: "#58ca93";
4265
4531
  };
4266
4532
  readonly surface: {
4267
- readonly default: "#0f834a";
4268
- readonly subtle: "#033d21";
4533
+ readonly default: "#36bf7d";
4534
+ readonly subtle: "#a2e2c3";
4269
4535
  };
4270
4536
  };
4271
4537
  readonly warning: {
4272
4538
  readonly border: "#ff9639";
4273
4539
  readonly foreground: {
4274
- readonly default: "#fcfbf2";
4540
+ readonly default: "#101010";
4275
4541
  readonly subtle: "#ff9639";
4276
4542
  };
4277
4543
  readonly surface: {
4278
- readonly default: "#cb5b00";
4279
- readonly subtle: "#6b2d00";
4544
+ readonly default: "#ff8010";
4545
+ readonly subtle: "#ffcca8";
4280
4546
  };
4281
4547
  };
4282
4548
  };
@@ -4348,14 +4614,14 @@ export declare const themes: {
4348
4614
  };
4349
4615
  readonly functional: {
4350
4616
  readonly border: {
4617
+ readonly inverted: "#f7f7f7";
4351
4618
  readonly strong: "#ebebeb";
4352
4619
  readonly subtle: "#ebebeb";
4353
- readonly inverted: "#f7f7f7";
4354
4620
  };
4355
4621
  readonly foreground: {
4622
+ readonly inverted: "#f7f7f7";
4356
4623
  readonly strong: "#fcfbf2";
4357
4624
  readonly subtle: "#ebebeb";
4358
- readonly inverted: "#f7f7f7";
4359
4625
  };
4360
4626
  readonly surface: {
4361
4627
  readonly strong: {
@@ -4367,8 +4633,8 @@ export declare const themes: {
4367
4633
  readonly active: "#4c4c4c";
4368
4634
  readonly hover: "#3a3837";
4369
4635
  readonly inverted: {
4370
- readonly active: "#d3d3d3";
4371
- readonly hover: "#ebebeb";
4636
+ readonly active: "#3a3837";
4637
+ readonly hover: "#3f3f3f";
4372
4638
  };
4373
4639
  };
4374
4640
  };
@@ -4453,6 +4719,8 @@ export declare const themes: {
4453
4719
  };
4454
4720
  };
4455
4721
  readonly text: {
4722
+ readonly affirmative: "#58ca93";
4723
+ readonly brand: "#af90de";
4456
4724
  readonly inverted: "#191917";
4457
4725
  readonly primary: "#ebebeb";
4458
4726
  readonly secondary: "#b2afae";