design-constraint-validator 1.0.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 (195) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +659 -0
  3. package/adapters/README.md +46 -0
  4. package/adapters/css.d.ts +44 -0
  5. package/adapters/css.d.ts.map +1 -0
  6. package/adapters/css.js +97 -0
  7. package/adapters/css.ts +116 -0
  8. package/adapters/js.d.ts +3 -0
  9. package/adapters/js.d.ts.map +1 -0
  10. package/adapters/js.js +15 -0
  11. package/adapters/js.ts +14 -0
  12. package/adapters/json.d.ts +18 -0
  13. package/adapters/json.d.ts.map +1 -0
  14. package/adapters/json.js +35 -0
  15. package/adapters/json.ts +45 -0
  16. package/cli/build-css.d.ts +2 -0
  17. package/cli/build-css.d.ts.map +1 -0
  18. package/cli/build-css.js +23 -0
  19. package/cli/build-css.ts +32 -0
  20. package/cli/commands/build.d.ts +5 -0
  21. package/cli/commands/build.d.ts.map +1 -0
  22. package/cli/commands/build.js +89 -0
  23. package/cli/commands/build.ts +65 -0
  24. package/cli/commands/graph.d.ts +3 -0
  25. package/cli/commands/graph.d.ts.map +1 -0
  26. package/cli/commands/graph.js +219 -0
  27. package/cli/commands/graph.ts +137 -0
  28. package/cli/commands/index.d.ts +8 -0
  29. package/cli/commands/index.d.ts.map +1 -0
  30. package/cli/commands/index.js +7 -0
  31. package/cli/commands/index.ts +7 -0
  32. package/cli/commands/patch-apply.d.ts +3 -0
  33. package/cli/commands/patch-apply.d.ts.map +1 -0
  34. package/cli/commands/patch-apply.js +75 -0
  35. package/cli/commands/patch-apply.ts +80 -0
  36. package/cli/commands/patch.d.ts +3 -0
  37. package/cli/commands/patch.d.ts.map +1 -0
  38. package/cli/commands/patch.js +21 -0
  39. package/cli/commands/patch.ts +22 -0
  40. package/cli/commands/set.d.ts +3 -0
  41. package/cli/commands/set.d.ts.map +1 -0
  42. package/cli/commands/set.js +286 -0
  43. package/cli/commands/set.ts +225 -0
  44. package/cli/commands/utils.d.ts +4 -0
  45. package/cli/commands/utils.d.ts.map +1 -0
  46. package/cli/commands/utils.js +51 -0
  47. package/cli/commands/utils.ts +50 -0
  48. package/cli/commands/validate.d.ts +3 -0
  49. package/cli/commands/validate.d.ts.map +1 -0
  50. package/cli/commands/validate.js +131 -0
  51. package/cli/commands/validate.ts +115 -0
  52. package/cli/commands/why.d.ts +3 -0
  53. package/cli/commands/why.d.ts.map +1 -0
  54. package/cli/commands/why.js +64 -0
  55. package/cli/commands/why.ts +46 -0
  56. package/cli/config-schema.d.ts +238 -0
  57. package/cli/config-schema.d.ts.map +1 -0
  58. package/cli/config-schema.js +21 -0
  59. package/cli/config-schema.ts +27 -0
  60. package/cli/config.d.ts +4 -0
  61. package/cli/config.d.ts.map +1 -0
  62. package/cli/config.js +37 -0
  63. package/cli/config.ts +35 -0
  64. package/cli/dcv.d.ts +3 -0
  65. package/cli/dcv.d.ts.map +1 -0
  66. package/cli/dcv.js +86 -0
  67. package/cli/dcv.ts +107 -0
  68. package/cli/engine-helpers.d.ts +8 -0
  69. package/cli/engine-helpers.d.ts.map +1 -0
  70. package/cli/engine-helpers.js +70 -0
  71. package/cli/engine-helpers.ts +61 -0
  72. package/cli/graph-poset.d.ts +9 -0
  73. package/cli/graph-poset.d.ts.map +1 -0
  74. package/cli/graph-poset.js +58 -0
  75. package/cli/graph-poset.ts +74 -0
  76. package/cli/index.d.ts +3 -0
  77. package/cli/index.d.ts.map +1 -0
  78. package/cli/index.js +2 -0
  79. package/cli/index.ts +2 -0
  80. package/cli/result.d.ts +17 -0
  81. package/cli/result.d.ts.map +1 -0
  82. package/cli/result.js +29 -0
  83. package/cli/result.ts +27 -0
  84. package/cli/run.d.ts +3 -0
  85. package/cli/run.d.ts.map +1 -0
  86. package/cli/run.js +47 -0
  87. package/cli/run.ts +54 -0
  88. package/cli/smoke-test.d.ts +2 -0
  89. package/cli/smoke-test.d.ts.map +1 -0
  90. package/cli/smoke-test.js +33 -0
  91. package/cli/smoke-test.ts +40 -0
  92. package/cli/types.d.ts +86 -0
  93. package/cli/types.d.ts.map +1 -0
  94. package/cli/types.js +1 -0
  95. package/cli/types.ts +78 -0
  96. package/core/breakpoints.d.ts +12 -0
  97. package/core/breakpoints.d.ts.map +1 -0
  98. package/core/breakpoints.js +48 -0
  99. package/core/breakpoints.ts +50 -0
  100. package/core/cli-format.d.ts +8 -0
  101. package/core/cli-format.d.ts.map +1 -0
  102. package/core/cli-format.js +29 -0
  103. package/core/cli-format.ts +31 -0
  104. package/core/color.d.ts +14 -0
  105. package/core/color.d.ts.map +1 -0
  106. package/core/color.js +136 -0
  107. package/core/color.ts +148 -0
  108. package/core/constraints/cross-axis.d.ts +33 -0
  109. package/core/constraints/cross-axis.d.ts.map +1 -0
  110. package/core/constraints/cross-axis.js +93 -0
  111. package/core/constraints/cross-axis.ts +114 -0
  112. package/core/constraints/monotonic-lightness.d.ts +5 -0
  113. package/core/constraints/monotonic-lightness.d.ts.map +1 -0
  114. package/core/constraints/monotonic-lightness.js +37 -0
  115. package/core/constraints/monotonic-lightness.ts +38 -0
  116. package/core/constraints/monotonic.d.ts +7 -0
  117. package/core/constraints/monotonic.d.ts.map +1 -0
  118. package/core/constraints/monotonic.js +65 -0
  119. package/core/constraints/monotonic.ts +74 -0
  120. package/core/constraints/threshold.d.ts +10 -0
  121. package/core/constraints/threshold.d.ts.map +1 -0
  122. package/core/constraints/threshold.js +36 -0
  123. package/core/constraints/threshold.ts +43 -0
  124. package/core/constraints/wcag.d.ts +11 -0
  125. package/core/constraints/wcag.d.ts.map +1 -0
  126. package/core/constraints/wcag.js +53 -0
  127. package/core/constraints/wcag.ts +70 -0
  128. package/core/cross-axis-config.d.ts +5 -0
  129. package/core/cross-axis-config.d.ts.map +1 -0
  130. package/core/cross-axis-config.js +144 -0
  131. package/core/cross-axis-config.ts +152 -0
  132. package/core/engine.d.ts +32 -0
  133. package/core/engine.d.ts.map +1 -0
  134. package/core/engine.js +46 -0
  135. package/core/engine.ts +65 -0
  136. package/core/flatten.d.ts +20 -0
  137. package/core/flatten.d.ts.map +1 -0
  138. package/core/flatten.js +80 -0
  139. package/core/flatten.ts +116 -0
  140. package/core/image-export.d.ts +10 -0
  141. package/core/image-export.d.ts.map +1 -0
  142. package/core/image-export.js +43 -0
  143. package/core/image-export.ts +48 -0
  144. package/core/index.d.ts +31 -0
  145. package/core/index.d.ts.map +1 -0
  146. package/core/index.js +54 -0
  147. package/core/index.ts +72 -0
  148. package/core/patch.d.ts +28 -0
  149. package/core/patch.d.ts.map +1 -0
  150. package/core/patch.js +110 -0
  151. package/core/patch.ts +134 -0
  152. package/core/poset.d.ts +41 -0
  153. package/core/poset.d.ts.map +1 -0
  154. package/core/poset.js +275 -0
  155. package/core/poset.ts +311 -0
  156. package/core/why.d.ts +17 -0
  157. package/core/why.d.ts.map +1 -0
  158. package/core/why.js +45 -0
  159. package/core/why.ts +63 -0
  160. package/dist/test-overrides-removal.json +4 -0
  161. package/dist/tmp.patch.json +35 -0
  162. package/package.json +90 -0
  163. package/themes/color.lg.order.json +15 -0
  164. package/themes/color.md.order.json +15 -0
  165. package/themes/color.order.json +15 -0
  166. package/themes/color.sm.order.json +15 -0
  167. package/themes/cross-axis.rules.json +36 -0
  168. package/themes/cross-axis.sm.rules.json +12 -0
  169. package/themes/layout.lg.order.json +18 -0
  170. package/themes/layout.md.order.json +18 -0
  171. package/themes/layout.order.json +18 -0
  172. package/themes/layout.sm.order.json +18 -0
  173. package/themes/spacing.order.json +14 -0
  174. package/themes/typography.lg.order.json +15 -0
  175. package/themes/typography.md.order.json +15 -0
  176. package/themes/typography.order.json +15 -0
  177. package/themes/typography.sm.order.json +15 -0
  178. package/tokens/overrides/base.json +22 -0
  179. package/tokens/overrides/lg.json +20 -0
  180. package/tokens/overrides/md.json +16 -0
  181. package/tokens/overrides/sm.json +16 -0
  182. package/tokens/overrides/viol.color.json +6 -0
  183. package/tokens/overrides/viol.typography.json +6 -0
  184. package/tokens/tokens.demo-violations.json +116 -0
  185. package/tokens/tokens.example.json +128 -0
  186. package/tokens/tokens.json +67 -0
  187. package/tokens/tokens.multi-violations.json +21 -0
  188. package/tokens/tokens.schema.d.ts +2298 -0
  189. package/tokens/tokens.schema.d.ts.map +1 -0
  190. package/tokens/tokens.schema.js +148 -0
  191. package/tokens/tokens.schema.ts +196 -0
  192. package/tokens/tokens.test.json +38 -0
  193. package/tokens/tokens.touch-violation.json +8 -0
  194. package/tokens/typography.classes.css +11 -0
  195. package/tokens/typography.css +20 -0
@@ -0,0 +1,2298 @@
1
+ import { z } from "zod";
2
+ /** ---------- Top-level schema ---------- */
3
+ export declare const TokensSchema: z.ZodObject<{
4
+ color: z.ZodObject<{
5
+ palette: z.ZodObject<{
6
+ [x: string]: z.ZodTypeAny;
7
+ }, "strip", z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodObject<{
8
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
9
+ $value: z.ZodAny;
10
+ }, "strip", z.ZodTypeAny, {
11
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
12
+ $value?: any;
13
+ }, {
14
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
15
+ $value?: any;
16
+ }>, {
17
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
18
+ $value?: any;
19
+ }, {
20
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
21
+ $value?: any;
22
+ }>>, z.ZodEffects<z.ZodObject<{
23
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
24
+ $value: z.ZodAny;
25
+ }, "strip", z.ZodTypeAny, {
26
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
27
+ $value?: any;
28
+ }, {
29
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
30
+ $value?: any;
31
+ }>, {
32
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
33
+ $value?: any;
34
+ }, {
35
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
36
+ $value?: any;
37
+ }>]>, z.objectOutputType<{
38
+ [x: string]: z.ZodTypeAny;
39
+ }, z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodObject<{
40
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
41
+ $value: z.ZodAny;
42
+ }, "strip", z.ZodTypeAny, {
43
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
44
+ $value?: any;
45
+ }, {
46
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
47
+ $value?: any;
48
+ }>, {
49
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
50
+ $value?: any;
51
+ }, {
52
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
53
+ $value?: any;
54
+ }>>, z.ZodEffects<z.ZodObject<{
55
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
56
+ $value: z.ZodAny;
57
+ }, "strip", z.ZodTypeAny, {
58
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
59
+ $value?: any;
60
+ }, {
61
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
62
+ $value?: any;
63
+ }>, {
64
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
65
+ $value?: any;
66
+ }, {
67
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
68
+ $value?: any;
69
+ }>]>, "strip">, z.objectInputType<{
70
+ [x: string]: z.ZodTypeAny;
71
+ }, z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodObject<{
72
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
73
+ $value: z.ZodAny;
74
+ }, "strip", z.ZodTypeAny, {
75
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
76
+ $value?: any;
77
+ }, {
78
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
79
+ $value?: any;
80
+ }>, {
81
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
82
+ $value?: any;
83
+ }, {
84
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
85
+ $value?: any;
86
+ }>>, z.ZodEffects<z.ZodObject<{
87
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
88
+ $value: z.ZodAny;
89
+ }, "strip", z.ZodTypeAny, {
90
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
91
+ $value?: any;
92
+ }, {
93
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
94
+ $value?: any;
95
+ }>, {
96
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
97
+ $value?: any;
98
+ }, {
99
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
100
+ $value?: any;
101
+ }>]>, "strip">>;
102
+ role: z.ZodObject<{
103
+ text: z.ZodOptional<z.ZodObject<{
104
+ default: z.ZodOptional<z.ZodEffects<z.ZodObject<{
105
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
106
+ $value: z.ZodAny;
107
+ }, "strip", z.ZodTypeAny, {
108
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
109
+ $value?: any;
110
+ }, {
111
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
112
+ $value?: any;
113
+ }>, {
114
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
115
+ $value?: any;
116
+ }, {
117
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
118
+ $value?: any;
119
+ }>>;
120
+ muted: z.ZodOptional<z.ZodEffects<z.ZodObject<{
121
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
122
+ $value: z.ZodAny;
123
+ }, "strip", z.ZodTypeAny, {
124
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
125
+ $value?: any;
126
+ }, {
127
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
128
+ $value?: any;
129
+ }>, {
130
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
131
+ $value?: any;
132
+ }, {
133
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
134
+ $value?: any;
135
+ }>>;
136
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
137
+ default: z.ZodOptional<z.ZodEffects<z.ZodObject<{
138
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
139
+ $value: z.ZodAny;
140
+ }, "strip", z.ZodTypeAny, {
141
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
142
+ $value?: any;
143
+ }, {
144
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
145
+ $value?: any;
146
+ }>, {
147
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
148
+ $value?: any;
149
+ }, {
150
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
151
+ $value?: any;
152
+ }>>;
153
+ muted: z.ZodOptional<z.ZodEffects<z.ZodObject<{
154
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
155
+ $value: z.ZodAny;
156
+ }, "strip", z.ZodTypeAny, {
157
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
158
+ $value?: any;
159
+ }, {
160
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
161
+ $value?: any;
162
+ }>, {
163
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
164
+ $value?: any;
165
+ }, {
166
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
167
+ $value?: any;
168
+ }>>;
169
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
170
+ default: z.ZodOptional<z.ZodEffects<z.ZodObject<{
171
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
172
+ $value: z.ZodAny;
173
+ }, "strip", z.ZodTypeAny, {
174
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
175
+ $value?: any;
176
+ }, {
177
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
178
+ $value?: any;
179
+ }>, {
180
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
181
+ $value?: any;
182
+ }, {
183
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
184
+ $value?: any;
185
+ }>>;
186
+ muted: z.ZodOptional<z.ZodEffects<z.ZodObject<{
187
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
188
+ $value: z.ZodAny;
189
+ }, "strip", z.ZodTypeAny, {
190
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
191
+ $value?: any;
192
+ }, {
193
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
194
+ $value?: any;
195
+ }>, {
196
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
197
+ $value?: any;
198
+ }, {
199
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
200
+ $value?: any;
201
+ }>>;
202
+ }, z.ZodTypeAny, "passthrough">>>;
203
+ bg: z.ZodOptional<z.ZodObject<{
204
+ surface: z.ZodOptional<z.ZodEffects<z.ZodObject<{
205
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
206
+ $value: z.ZodAny;
207
+ }, "strip", z.ZodTypeAny, {
208
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
209
+ $value?: any;
210
+ }, {
211
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
212
+ $value?: any;
213
+ }>, {
214
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
215
+ $value?: any;
216
+ }, {
217
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
218
+ $value?: any;
219
+ }>>;
220
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
221
+ surface: z.ZodOptional<z.ZodEffects<z.ZodObject<{
222
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
223
+ $value: z.ZodAny;
224
+ }, "strip", z.ZodTypeAny, {
225
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
226
+ $value?: any;
227
+ }, {
228
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
229
+ $value?: any;
230
+ }>, {
231
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
232
+ $value?: any;
233
+ }, {
234
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
235
+ $value?: any;
236
+ }>>;
237
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
238
+ surface: z.ZodOptional<z.ZodEffects<z.ZodObject<{
239
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
240
+ $value: z.ZodAny;
241
+ }, "strip", z.ZodTypeAny, {
242
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
243
+ $value?: any;
244
+ }, {
245
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
246
+ $value?: any;
247
+ }>, {
248
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
249
+ $value?: any;
250
+ }, {
251
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
252
+ $value?: any;
253
+ }>>;
254
+ }, z.ZodTypeAny, "passthrough">>>;
255
+ accent: z.ZodOptional<z.ZodObject<{
256
+ default: z.ZodOptional<z.ZodEffects<z.ZodObject<{
257
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
258
+ $value: z.ZodAny;
259
+ }, "strip", z.ZodTypeAny, {
260
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
261
+ $value?: any;
262
+ }, {
263
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
264
+ $value?: any;
265
+ }>, {
266
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
267
+ $value?: any;
268
+ }, {
269
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
270
+ $value?: any;
271
+ }>>;
272
+ hover: z.ZodOptional<z.ZodEffects<z.ZodObject<{
273
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
274
+ $value: z.ZodAny;
275
+ }, "strip", z.ZodTypeAny, {
276
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
277
+ $value?: any;
278
+ }, {
279
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
280
+ $value?: any;
281
+ }>, {
282
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
283
+ $value?: any;
284
+ }, {
285
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
286
+ $value?: any;
287
+ }>>;
288
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
289
+ default: z.ZodOptional<z.ZodEffects<z.ZodObject<{
290
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
291
+ $value: z.ZodAny;
292
+ }, "strip", z.ZodTypeAny, {
293
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
294
+ $value?: any;
295
+ }, {
296
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
297
+ $value?: any;
298
+ }>, {
299
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
300
+ $value?: any;
301
+ }, {
302
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
303
+ $value?: any;
304
+ }>>;
305
+ hover: z.ZodOptional<z.ZodEffects<z.ZodObject<{
306
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
307
+ $value: z.ZodAny;
308
+ }, "strip", z.ZodTypeAny, {
309
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
310
+ $value?: any;
311
+ }, {
312
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
313
+ $value?: any;
314
+ }>, {
315
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
316
+ $value?: any;
317
+ }, {
318
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
319
+ $value?: any;
320
+ }>>;
321
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
322
+ default: z.ZodOptional<z.ZodEffects<z.ZodObject<{
323
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
324
+ $value: z.ZodAny;
325
+ }, "strip", z.ZodTypeAny, {
326
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
327
+ $value?: any;
328
+ }, {
329
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
330
+ $value?: any;
331
+ }>, {
332
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
333
+ $value?: any;
334
+ }, {
335
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
336
+ $value?: any;
337
+ }>>;
338
+ hover: z.ZodOptional<z.ZodEffects<z.ZodObject<{
339
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
340
+ $value: z.ZodAny;
341
+ }, "strip", z.ZodTypeAny, {
342
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
343
+ $value?: any;
344
+ }, {
345
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
346
+ $value?: any;
347
+ }>, {
348
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
349
+ $value?: any;
350
+ }, {
351
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
352
+ $value?: any;
353
+ }>>;
354
+ }, z.ZodTypeAny, "passthrough">>>;
355
+ on: z.ZodOptional<z.ZodObject<{
356
+ accent: z.ZodOptional<z.ZodEffects<z.ZodObject<{
357
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
358
+ $value: z.ZodAny;
359
+ }, "strip", z.ZodTypeAny, {
360
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
361
+ $value?: any;
362
+ }, {
363
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
364
+ $value?: any;
365
+ }>, {
366
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
367
+ $value?: any;
368
+ }, {
369
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
370
+ $value?: any;
371
+ }>>;
372
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
373
+ accent: z.ZodOptional<z.ZodEffects<z.ZodObject<{
374
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
375
+ $value: z.ZodAny;
376
+ }, "strip", z.ZodTypeAny, {
377
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
378
+ $value?: any;
379
+ }, {
380
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
381
+ $value?: any;
382
+ }>, {
383
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
384
+ $value?: any;
385
+ }, {
386
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
387
+ $value?: any;
388
+ }>>;
389
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
390
+ accent: z.ZodOptional<z.ZodEffects<z.ZodObject<{
391
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
392
+ $value: z.ZodAny;
393
+ }, "strip", z.ZodTypeAny, {
394
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
395
+ $value?: any;
396
+ }, {
397
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
398
+ $value?: any;
399
+ }>, {
400
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
401
+ $value?: any;
402
+ }, {
403
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
404
+ $value?: any;
405
+ }>>;
406
+ }, z.ZodTypeAny, "passthrough">>>;
407
+ focus: z.ZodOptional<z.ZodObject<{
408
+ ring: z.ZodOptional<z.ZodEffects<z.ZodObject<{
409
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
410
+ $value: z.ZodAny;
411
+ }, "strip", z.ZodTypeAny, {
412
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
413
+ $value?: any;
414
+ }, {
415
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
416
+ $value?: any;
417
+ }>, {
418
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
419
+ $value?: any;
420
+ }, {
421
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
422
+ $value?: any;
423
+ }>>;
424
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
425
+ ring: z.ZodOptional<z.ZodEffects<z.ZodObject<{
426
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
427
+ $value: z.ZodAny;
428
+ }, "strip", z.ZodTypeAny, {
429
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
430
+ $value?: any;
431
+ }, {
432
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
433
+ $value?: any;
434
+ }>, {
435
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
436
+ $value?: any;
437
+ }, {
438
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
439
+ $value?: any;
440
+ }>>;
441
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
442
+ ring: z.ZodOptional<z.ZodEffects<z.ZodObject<{
443
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
444
+ $value: z.ZodAny;
445
+ }, "strip", z.ZodTypeAny, {
446
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
447
+ $value?: any;
448
+ }, {
449
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
450
+ $value?: any;
451
+ }>, {
452
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
453
+ $value?: any;
454
+ }, {
455
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
456
+ $value?: any;
457
+ }>>;
458
+ }, z.ZodTypeAny, "passthrough">>>;
459
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
460
+ text: z.ZodOptional<z.ZodObject<{
461
+ default: z.ZodOptional<z.ZodEffects<z.ZodObject<{
462
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
463
+ $value: z.ZodAny;
464
+ }, "strip", z.ZodTypeAny, {
465
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
466
+ $value?: any;
467
+ }, {
468
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
469
+ $value?: any;
470
+ }>, {
471
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
472
+ $value?: any;
473
+ }, {
474
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
475
+ $value?: any;
476
+ }>>;
477
+ muted: z.ZodOptional<z.ZodEffects<z.ZodObject<{
478
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
479
+ $value: z.ZodAny;
480
+ }, "strip", z.ZodTypeAny, {
481
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
482
+ $value?: any;
483
+ }, {
484
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
485
+ $value?: any;
486
+ }>, {
487
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
488
+ $value?: any;
489
+ }, {
490
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
491
+ $value?: any;
492
+ }>>;
493
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
494
+ default: z.ZodOptional<z.ZodEffects<z.ZodObject<{
495
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
496
+ $value: z.ZodAny;
497
+ }, "strip", z.ZodTypeAny, {
498
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
499
+ $value?: any;
500
+ }, {
501
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
502
+ $value?: any;
503
+ }>, {
504
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
505
+ $value?: any;
506
+ }, {
507
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
508
+ $value?: any;
509
+ }>>;
510
+ muted: z.ZodOptional<z.ZodEffects<z.ZodObject<{
511
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
512
+ $value: z.ZodAny;
513
+ }, "strip", z.ZodTypeAny, {
514
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
515
+ $value?: any;
516
+ }, {
517
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
518
+ $value?: any;
519
+ }>, {
520
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
521
+ $value?: any;
522
+ }, {
523
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
524
+ $value?: any;
525
+ }>>;
526
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
527
+ default: z.ZodOptional<z.ZodEffects<z.ZodObject<{
528
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
529
+ $value: z.ZodAny;
530
+ }, "strip", z.ZodTypeAny, {
531
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
532
+ $value?: any;
533
+ }, {
534
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
535
+ $value?: any;
536
+ }>, {
537
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
538
+ $value?: any;
539
+ }, {
540
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
541
+ $value?: any;
542
+ }>>;
543
+ muted: z.ZodOptional<z.ZodEffects<z.ZodObject<{
544
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
545
+ $value: z.ZodAny;
546
+ }, "strip", z.ZodTypeAny, {
547
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
548
+ $value?: any;
549
+ }, {
550
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
551
+ $value?: any;
552
+ }>, {
553
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
554
+ $value?: any;
555
+ }, {
556
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
557
+ $value?: any;
558
+ }>>;
559
+ }, z.ZodTypeAny, "passthrough">>>;
560
+ bg: z.ZodOptional<z.ZodObject<{
561
+ surface: z.ZodOptional<z.ZodEffects<z.ZodObject<{
562
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
563
+ $value: z.ZodAny;
564
+ }, "strip", z.ZodTypeAny, {
565
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
566
+ $value?: any;
567
+ }, {
568
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
569
+ $value?: any;
570
+ }>, {
571
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
572
+ $value?: any;
573
+ }, {
574
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
575
+ $value?: any;
576
+ }>>;
577
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
578
+ surface: z.ZodOptional<z.ZodEffects<z.ZodObject<{
579
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
580
+ $value: z.ZodAny;
581
+ }, "strip", z.ZodTypeAny, {
582
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
583
+ $value?: any;
584
+ }, {
585
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
586
+ $value?: any;
587
+ }>, {
588
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
589
+ $value?: any;
590
+ }, {
591
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
592
+ $value?: any;
593
+ }>>;
594
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
595
+ surface: z.ZodOptional<z.ZodEffects<z.ZodObject<{
596
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
597
+ $value: z.ZodAny;
598
+ }, "strip", z.ZodTypeAny, {
599
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
600
+ $value?: any;
601
+ }, {
602
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
603
+ $value?: any;
604
+ }>, {
605
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
606
+ $value?: any;
607
+ }, {
608
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
609
+ $value?: any;
610
+ }>>;
611
+ }, z.ZodTypeAny, "passthrough">>>;
612
+ accent: z.ZodOptional<z.ZodObject<{
613
+ default: z.ZodOptional<z.ZodEffects<z.ZodObject<{
614
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
615
+ $value: z.ZodAny;
616
+ }, "strip", z.ZodTypeAny, {
617
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
618
+ $value?: any;
619
+ }, {
620
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
621
+ $value?: any;
622
+ }>, {
623
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
624
+ $value?: any;
625
+ }, {
626
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
627
+ $value?: any;
628
+ }>>;
629
+ hover: z.ZodOptional<z.ZodEffects<z.ZodObject<{
630
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
631
+ $value: z.ZodAny;
632
+ }, "strip", z.ZodTypeAny, {
633
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
634
+ $value?: any;
635
+ }, {
636
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
637
+ $value?: any;
638
+ }>, {
639
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
640
+ $value?: any;
641
+ }, {
642
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
643
+ $value?: any;
644
+ }>>;
645
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
646
+ default: z.ZodOptional<z.ZodEffects<z.ZodObject<{
647
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
648
+ $value: z.ZodAny;
649
+ }, "strip", z.ZodTypeAny, {
650
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
651
+ $value?: any;
652
+ }, {
653
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
654
+ $value?: any;
655
+ }>, {
656
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
657
+ $value?: any;
658
+ }, {
659
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
660
+ $value?: any;
661
+ }>>;
662
+ hover: z.ZodOptional<z.ZodEffects<z.ZodObject<{
663
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
664
+ $value: z.ZodAny;
665
+ }, "strip", z.ZodTypeAny, {
666
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
667
+ $value?: any;
668
+ }, {
669
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
670
+ $value?: any;
671
+ }>, {
672
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
673
+ $value?: any;
674
+ }, {
675
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
676
+ $value?: any;
677
+ }>>;
678
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
679
+ default: z.ZodOptional<z.ZodEffects<z.ZodObject<{
680
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
681
+ $value: z.ZodAny;
682
+ }, "strip", z.ZodTypeAny, {
683
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
684
+ $value?: any;
685
+ }, {
686
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
687
+ $value?: any;
688
+ }>, {
689
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
690
+ $value?: any;
691
+ }, {
692
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
693
+ $value?: any;
694
+ }>>;
695
+ hover: z.ZodOptional<z.ZodEffects<z.ZodObject<{
696
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
697
+ $value: z.ZodAny;
698
+ }, "strip", z.ZodTypeAny, {
699
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
700
+ $value?: any;
701
+ }, {
702
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
703
+ $value?: any;
704
+ }>, {
705
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
706
+ $value?: any;
707
+ }, {
708
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
709
+ $value?: any;
710
+ }>>;
711
+ }, z.ZodTypeAny, "passthrough">>>;
712
+ on: z.ZodOptional<z.ZodObject<{
713
+ accent: z.ZodOptional<z.ZodEffects<z.ZodObject<{
714
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
715
+ $value: z.ZodAny;
716
+ }, "strip", z.ZodTypeAny, {
717
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
718
+ $value?: any;
719
+ }, {
720
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
721
+ $value?: any;
722
+ }>, {
723
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
724
+ $value?: any;
725
+ }, {
726
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
727
+ $value?: any;
728
+ }>>;
729
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
730
+ accent: z.ZodOptional<z.ZodEffects<z.ZodObject<{
731
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
732
+ $value: z.ZodAny;
733
+ }, "strip", z.ZodTypeAny, {
734
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
735
+ $value?: any;
736
+ }, {
737
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
738
+ $value?: any;
739
+ }>, {
740
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
741
+ $value?: any;
742
+ }, {
743
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
744
+ $value?: any;
745
+ }>>;
746
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
747
+ accent: z.ZodOptional<z.ZodEffects<z.ZodObject<{
748
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
749
+ $value: z.ZodAny;
750
+ }, "strip", z.ZodTypeAny, {
751
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
752
+ $value?: any;
753
+ }, {
754
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
755
+ $value?: any;
756
+ }>, {
757
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
758
+ $value?: any;
759
+ }, {
760
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
761
+ $value?: any;
762
+ }>>;
763
+ }, z.ZodTypeAny, "passthrough">>>;
764
+ focus: z.ZodOptional<z.ZodObject<{
765
+ ring: z.ZodOptional<z.ZodEffects<z.ZodObject<{
766
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
767
+ $value: z.ZodAny;
768
+ }, "strip", z.ZodTypeAny, {
769
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
770
+ $value?: any;
771
+ }, {
772
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
773
+ $value?: any;
774
+ }>, {
775
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
776
+ $value?: any;
777
+ }, {
778
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
779
+ $value?: any;
780
+ }>>;
781
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
782
+ ring: z.ZodOptional<z.ZodEffects<z.ZodObject<{
783
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
784
+ $value: z.ZodAny;
785
+ }, "strip", z.ZodTypeAny, {
786
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
787
+ $value?: any;
788
+ }, {
789
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
790
+ $value?: any;
791
+ }>, {
792
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
793
+ $value?: any;
794
+ }, {
795
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
796
+ $value?: any;
797
+ }>>;
798
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
799
+ ring: z.ZodOptional<z.ZodEffects<z.ZodObject<{
800
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
801
+ $value: z.ZodAny;
802
+ }, "strip", z.ZodTypeAny, {
803
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
804
+ $value?: any;
805
+ }, {
806
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
807
+ $value?: any;
808
+ }>, {
809
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
810
+ $value?: any;
811
+ }, {
812
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
813
+ $value?: any;
814
+ }>>;
815
+ }, z.ZodTypeAny, "passthrough">>>;
816
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
817
+ text: z.ZodOptional<z.ZodObject<{
818
+ default: z.ZodOptional<z.ZodEffects<z.ZodObject<{
819
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
820
+ $value: z.ZodAny;
821
+ }, "strip", z.ZodTypeAny, {
822
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
823
+ $value?: any;
824
+ }, {
825
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
826
+ $value?: any;
827
+ }>, {
828
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
829
+ $value?: any;
830
+ }, {
831
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
832
+ $value?: any;
833
+ }>>;
834
+ muted: z.ZodOptional<z.ZodEffects<z.ZodObject<{
835
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
836
+ $value: z.ZodAny;
837
+ }, "strip", z.ZodTypeAny, {
838
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
839
+ $value?: any;
840
+ }, {
841
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
842
+ $value?: any;
843
+ }>, {
844
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
845
+ $value?: any;
846
+ }, {
847
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
848
+ $value?: any;
849
+ }>>;
850
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
851
+ default: z.ZodOptional<z.ZodEffects<z.ZodObject<{
852
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
853
+ $value: z.ZodAny;
854
+ }, "strip", z.ZodTypeAny, {
855
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
856
+ $value?: any;
857
+ }, {
858
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
859
+ $value?: any;
860
+ }>, {
861
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
862
+ $value?: any;
863
+ }, {
864
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
865
+ $value?: any;
866
+ }>>;
867
+ muted: z.ZodOptional<z.ZodEffects<z.ZodObject<{
868
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
869
+ $value: z.ZodAny;
870
+ }, "strip", z.ZodTypeAny, {
871
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
872
+ $value?: any;
873
+ }, {
874
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
875
+ $value?: any;
876
+ }>, {
877
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
878
+ $value?: any;
879
+ }, {
880
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
881
+ $value?: any;
882
+ }>>;
883
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
884
+ default: z.ZodOptional<z.ZodEffects<z.ZodObject<{
885
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
886
+ $value: z.ZodAny;
887
+ }, "strip", z.ZodTypeAny, {
888
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
889
+ $value?: any;
890
+ }, {
891
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
892
+ $value?: any;
893
+ }>, {
894
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
895
+ $value?: any;
896
+ }, {
897
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
898
+ $value?: any;
899
+ }>>;
900
+ muted: z.ZodOptional<z.ZodEffects<z.ZodObject<{
901
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
902
+ $value: z.ZodAny;
903
+ }, "strip", z.ZodTypeAny, {
904
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
905
+ $value?: any;
906
+ }, {
907
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
908
+ $value?: any;
909
+ }>, {
910
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
911
+ $value?: any;
912
+ }, {
913
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
914
+ $value?: any;
915
+ }>>;
916
+ }, z.ZodTypeAny, "passthrough">>>;
917
+ bg: z.ZodOptional<z.ZodObject<{
918
+ surface: z.ZodOptional<z.ZodEffects<z.ZodObject<{
919
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
920
+ $value: z.ZodAny;
921
+ }, "strip", z.ZodTypeAny, {
922
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
923
+ $value?: any;
924
+ }, {
925
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
926
+ $value?: any;
927
+ }>, {
928
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
929
+ $value?: any;
930
+ }, {
931
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
932
+ $value?: any;
933
+ }>>;
934
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
935
+ surface: z.ZodOptional<z.ZodEffects<z.ZodObject<{
936
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
937
+ $value: z.ZodAny;
938
+ }, "strip", z.ZodTypeAny, {
939
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
940
+ $value?: any;
941
+ }, {
942
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
943
+ $value?: any;
944
+ }>, {
945
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
946
+ $value?: any;
947
+ }, {
948
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
949
+ $value?: any;
950
+ }>>;
951
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
952
+ surface: z.ZodOptional<z.ZodEffects<z.ZodObject<{
953
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
954
+ $value: z.ZodAny;
955
+ }, "strip", z.ZodTypeAny, {
956
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
957
+ $value?: any;
958
+ }, {
959
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
960
+ $value?: any;
961
+ }>, {
962
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
963
+ $value?: any;
964
+ }, {
965
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
966
+ $value?: any;
967
+ }>>;
968
+ }, z.ZodTypeAny, "passthrough">>>;
969
+ accent: z.ZodOptional<z.ZodObject<{
970
+ default: z.ZodOptional<z.ZodEffects<z.ZodObject<{
971
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
972
+ $value: z.ZodAny;
973
+ }, "strip", z.ZodTypeAny, {
974
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
975
+ $value?: any;
976
+ }, {
977
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
978
+ $value?: any;
979
+ }>, {
980
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
981
+ $value?: any;
982
+ }, {
983
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
984
+ $value?: any;
985
+ }>>;
986
+ hover: z.ZodOptional<z.ZodEffects<z.ZodObject<{
987
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
988
+ $value: z.ZodAny;
989
+ }, "strip", z.ZodTypeAny, {
990
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
991
+ $value?: any;
992
+ }, {
993
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
994
+ $value?: any;
995
+ }>, {
996
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
997
+ $value?: any;
998
+ }, {
999
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1000
+ $value?: any;
1001
+ }>>;
1002
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1003
+ default: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1004
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1005
+ $value: z.ZodAny;
1006
+ }, "strip", z.ZodTypeAny, {
1007
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1008
+ $value?: any;
1009
+ }, {
1010
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1011
+ $value?: any;
1012
+ }>, {
1013
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1014
+ $value?: any;
1015
+ }, {
1016
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1017
+ $value?: any;
1018
+ }>>;
1019
+ hover: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1020
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1021
+ $value: z.ZodAny;
1022
+ }, "strip", z.ZodTypeAny, {
1023
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1024
+ $value?: any;
1025
+ }, {
1026
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1027
+ $value?: any;
1028
+ }>, {
1029
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1030
+ $value?: any;
1031
+ }, {
1032
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1033
+ $value?: any;
1034
+ }>>;
1035
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1036
+ default: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1037
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1038
+ $value: z.ZodAny;
1039
+ }, "strip", z.ZodTypeAny, {
1040
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1041
+ $value?: any;
1042
+ }, {
1043
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1044
+ $value?: any;
1045
+ }>, {
1046
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1047
+ $value?: any;
1048
+ }, {
1049
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1050
+ $value?: any;
1051
+ }>>;
1052
+ hover: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1053
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1054
+ $value: z.ZodAny;
1055
+ }, "strip", z.ZodTypeAny, {
1056
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1057
+ $value?: any;
1058
+ }, {
1059
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1060
+ $value?: any;
1061
+ }>, {
1062
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1063
+ $value?: any;
1064
+ }, {
1065
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1066
+ $value?: any;
1067
+ }>>;
1068
+ }, z.ZodTypeAny, "passthrough">>>;
1069
+ on: z.ZodOptional<z.ZodObject<{
1070
+ accent: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1071
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1072
+ $value: z.ZodAny;
1073
+ }, "strip", z.ZodTypeAny, {
1074
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1075
+ $value?: any;
1076
+ }, {
1077
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1078
+ $value?: any;
1079
+ }>, {
1080
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1081
+ $value?: any;
1082
+ }, {
1083
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1084
+ $value?: any;
1085
+ }>>;
1086
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1087
+ accent: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1088
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1089
+ $value: z.ZodAny;
1090
+ }, "strip", z.ZodTypeAny, {
1091
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1092
+ $value?: any;
1093
+ }, {
1094
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1095
+ $value?: any;
1096
+ }>, {
1097
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1098
+ $value?: any;
1099
+ }, {
1100
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1101
+ $value?: any;
1102
+ }>>;
1103
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1104
+ accent: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1105
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1106
+ $value: z.ZodAny;
1107
+ }, "strip", z.ZodTypeAny, {
1108
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1109
+ $value?: any;
1110
+ }, {
1111
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1112
+ $value?: any;
1113
+ }>, {
1114
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1115
+ $value?: any;
1116
+ }, {
1117
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1118
+ $value?: any;
1119
+ }>>;
1120
+ }, z.ZodTypeAny, "passthrough">>>;
1121
+ focus: z.ZodOptional<z.ZodObject<{
1122
+ ring: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1123
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1124
+ $value: z.ZodAny;
1125
+ }, "strip", z.ZodTypeAny, {
1126
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1127
+ $value?: any;
1128
+ }, {
1129
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1130
+ $value?: any;
1131
+ }>, {
1132
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1133
+ $value?: any;
1134
+ }, {
1135
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1136
+ $value?: any;
1137
+ }>>;
1138
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1139
+ ring: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1140
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1141
+ $value: z.ZodAny;
1142
+ }, "strip", z.ZodTypeAny, {
1143
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1144
+ $value?: any;
1145
+ }, {
1146
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1147
+ $value?: any;
1148
+ }>, {
1149
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1150
+ $value?: any;
1151
+ }, {
1152
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1153
+ $value?: any;
1154
+ }>>;
1155
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1156
+ ring: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1157
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1158
+ $value: z.ZodAny;
1159
+ }, "strip", z.ZodTypeAny, {
1160
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1161
+ $value?: any;
1162
+ }, {
1163
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1164
+ $value?: any;
1165
+ }>, {
1166
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1167
+ $value?: any;
1168
+ }, {
1169
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1170
+ $value?: any;
1171
+ }>>;
1172
+ }, z.ZodTypeAny, "passthrough">>>;
1173
+ }, z.ZodTypeAny, "passthrough">>;
1174
+ }, "strip", z.ZodTypeAny, {
1175
+ palette: {
1176
+ [x: string]: any;
1177
+ } & {
1178
+ [k: string]: {
1179
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1180
+ $value?: any;
1181
+ } | Record<string, {
1182
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1183
+ $value?: any;
1184
+ }>;
1185
+ };
1186
+ role: {
1187
+ focus?: z.objectOutputType<{
1188
+ ring: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1189
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1190
+ $value: z.ZodAny;
1191
+ }, "strip", z.ZodTypeAny, {
1192
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1193
+ $value?: any;
1194
+ }, {
1195
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1196
+ $value?: any;
1197
+ }>, {
1198
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1199
+ $value?: any;
1200
+ }, {
1201
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1202
+ $value?: any;
1203
+ }>>;
1204
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1205
+ text?: z.objectOutputType<{
1206
+ default: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1207
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1208
+ $value: z.ZodAny;
1209
+ }, "strip", z.ZodTypeAny, {
1210
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1211
+ $value?: any;
1212
+ }, {
1213
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1214
+ $value?: any;
1215
+ }>, {
1216
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1217
+ $value?: any;
1218
+ }, {
1219
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1220
+ $value?: any;
1221
+ }>>;
1222
+ muted: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1223
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1224
+ $value: z.ZodAny;
1225
+ }, "strip", z.ZodTypeAny, {
1226
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1227
+ $value?: any;
1228
+ }, {
1229
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1230
+ $value?: any;
1231
+ }>, {
1232
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1233
+ $value?: any;
1234
+ }, {
1235
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1236
+ $value?: any;
1237
+ }>>;
1238
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1239
+ bg?: z.objectOutputType<{
1240
+ surface: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1241
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1242
+ $value: z.ZodAny;
1243
+ }, "strip", z.ZodTypeAny, {
1244
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1245
+ $value?: any;
1246
+ }, {
1247
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1248
+ $value?: any;
1249
+ }>, {
1250
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1251
+ $value?: any;
1252
+ }, {
1253
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1254
+ $value?: any;
1255
+ }>>;
1256
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1257
+ accent?: z.objectOutputType<{
1258
+ default: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1259
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1260
+ $value: z.ZodAny;
1261
+ }, "strip", z.ZodTypeAny, {
1262
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1263
+ $value?: any;
1264
+ }, {
1265
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1266
+ $value?: any;
1267
+ }>, {
1268
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1269
+ $value?: any;
1270
+ }, {
1271
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1272
+ $value?: any;
1273
+ }>>;
1274
+ hover: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1275
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1276
+ $value: z.ZodAny;
1277
+ }, "strip", z.ZodTypeAny, {
1278
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1279
+ $value?: any;
1280
+ }, {
1281
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1282
+ $value?: any;
1283
+ }>, {
1284
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1285
+ $value?: any;
1286
+ }, {
1287
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1288
+ $value?: any;
1289
+ }>>;
1290
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1291
+ on?: z.objectOutputType<{
1292
+ accent: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1293
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1294
+ $value: z.ZodAny;
1295
+ }, "strip", z.ZodTypeAny, {
1296
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1297
+ $value?: any;
1298
+ }, {
1299
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1300
+ $value?: any;
1301
+ }>, {
1302
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1303
+ $value?: any;
1304
+ }, {
1305
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1306
+ $value?: any;
1307
+ }>>;
1308
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1309
+ } & {
1310
+ [k: string]: unknown;
1311
+ };
1312
+ }, {
1313
+ palette: {
1314
+ [x: string]: any;
1315
+ } & {
1316
+ [k: string]: {
1317
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1318
+ $value?: any;
1319
+ } | Record<string, {
1320
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1321
+ $value?: any;
1322
+ }>;
1323
+ };
1324
+ role: {
1325
+ focus?: z.objectInputType<{
1326
+ ring: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1327
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1328
+ $value: z.ZodAny;
1329
+ }, "strip", z.ZodTypeAny, {
1330
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1331
+ $value?: any;
1332
+ }, {
1333
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1334
+ $value?: any;
1335
+ }>, {
1336
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1337
+ $value?: any;
1338
+ }, {
1339
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1340
+ $value?: any;
1341
+ }>>;
1342
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1343
+ text?: z.objectInputType<{
1344
+ default: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1345
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1346
+ $value: z.ZodAny;
1347
+ }, "strip", z.ZodTypeAny, {
1348
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1349
+ $value?: any;
1350
+ }, {
1351
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1352
+ $value?: any;
1353
+ }>, {
1354
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1355
+ $value?: any;
1356
+ }, {
1357
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1358
+ $value?: any;
1359
+ }>>;
1360
+ muted: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1361
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1362
+ $value: z.ZodAny;
1363
+ }, "strip", z.ZodTypeAny, {
1364
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1365
+ $value?: any;
1366
+ }, {
1367
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1368
+ $value?: any;
1369
+ }>, {
1370
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1371
+ $value?: any;
1372
+ }, {
1373
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1374
+ $value?: any;
1375
+ }>>;
1376
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1377
+ bg?: z.objectInputType<{
1378
+ surface: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1379
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1380
+ $value: z.ZodAny;
1381
+ }, "strip", z.ZodTypeAny, {
1382
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1383
+ $value?: any;
1384
+ }, {
1385
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1386
+ $value?: any;
1387
+ }>, {
1388
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1389
+ $value?: any;
1390
+ }, {
1391
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1392
+ $value?: any;
1393
+ }>>;
1394
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1395
+ accent?: z.objectInputType<{
1396
+ default: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1397
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1398
+ $value: z.ZodAny;
1399
+ }, "strip", z.ZodTypeAny, {
1400
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1401
+ $value?: any;
1402
+ }, {
1403
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1404
+ $value?: any;
1405
+ }>, {
1406
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1407
+ $value?: any;
1408
+ }, {
1409
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1410
+ $value?: any;
1411
+ }>>;
1412
+ hover: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1413
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1414
+ $value: z.ZodAny;
1415
+ }, "strip", z.ZodTypeAny, {
1416
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1417
+ $value?: any;
1418
+ }, {
1419
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1420
+ $value?: any;
1421
+ }>, {
1422
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1423
+ $value?: any;
1424
+ }, {
1425
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1426
+ $value?: any;
1427
+ }>>;
1428
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1429
+ on?: z.objectInputType<{
1430
+ accent: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1431
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1432
+ $value: z.ZodAny;
1433
+ }, "strip", z.ZodTypeAny, {
1434
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1435
+ $value?: any;
1436
+ }, {
1437
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1438
+ $value?: any;
1439
+ }>, {
1440
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1441
+ $value?: any;
1442
+ }, {
1443
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1444
+ $value?: any;
1445
+ }>>;
1446
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1447
+ } & {
1448
+ [k: string]: unknown;
1449
+ };
1450
+ }>;
1451
+ size: z.ZodObject<{
1452
+ spacing: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodObject<{
1453
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1454
+ $value: z.ZodAny;
1455
+ }, "strip", z.ZodTypeAny, {
1456
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1457
+ $value?: any;
1458
+ }, {
1459
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1460
+ $value?: any;
1461
+ }>, {
1462
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1463
+ $value?: any;
1464
+ }, {
1465
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1466
+ $value?: any;
1467
+ }>>;
1468
+ radius: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodObject<{
1469
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1470
+ $value: z.ZodAny;
1471
+ }, "strip", z.ZodTypeAny, {
1472
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1473
+ $value?: any;
1474
+ }, {
1475
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1476
+ $value?: any;
1477
+ }>, {
1478
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1479
+ $value?: any;
1480
+ }, {
1481
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1482
+ $value?: any;
1483
+ }>>;
1484
+ border: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodObject<{
1485
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1486
+ $value: z.ZodAny;
1487
+ }, "strip", z.ZodTypeAny, {
1488
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1489
+ $value?: any;
1490
+ }, {
1491
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1492
+ $value?: any;
1493
+ }>, {
1494
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1495
+ $value?: any;
1496
+ }, {
1497
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1498
+ $value?: any;
1499
+ }>>;
1500
+ }, "strip", z.ZodTypeAny, {
1501
+ radius: Record<string, {
1502
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1503
+ $value?: any;
1504
+ }>;
1505
+ spacing: Record<string, {
1506
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1507
+ $value?: any;
1508
+ }>;
1509
+ border: Record<string, {
1510
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1511
+ $value?: any;
1512
+ }>;
1513
+ }, {
1514
+ radius: Record<string, {
1515
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1516
+ $value?: any;
1517
+ }>;
1518
+ spacing: Record<string, {
1519
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1520
+ $value?: any;
1521
+ }>;
1522
+ border: Record<string, {
1523
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1524
+ $value?: any;
1525
+ }>;
1526
+ }>;
1527
+ typography: z.ZodObject<{
1528
+ font: z.ZodObject<{
1529
+ body: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1530
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1531
+ $value: z.ZodAny;
1532
+ }, "strip", z.ZodTypeAny, {
1533
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1534
+ $value?: any;
1535
+ }, {
1536
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1537
+ $value?: any;
1538
+ }>, {
1539
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1540
+ $value?: any;
1541
+ }, {
1542
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1543
+ $value?: any;
1544
+ }>>;
1545
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1546
+ body: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1547
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1548
+ $value: z.ZodAny;
1549
+ }, "strip", z.ZodTypeAny, {
1550
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1551
+ $value?: any;
1552
+ }, {
1553
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1554
+ $value?: any;
1555
+ }>, {
1556
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1557
+ $value?: any;
1558
+ }, {
1559
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1560
+ $value?: any;
1561
+ }>>;
1562
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1563
+ body: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1564
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1565
+ $value: z.ZodAny;
1566
+ }, "strip", z.ZodTypeAny, {
1567
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1568
+ $value?: any;
1569
+ }, {
1570
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1571
+ $value?: any;
1572
+ }>, {
1573
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1574
+ $value?: any;
1575
+ }, {
1576
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1577
+ $value?: any;
1578
+ }>>;
1579
+ }, z.ZodTypeAny, "passthrough">>;
1580
+ size: z.ZodObject<{
1581
+ body: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1582
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1583
+ $value: z.ZodAny;
1584
+ }, "strip", z.ZodTypeAny, {
1585
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1586
+ $value?: any;
1587
+ }, {
1588
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1589
+ $value?: any;
1590
+ }>, {
1591
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1592
+ $value?: any;
1593
+ }, {
1594
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1595
+ $value?: any;
1596
+ }>>;
1597
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1598
+ body: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1599
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1600
+ $value: z.ZodAny;
1601
+ }, "strip", z.ZodTypeAny, {
1602
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1603
+ $value?: any;
1604
+ }, {
1605
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1606
+ $value?: any;
1607
+ }>, {
1608
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1609
+ $value?: any;
1610
+ }, {
1611
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1612
+ $value?: any;
1613
+ }>>;
1614
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1615
+ body: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1616
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1617
+ $value: z.ZodAny;
1618
+ }, "strip", z.ZodTypeAny, {
1619
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1620
+ $value?: any;
1621
+ }, {
1622
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1623
+ $value?: any;
1624
+ }>, {
1625
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1626
+ $value?: any;
1627
+ }, {
1628
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1629
+ $value?: any;
1630
+ }>>;
1631
+ }, z.ZodTypeAny, "passthrough">>;
1632
+ lineHeight: z.ZodObject<{
1633
+ body: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1634
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1635
+ $value: z.ZodAny;
1636
+ }, "strip", z.ZodTypeAny, {
1637
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1638
+ $value?: any;
1639
+ }, {
1640
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1641
+ $value?: any;
1642
+ }>, {
1643
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1644
+ $value?: any;
1645
+ }, {
1646
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1647
+ $value?: any;
1648
+ }>>;
1649
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1650
+ body: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1651
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1652
+ $value: z.ZodAny;
1653
+ }, "strip", z.ZodTypeAny, {
1654
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1655
+ $value?: any;
1656
+ }, {
1657
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1658
+ $value?: any;
1659
+ }>, {
1660
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1661
+ $value?: any;
1662
+ }, {
1663
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1664
+ $value?: any;
1665
+ }>>;
1666
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1667
+ body: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1668
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1669
+ $value: z.ZodAny;
1670
+ }, "strip", z.ZodTypeAny, {
1671
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1672
+ $value?: any;
1673
+ }, {
1674
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1675
+ $value?: any;
1676
+ }>, {
1677
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1678
+ $value?: any;
1679
+ }, {
1680
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1681
+ $value?: any;
1682
+ }>>;
1683
+ }, z.ZodTypeAny, "passthrough">>;
1684
+ }, "strip", z.ZodTypeAny, {
1685
+ lineHeight: {
1686
+ body?: {
1687
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1688
+ $value?: any;
1689
+ } | undefined;
1690
+ } & {
1691
+ [k: string]: unknown;
1692
+ };
1693
+ font: {
1694
+ body?: {
1695
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1696
+ $value?: any;
1697
+ } | undefined;
1698
+ } & {
1699
+ [k: string]: unknown;
1700
+ };
1701
+ size: {
1702
+ body?: {
1703
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1704
+ $value?: any;
1705
+ } | undefined;
1706
+ } & {
1707
+ [k: string]: unknown;
1708
+ };
1709
+ }, {
1710
+ lineHeight: {
1711
+ body?: {
1712
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1713
+ $value?: any;
1714
+ } | undefined;
1715
+ } & {
1716
+ [k: string]: unknown;
1717
+ };
1718
+ font: {
1719
+ body?: {
1720
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1721
+ $value?: any;
1722
+ } | undefined;
1723
+ } & {
1724
+ [k: string]: unknown;
1725
+ };
1726
+ size: {
1727
+ body?: {
1728
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1729
+ $value?: any;
1730
+ } | undefined;
1731
+ } & {
1732
+ [k: string]: unknown;
1733
+ };
1734
+ }>;
1735
+ motion: z.ZodObject<{
1736
+ duration: z.ZodObject<{
1737
+ fast: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1738
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1739
+ $value: z.ZodAny;
1740
+ }, "strip", z.ZodTypeAny, {
1741
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1742
+ $value?: any;
1743
+ }, {
1744
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1745
+ $value?: any;
1746
+ }>, {
1747
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1748
+ $value?: any;
1749
+ }, {
1750
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1751
+ $value?: any;
1752
+ }>>;
1753
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1754
+ fast: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1755
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1756
+ $value: z.ZodAny;
1757
+ }, "strip", z.ZodTypeAny, {
1758
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1759
+ $value?: any;
1760
+ }, {
1761
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1762
+ $value?: any;
1763
+ }>, {
1764
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1765
+ $value?: any;
1766
+ }, {
1767
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1768
+ $value?: any;
1769
+ }>>;
1770
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1771
+ fast: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1772
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1773
+ $value: z.ZodAny;
1774
+ }, "strip", z.ZodTypeAny, {
1775
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1776
+ $value?: any;
1777
+ }, {
1778
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1779
+ $value?: any;
1780
+ }>, {
1781
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1782
+ $value?: any;
1783
+ }, {
1784
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1785
+ $value?: any;
1786
+ }>>;
1787
+ }, z.ZodTypeAny, "passthrough">>;
1788
+ easing: z.ZodObject<{
1789
+ standard: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1790
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1791
+ $value: z.ZodAny;
1792
+ }, "strip", z.ZodTypeAny, {
1793
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1794
+ $value?: any;
1795
+ }, {
1796
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1797
+ $value?: any;
1798
+ }>, {
1799
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1800
+ $value?: any;
1801
+ }, {
1802
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1803
+ $value?: any;
1804
+ }>>;
1805
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1806
+ standard: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1807
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1808
+ $value: z.ZodAny;
1809
+ }, "strip", z.ZodTypeAny, {
1810
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1811
+ $value?: any;
1812
+ }, {
1813
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1814
+ $value?: any;
1815
+ }>, {
1816
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1817
+ $value?: any;
1818
+ }, {
1819
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1820
+ $value?: any;
1821
+ }>>;
1822
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1823
+ standard: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1824
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1825
+ $value: z.ZodAny;
1826
+ }, "strip", z.ZodTypeAny, {
1827
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1828
+ $value?: any;
1829
+ }, {
1830
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1831
+ $value?: any;
1832
+ }>, {
1833
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1834
+ $value?: any;
1835
+ }, {
1836
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1837
+ $value?: any;
1838
+ }>>;
1839
+ }, z.ZodTypeAny, "passthrough">>;
1840
+ }, "strip", z.ZodTypeAny, {
1841
+ duration: {
1842
+ fast?: {
1843
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1844
+ $value?: any;
1845
+ } | undefined;
1846
+ } & {
1847
+ [k: string]: unknown;
1848
+ };
1849
+ easing: {
1850
+ standard?: {
1851
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1852
+ $value?: any;
1853
+ } | undefined;
1854
+ } & {
1855
+ [k: string]: unknown;
1856
+ };
1857
+ }, {
1858
+ duration: {
1859
+ fast?: {
1860
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1861
+ $value?: any;
1862
+ } | undefined;
1863
+ } & {
1864
+ [k: string]: unknown;
1865
+ };
1866
+ easing: {
1867
+ standard?: {
1868
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1869
+ $value?: any;
1870
+ } | undefined;
1871
+ } & {
1872
+ [k: string]: unknown;
1873
+ };
1874
+ }>;
1875
+ elevation: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodObject<{
1876
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1877
+ $value: z.ZodAny;
1878
+ }, "strip", z.ZodTypeAny, {
1879
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1880
+ $value?: any;
1881
+ }, {
1882
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1883
+ $value?: any;
1884
+ }>, {
1885
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1886
+ $value?: any;
1887
+ }, {
1888
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1889
+ $value?: any;
1890
+ }>>;
1891
+ }, "strip", z.ZodTypeAny, {
1892
+ typography: {
1893
+ lineHeight: {
1894
+ body?: {
1895
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1896
+ $value?: any;
1897
+ } | undefined;
1898
+ } & {
1899
+ [k: string]: unknown;
1900
+ };
1901
+ font: {
1902
+ body?: {
1903
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1904
+ $value?: any;
1905
+ } | undefined;
1906
+ } & {
1907
+ [k: string]: unknown;
1908
+ };
1909
+ size: {
1910
+ body?: {
1911
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1912
+ $value?: any;
1913
+ } | undefined;
1914
+ } & {
1915
+ [k: string]: unknown;
1916
+ };
1917
+ };
1918
+ color: {
1919
+ palette: {
1920
+ [x: string]: any;
1921
+ } & {
1922
+ [k: string]: {
1923
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1924
+ $value?: any;
1925
+ } | Record<string, {
1926
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1927
+ $value?: any;
1928
+ }>;
1929
+ };
1930
+ role: {
1931
+ focus?: z.objectOutputType<{
1932
+ ring: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1933
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1934
+ $value: z.ZodAny;
1935
+ }, "strip", z.ZodTypeAny, {
1936
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1937
+ $value?: any;
1938
+ }, {
1939
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1940
+ $value?: any;
1941
+ }>, {
1942
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1943
+ $value?: any;
1944
+ }, {
1945
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1946
+ $value?: any;
1947
+ }>>;
1948
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1949
+ text?: z.objectOutputType<{
1950
+ default: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1951
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1952
+ $value: z.ZodAny;
1953
+ }, "strip", z.ZodTypeAny, {
1954
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1955
+ $value?: any;
1956
+ }, {
1957
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1958
+ $value?: any;
1959
+ }>, {
1960
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1961
+ $value?: any;
1962
+ }, {
1963
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1964
+ $value?: any;
1965
+ }>>;
1966
+ muted: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1967
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1968
+ $value: z.ZodAny;
1969
+ }, "strip", z.ZodTypeAny, {
1970
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1971
+ $value?: any;
1972
+ }, {
1973
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1974
+ $value?: any;
1975
+ }>, {
1976
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1977
+ $value?: any;
1978
+ }, {
1979
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1980
+ $value?: any;
1981
+ }>>;
1982
+ }, z.ZodTypeAny, "passthrough"> | undefined;
1983
+ bg?: z.objectOutputType<{
1984
+ surface: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1985
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
1986
+ $value: z.ZodAny;
1987
+ }, "strip", z.ZodTypeAny, {
1988
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1989
+ $value?: any;
1990
+ }, {
1991
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1992
+ $value?: any;
1993
+ }>, {
1994
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1995
+ $value?: any;
1996
+ }, {
1997
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
1998
+ $value?: any;
1999
+ }>>;
2000
+ }, z.ZodTypeAny, "passthrough"> | undefined;
2001
+ accent?: z.objectOutputType<{
2002
+ default: z.ZodOptional<z.ZodEffects<z.ZodObject<{
2003
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
2004
+ $value: z.ZodAny;
2005
+ }, "strip", z.ZodTypeAny, {
2006
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2007
+ $value?: any;
2008
+ }, {
2009
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2010
+ $value?: any;
2011
+ }>, {
2012
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2013
+ $value?: any;
2014
+ }, {
2015
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2016
+ $value?: any;
2017
+ }>>;
2018
+ hover: z.ZodOptional<z.ZodEffects<z.ZodObject<{
2019
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
2020
+ $value: z.ZodAny;
2021
+ }, "strip", z.ZodTypeAny, {
2022
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2023
+ $value?: any;
2024
+ }, {
2025
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2026
+ $value?: any;
2027
+ }>, {
2028
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2029
+ $value?: any;
2030
+ }, {
2031
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2032
+ $value?: any;
2033
+ }>>;
2034
+ }, z.ZodTypeAny, "passthrough"> | undefined;
2035
+ on?: z.objectOutputType<{
2036
+ accent: z.ZodOptional<z.ZodEffects<z.ZodObject<{
2037
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
2038
+ $value: z.ZodAny;
2039
+ }, "strip", z.ZodTypeAny, {
2040
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2041
+ $value?: any;
2042
+ }, {
2043
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2044
+ $value?: any;
2045
+ }>, {
2046
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2047
+ $value?: any;
2048
+ }, {
2049
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2050
+ $value?: any;
2051
+ }>>;
2052
+ }, z.ZodTypeAny, "passthrough"> | undefined;
2053
+ } & {
2054
+ [k: string]: unknown;
2055
+ };
2056
+ };
2057
+ size: {
2058
+ radius: Record<string, {
2059
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2060
+ $value?: any;
2061
+ }>;
2062
+ spacing: Record<string, {
2063
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2064
+ $value?: any;
2065
+ }>;
2066
+ border: Record<string, {
2067
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2068
+ $value?: any;
2069
+ }>;
2070
+ };
2071
+ motion: {
2072
+ duration: {
2073
+ fast?: {
2074
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2075
+ $value?: any;
2076
+ } | undefined;
2077
+ } & {
2078
+ [k: string]: unknown;
2079
+ };
2080
+ easing: {
2081
+ standard?: {
2082
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2083
+ $value?: any;
2084
+ } | undefined;
2085
+ } & {
2086
+ [k: string]: unknown;
2087
+ };
2088
+ };
2089
+ elevation: Record<string, {
2090
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2091
+ $value?: any;
2092
+ }>;
2093
+ }, {
2094
+ typography: {
2095
+ lineHeight: {
2096
+ body?: {
2097
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2098
+ $value?: any;
2099
+ } | undefined;
2100
+ } & {
2101
+ [k: string]: unknown;
2102
+ };
2103
+ font: {
2104
+ body?: {
2105
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2106
+ $value?: any;
2107
+ } | undefined;
2108
+ } & {
2109
+ [k: string]: unknown;
2110
+ };
2111
+ size: {
2112
+ body?: {
2113
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2114
+ $value?: any;
2115
+ } | undefined;
2116
+ } & {
2117
+ [k: string]: unknown;
2118
+ };
2119
+ };
2120
+ color: {
2121
+ palette: {
2122
+ [x: string]: any;
2123
+ } & {
2124
+ [k: string]: {
2125
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2126
+ $value?: any;
2127
+ } | Record<string, {
2128
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2129
+ $value?: any;
2130
+ }>;
2131
+ };
2132
+ role: {
2133
+ focus?: z.objectInputType<{
2134
+ ring: z.ZodOptional<z.ZodEffects<z.ZodObject<{
2135
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
2136
+ $value: z.ZodAny;
2137
+ }, "strip", z.ZodTypeAny, {
2138
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2139
+ $value?: any;
2140
+ }, {
2141
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2142
+ $value?: any;
2143
+ }>, {
2144
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2145
+ $value?: any;
2146
+ }, {
2147
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2148
+ $value?: any;
2149
+ }>>;
2150
+ }, z.ZodTypeAny, "passthrough"> | undefined;
2151
+ text?: z.objectInputType<{
2152
+ default: z.ZodOptional<z.ZodEffects<z.ZodObject<{
2153
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
2154
+ $value: z.ZodAny;
2155
+ }, "strip", z.ZodTypeAny, {
2156
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2157
+ $value?: any;
2158
+ }, {
2159
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2160
+ $value?: any;
2161
+ }>, {
2162
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2163
+ $value?: any;
2164
+ }, {
2165
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2166
+ $value?: any;
2167
+ }>>;
2168
+ muted: z.ZodOptional<z.ZodEffects<z.ZodObject<{
2169
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
2170
+ $value: z.ZodAny;
2171
+ }, "strip", z.ZodTypeAny, {
2172
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2173
+ $value?: any;
2174
+ }, {
2175
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2176
+ $value?: any;
2177
+ }>, {
2178
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2179
+ $value?: any;
2180
+ }, {
2181
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2182
+ $value?: any;
2183
+ }>>;
2184
+ }, z.ZodTypeAny, "passthrough"> | undefined;
2185
+ bg?: z.objectInputType<{
2186
+ surface: z.ZodOptional<z.ZodEffects<z.ZodObject<{
2187
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
2188
+ $value: z.ZodAny;
2189
+ }, "strip", z.ZodTypeAny, {
2190
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2191
+ $value?: any;
2192
+ }, {
2193
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2194
+ $value?: any;
2195
+ }>, {
2196
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2197
+ $value?: any;
2198
+ }, {
2199
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2200
+ $value?: any;
2201
+ }>>;
2202
+ }, z.ZodTypeAny, "passthrough"> | undefined;
2203
+ accent?: z.objectInputType<{
2204
+ default: z.ZodOptional<z.ZodEffects<z.ZodObject<{
2205
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
2206
+ $value: z.ZodAny;
2207
+ }, "strip", z.ZodTypeAny, {
2208
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2209
+ $value?: any;
2210
+ }, {
2211
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2212
+ $value?: any;
2213
+ }>, {
2214
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2215
+ $value?: any;
2216
+ }, {
2217
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2218
+ $value?: any;
2219
+ }>>;
2220
+ hover: z.ZodOptional<z.ZodEffects<z.ZodObject<{
2221
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
2222
+ $value: z.ZodAny;
2223
+ }, "strip", z.ZodTypeAny, {
2224
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2225
+ $value?: any;
2226
+ }, {
2227
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2228
+ $value?: any;
2229
+ }>, {
2230
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2231
+ $value?: any;
2232
+ }, {
2233
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2234
+ $value?: any;
2235
+ }>>;
2236
+ }, z.ZodTypeAny, "passthrough"> | undefined;
2237
+ on?: z.objectInputType<{
2238
+ accent: z.ZodOptional<z.ZodEffects<z.ZodObject<{
2239
+ $type: z.ZodEnum<["color", "dimension", "borderRadius", "fontSize", "shadow", "duration", "easing", "fontFamily", "lineHeight"]>;
2240
+ $value: z.ZodAny;
2241
+ }, "strip", z.ZodTypeAny, {
2242
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2243
+ $value?: any;
2244
+ }, {
2245
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2246
+ $value?: any;
2247
+ }>, {
2248
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2249
+ $value?: any;
2250
+ }, {
2251
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2252
+ $value?: any;
2253
+ }>>;
2254
+ }, z.ZodTypeAny, "passthrough"> | undefined;
2255
+ } & {
2256
+ [k: string]: unknown;
2257
+ };
2258
+ };
2259
+ size: {
2260
+ radius: Record<string, {
2261
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2262
+ $value?: any;
2263
+ }>;
2264
+ spacing: Record<string, {
2265
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2266
+ $value?: any;
2267
+ }>;
2268
+ border: Record<string, {
2269
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2270
+ $value?: any;
2271
+ }>;
2272
+ };
2273
+ motion: {
2274
+ duration: {
2275
+ fast?: {
2276
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2277
+ $value?: any;
2278
+ } | undefined;
2279
+ } & {
2280
+ [k: string]: unknown;
2281
+ };
2282
+ easing: {
2283
+ standard?: {
2284
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2285
+ $value?: any;
2286
+ } | undefined;
2287
+ } & {
2288
+ [k: string]: unknown;
2289
+ };
2290
+ };
2291
+ elevation: Record<string, {
2292
+ $type: "color" | "dimension" | "borderRadius" | "fontSize" | "shadow" | "duration" | "easing" | "fontFamily" | "lineHeight";
2293
+ $value?: any;
2294
+ }>;
2295
+ }>;
2296
+ export type Tokens = z.infer<typeof TokensSchema>;
2297
+ /** ---------- Example usage ---------- */
2298
+ //# sourceMappingURL=tokens.schema.d.ts.map