@lunar-js/lunar 0.0.1

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 (162) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/LICENSE +21 -0
  3. package/README.md +41 -0
  4. package/dist/components/composite/Card/Card.d.ts +64 -0
  5. package/dist/components/composite/Card/Card.d.ts.map +1 -0
  6. package/dist/components/composite/Card/Card.js +86 -0
  7. package/dist/components/composite/Card/Card.js.map +1 -0
  8. package/dist/components/composite/Card/card.css.js +62 -0
  9. package/dist/components/composite/Card/card.css.js.map +1 -0
  10. package/dist/components/composite/Dialog/Dialog.d.ts +45 -0
  11. package/dist/components/composite/Dialog/Dialog.d.ts.map +1 -0
  12. package/dist/components/composite/Dialog/Dialog.js +117 -0
  13. package/dist/components/composite/Dialog/Dialog.js.map +1 -0
  14. package/dist/components/composite/Dialog/DialogProvider.d.ts +11 -0
  15. package/dist/components/composite/Dialog/DialogProvider.d.ts.map +1 -0
  16. package/dist/components/composite/Dialog/DialogProvider.js +19 -0
  17. package/dist/components/composite/Dialog/DialogProvider.js.map +1 -0
  18. package/dist/components/composite/Dialog/dialog.css.js +104 -0
  19. package/dist/components/composite/Dialog/dialog.css.js.map +1 -0
  20. package/dist/components/primitives/Button/Button.d.ts +27 -0
  21. package/dist/components/primitives/Button/Button.d.ts.map +1 -0
  22. package/dist/components/primitives/Button/Button.js +25 -0
  23. package/dist/components/primitives/Button/Button.js.map +1 -0
  24. package/dist/components/primitives/Button/button.css.d.ts +16 -0
  25. package/dist/components/primitives/Button/button.css.d.ts.map +1 -0
  26. package/dist/components/primitives/Button/button.css.js +202 -0
  27. package/dist/components/primitives/Button/button.css.js.map +1 -0
  28. package/dist/components/primitives/Button/button.types.d.ts +8 -0
  29. package/dist/components/primitives/Button/button.types.d.ts.map +1 -0
  30. package/dist/components/primitives/Input/Input.d.ts +12 -0
  31. package/dist/components/primitives/Input/Input.d.ts.map +1 -0
  32. package/dist/components/primitives/Input/Input.js +21 -0
  33. package/dist/components/primitives/Input/Input.js.map +1 -0
  34. package/dist/components/primitives/Input/input.css.js +54 -0
  35. package/dist/components/primitives/Input/input.css.js.map +1 -0
  36. package/dist/components/primitives/Label/Label.d.ts +13 -0
  37. package/dist/components/primitives/Label/Label.d.ts.map +1 -0
  38. package/dist/components/primitives/Label/Label.js +22 -0
  39. package/dist/components/primitives/Label/Label.js.map +1 -0
  40. package/dist/components/primitives/Label/label.css.js +35 -0
  41. package/dist/components/primitives/Label/label.css.js.map +1 -0
  42. package/dist/components/primitives/Typography/Text.d.ts +40 -0
  43. package/dist/components/primitives/Typography/Text.d.ts.map +1 -0
  44. package/dist/components/primitives/Typography/Text.js +28 -0
  45. package/dist/components/primitives/Typography/Text.js.map +1 -0
  46. package/dist/components/primitives/Typography/text.css.d.ts +31 -0
  47. package/dist/components/primitives/Typography/text.css.d.ts.map +1 -0
  48. package/dist/components/primitives/Typography/text.css.js +1019 -0
  49. package/dist/components/primitives/Typography/text.css.js.map +1 -0
  50. package/dist/components/primitives/Typography/text.types.d.ts +10 -0
  51. package/dist/components/primitives/Typography/text.types.d.ts.map +1 -0
  52. package/dist/constants/theming.d.ts +10 -0
  53. package/dist/constants/theming.d.ts.map +1 -0
  54. package/dist/constants/theming.js +11 -0
  55. package/dist/constants/theming.js.map +1 -0
  56. package/dist/hooks/dialog.d.ts +7 -0
  57. package/dist/hooks/dialog.d.ts.map +1 -0
  58. package/dist/hooks/dialog.js +14 -0
  59. package/dist/hooks/dialog.js.map +1 -0
  60. package/dist/hooks/refs.js +23 -0
  61. package/dist/hooks/refs.js.map +1 -0
  62. package/dist/hooks/theme.d.ts +7 -0
  63. package/dist/hooks/theme.d.ts.map +1 -0
  64. package/dist/hooks/theme.js +14 -0
  65. package/dist/hooks/theme.js.map +1 -0
  66. package/dist/hooks/utils.js +6 -0
  67. package/dist/hooks/utils.js.map +1 -0
  68. package/dist/index.d.ts +20 -0
  69. package/dist/index.js +20 -0
  70. package/dist/styles.css.d.ts +4 -0
  71. package/dist/styles.css.js +5 -0
  72. package/dist/themes/ThemeProvider/ThemeProvider.d.ts +19 -0
  73. package/dist/themes/ThemeProvider/ThemeProvider.d.ts.map +1 -0
  74. package/dist/themes/ThemeProvider/ThemeProvider.js +25 -0
  75. package/dist/themes/ThemeProvider/ThemeProvider.js.map +1 -0
  76. package/dist/themes/regal.css.d.ts +5 -0
  77. package/dist/themes/regal.css.d.ts.map +1 -0
  78. package/dist/themes/regal.css.js +720 -0
  79. package/dist/themes/regal.css.js.map +1 -0
  80. package/dist/themes/styles/color-scheme.css.d.ts +6 -0
  81. package/dist/themes/styles/color-scheme.css.d.ts.map +1 -0
  82. package/dist/themes/styles/color-scheme.css.js +9 -0
  83. package/dist/themes/styles/color-scheme.css.js.map +1 -0
  84. package/dist/themes/styles/utilities.d.ts +125 -0
  85. package/dist/themes/styles/utilities.d.ts.map +1 -0
  86. package/dist/themes/styles/utilities.js +129 -0
  87. package/dist/themes/styles/utilities.js.map +1 -0
  88. package/dist/themes/tokens/primitives/borders.d.ts +22 -0
  89. package/dist/themes/tokens/primitives/borders.d.ts.map +1 -0
  90. package/dist/themes/tokens/primitives/borders.js +23 -0
  91. package/dist/themes/tokens/primitives/borders.js.map +1 -0
  92. package/dist/themes/tokens/primitives/colors.d.ts +100 -0
  93. package/dist/themes/tokens/primitives/colors.d.ts.map +1 -0
  94. package/dist/themes/tokens/primitives/colors.js +101 -0
  95. package/dist/themes/tokens/primitives/colors.js.map +1 -0
  96. package/dist/themes/tokens/primitives/shadows.d.ts +14 -0
  97. package/dist/themes/tokens/primitives/shadows.d.ts.map +1 -0
  98. package/dist/themes/tokens/primitives/shadows.js +15 -0
  99. package/dist/themes/tokens/primitives/shadows.js.map +1 -0
  100. package/dist/themes/tokens/primitives/spacing.d.ts +41 -0
  101. package/dist/themes/tokens/primitives/spacing.d.ts.map +1 -0
  102. package/dist/themes/tokens/primitives/spacing.js +42 -0
  103. package/dist/themes/tokens/primitives/spacing.js.map +1 -0
  104. package/dist/themes/tokens/primitives/typography.d.ts +105 -0
  105. package/dist/themes/tokens/primitives/typography.d.ts.map +1 -0
  106. package/dist/themes/tokens/primitives/typography.js +106 -0
  107. package/dist/themes/tokens/primitives/typography.js.map +1 -0
  108. package/dist/themes/tokens/semantic/borders.js +23 -0
  109. package/dist/themes/tokens/semantic/borders.js.map +1 -0
  110. package/dist/themes/tokens/semantic/colors.js +145 -0
  111. package/dist/themes/tokens/semantic/colors.js.map +1 -0
  112. package/dist/themes/tokens/semantic/shadows.js +15 -0
  113. package/dist/themes/tokens/semantic/shadows.js.map +1 -0
  114. package/dist/themes/tokens/semantic/spacing.js +70 -0
  115. package/dist/themes/tokens/semantic/spacing.js.map +1 -0
  116. package/dist/themes/tokens/semantic/typography.js +34 -0
  117. package/dist/themes/tokens/semantic/typography.js.map +1 -0
  118. package/dist/themes/tokens/tokens.css.d.ts +714 -0
  119. package/dist/themes/tokens/tokens.css.d.ts.map +1 -0
  120. package/dist/themes/tokens/tokens.css.js +36 -0
  121. package/dist/themes/tokens/tokens.css.js.map +1 -0
  122. package/dist/types/theming.d.ts +7 -0
  123. package/dist/types/theming.d.ts.map +1 -0
  124. package/package.json +80 -0
  125. package/src/components/composite/Card/Card.tsx +62 -0
  126. package/src/components/composite/Card/card.css.ts +79 -0
  127. package/src/components/composite/Dialog/Dialog.tsx +150 -0
  128. package/src/components/composite/Dialog/DialogProvider.tsx +21 -0
  129. package/src/components/composite/Dialog/dialog.css.ts +137 -0
  130. package/src/components/primitives/Button/Button.tsx +35 -0
  131. package/src/components/primitives/Button/button.css.ts +236 -0
  132. package/src/components/primitives/Button/button.types.ts +23 -0
  133. package/src/components/primitives/Input/Input.tsx +13 -0
  134. package/src/components/primitives/Input/input.css.ts +64 -0
  135. package/src/components/primitives/Label/Label.tsx +15 -0
  136. package/src/components/primitives/Label/label.css.ts +39 -0
  137. package/src/components/primitives/Typography/Text.tsx +55 -0
  138. package/src/components/primitives/Typography/text.css.ts +1091 -0
  139. package/src/components/primitives/Typography/text.types.ts +55 -0
  140. package/src/constants/theming.ts +16 -0
  141. package/src/hooks/dialog.ts +15 -0
  142. package/src/hooks/refs.ts +34 -0
  143. package/src/hooks/theme.ts +15 -0
  144. package/src/hooks/utils.ts +3 -0
  145. package/src/index.css.ts +26 -0
  146. package/src/index.ts +111 -0
  147. package/src/themes/ThemeProvider/ThemeProvider.tsx +39 -0
  148. package/src/themes/regal.css.ts +741 -0
  149. package/src/themes/styles/color-scheme.css.ts +11 -0
  150. package/src/themes/styles/utilities.ts +140 -0
  151. package/src/themes/tokens/primitives/borders.ts +21 -0
  152. package/src/themes/tokens/primitives/colors.ts +114 -0
  153. package/src/themes/tokens/primitives/shadows.ts +12 -0
  154. package/src/themes/tokens/primitives/spacing.ts +39 -0
  155. package/src/themes/tokens/primitives/typography.ts +125 -0
  156. package/src/themes/tokens/semantic/borders.ts +21 -0
  157. package/src/themes/tokens/semantic/colors.ts +166 -0
  158. package/src/themes/tokens/semantic/shadows.ts +12 -0
  159. package/src/themes/tokens/semantic/spacing.ts +75 -0
  160. package/src/themes/tokens/semantic/typography.ts +35 -0
  161. package/src/themes/tokens/tokens.css.ts +42 -0
  162. package/src/types/theming.ts +14 -0
@@ -0,0 +1,720 @@
1
+ import { SPACING } from "./tokens/primitives/spacing.js";
2
+ import { themeContract } from "./tokens/tokens.css.js";
3
+ import { COLORS__BLUE, COLORS__GOLD, COLORS__GREEN, COLORS__PEARL, COLORS__PURE, COLORS__RED, COLORS__YELLOW } from "./tokens/primitives/colors.js";
4
+ import { BORDER_RADIUS, BORDER_WIDTH } from "./tokens/primitives/borders.js";
5
+ import { BOX_SHADOW } from "./tokens/primitives/shadows.js";
6
+ import { FONT_FAMILY, FONT_SIZE, FONT_WEIGHT, LETTER_SPACING, LINE_HEIGHT__RELAXED, LINE_HEIGHT__TIGHT } from "./tokens/primitives/typography.js";
7
+ import { createTheme, style } from "@vanilla-extract/css";
8
+
9
+ //#region src/themes/regal.css.ts
10
+ const regalTheme = style([createTheme(themeContract, {
11
+ colors: {
12
+ action: {
13
+ bg: {
14
+ primary: {
15
+ default: `light-dark(oklch(${COLORS__GOLD[300]}), oklch(${COLORS__GOLD[300]}))`,
16
+ hover: `light-dark(oklch(${COLORS__GOLD[300]} / 0.9), oklch(${COLORS__GOLD[300]} / 0.9))`,
17
+ active: `light-dark(oklch(${COLORS__GOLD[300]} / 0.8), oklch(${COLORS__GOLD[300]} / 0.8))`,
18
+ disabled: `light-dark(oklch(${COLORS__GOLD[300]} / 0.4), oklch(${COLORS__GOLD[300]} / 0.4))`
19
+ },
20
+ secondary: {
21
+ default: `light-dark(oklch(${COLORS__PEARL[400]}), oklch(${COLORS__PEARL[600]}))`,
22
+ hover: `light-dark(oklch(${COLORS__PEARL[400]} / 0.9), oklch(${COLORS__PEARL[600]} / 0.9))`,
23
+ active: `light-dark(oklch(${COLORS__PEARL[400]} / 0.8), oklch(${COLORS__PEARL[600]} / 0.8))`,
24
+ disabled: `light-dark(oklch(${COLORS__PEARL[400]} / 0.4), oklch(${COLORS__PEARL[600]} / 0.4))`
25
+ },
26
+ outline: {
27
+ default: `light-dark(oklch(${COLORS__PEARL[400]} / 0.0125), oklch(${COLORS__PEARL[700]} / 0.0125))`,
28
+ hover: `light-dark(oklch(${COLORS__PEARL[400]} / 0.3), oklch(${COLORS__PEARL[700]} / 0.3))`,
29
+ active: `light-dark(oklch(${COLORS__PEARL[400]} / 0.05), oklch(${COLORS__PEARL[700]} / 0.05))`,
30
+ disabled: `light-dark(oklch(${COLORS__PEARL[400]} / 0.025), oklch(${COLORS__PEARL[700]} / 0.025))`
31
+ }
32
+ },
33
+ color: {
34
+ primary: `light-dark(oklch(${COLORS__PEARL[950]}), oklch(${COLORS__PEARL[950]}))`,
35
+ outline: { disabled: `light-dark(oklch(${COLORS__PEARL[400]} / 0.4), oklch(${COLORS__PEARL[700]} / 0.4))` }
36
+ },
37
+ destructive: {
38
+ default: `light-dark(oklch(${COLORS__RED[600]}), oklch(${COLORS__RED[400]}))`,
39
+ hover: `light-dark(oklch(${COLORS__RED[600]} / 0.9), oklch(${COLORS__RED[300]} / 0.9))`,
40
+ active: `light-dark(oklch(${COLORS__RED[600]} / 0.8), oklch(${COLORS__RED[300]} / 0.8))`,
41
+ disabled: `light-dark(oklch(${COLORS__RED[600]} / 0.4), oklch(${COLORS__RED[300]} / 0.4))`
42
+ },
43
+ ghost: {
44
+ default: `light-dark(${COLORS__PURE.transparent}, ${COLORS__PURE.transparent})`,
45
+ hover: `light-dark(oklch(${COLORS__GOLD[300]} / 0.5), oklch(${COLORS__GOLD[300]} / 0.5))`,
46
+ active: `light-dark(oklch(${COLORS__GOLD[300]} / 0.6), oklch(${COLORS__GOLD[300]} / 0.6))`,
47
+ disabled: `light-dark(transparent, transparent)`
48
+ }
49
+ },
50
+ border: {
51
+ default: `light-dark(oklch(${COLORS__PEARL[300]}), oklch(${COLORS__PEARL[700]}))`,
52
+ subtle: `light-dark(oklch(${COLORS__PEARL[200]}), oklch(${COLORS__PEARL[800]}))`,
53
+ strong: `light-dark(oklch(${COLORS__PEARL[400]}), oklch(${COLORS__PEARL[600]}))`,
54
+ interactive: {
55
+ default: `light-dark(oklch(${COLORS__PEARL[900]} / 0.9), oklch(${COLORS__PEARL[400]}))`,
56
+ hover: `light-dark(oklch(${COLORS__PEARL[900]}), oklch(${COLORS__PEARL[400]} / 0.9))`,
57
+ active: `light-dark(oklch(${COLORS__PEARL[900]} / 0.8), oklch(${COLORS__PEARL[400]} / 0.8))`
58
+ },
59
+ focus: `light-dark(oklch(${COLORS__PEARL[900]}), oklch(${COLORS__PEARL[400]}))`,
60
+ success: `light-dark(oklch(${COLORS__GREEN[500]}), oklch(${COLORS__GREEN[400]}))`,
61
+ warning: `light-dark(oklch(${COLORS__YELLOW[500]}), oklch(${COLORS__YELLOW[400]}))`,
62
+ error: `light-dark(oklch(${COLORS__RED[500]}), oklch(${COLORS__RED[400]}))`,
63
+ info: `light-dark(oklch(${COLORS__BLUE[500]}), oklch(${COLORS__BLUE[400]}))`,
64
+ action: {
65
+ primary: `light-dark(oklch(${COLORS__GOLD[500]}), oklch(${COLORS__GOLD[400]}))`,
66
+ secondary: `light-dark(oklch(${COLORS__GOLD[500]}), oklch(${COLORS__GOLD[400]}))`,
67
+ destructive: `light-dark(oklch(${COLORS__RED[500]}), oklch(${COLORS__RED[400]}))`,
68
+ disabled: `light-dark(oklch(${COLORS__GOLD[300]} / 0.4), oklch(${COLORS__GOLD[300]} / 0.4))`
69
+ }
70
+ },
71
+ text: {
72
+ primary: `light-dark(oklch(${COLORS__PEARL[900]}), oklch(${COLORS__PEARL[50]}))`,
73
+ secondary: `light-dark(oklch(${COLORS__PEARL[700]}), oklch(${COLORS__PEARL[200]}))`,
74
+ tertiary: `light-dark(oklch(${COLORS__PEARL[600]}), oklch(${COLORS__PEARL[300]}))`,
75
+ interactive: {
76
+ default: `light-dark(oklch(${COLORS__PEARL[900]} / 0.9), oklch(${COLORS__PEARL[300]}))`,
77
+ hover: `light-dark(oklch(${COLORS__PEARL[900]}), oklch(${COLORS__PEARL[300]} / 0.9))`,
78
+ active: `light-dark(oklch(${COLORS__PEARL[900]} / 0.8), oklch(${COLORS__PEARL[300]} / 0.9))`
79
+ },
80
+ success: `light-dark(oklch(${COLORS__GREEN[700]}), oklch(${COLORS__GREEN[300]}))`,
81
+ warning: `light-dark(oklch(${COLORS__YELLOW[700]}), oklch(${COLORS__YELLOW[300]}))`,
82
+ error: `light-dark(oklch(${COLORS__RED[700]}), oklch(${COLORS__RED[300]}))`,
83
+ info: `light-dark(oklch(${COLORS__BLUE[700]}), oklch(${COLORS__BLUE[300]}))`,
84
+ inverse: `light-dark(oklch(${COLORS__PEARL[50]}), oklch(${COLORS__PEARL[950]}))`,
85
+ disabled: `light-dark(oklch(${COLORS__PEARL[500]}), oklch(${COLORS__PEARL[500]}))`
86
+ },
87
+ surface: { bg: {
88
+ primary: `light-dark(oklch(${COLORS__PEARL[50]}), oklch(${COLORS__PEARL[900]}))`,
89
+ secondary: `light-dark(oklch(${COLORS__PEARL[50]}), oklch(${COLORS__PEARL[800]}))`,
90
+ tertiary: `light-dark(oklch(${COLORS__PEARL[200]}), oklch(${COLORS__PEARL[700]}))`,
91
+ interactive: {
92
+ default: `light-dark(transparent, transparent)`,
93
+ hover: `light-dark(color-mix(in oklch, oklch(${COLORS__GOLD[50]}) 30%, transparent), color-mix(in oklch, oklch(${COLORS__GOLD[800]}) 20%, transparent))`,
94
+ active: `light-dark(color-mix(in oklch, oklch(${COLORS__GOLD[100]}) 40%, transparent), color-mix(in oklch, oklch(${COLORS__GOLD[700]}) 30%, transparent))`
95
+ },
96
+ success: `light-dark(color-mix(in oklch, oklch(${COLORS__GREEN[50]}) 50%, transparent), color-mix(in oklch, oklch(${COLORS__GREEN[900]}) 30%, transparent))`,
97
+ warning: `light-dark(color-mix(in oklch, oklch(${COLORS__YELLOW[50]}) 50%, transparent), color-mix(in oklch, oklch(${COLORS__YELLOW[900]}) 30%, transparent))`,
98
+ error: `light-dark(color-mix(in oklch, oklch(${COLORS__RED[50]}) 50%, transparent), color-mix(in oklch, oklch(${COLORS__RED[900]}) 30%, transparent))`,
99
+ info: `light-dark(color-mix(in oklch, oklch(${COLORS__BLUE[50]}) 50%, transparent), color-mix(in oklch, oklch(${COLORS__BLUE[900]}) 30%, transparent))`,
100
+ overlay: `light-dark(color-mix(in oklch, oklch(${COLORS__PEARL[900]}) 50%, transparent), color-mix(in oklch, oklch(${COLORS__PEARL[950]}) 80%, transparent))`,
101
+ disabled: `light-dark(oklch(${COLORS__PEARL[100]}), oklch(${COLORS__PEARL[900]}))`,
102
+ inverse: `light-dark(oklch(${COLORS__PEARL[900]}), oklch(${COLORS__PEARL[50]}))`
103
+ } },
104
+ icon: {
105
+ primary: `light-dark(oklch(${COLORS__PEARL[700]}), oklch(${COLORS__PEARL[200]}))`,
106
+ secondary: `light-dark(oklch(${COLORS__PEARL[600]}), oklch(${COLORS__PEARL[300]}))`,
107
+ tertiary: `light-dark(oklch(${COLORS__PEARL[500]}), oklch(${COLORS__PEARL[400]}))`,
108
+ interactive: {
109
+ default: `light-dark(oklch(${COLORS__GOLD[600]}), oklch(${COLORS__GOLD[400]}))`,
110
+ hover: `light-dark(color-mix(in oklch, oklch(${COLORS__GOLD[600]}) 90%, transparent), color-mix(in oklch, oklch(${COLORS__GOLD[400]}) 90%, transparent))`,
111
+ active: `light-dark(color-mix(in oklch, oklch(${COLORS__GOLD[600]}) 80%, transparent), color-mix(in oklch, oklch(${COLORS__GOLD[400]}) 80%, transparent))`
112
+ },
113
+ success: `light-dark(oklch(${COLORS__GREEN[600]}), oklch(${COLORS__GREEN[400]}))`,
114
+ warning: `light-dark(oklch(${COLORS__YELLOW[600]}), oklch(${COLORS__YELLOW[400]}))`,
115
+ error: `light-dark(oklch(${COLORS__RED[600]}), oklch(${COLORS__RED[400]}))`,
116
+ info: `light-dark(oklch(${COLORS__BLUE[600]}), oklch(${COLORS__BLUE[400]}))`,
117
+ inverse: `light-dark(oklch(${COLORS__PEARL[200]}), oklch(${COLORS__PEARL[700]}))`,
118
+ disabled: `light-dark(oklch(${COLORS__PEARL[400]}), oklch(${COLORS__PEARL[600]}))`
119
+ },
120
+ input: {
121
+ bg: {
122
+ default: `light-dark(oklch(${COLORS__PEARL[50]}), oklch(${COLORS__PEARL[900]}))`,
123
+ hover: `light-dark(oklch(${COLORS__PEARL[100]}), oklch(${COLORS__PEARL[800]}))`,
124
+ focus: `light-dark(oklch(${COLORS__PEARL[50]}), oklch(${COLORS__PEARL[900]}))`,
125
+ disabled: `light-dark(oklch(${COLORS__PEARL[100]}), oklch(${COLORS__PEARL[900]}))`,
126
+ error: `light-dark(color-mix(in oklch, oklch(${COLORS__RED[50]}) 30%, transparent), color-mix(in oklch, oklch(${COLORS__RED[900]}) 20%, transparent))`
127
+ },
128
+ border: {
129
+ default: `light-dark(oklch(${COLORS__PEARL[300]}), oklch(${COLORS__PEARL[700]}))`,
130
+ hover: `light-dark(oklch(${COLORS__PEARL[400]}), oklch(${COLORS__PEARL[600]}))`,
131
+ focus: `light-dark(oklch(${COLORS__GOLD[500]}), oklch(${COLORS__GOLD[400]}))`,
132
+ error: `light-dark(oklch(${COLORS__RED[500]}), oklch(${COLORS__RED[400]}))`,
133
+ disabled: `light-dark(oklch(${COLORS__PEARL[200]}), oklch(${COLORS__PEARL[800]}))`
134
+ },
135
+ text: {
136
+ default: `light-dark(oklch(${COLORS__PEARL[900]}), oklch(${COLORS__PEARL[50]}))`,
137
+ placeholder: `light-dark(oklch(${COLORS__PEARL[500]}), oklch(${COLORS__PEARL[500]}))`,
138
+ disabled: `light-dark(oklch(${COLORS__PEARL[400]}), oklch(${COLORS__PEARL[600]}))`
139
+ }
140
+ },
141
+ shadow: {
142
+ default: `light-dark(color-mix(in oklch, oklch(${COLORS__PEARL[900]}) 15%, transparent), color-mix(in oklch, oklch(${COLORS__PEARL[950]}) 40%, transparent))`,
143
+ subtle: `light-dark(color-mix(in oklch, oklch(${COLORS__PEARL[900]}) 8%, transparent), color-mix(in oklch, oklch(${COLORS__PEARL[950]}) 20%, transparent))`,
144
+ strong: `light-dark(color-mix(in oklch, oklch(${COLORS__PEARL[900]}) 25%, transparent), color-mix(in oklch, oklch(${COLORS__PEARL[950]}) 60%, transparent))`,
145
+ interactive: `light-dark(oklch(${COLORS__GOLD[600]} / 0.4), oklch(${COLORS__GOLD[200]} / 0.4))`,
146
+ destructive: `light-dark(oklch(${COLORS__RED[600]} / 0.4), oklch(${COLORS__RED[400]} / 0.4))`,
147
+ focus: `light-dark(color-mix(in oklch, oklch(${COLORS__GOLD[500]}) 25%, transparent), color-mix(in oklch, oklch(${COLORS__GOLD[700]}) 40%, transparent))`,
148
+ success: `light-dark(color-mix(in oklch, oklch(${COLORS__GREEN[500]}) 20%, transparent), color-mix(in oklch, oklch(${COLORS__GREEN[800]}) 30%, transparent))`,
149
+ warning: `light-dark(color-mix(in oklch, oklch(${COLORS__YELLOW[500]}) 20%, transparent), color-mix(in oklch, oklch(${COLORS__YELLOW[800]}) 30%, transparent))`,
150
+ error: `light-dark(color-mix(in oklch, oklch(${COLORS__RED[500]}) 20%, transparent), color-mix(in oklch, oklch(${COLORS__RED[800]}) 30%, transparent))`
151
+ }
152
+ },
153
+ spacing: {
154
+ 0: SPACING[0],
155
+ px: SPACING.px,
156
+ .5: SPACING[.5],
157
+ 1: SPACING[1],
158
+ 1.5: SPACING[1.5],
159
+ 2: SPACING[2],
160
+ 2.5: SPACING[2.5],
161
+ 3: SPACING[3],
162
+ 3.5: SPACING[3.5],
163
+ 4: SPACING[4],
164
+ 5: SPACING[5],
165
+ 6: SPACING[6],
166
+ 7: SPACING[7],
167
+ 8: SPACING[8],
168
+ 9: SPACING[9],
169
+ 10: SPACING[10],
170
+ 11: SPACING[11],
171
+ 12: SPACING[12],
172
+ 14: SPACING[14],
173
+ 16: SPACING[16],
174
+ 20: SPACING[20],
175
+ 24: SPACING[24],
176
+ 28: SPACING[28],
177
+ 32: SPACING[32],
178
+ 36: SPACING[36],
179
+ 40: SPACING[40],
180
+ 44: SPACING[44],
181
+ 48: SPACING[48],
182
+ 52: SPACING[52],
183
+ 56: SPACING[56],
184
+ 60: SPACING[60],
185
+ 64: SPACING[64],
186
+ 72: SPACING[72],
187
+ 80: SPACING[80],
188
+ 96: SPACING[96]
189
+ },
190
+ borderRadius: {
191
+ none: BORDER_RADIUS.none,
192
+ sm: BORDER_RADIUS.sm,
193
+ base: BORDER_RADIUS.base,
194
+ md: BORDER_RADIUS.md,
195
+ lg: BORDER_RADIUS.lg,
196
+ xl: BORDER_RADIUS.xl,
197
+ "2xl": BORDER_RADIUS["2xl"],
198
+ "3xl": BORDER_RADIUS["3xl"],
199
+ full: BORDER_RADIUS.full
200
+ },
201
+ borderWidth: {
202
+ 0: BORDER_WIDTH[0],
203
+ 1: BORDER_WIDTH[1],
204
+ 2: BORDER_WIDTH[2],
205
+ 4: BORDER_WIDTH[4],
206
+ 8: BORDER_WIDTH[8]
207
+ },
208
+ boxShadow: {
209
+ none: BOX_SHADOW.none,
210
+ sm: BOX_SHADOW.sm,
211
+ base: BOX_SHADOW.base,
212
+ md: BOX_SHADOW.md,
213
+ lg: BOX_SHADOW.lg,
214
+ xl: BOX_SHADOW.xl,
215
+ "2xl": BOX_SHADOW["2xl"],
216
+ inner: BOX_SHADOW.inner
217
+ },
218
+ typography: {
219
+ fontFamily: { base: FONT_FAMILY.sans.fallback },
220
+ display: {
221
+ xl: {
222
+ light: {
223
+ fontWeight: FONT_WEIGHT.extralight,
224
+ fontSize: FONT_SIZE["7xl"],
225
+ lineHeight: LINE_HEIGHT__TIGHT["7xl"],
226
+ letterSpacing: LETTER_SPACING.tight
227
+ },
228
+ medium: {
229
+ fontWeight: FONT_WEIGHT.normal,
230
+ fontSize: FONT_SIZE["7xl"],
231
+ lineHeight: LINE_HEIGHT__TIGHT["7xl"],
232
+ letterSpacing: LETTER_SPACING.tight
233
+ },
234
+ bold: {
235
+ fontWeight: FONT_WEIGHT.extrabold,
236
+ fontSize: FONT_SIZE["7xl"],
237
+ lineHeight: LINE_HEIGHT__TIGHT["7xl"],
238
+ letterSpacing: LETTER_SPACING.tight
239
+ }
240
+ },
241
+ lg: {
242
+ light: {
243
+ fontWeight: FONT_WEIGHT.extralight,
244
+ fontSize: FONT_SIZE["6xl"],
245
+ lineHeight: LINE_HEIGHT__TIGHT["6xl"],
246
+ letterSpacing: LETTER_SPACING.tight
247
+ },
248
+ medium: {
249
+ fontWeight: FONT_WEIGHT.normal,
250
+ fontSize: FONT_SIZE["6xl"],
251
+ lineHeight: LINE_HEIGHT__TIGHT["6xl"],
252
+ letterSpacing: LETTER_SPACING.tight
253
+ },
254
+ bold: {
255
+ fontWeight: FONT_WEIGHT.extrabold,
256
+ fontSize: FONT_SIZE["6xl"],
257
+ lineHeight: LINE_HEIGHT__TIGHT["6xl"],
258
+ letterSpacing: LETTER_SPACING.tight
259
+ }
260
+ },
261
+ md: {
262
+ light: {
263
+ fontWeight: FONT_WEIGHT.extralight,
264
+ fontSize: FONT_SIZE["5xl"],
265
+ lineHeight: LINE_HEIGHT__TIGHT["5xl"],
266
+ letterSpacing: LETTER_SPACING.tight
267
+ },
268
+ medium: {
269
+ fontWeight: FONT_WEIGHT.normal,
270
+ fontSize: FONT_SIZE["5xl"],
271
+ lineHeight: LINE_HEIGHT__TIGHT["5xl"],
272
+ letterSpacing: LETTER_SPACING.tight
273
+ },
274
+ bold: {
275
+ fontWeight: FONT_WEIGHT.extrabold,
276
+ fontSize: FONT_SIZE["5xl"],
277
+ lineHeight: LINE_HEIGHT__TIGHT["5xl"],
278
+ letterSpacing: LETTER_SPACING.tight
279
+ }
280
+ },
281
+ sm: {
282
+ light: {
283
+ fontWeight: FONT_WEIGHT.extralight,
284
+ fontSize: FONT_SIZE["4xl"],
285
+ lineHeight: LINE_HEIGHT__TIGHT["4xl"],
286
+ letterSpacing: LETTER_SPACING.tight
287
+ },
288
+ medium: {
289
+ fontWeight: FONT_WEIGHT.normal,
290
+ fontSize: FONT_SIZE["4xl"],
291
+ lineHeight: LINE_HEIGHT__TIGHT["4xl"],
292
+ letterSpacing: LETTER_SPACING.tight
293
+ },
294
+ bold: {
295
+ fontWeight: FONT_WEIGHT.extrabold,
296
+ fontSize: FONT_SIZE["4xl"],
297
+ lineHeight: LINE_HEIGHT__TIGHT["4xl"],
298
+ letterSpacing: LETTER_SPACING.tight
299
+ }
300
+ }
301
+ },
302
+ heading: {
303
+ xl: {
304
+ light: {
305
+ fontWeight: FONT_WEIGHT.light,
306
+ fontSize: FONT_SIZE["3xl"],
307
+ lineHeight: LINE_HEIGHT__TIGHT["3xl"],
308
+ letterSpacing: LETTER_SPACING.normal
309
+ },
310
+ medium: {
311
+ fontWeight: FONT_WEIGHT.medium,
312
+ fontSize: FONT_SIZE["3xl"],
313
+ lineHeight: LINE_HEIGHT__TIGHT["3xl"],
314
+ letterSpacing: LETTER_SPACING.normal
315
+ },
316
+ bold: {
317
+ fontWeight: FONT_WEIGHT.bold,
318
+ fontSize: FONT_SIZE["3xl"],
319
+ lineHeight: LINE_HEIGHT__TIGHT["3xl"],
320
+ letterSpacing: LETTER_SPACING.normal
321
+ }
322
+ },
323
+ lg: {
324
+ light: {
325
+ fontWeight: FONT_WEIGHT.light,
326
+ fontSize: FONT_SIZE["2xl"],
327
+ lineHeight: LINE_HEIGHT__TIGHT["2xl"],
328
+ letterSpacing: LETTER_SPACING.normal
329
+ },
330
+ medium: {
331
+ fontWeight: FONT_WEIGHT.medium,
332
+ fontSize: FONT_SIZE["2xl"],
333
+ lineHeight: LINE_HEIGHT__TIGHT["2xl"],
334
+ letterSpacing: LETTER_SPACING.normal
335
+ },
336
+ bold: {
337
+ fontWeight: FONT_WEIGHT.bold,
338
+ fontSize: FONT_SIZE["2xl"],
339
+ lineHeight: LINE_HEIGHT__TIGHT["2xl"],
340
+ letterSpacing: LETTER_SPACING.normal
341
+ }
342
+ },
343
+ md: {
344
+ light: {
345
+ fontWeight: FONT_WEIGHT.light,
346
+ fontSize: FONT_SIZE.xl,
347
+ lineHeight: LINE_HEIGHT__TIGHT.xl,
348
+ letterSpacing: LETTER_SPACING.normal
349
+ },
350
+ medium: {
351
+ fontWeight: FONT_WEIGHT.medium,
352
+ fontSize: FONT_SIZE.xl,
353
+ lineHeight: LINE_HEIGHT__TIGHT.xl,
354
+ letterSpacing: LETTER_SPACING.normal
355
+ },
356
+ bold: {
357
+ fontWeight: FONT_WEIGHT.bold,
358
+ fontSize: FONT_SIZE.xl,
359
+ lineHeight: LINE_HEIGHT__TIGHT.xl,
360
+ letterSpacing: LETTER_SPACING.normal
361
+ }
362
+ },
363
+ sm: {
364
+ light: {
365
+ fontWeight: FONT_WEIGHT.light,
366
+ fontSize: FONT_SIZE.lg,
367
+ lineHeight: LINE_HEIGHT__TIGHT.lg,
368
+ letterSpacing: LETTER_SPACING.normal
369
+ },
370
+ medium: {
371
+ fontWeight: FONT_WEIGHT.medium,
372
+ fontSize: FONT_SIZE.lg,
373
+ lineHeight: LINE_HEIGHT__TIGHT.lg,
374
+ letterSpacing: LETTER_SPACING.normal
375
+ },
376
+ bold: {
377
+ fontWeight: FONT_WEIGHT.bold,
378
+ fontSize: FONT_SIZE.lg,
379
+ lineHeight: LINE_HEIGHT__TIGHT.lg,
380
+ letterSpacing: LETTER_SPACING.normal
381
+ }
382
+ }
383
+ },
384
+ subheading: {
385
+ xl: {
386
+ light: {
387
+ fontWeight: FONT_WEIGHT.light,
388
+ fontSize: FONT_SIZE.lg,
389
+ lineHeight: LINE_HEIGHT__TIGHT.lg,
390
+ letterSpacing: LETTER_SPACING.wide
391
+ },
392
+ medium: {
393
+ fontWeight: FONT_WEIGHT.medium,
394
+ fontSize: FONT_SIZE.lg,
395
+ lineHeight: LINE_HEIGHT__TIGHT.lg,
396
+ letterSpacing: LETTER_SPACING.wide
397
+ },
398
+ bold: {
399
+ fontWeight: FONT_WEIGHT.bold,
400
+ fontSize: FONT_SIZE.lg,
401
+ lineHeight: LINE_HEIGHT__TIGHT.lg,
402
+ letterSpacing: LETTER_SPACING.wide
403
+ }
404
+ },
405
+ lg: {
406
+ light: {
407
+ fontWeight: FONT_WEIGHT.light,
408
+ fontSize: FONT_SIZE.base,
409
+ lineHeight: LINE_HEIGHT__TIGHT.base,
410
+ letterSpacing: LETTER_SPACING.wide
411
+ },
412
+ medium: {
413
+ fontWeight: FONT_WEIGHT.medium,
414
+ fontSize: FONT_SIZE.base,
415
+ lineHeight: LINE_HEIGHT__TIGHT.base,
416
+ letterSpacing: LETTER_SPACING.wide
417
+ },
418
+ bold: {
419
+ fontWeight: FONT_WEIGHT.bold,
420
+ fontSize: FONT_SIZE.base,
421
+ lineHeight: LINE_HEIGHT__TIGHT.base,
422
+ letterSpacing: LETTER_SPACING.wide
423
+ }
424
+ },
425
+ md: {
426
+ light: {
427
+ fontWeight: FONT_WEIGHT.light,
428
+ fontSize: FONT_SIZE.sm,
429
+ lineHeight: LINE_HEIGHT__RELAXED.sm,
430
+ letterSpacing: LETTER_SPACING.wide
431
+ },
432
+ medium: {
433
+ fontWeight: FONT_WEIGHT.medium,
434
+ fontSize: FONT_SIZE.sm,
435
+ lineHeight: LINE_HEIGHT__RELAXED.sm,
436
+ letterSpacing: LETTER_SPACING.wide
437
+ },
438
+ bold: {
439
+ fontWeight: FONT_WEIGHT.bold,
440
+ fontSize: FONT_SIZE.sm,
441
+ lineHeight: LINE_HEIGHT__RELAXED.sm,
442
+ letterSpacing: LETTER_SPACING.wide
443
+ }
444
+ },
445
+ sm: {
446
+ light: {
447
+ fontWeight: FONT_WEIGHT.light,
448
+ fontSize: FONT_SIZE.xs,
449
+ lineHeight: LINE_HEIGHT__RELAXED.xs,
450
+ letterSpacing: LETTER_SPACING.wider
451
+ },
452
+ medium: {
453
+ fontWeight: FONT_WEIGHT.medium,
454
+ fontSize: FONT_SIZE.xs,
455
+ lineHeight: LINE_HEIGHT__RELAXED.xs,
456
+ letterSpacing: LETTER_SPACING.wider
457
+ },
458
+ bold: {
459
+ fontWeight: FONT_WEIGHT.bold,
460
+ fontSize: FONT_SIZE.xs,
461
+ lineHeight: LINE_HEIGHT__RELAXED.xs,
462
+ letterSpacing: LETTER_SPACING.wider
463
+ }
464
+ }
465
+ },
466
+ body: {
467
+ xl: {
468
+ light: {
469
+ fontWeight: FONT_WEIGHT.light,
470
+ fontSize: FONT_SIZE.lg,
471
+ lineHeight: LINE_HEIGHT__RELAXED.lg,
472
+ letterSpacing: LETTER_SPACING.wide
473
+ },
474
+ medium: {
475
+ fontWeight: FONT_WEIGHT.normal,
476
+ fontSize: FONT_SIZE.lg,
477
+ lineHeight: LINE_HEIGHT__RELAXED.lg,
478
+ letterSpacing: LETTER_SPACING.wide
479
+ },
480
+ bold: {
481
+ fontWeight: FONT_WEIGHT.semibold,
482
+ fontSize: FONT_SIZE.lg,
483
+ lineHeight: LINE_HEIGHT__RELAXED.lg,
484
+ letterSpacing: LETTER_SPACING.wide
485
+ }
486
+ },
487
+ lg: {
488
+ light: {
489
+ fontWeight: FONT_WEIGHT.light,
490
+ fontSize: FONT_SIZE.base,
491
+ lineHeight: LINE_HEIGHT__RELAXED.base,
492
+ letterSpacing: LETTER_SPACING.wide
493
+ },
494
+ medium: {
495
+ fontWeight: FONT_WEIGHT.normal,
496
+ fontSize: FONT_SIZE.base,
497
+ lineHeight: LINE_HEIGHT__RELAXED.base,
498
+ letterSpacing: LETTER_SPACING.wide
499
+ },
500
+ bold: {
501
+ fontWeight: FONT_WEIGHT.semibold,
502
+ fontSize: FONT_SIZE.base,
503
+ lineHeight: LINE_HEIGHT__RELAXED.base,
504
+ letterSpacing: LETTER_SPACING.wide
505
+ }
506
+ },
507
+ md: {
508
+ light: {
509
+ fontWeight: FONT_WEIGHT.light,
510
+ fontSize: FONT_SIZE.sm,
511
+ lineHeight: LINE_HEIGHT__RELAXED.sm,
512
+ letterSpacing: LETTER_SPACING.wider
513
+ },
514
+ medium: {
515
+ fontWeight: FONT_WEIGHT.normal,
516
+ fontSize: FONT_SIZE.sm,
517
+ lineHeight: LINE_HEIGHT__RELAXED.sm,
518
+ letterSpacing: LETTER_SPACING.wider
519
+ },
520
+ bold: {
521
+ fontWeight: FONT_WEIGHT.semibold,
522
+ fontSize: FONT_SIZE.sm,
523
+ lineHeight: LINE_HEIGHT__RELAXED.sm,
524
+ letterSpacing: LETTER_SPACING.wider
525
+ }
526
+ },
527
+ sm: {
528
+ light: {
529
+ fontWeight: FONT_WEIGHT.light,
530
+ fontSize: FONT_SIZE.xs,
531
+ lineHeight: LINE_HEIGHT__RELAXED.xs,
532
+ letterSpacing: LETTER_SPACING.wider
533
+ },
534
+ medium: {
535
+ fontWeight: FONT_WEIGHT.normal,
536
+ fontSize: FONT_SIZE.xs,
537
+ lineHeight: LINE_HEIGHT__RELAXED.xs,
538
+ letterSpacing: LETTER_SPACING.wider
539
+ },
540
+ bold: {
541
+ fontWeight: FONT_WEIGHT.semibold,
542
+ fontSize: FONT_SIZE.xs,
543
+ lineHeight: LINE_HEIGHT__RELAXED.xs,
544
+ letterSpacing: LETTER_SPACING.wider
545
+ }
546
+ }
547
+ },
548
+ caption: {
549
+ xl: {
550
+ light: {
551
+ fontWeight: FONT_WEIGHT.normal,
552
+ fontSize: FONT_SIZE.sm,
553
+ lineHeight: LINE_HEIGHT__RELAXED.sm,
554
+ letterSpacing: LETTER_SPACING.wider
555
+ },
556
+ medium: {
557
+ fontWeight: FONT_WEIGHT.medium,
558
+ fontSize: FONT_SIZE.sm,
559
+ lineHeight: LINE_HEIGHT__RELAXED.sm,
560
+ letterSpacing: LETTER_SPACING.wider
561
+ },
562
+ bold: {
563
+ fontWeight: FONT_WEIGHT.semibold,
564
+ fontSize: FONT_SIZE.sm,
565
+ lineHeight: LINE_HEIGHT__RELAXED.sm,
566
+ letterSpacing: LETTER_SPACING.wider
567
+ }
568
+ },
569
+ lg: {
570
+ light: {
571
+ fontWeight: FONT_WEIGHT.normal,
572
+ fontSize: FONT_SIZE.xs,
573
+ lineHeight: LINE_HEIGHT__RELAXED.xs,
574
+ letterSpacing: LETTER_SPACING.wider
575
+ },
576
+ medium: {
577
+ fontWeight: FONT_WEIGHT.medium,
578
+ fontSize: FONT_SIZE.xs,
579
+ lineHeight: LINE_HEIGHT__RELAXED.xs,
580
+ letterSpacing: LETTER_SPACING.wider
581
+ },
582
+ bold: {
583
+ fontWeight: FONT_WEIGHT.semibold,
584
+ fontSize: FONT_SIZE.xs,
585
+ lineHeight: LINE_HEIGHT__RELAXED.xs,
586
+ letterSpacing: LETTER_SPACING.wider
587
+ }
588
+ },
589
+ md: {
590
+ light: {
591
+ fontWeight: FONT_WEIGHT.normal,
592
+ fontSize: FONT_SIZE["2xs"],
593
+ lineHeight: LINE_HEIGHT__RELAXED["2xs"],
594
+ letterSpacing: LETTER_SPACING.widest
595
+ },
596
+ medium: {
597
+ fontWeight: FONT_WEIGHT.medium,
598
+ fontSize: FONT_SIZE["2xs"],
599
+ lineHeight: LINE_HEIGHT__RELAXED["2xs"],
600
+ letterSpacing: LETTER_SPACING.widest
601
+ },
602
+ bold: {
603
+ fontWeight: FONT_WEIGHT.semibold,
604
+ fontSize: FONT_SIZE["2xs"],
605
+ lineHeight: LINE_HEIGHT__RELAXED["2xs"],
606
+ letterSpacing: LETTER_SPACING.widest
607
+ }
608
+ },
609
+ sm: {
610
+ light: {
611
+ fontWeight: FONT_WEIGHT.normal,
612
+ fontSize: FONT_SIZE["3xs"],
613
+ lineHeight: LINE_HEIGHT__RELAXED["3xs"],
614
+ letterSpacing: LETTER_SPACING.widest
615
+ },
616
+ medium: {
617
+ fontWeight: FONT_WEIGHT.medium,
618
+ fontSize: FONT_SIZE["3xs"],
619
+ lineHeight: LINE_HEIGHT__RELAXED["3xs"],
620
+ letterSpacing: LETTER_SPACING.widest
621
+ },
622
+ bold: {
623
+ fontWeight: FONT_WEIGHT.semibold,
624
+ fontSize: FONT_SIZE["3xs"],
625
+ lineHeight: LINE_HEIGHT__RELAXED["3xs"],
626
+ letterSpacing: LETTER_SPACING.widest
627
+ }
628
+ }
629
+ },
630
+ label: {
631
+ xl: {
632
+ light: {
633
+ fontWeight: FONT_WEIGHT.normal,
634
+ fontSize: FONT_SIZE.sm,
635
+ lineHeight: LINE_HEIGHT__RELAXED.sm,
636
+ letterSpacing: LETTER_SPACING.wider
637
+ },
638
+ medium: {
639
+ fontWeight: FONT_WEIGHT.medium,
640
+ fontSize: FONT_SIZE.sm,
641
+ lineHeight: LINE_HEIGHT__RELAXED.sm,
642
+ letterSpacing: LETTER_SPACING.wider
643
+ },
644
+ bold: {
645
+ fontWeight: FONT_WEIGHT.semibold,
646
+ fontSize: FONT_SIZE.sm,
647
+ lineHeight: LINE_HEIGHT__RELAXED.sm,
648
+ letterSpacing: LETTER_SPACING.wider
649
+ }
650
+ },
651
+ lg: {
652
+ light: {
653
+ fontWeight: FONT_WEIGHT.normal,
654
+ fontSize: FONT_SIZE.xs,
655
+ lineHeight: LINE_HEIGHT__RELAXED.xs,
656
+ letterSpacing: LETTER_SPACING.wider
657
+ },
658
+ medium: {
659
+ fontWeight: FONT_WEIGHT.medium,
660
+ fontSize: FONT_SIZE.xs,
661
+ lineHeight: LINE_HEIGHT__RELAXED.xs,
662
+ letterSpacing: LETTER_SPACING.wider
663
+ },
664
+ bold: {
665
+ fontWeight: FONT_WEIGHT.semibold,
666
+ fontSize: FONT_SIZE.xs,
667
+ lineHeight: LINE_HEIGHT__RELAXED.xs,
668
+ letterSpacing: LETTER_SPACING.wider
669
+ }
670
+ },
671
+ md: {
672
+ light: {
673
+ fontWeight: FONT_WEIGHT.normal,
674
+ fontSize: FONT_SIZE["2xs"],
675
+ lineHeight: LINE_HEIGHT__RELAXED["2xs"],
676
+ letterSpacing: LETTER_SPACING.widest
677
+ },
678
+ medium: {
679
+ fontWeight: FONT_WEIGHT.medium,
680
+ fontSize: FONT_SIZE["2xs"],
681
+ lineHeight: LINE_HEIGHT__RELAXED["2xs"],
682
+ letterSpacing: LETTER_SPACING.widest
683
+ },
684
+ bold: {
685
+ fontWeight: FONT_WEIGHT.semibold,
686
+ fontSize: FONT_SIZE["2xs"],
687
+ lineHeight: LINE_HEIGHT__RELAXED["2xs"],
688
+ letterSpacing: LETTER_SPACING.widest
689
+ }
690
+ },
691
+ sm: {
692
+ light: {
693
+ fontWeight: FONT_WEIGHT.normal,
694
+ fontSize: FONT_SIZE["3xs"],
695
+ lineHeight: LINE_HEIGHT__RELAXED["3xs"],
696
+ letterSpacing: LETTER_SPACING.widest
697
+ },
698
+ medium: {
699
+ fontWeight: FONT_WEIGHT.medium,
700
+ fontSize: FONT_SIZE["3xs"],
701
+ lineHeight: LINE_HEIGHT__RELAXED["3xs"],
702
+ letterSpacing: LETTER_SPACING.widest
703
+ },
704
+ bold: {
705
+ fontWeight: FONT_WEIGHT.semibold,
706
+ fontSize: FONT_SIZE["3xs"],
707
+ lineHeight: LINE_HEIGHT__RELAXED["3xs"],
708
+ letterSpacing: LETTER_SPACING.widest
709
+ }
710
+ }
711
+ }
712
+ }
713
+ }), {
714
+ colorScheme: "light dark",
715
+ fontFamily: themeContract.typography.fontFamily.base
716
+ }]);
717
+
718
+ //#endregion
719
+ export { regalTheme };
720
+ //# sourceMappingURL=regal.css.js.map