@chakra-ui/panda-preset 3.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 (295) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +20 -0
  3. package/dist/cjs/animation-styles.cjs +55 -0
  4. package/dist/cjs/breakpoints.cjs +12 -0
  5. package/dist/cjs/def.cjs +34 -0
  6. package/dist/cjs/global-css.cjs +50 -0
  7. package/dist/cjs/index.cjs +43 -0
  8. package/dist/cjs/keyframes.cjs +260 -0
  9. package/dist/cjs/layer-styles.cjs +114 -0
  10. package/dist/cjs/recipes/badge.cjs +72 -0
  11. package/dist/cjs/recipes/button.cjs +180 -0
  12. package/dist/cjs/recipes/checkmark.cjs +89 -0
  13. package/dist/cjs/recipes/code.cjs +68 -0
  14. package/dist/cjs/recipes/color-swatch.cjs +68 -0
  15. package/dist/cjs/recipes/container.cjs +35 -0
  16. package/dist/cjs/recipes/heading.cjs +54 -0
  17. package/dist/cjs/recipes/icon.cjs +47 -0
  18. package/dist/cjs/recipes/index.cjs +46 -0
  19. package/dist/cjs/recipes/input-addon.cjs +81 -0
  20. package/dist/cjs/recipes/input.cjs +98 -0
  21. package/dist/cjs/recipes/kbd.cjs +62 -0
  22. package/dist/cjs/recipes/link.cjs +40 -0
  23. package/dist/cjs/recipes/mark.cjs +31 -0
  24. package/dist/cjs/recipes/radiomark.cjs +102 -0
  25. package/dist/cjs/recipes/separator.cjs +56 -0
  26. package/dist/cjs/recipes/skeleton.cjs +55 -0
  27. package/dist/cjs/recipes/skip-nav-link.cjs +36 -0
  28. package/dist/cjs/recipes/spinner.cjs +49 -0
  29. package/dist/cjs/recipes/textarea.cjs +91 -0
  30. package/dist/cjs/semantic-tokens/colors.cjs +617 -0
  31. package/dist/cjs/semantic-tokens/index.cjs +14 -0
  32. package/dist/cjs/semantic-tokens/radii.cjs +18 -0
  33. package/dist/cjs/semantic-tokens/shadows.cjs +57 -0
  34. package/dist/cjs/slot-recipes/accordion.cjs +150 -0
  35. package/dist/cjs/slot-recipes/action-bar.cjs +65 -0
  36. package/dist/cjs/slot-recipes/alert.cjs +165 -0
  37. package/dist/cjs/slot-recipes/avatar.cjs +144 -0
  38. package/dist/cjs/slot-recipes/blockquote.cjs +82 -0
  39. package/dist/cjs/slot-recipes/breadcrumb.cjs +105 -0
  40. package/dist/cjs/slot-recipes/card.cjs +102 -0
  41. package/dist/cjs/slot-recipes/checkbox-card.cjs +287 -0
  42. package/dist/cjs/slot-recipes/checkbox.cjs +132 -0
  43. package/dist/cjs/slot-recipes/collapsible.cjs +24 -0
  44. package/dist/cjs/slot-recipes/color-picker.cjs +384 -0
  45. package/dist/cjs/slot-recipes/data-list.cjs +98 -0
  46. package/dist/cjs/slot-recipes/dialog.cjs +256 -0
  47. package/dist/cjs/slot-recipes/drawer.cjs +218 -0
  48. package/dist/cjs/slot-recipes/editable.cjs +114 -0
  49. package/dist/cjs/slot-recipes/empty-state.cjs +90 -0
  50. package/dist/cjs/slot-recipes/field.cjs +80 -0
  51. package/dist/cjs/slot-recipes/fieldset.cjs +82 -0
  52. package/dist/cjs/slot-recipes/file-upload.cjs +114 -0
  53. package/dist/cjs/slot-recipes/hover-card.cjs +70 -0
  54. package/dist/cjs/slot-recipes/index.cjs +98 -0
  55. package/dist/cjs/slot-recipes/list.cjs +73 -0
  56. package/dist/cjs/slot-recipes/menu.cjs +146 -0
  57. package/dist/cjs/slot-recipes/native-select.cjs +152 -0
  58. package/dist/cjs/slot-recipes/number-input.cjs +200 -0
  59. package/dist/cjs/slot-recipes/pin-input.cjs +121 -0
  60. package/dist/cjs/slot-recipes/popover.cjs +104 -0
  61. package/dist/cjs/slot-recipes/progress-circle.cjs +106 -0
  62. package/dist/cjs/slot-recipes/progress.cjs +147 -0
  63. package/dist/cjs/slot-recipes/qr-code.cjs +80 -0
  64. package/dist/cjs/slot-recipes/radio-card.cjs +317 -0
  65. package/dist/cjs/slot-recipes/radio-group.cjs +151 -0
  66. package/dist/cjs/slot-recipes/rating-group.cjs +88 -0
  67. package/dist/cjs/slot-recipes/segment-group.cjs +119 -0
  68. package/dist/cjs/slot-recipes/select.cjs +305 -0
  69. package/dist/cjs/slot-recipes/slider.cjs +218 -0
  70. package/dist/cjs/slot-recipes/stat.cjs +84 -0
  71. package/dist/cjs/slot-recipes/status.cjs +48 -0
  72. package/dist/cjs/slot-recipes/steps.cjs +231 -0
  73. package/dist/cjs/slot-recipes/switch.cjs +163 -0
  74. package/dist/cjs/slot-recipes/table.cjs +175 -0
  75. package/dist/cjs/slot-recipes/tabs.cjs +281 -0
  76. package/dist/cjs/slot-recipes/tag.cjs +147 -0
  77. package/dist/cjs/slot-recipes/timeline.cjs +151 -0
  78. package/dist/cjs/slot-recipes/toast.cjs +106 -0
  79. package/dist/cjs/slot-recipes/tooltip.cjs +44 -0
  80. package/dist/cjs/text-styles.cjs +88 -0
  81. package/dist/cjs/tokens/animations.cjs +21 -0
  82. package/dist/cjs/tokens/aspect-ratios.cjs +27 -0
  83. package/dist/cjs/tokens/blurs.cjs +33 -0
  84. package/dist/cjs/tokens/borders.cjs +24 -0
  85. package/dist/cjs/tokens/colors.cjs +441 -0
  86. package/dist/cjs/tokens/cursor.cjs +33 -0
  87. package/dist/cjs/tokens/durations.cjs +30 -0
  88. package/dist/cjs/tokens/easings.cjs +21 -0
  89. package/dist/cjs/tokens/font-sizes.cjs +51 -0
  90. package/dist/cjs/tokens/font-weights.cjs +36 -0
  91. package/dist/cjs/tokens/fonts.cjs +18 -0
  92. package/dist/cjs/tokens/index.cjs +42 -0
  93. package/dist/cjs/tokens/letter-spacings.cjs +24 -0
  94. package/dist/cjs/tokens/line-heights.cjs +24 -0
  95. package/dist/cjs/tokens/radii.cjs +42 -0
  96. package/dist/cjs/tokens/sizes.cjs +267 -0
  97. package/dist/cjs/tokens/spacing.cjs +111 -0
  98. package/dist/cjs/tokens/z-index.cjs +48 -0
  99. package/dist/cjs/utilities.cjs +85 -0
  100. package/dist/esm/animation-styles.js +53 -0
  101. package/dist/esm/breakpoints.js +10 -0
  102. package/dist/esm/def.js +22 -0
  103. package/dist/esm/global-css.js +48 -0
  104. package/dist/esm/index.js +39 -0
  105. package/dist/esm/keyframes.js +258 -0
  106. package/dist/esm/layer-styles.js +112 -0
  107. package/dist/esm/recipes/badge.js +70 -0
  108. package/dist/esm/recipes/button.js +178 -0
  109. package/dist/esm/recipes/checkmark.js +87 -0
  110. package/dist/esm/recipes/code.js +66 -0
  111. package/dist/esm/recipes/color-swatch.js +66 -0
  112. package/dist/esm/recipes/container.js +33 -0
  113. package/dist/esm/recipes/heading.js +52 -0
  114. package/dist/esm/recipes/icon.js +45 -0
  115. package/dist/esm/recipes/index.js +44 -0
  116. package/dist/esm/recipes/input-addon.js +79 -0
  117. package/dist/esm/recipes/input.js +96 -0
  118. package/dist/esm/recipes/kbd.js +60 -0
  119. package/dist/esm/recipes/link.js +38 -0
  120. package/dist/esm/recipes/mark.js +29 -0
  121. package/dist/esm/recipes/radiomark.js +100 -0
  122. package/dist/esm/recipes/separator.js +54 -0
  123. package/dist/esm/recipes/skeleton.js +53 -0
  124. package/dist/esm/recipes/skip-nav-link.js +34 -0
  125. package/dist/esm/recipes/spinner.js +47 -0
  126. package/dist/esm/recipes/textarea.js +89 -0
  127. package/dist/esm/semantic-tokens/colors.js +615 -0
  128. package/dist/esm/semantic-tokens/index.js +12 -0
  129. package/dist/esm/semantic-tokens/radii.js +16 -0
  130. package/dist/esm/semantic-tokens/shadows.js +55 -0
  131. package/dist/esm/slot-recipes/accordion.js +148 -0
  132. package/dist/esm/slot-recipes/action-bar.js +63 -0
  133. package/dist/esm/slot-recipes/alert.js +163 -0
  134. package/dist/esm/slot-recipes/avatar.js +142 -0
  135. package/dist/esm/slot-recipes/blockquote.js +80 -0
  136. package/dist/esm/slot-recipes/breadcrumb.js +103 -0
  137. package/dist/esm/slot-recipes/card.js +100 -0
  138. package/dist/esm/slot-recipes/checkbox-card.js +285 -0
  139. package/dist/esm/slot-recipes/checkbox.js +130 -0
  140. package/dist/esm/slot-recipes/collapsible.js +22 -0
  141. package/dist/esm/slot-recipes/color-picker.js +382 -0
  142. package/dist/esm/slot-recipes/data-list.js +96 -0
  143. package/dist/esm/slot-recipes/dialog.js +254 -0
  144. package/dist/esm/slot-recipes/drawer.js +216 -0
  145. package/dist/esm/slot-recipes/editable.js +112 -0
  146. package/dist/esm/slot-recipes/empty-state.js +88 -0
  147. package/dist/esm/slot-recipes/field.js +78 -0
  148. package/dist/esm/slot-recipes/fieldset.js +80 -0
  149. package/dist/esm/slot-recipes/file-upload.js +112 -0
  150. package/dist/esm/slot-recipes/hover-card.js +68 -0
  151. package/dist/esm/slot-recipes/index.js +96 -0
  152. package/dist/esm/slot-recipes/list.js +71 -0
  153. package/dist/esm/slot-recipes/menu.js +144 -0
  154. package/dist/esm/slot-recipes/native-select.js +150 -0
  155. package/dist/esm/slot-recipes/number-input.js +198 -0
  156. package/dist/esm/slot-recipes/pin-input.js +119 -0
  157. package/dist/esm/slot-recipes/popover.js +102 -0
  158. package/dist/esm/slot-recipes/progress-circle.js +104 -0
  159. package/dist/esm/slot-recipes/progress.js +145 -0
  160. package/dist/esm/slot-recipes/qr-code.js +78 -0
  161. package/dist/esm/slot-recipes/radio-card.js +315 -0
  162. package/dist/esm/slot-recipes/radio-group.js +149 -0
  163. package/dist/esm/slot-recipes/rating-group.js +86 -0
  164. package/dist/esm/slot-recipes/segment-group.js +117 -0
  165. package/dist/esm/slot-recipes/select.js +303 -0
  166. package/dist/esm/slot-recipes/slider.js +216 -0
  167. package/dist/esm/slot-recipes/stat.js +82 -0
  168. package/dist/esm/slot-recipes/status.js +46 -0
  169. package/dist/esm/slot-recipes/steps.js +229 -0
  170. package/dist/esm/slot-recipes/switch.js +161 -0
  171. package/dist/esm/slot-recipes/table.js +173 -0
  172. package/dist/esm/slot-recipes/tabs.js +279 -0
  173. package/dist/esm/slot-recipes/tag.js +145 -0
  174. package/dist/esm/slot-recipes/timeline.js +149 -0
  175. package/dist/esm/slot-recipes/toast.js +104 -0
  176. package/dist/esm/slot-recipes/tooltip.js +42 -0
  177. package/dist/esm/text-styles.js +86 -0
  178. package/dist/esm/tokens/animations.js +19 -0
  179. package/dist/esm/tokens/aspect-ratios.js +25 -0
  180. package/dist/esm/tokens/blurs.js +31 -0
  181. package/dist/esm/tokens/borders.js +22 -0
  182. package/dist/esm/tokens/colors.js +439 -0
  183. package/dist/esm/tokens/cursor.js +31 -0
  184. package/dist/esm/tokens/durations.js +28 -0
  185. package/dist/esm/tokens/easings.js +19 -0
  186. package/dist/esm/tokens/font-sizes.js +49 -0
  187. package/dist/esm/tokens/font-weights.js +34 -0
  188. package/dist/esm/tokens/fonts.js +16 -0
  189. package/dist/esm/tokens/index.js +40 -0
  190. package/dist/esm/tokens/letter-spacings.js +22 -0
  191. package/dist/esm/tokens/line-heights.js +22 -0
  192. package/dist/esm/tokens/radii.js +40 -0
  193. package/dist/esm/tokens/sizes.js +265 -0
  194. package/dist/esm/tokens/spacing.js +109 -0
  195. package/dist/esm/tokens/z-index.js +46 -0
  196. package/dist/esm/utilities.js +83 -0
  197. package/dist/types/animation-styles.d.ts +1 -0
  198. package/dist/types/breakpoints.d.ts +7 -0
  199. package/dist/types/def.d.ts +18 -0
  200. package/dist/types/global-css.d.ts +1 -0
  201. package/dist/types/index.d.mts +2 -0
  202. package/dist/types/index.d.ts +2 -0
  203. package/dist/types/keyframes.d.ts +255 -0
  204. package/dist/types/layer-styles.d.ts +1 -0
  205. package/dist/types/recipes/badge.d.ts +1 -0
  206. package/dist/types/recipes/button.d.ts +1 -0
  207. package/dist/types/recipes/checkmark.d.ts +1 -0
  208. package/dist/types/recipes/code.d.ts +1 -0
  209. package/dist/types/recipes/color-swatch.d.ts +1 -0
  210. package/dist/types/recipes/container.d.ts +1 -0
  211. package/dist/types/recipes/heading.d.ts +1 -0
  212. package/dist/types/recipes/icon.d.ts +1 -0
  213. package/dist/types/recipes/index.d.ts +21 -0
  214. package/dist/types/recipes/input-addon.d.ts +1 -0
  215. package/dist/types/recipes/input.d.ts +1 -0
  216. package/dist/types/recipes/kbd.d.ts +1 -0
  217. package/dist/types/recipes/link.d.ts +1 -0
  218. package/dist/types/recipes/mark.d.ts +1 -0
  219. package/dist/types/recipes/radiomark.d.ts +1 -0
  220. package/dist/types/recipes/separator.d.ts +1 -0
  221. package/dist/types/recipes/skeleton.d.ts +1 -0
  222. package/dist/types/recipes/skip-nav-link.d.ts +1 -0
  223. package/dist/types/recipes/spinner.d.ts +1 -0
  224. package/dist/types/recipes/textarea.d.ts +1 -0
  225. package/dist/types/semantic-tokens/colors.d.ts +610 -0
  226. package/dist/types/semantic-tokens/index.d.ts +673 -0
  227. package/dist/types/semantic-tokens/radii.d.ts +11 -0
  228. package/dist/types/semantic-tokens/shadows.d.ts +50 -0
  229. package/dist/types/slot-recipes/accordion.d.ts +1 -0
  230. package/dist/types/slot-recipes/action-bar.d.ts +1 -0
  231. package/dist/types/slot-recipes/alert.d.ts +1 -0
  232. package/dist/types/slot-recipes/avatar.d.ts +1 -0
  233. package/dist/types/slot-recipes/blockquote.d.ts +1 -0
  234. package/dist/types/slot-recipes/breadcrumb.d.ts +1 -0
  235. package/dist/types/slot-recipes/card.d.ts +1 -0
  236. package/dist/types/slot-recipes/checkbox-card.d.ts +1 -0
  237. package/dist/types/slot-recipes/checkbox.d.ts +1 -0
  238. package/dist/types/slot-recipes/collapsible.d.ts +1 -0
  239. package/dist/types/slot-recipes/color-picker.d.ts +1 -0
  240. package/dist/types/slot-recipes/data-list.d.ts +1 -0
  241. package/dist/types/slot-recipes/dialog.d.ts +1 -0
  242. package/dist/types/slot-recipes/drawer.d.ts +1 -0
  243. package/dist/types/slot-recipes/editable.d.ts +1 -0
  244. package/dist/types/slot-recipes/empty-state.d.ts +1 -0
  245. package/dist/types/slot-recipes/field.d.ts +1 -0
  246. package/dist/types/slot-recipes/fieldset.d.ts +1 -0
  247. package/dist/types/slot-recipes/file-upload.d.ts +1 -0
  248. package/dist/types/slot-recipes/hover-card.d.ts +1 -0
  249. package/dist/types/slot-recipes/index.d.ts +47 -0
  250. package/dist/types/slot-recipes/list.d.ts +1 -0
  251. package/dist/types/slot-recipes/menu.d.ts +1 -0
  252. package/dist/types/slot-recipes/native-select.d.ts +1 -0
  253. package/dist/types/slot-recipes/number-input.d.ts +1 -0
  254. package/dist/types/slot-recipes/pin-input.d.ts +1 -0
  255. package/dist/types/slot-recipes/popover.d.ts +1 -0
  256. package/dist/types/slot-recipes/progress-circle.d.ts +1 -0
  257. package/dist/types/slot-recipes/progress.d.ts +1 -0
  258. package/dist/types/slot-recipes/qr-code.d.ts +1 -0
  259. package/dist/types/slot-recipes/radio-card.d.ts +1 -0
  260. package/dist/types/slot-recipes/radio-group.d.ts +1 -0
  261. package/dist/types/slot-recipes/rating-group.d.ts +1 -0
  262. package/dist/types/slot-recipes/segment-group.d.ts +1 -0
  263. package/dist/types/slot-recipes/select.d.ts +1 -0
  264. package/dist/types/slot-recipes/slider.d.ts +1 -0
  265. package/dist/types/slot-recipes/stat.d.ts +1 -0
  266. package/dist/types/slot-recipes/status.d.ts +1 -0
  267. package/dist/types/slot-recipes/steps.d.ts +1 -0
  268. package/dist/types/slot-recipes/switch.d.ts +1 -0
  269. package/dist/types/slot-recipes/table.d.ts +1 -0
  270. package/dist/types/slot-recipes/tabs.d.ts +1 -0
  271. package/dist/types/slot-recipes/tag.d.ts +1 -0
  272. package/dist/types/slot-recipes/timeline.d.ts +1 -0
  273. package/dist/types/slot-recipes/toast.d.ts +1 -0
  274. package/dist/types/slot-recipes/tooltip.d.ts +1 -0
  275. package/dist/types/text-styles.d.ts +1 -0
  276. package/dist/types/tokens/animations.d.ts +14 -0
  277. package/dist/types/tokens/aspect-ratios.d.ts +20 -0
  278. package/dist/types/tokens/blurs.d.ts +26 -0
  279. package/dist/types/tokens/borders.d.ts +17 -0
  280. package/dist/types/tokens/colors.d.ts +434 -0
  281. package/dist/types/tokens/cursor.d.ts +26 -0
  282. package/dist/types/tokens/durations.d.ts +23 -0
  283. package/dist/types/tokens/easings.d.ts +14 -0
  284. package/dist/types/tokens/font-sizes.d.ts +44 -0
  285. package/dist/types/tokens/font-weights.d.ts +29 -0
  286. package/dist/types/tokens/fonts.d.ts +11 -0
  287. package/dist/types/tokens/index.d.ts +1134 -0
  288. package/dist/types/tokens/letter-spacings.d.ts +17 -0
  289. package/dist/types/tokens/line-heights.d.ts +17 -0
  290. package/dist/types/tokens/radii.d.ts +35 -0
  291. package/dist/types/tokens/sizes.d.ts +260 -0
  292. package/dist/types/tokens/spacing.d.ts +104 -0
  293. package/dist/types/tokens/z-index.d.ts +41 -0
  294. package/dist/types/utilities.d.ts +1 -0
  295. package/package.json +65 -0
@@ -0,0 +1,673 @@
1
+ export declare const semanticTokens: {
2
+ colors: {
3
+ bg: {
4
+ DEFAULT: {
5
+ value: {
6
+ _light: string;
7
+ _dark: string;
8
+ };
9
+ };
10
+ subtle: {
11
+ value: {
12
+ _light: string;
13
+ _dark: string;
14
+ };
15
+ };
16
+ muted: {
17
+ value: {
18
+ _light: string;
19
+ _dark: string;
20
+ };
21
+ };
22
+ emphasized: {
23
+ value: {
24
+ _light: string;
25
+ _dark: string;
26
+ };
27
+ };
28
+ inverted: {
29
+ value: {
30
+ _light: string;
31
+ _dark: string;
32
+ };
33
+ };
34
+ panel: {
35
+ value: {
36
+ _light: string;
37
+ _dark: string;
38
+ };
39
+ };
40
+ error: {
41
+ value: {
42
+ _light: string;
43
+ _dark: string;
44
+ };
45
+ };
46
+ warning: {
47
+ value: {
48
+ _light: string;
49
+ _dark: string;
50
+ };
51
+ };
52
+ success: {
53
+ value: {
54
+ _light: string;
55
+ _dark: string;
56
+ };
57
+ };
58
+ info: {
59
+ value: {
60
+ _light: string;
61
+ _dark: string;
62
+ };
63
+ };
64
+ };
65
+ fg: {
66
+ DEFAULT: {
67
+ value: {
68
+ _light: string;
69
+ _dark: string;
70
+ };
71
+ };
72
+ muted: {
73
+ value: {
74
+ _light: string;
75
+ _dark: string;
76
+ };
77
+ };
78
+ subtle: {
79
+ value: {
80
+ _light: string;
81
+ _dark: string;
82
+ };
83
+ };
84
+ inverted: {
85
+ value: {
86
+ _light: string;
87
+ _dark: string;
88
+ };
89
+ };
90
+ error: {
91
+ value: {
92
+ _light: string;
93
+ _dark: string;
94
+ };
95
+ };
96
+ warning: {
97
+ value: {
98
+ _light: string;
99
+ _dark: string;
100
+ };
101
+ };
102
+ success: {
103
+ value: {
104
+ _light: string;
105
+ _dark: string;
106
+ };
107
+ };
108
+ info: {
109
+ value: {
110
+ _light: string;
111
+ _dark: string;
112
+ };
113
+ };
114
+ };
115
+ border: {
116
+ DEFAULT: {
117
+ value: {
118
+ _light: string;
119
+ _dark: string;
120
+ };
121
+ };
122
+ muted: {
123
+ value: {
124
+ _light: string;
125
+ _dark: string;
126
+ };
127
+ };
128
+ subtle: {
129
+ value: {
130
+ _light: string;
131
+ _dark: string;
132
+ };
133
+ };
134
+ emphasized: {
135
+ value: {
136
+ _light: string;
137
+ _dark: string;
138
+ };
139
+ };
140
+ inverted: {
141
+ value: {
142
+ _light: string;
143
+ _dark: string;
144
+ };
145
+ };
146
+ error: {
147
+ value: {
148
+ _light: string;
149
+ _dark: string;
150
+ };
151
+ };
152
+ warning: {
153
+ value: {
154
+ _light: string;
155
+ _dark: string;
156
+ };
157
+ };
158
+ success: {
159
+ value: {
160
+ _light: string;
161
+ _dark: string;
162
+ };
163
+ };
164
+ info: {
165
+ value: {
166
+ _light: string;
167
+ _dark: string;
168
+ };
169
+ };
170
+ };
171
+ gray: {
172
+ contrast: {
173
+ value: {
174
+ _light: string;
175
+ _dark: string;
176
+ };
177
+ };
178
+ fg: {
179
+ value: {
180
+ _light: string;
181
+ _dark: string;
182
+ };
183
+ };
184
+ subtle: {
185
+ value: {
186
+ _light: string;
187
+ _dark: string;
188
+ };
189
+ };
190
+ muted: {
191
+ value: {
192
+ _light: string;
193
+ _dark: string;
194
+ };
195
+ };
196
+ emphasized: {
197
+ value: {
198
+ _light: string;
199
+ _dark: string;
200
+ };
201
+ };
202
+ solid: {
203
+ value: {
204
+ _light: string;
205
+ _dark: string;
206
+ };
207
+ };
208
+ focusRing: {
209
+ value: {
210
+ _light: string;
211
+ _dark: string;
212
+ };
213
+ };
214
+ };
215
+ red: {
216
+ contrast: {
217
+ value: {
218
+ _light: string;
219
+ _dark: string;
220
+ };
221
+ };
222
+ fg: {
223
+ value: {
224
+ _light: string;
225
+ _dark: string;
226
+ };
227
+ };
228
+ subtle: {
229
+ value: {
230
+ _light: string;
231
+ _dark: string;
232
+ };
233
+ };
234
+ muted: {
235
+ value: {
236
+ _light: string;
237
+ _dark: string;
238
+ };
239
+ };
240
+ emphasized: {
241
+ value: {
242
+ _light: string;
243
+ _dark: string;
244
+ };
245
+ };
246
+ solid: {
247
+ value: {
248
+ _light: string;
249
+ _dark: string;
250
+ };
251
+ };
252
+ focusRing: {
253
+ value: {
254
+ _light: string;
255
+ _dark: string;
256
+ };
257
+ };
258
+ };
259
+ orange: {
260
+ contrast: {
261
+ value: {
262
+ _light: string;
263
+ _dark: string;
264
+ };
265
+ };
266
+ fg: {
267
+ value: {
268
+ _light: string;
269
+ _dark: string;
270
+ };
271
+ };
272
+ subtle: {
273
+ value: {
274
+ _light: string;
275
+ _dark: string;
276
+ };
277
+ };
278
+ muted: {
279
+ value: {
280
+ _light: string;
281
+ _dark: string;
282
+ };
283
+ };
284
+ emphasized: {
285
+ value: {
286
+ _light: string;
287
+ _dark: string;
288
+ };
289
+ };
290
+ solid: {
291
+ value: {
292
+ _light: string;
293
+ _dark: string;
294
+ };
295
+ };
296
+ focusRing: {
297
+ value: {
298
+ _light: string;
299
+ _dark: string;
300
+ };
301
+ };
302
+ };
303
+ green: {
304
+ contrast: {
305
+ value: {
306
+ _light: string;
307
+ _dark: string;
308
+ };
309
+ };
310
+ fg: {
311
+ value: {
312
+ _light: string;
313
+ _dark: string;
314
+ };
315
+ };
316
+ subtle: {
317
+ value: {
318
+ _light: string;
319
+ _dark: string;
320
+ };
321
+ };
322
+ muted: {
323
+ value: {
324
+ _light: string;
325
+ _dark: string;
326
+ };
327
+ };
328
+ emphasized: {
329
+ value: {
330
+ _light: string;
331
+ _dark: string;
332
+ };
333
+ };
334
+ solid: {
335
+ value: {
336
+ _light: string;
337
+ _dark: string;
338
+ };
339
+ };
340
+ focusRing: {
341
+ value: {
342
+ _light: string;
343
+ _dark: string;
344
+ };
345
+ };
346
+ };
347
+ blue: {
348
+ contrast: {
349
+ value: {
350
+ _light: string;
351
+ _dark: string;
352
+ };
353
+ };
354
+ fg: {
355
+ value: {
356
+ _light: string;
357
+ _dark: string;
358
+ };
359
+ };
360
+ subtle: {
361
+ value: {
362
+ _light: string;
363
+ _dark: string;
364
+ };
365
+ };
366
+ muted: {
367
+ value: {
368
+ _light: string;
369
+ _dark: string;
370
+ };
371
+ };
372
+ emphasized: {
373
+ value: {
374
+ _light: string;
375
+ _dark: string;
376
+ };
377
+ };
378
+ solid: {
379
+ value: {
380
+ _light: string;
381
+ _dark: string;
382
+ };
383
+ };
384
+ focusRing: {
385
+ value: {
386
+ _light: string;
387
+ _dark: string;
388
+ };
389
+ };
390
+ };
391
+ yellow: {
392
+ contrast: {
393
+ value: {
394
+ _light: string;
395
+ _dark: string;
396
+ };
397
+ };
398
+ fg: {
399
+ value: {
400
+ _light: string;
401
+ _dark: string;
402
+ };
403
+ };
404
+ subtle: {
405
+ value: {
406
+ _light: string;
407
+ _dark: string;
408
+ };
409
+ };
410
+ muted: {
411
+ value: {
412
+ _light: string;
413
+ _dark: string;
414
+ };
415
+ };
416
+ emphasized: {
417
+ value: {
418
+ _light: string;
419
+ _dark: string;
420
+ };
421
+ };
422
+ solid: {
423
+ value: {
424
+ _light: string;
425
+ _dark: string;
426
+ };
427
+ };
428
+ focusRing: {
429
+ value: {
430
+ _light: string;
431
+ _dark: string;
432
+ };
433
+ };
434
+ };
435
+ teal: {
436
+ contrast: {
437
+ value: {
438
+ _light: string;
439
+ _dark: string;
440
+ };
441
+ };
442
+ fg: {
443
+ value: {
444
+ _light: string;
445
+ _dark: string;
446
+ };
447
+ };
448
+ subtle: {
449
+ value: {
450
+ _light: string;
451
+ _dark: string;
452
+ };
453
+ };
454
+ muted: {
455
+ value: {
456
+ _light: string;
457
+ _dark: string;
458
+ };
459
+ };
460
+ emphasized: {
461
+ value: {
462
+ _light: string;
463
+ _dark: string;
464
+ };
465
+ };
466
+ solid: {
467
+ value: {
468
+ _light: string;
469
+ _dark: string;
470
+ };
471
+ };
472
+ focusRing: {
473
+ value: {
474
+ _light: string;
475
+ _dark: string;
476
+ };
477
+ };
478
+ };
479
+ purple: {
480
+ contrast: {
481
+ value: {
482
+ _light: string;
483
+ _dark: string;
484
+ };
485
+ };
486
+ fg: {
487
+ value: {
488
+ _light: string;
489
+ _dark: string;
490
+ };
491
+ };
492
+ subtle: {
493
+ value: {
494
+ _light: string;
495
+ _dark: string;
496
+ };
497
+ };
498
+ muted: {
499
+ value: {
500
+ _light: string;
501
+ _dark: string;
502
+ };
503
+ };
504
+ emphasized: {
505
+ value: {
506
+ _light: string;
507
+ _dark: string;
508
+ };
509
+ };
510
+ solid: {
511
+ value: {
512
+ _light: string;
513
+ _dark: string;
514
+ };
515
+ };
516
+ focusRing: {
517
+ value: {
518
+ _light: string;
519
+ _dark: string;
520
+ };
521
+ };
522
+ };
523
+ pink: {
524
+ contrast: {
525
+ value: {
526
+ _light: string;
527
+ _dark: string;
528
+ };
529
+ };
530
+ fg: {
531
+ value: {
532
+ _light: string;
533
+ _dark: string;
534
+ };
535
+ };
536
+ subtle: {
537
+ value: {
538
+ _light: string;
539
+ _dark: string;
540
+ };
541
+ };
542
+ muted: {
543
+ value: {
544
+ _light: string;
545
+ _dark: string;
546
+ };
547
+ };
548
+ emphasized: {
549
+ value: {
550
+ _light: string;
551
+ _dark: string;
552
+ };
553
+ };
554
+ solid: {
555
+ value: {
556
+ _light: string;
557
+ _dark: string;
558
+ };
559
+ };
560
+ focusRing: {
561
+ value: {
562
+ _light: string;
563
+ _dark: string;
564
+ };
565
+ };
566
+ };
567
+ cyan: {
568
+ contrast: {
569
+ value: {
570
+ _light: string;
571
+ _dark: string;
572
+ };
573
+ };
574
+ fg: {
575
+ value: {
576
+ _light: string;
577
+ _dark: string;
578
+ };
579
+ };
580
+ subtle: {
581
+ value: {
582
+ _light: string;
583
+ _dark: string;
584
+ };
585
+ };
586
+ muted: {
587
+ value: {
588
+ _light: string;
589
+ _dark: string;
590
+ };
591
+ };
592
+ emphasized: {
593
+ value: {
594
+ _light: string;
595
+ _dark: string;
596
+ };
597
+ };
598
+ solid: {
599
+ value: {
600
+ _light: string;
601
+ _dark: string;
602
+ };
603
+ };
604
+ focusRing: {
605
+ value: {
606
+ _light: string;
607
+ _dark: string;
608
+ };
609
+ };
610
+ };
611
+ };
612
+ shadows: {
613
+ xs: {
614
+ value: {
615
+ _light: string;
616
+ _dark: string;
617
+ };
618
+ };
619
+ sm: {
620
+ value: {
621
+ _light: string;
622
+ _dark: string;
623
+ };
624
+ };
625
+ md: {
626
+ value: {
627
+ _light: string;
628
+ _dark: string;
629
+ };
630
+ };
631
+ lg: {
632
+ value: {
633
+ _light: string;
634
+ _dark: string;
635
+ };
636
+ };
637
+ xl: {
638
+ value: {
639
+ _light: string;
640
+ _dark: string;
641
+ };
642
+ };
643
+ "2xl": {
644
+ value: {
645
+ _light: string;
646
+ _dark: string;
647
+ };
648
+ };
649
+ inner: {
650
+ value: {
651
+ _light: string;
652
+ _dark: string;
653
+ };
654
+ };
655
+ inset: {
656
+ value: {
657
+ _light: string;
658
+ _dark: string;
659
+ };
660
+ };
661
+ };
662
+ radii: {
663
+ l1: {
664
+ value: string;
665
+ };
666
+ l2: {
667
+ value: string;
668
+ };
669
+ l3: {
670
+ value: string;
671
+ };
672
+ };
673
+ };
@@ -0,0 +1,11 @@
1
+ export declare const radii: {
2
+ l1: {
3
+ value: string;
4
+ };
5
+ l2: {
6
+ value: string;
7
+ };
8
+ l3: {
9
+ value: string;
10
+ };
11
+ };
@@ -0,0 +1,50 @@
1
+ export declare const shadows: {
2
+ xs: {
3
+ value: {
4
+ _light: string;
5
+ _dark: string;
6
+ };
7
+ };
8
+ sm: {
9
+ value: {
10
+ _light: string;
11
+ _dark: string;
12
+ };
13
+ };
14
+ md: {
15
+ value: {
16
+ _light: string;
17
+ _dark: string;
18
+ };
19
+ };
20
+ lg: {
21
+ value: {
22
+ _light: string;
23
+ _dark: string;
24
+ };
25
+ };
26
+ xl: {
27
+ value: {
28
+ _light: string;
29
+ _dark: string;
30
+ };
31
+ };
32
+ "2xl": {
33
+ value: {
34
+ _light: string;
35
+ _dark: string;
36
+ };
37
+ };
38
+ inner: {
39
+ value: {
40
+ _light: string;
41
+ _dark: string;
42
+ };
43
+ };
44
+ inset: {
45
+ value: {
46
+ _light: string;
47
+ _dark: string;
48
+ };
49
+ };
50
+ };