@hanzo/ui 0.5.10

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 (166) hide show
  1. package/assets/lux-site-icons/android-chrome-192x192.png +0 -0
  2. package/assets/lux-site-icons/android-chrome-512x512.png +0 -0
  3. package/assets/lux-site-icons/apple-touch-icon.png +0 -0
  4. package/assets/lux-site-icons/favicon-16x16.png +0 -0
  5. package/assets/lux-site-icons/favicon-32x32.png +0 -0
  6. package/assets/lux-site-icons/favicon.ico +0 -0
  7. package/assets/standard-docs/LUX-NFT-Terms-and-Conditions.pdf +0 -0
  8. package/assets/standard-docs/LUX-Privacy-Policy.pdf +0 -0
  9. package/blocks/components/accordian-block.tsx +48 -0
  10. package/blocks/components/block-component-props.ts +11 -0
  11. package/blocks/components/bullet-cards-block.tsx +43 -0
  12. package/blocks/components/card-block.tsx +213 -0
  13. package/blocks/components/carte-blanche-block/index.tsx +98 -0
  14. package/blocks/components/content.tsx +70 -0
  15. package/blocks/components/cta-block.tsx +98 -0
  16. package/blocks/components/enh-heading-block.tsx +194 -0
  17. package/blocks/components/grid-block/grid-block-mutator.ts +12 -0
  18. package/blocks/components/grid-block/index.tsx +83 -0
  19. package/blocks/components/grid-block/mutator-registry.ts +10 -0
  20. package/blocks/components/grid-block/table-borders.mutator.ts +47 -0
  21. package/blocks/components/group-block.tsx +83 -0
  22. package/blocks/components/heading-block.tsx +88 -0
  23. package/blocks/components/image-block.tsx +108 -0
  24. package/blocks/components/index.ts +30 -0
  25. package/blocks/components/screenful-block/content.tsx +115 -0
  26. package/blocks/components/screenful-block/index.tsx +77 -0
  27. package/blocks/components/screenful-block/poster-background.tsx +34 -0
  28. package/blocks/components/screenful-block/video-background.tsx +45 -0
  29. package/blocks/components/space-block.tsx +66 -0
  30. package/blocks/components/video-block.tsx +137 -0
  31. package/blocks/def/accordian-block.ts +14 -0
  32. package/blocks/def/block.ts +7 -0
  33. package/blocks/def/bullet-cards-block.ts +20 -0
  34. package/blocks/def/card-block.ts +24 -0
  35. package/blocks/def/carte-blanche-block.ts +20 -0
  36. package/blocks/def/cta-block.ts +19 -0
  37. package/blocks/def/element-block.ts +11 -0
  38. package/blocks/def/enh-heading-block.ts +45 -0
  39. package/blocks/def/grid-block.ts +16 -0
  40. package/blocks/def/group-block.ts +11 -0
  41. package/blocks/def/heading-block.ts +15 -0
  42. package/blocks/def/image-block.ts +36 -0
  43. package/blocks/def/index.ts +35 -0
  44. package/blocks/def/screenful-block.ts +51 -0
  45. package/blocks/def/space-block.ts +64 -0
  46. package/blocks/def/video-block.ts +28 -0
  47. package/blocks/index.ts +2 -0
  48. package/common/chat-widget.tsx +75 -0
  49. package/common/contact-dialog/contact-form.tsx +111 -0
  50. package/common/contact-dialog/disclaimer.tsx +13 -0
  51. package/common/contact-dialog/index.tsx +48 -0
  52. package/common/copyright.tsx +21 -0
  53. package/common/drawer-menu.tsx +51 -0
  54. package/common/footer.tsx +77 -0
  55. package/common/head-metadata/from-next/metadata-types.ts +158 -0
  56. package/common/head-metadata/from-next/opengraph-types.ts +267 -0
  57. package/common/head-metadata/from-next/twitter-types.ts +92 -0
  58. package/common/head-metadata/index.tsx +208 -0
  59. package/common/header/index.tsx +57 -0
  60. package/common/header/mobile-nav.tsx +72 -0
  61. package/common/header/theme-toggle.tsx +26 -0
  62. package/common/icons/github.tsx +14 -0
  63. package/common/icons/index.tsx +34 -0
  64. package/common/icons/lux-logo.tsx +10 -0
  65. package/common/icons/secure-delivery.tsx +13 -0
  66. package/common/icons/social-icon.tsx +35 -0
  67. package/common/icons/youtube-logo.tsx +59 -0
  68. package/common/index.ts +14 -0
  69. package/common/logo.tsx +71 -0
  70. package/common/mini-chart/index.tsx +8 -0
  71. package/common/mini-chart/mini-chart-props.ts +44 -0
  72. package/common/mini-chart/mini-chart.tsx +76 -0
  73. package/common/mini-chart/wrapper.tsx +23 -0
  74. package/context-providers/index.ts +1 -0
  75. package/context-providers/theme-provider.tsx +20 -0
  76. package/next/README.md +11 -0
  77. package/next/determine-device-middleware.ts +16 -0
  78. package/next/fonts/DrukTextWide-Bold-Trial.otf +0 -0
  79. package/next/fonts/DrukTextWide-Heavy-Trial.otf +0 -0
  80. package/next/fonts/DrukTextWide-Medium-Trial.otf +0 -0
  81. package/next/get-app-router-font-classes.ts +12 -0
  82. package/next/load-and-return-lux-next-fonts-on-import.ts +68 -0
  83. package/next/next-font-desc.ts +28 -0
  84. package/next/not-found-content.mdx +4 -0
  85. package/next/not-found.tsx +23 -0
  86. package/next/pages-router-font-vars.tsx +18 -0
  87. package/next/root-layout.tsx +53 -0
  88. package/package.json +105 -0
  89. package/primitives/accordion.tsx +61 -0
  90. package/primitives/action-button.tsx +46 -0
  91. package/primitives/apply-typography.tsx +55 -0
  92. package/primitives/avatar.tsx +49 -0
  93. package/primitives/badge.tsx +36 -0
  94. package/primitives/button.tsx +73 -0
  95. package/primitives/calendar.tsx +72 -0
  96. package/primitives/card.tsx +83 -0
  97. package/primitives/checkbox.tsx +32 -0
  98. package/primitives/command.tsx +155 -0
  99. package/primitives/dialog-video-controller.tsx +38 -0
  100. package/primitives/dialog.tsx +152 -0
  101. package/primitives/form.tsx +179 -0
  102. package/primitives/index.ts +144 -0
  103. package/primitives/inline-icon.tsx +37 -0
  104. package/primitives/input.tsx +30 -0
  105. package/primitives/label.tsx +28 -0
  106. package/primitives/link-element.tsx +104 -0
  107. package/primitives/main.tsx +17 -0
  108. package/primitives/mdx-link.tsx +22 -0
  109. package/primitives/nav-items.tsx +48 -0
  110. package/primitives/popover.tsx +35 -0
  111. package/primitives/progress.tsx +27 -0
  112. package/primitives/scroll-area.tsx +47 -0
  113. package/primitives/select.tsx +169 -0
  114. package/primitives/separator.tsx +29 -0
  115. package/primitives/sheet.tsx +175 -0
  116. package/primitives/skeleton.tsx +15 -0
  117. package/primitives/switch.tsx +33 -0
  118. package/primitives/table.tsx +117 -0
  119. package/primitives/tabs.tsx +60 -0
  120. package/primitives/tailwind-indicator.tsx +19 -0
  121. package/primitives/text-area.tsx +26 -0
  122. package/primitives/toast.tsx +129 -0
  123. package/primitives/toaster.tsx +37 -0
  124. package/primitives/use-toast.ts +192 -0
  125. package/primitives/video-player.tsx +26 -0
  126. package/primitives/youtube-embed.tsx +83 -0
  127. package/siteDef/footer/community.tsx +67 -0
  128. package/siteDef/footer/company.ts +37 -0
  129. package/siteDef/footer/ecosystem.ts +37 -0
  130. package/siteDef/footer/index.tsx +26 -0
  131. package/siteDef/footer/legal.ts +28 -0
  132. package/siteDef/footer/network.ts +33 -0
  133. package/siteDef/footer/svg/warpcast-logo.svg +12 -0
  134. package/siteDef/main-nav.ts +35 -0
  135. package/style/globals.css +13 -0
  136. package/style/hanzo-common.css +32 -0
  137. package/style/hanzo-default-colors.css +79 -0
  138. package/style/social-svg.css +3 -0
  139. package/tailwind/colors.tailwind.js +46 -0
  140. package/tailwind/fonts.tailwind.ts +31 -0
  141. package/tailwind/index.ts +18 -0
  142. package/tailwind/lux-tw-fonts.ts +32 -0
  143. package/tailwind/safelist.tailwind.js +26 -0
  144. package/tailwind/screens.tailwind.js +8 -0
  145. package/tailwind/spacing.tailwind.js +57 -0
  146. package/tailwind/tailwind.config.base.js +905 -0
  147. package/tailwind/tw-font-desc.ts +15 -0
  148. package/tailwind/typo-plugin/get-plugin-styles.js +676 -0
  149. package/tailwind/typo-plugin/index.d.ts +9 -0
  150. package/tailwind/typo-plugin/index.js +141 -0
  151. package/tailwind/typo-plugin/utils.js +60 -0
  152. package/tailwind/typography-test.mdx +36 -0
  153. package/types/breakpoints.ts +11 -0
  154. package/types/bullet-item.ts +10 -0
  155. package/types/button-def.ts +39 -0
  156. package/types/contact-info.ts +11 -0
  157. package/types/dimensions.ts +20 -0
  158. package/types/grid-def.ts +37 -0
  159. package/types/icon.ts +10 -0
  160. package/types/image-def.ts +28 -0
  161. package/types/index.ts +29 -0
  162. package/types/link-def.ts +59 -0
  163. package/types/site-def.ts +31 -0
  164. package/types/t-shirt-size.ts +5 -0
  165. package/util/index.ts +76 -0
  166. package/util/specifier.ts +43 -0
@@ -0,0 +1,905 @@
1
+ import animatePlugin from 'tailwindcss-animate'
2
+ import containerQueriesPlugin from '@tailwindcss/container-queries'
3
+ import tailwindInteractionMediaPlugin from 'tailwindcss-interaction-media'
4
+
5
+ import colors from './colors.tailwind'
6
+ import safelist from './safelist.tailwind'
7
+ import screens from './screens.tailwind'
8
+ import spacing from './spacing.tailwind'
9
+ import { fontFamily, fontSize} from './fonts.tailwind'
10
+ import typographyPlugin from './typo-plugin'
11
+
12
+ export default {
13
+ presets: [],
14
+ darkMode: ["class"],
15
+ safelist,
16
+ plugins: [
17
+ animatePlugin,
18
+ typographyPlugin({ className: 'typography', base: 16 }),
19
+ containerQueriesPlugin,
20
+ tailwindInteractionMediaPlugin,
21
+ ],
22
+ theme: {
23
+
24
+ accentColor: ({ theme }) => ({
25
+ ...theme('colors'),
26
+ auto: 'auto',
27
+ }),
28
+ animation: {
29
+ none: 'none',
30
+ spin: 'spin 1s linear infinite',
31
+ ping: 'ping 1s cubic-bezier(0, 0, 0.2, 1) infinite',
32
+ pulse: 'pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite',
33
+ bounce: 'bounce 1s infinite',
34
+ "accordion-down": "accordion-down 0.2s ease-out",
35
+ "accordion-up": "accordion-up 0.2s ease-out",
36
+ },
37
+ aria: {
38
+ checked: 'checked="true"',
39
+ disabled: 'disabled="true"',
40
+ expanded: 'expanded="true"',
41
+ hidden: 'hidden="true"',
42
+ pressed: 'pressed="true"',
43
+ readonly: 'readonly="true"',
44
+ required: 'required="true"',
45
+ selected: 'selected="true"',
46
+ },
47
+ aspectRatio: {
48
+ auto: 'auto',
49
+ square: '1 / 1',
50
+ video: '16 / 9',
51
+ },
52
+ backdropBlur: ({ theme }) => theme('blur'),
53
+ backdropBrightness: ({ theme }) => theme('brightness'),
54
+ backdropContrast: ({ theme }) => theme('contrast'),
55
+ backdropGrayscale: ({ theme }) => theme('grayscale'),
56
+ backdropHueRotate: ({ theme }) => theme('hueRotate'),
57
+ backdropInvert: ({ theme }) => theme('invert'),
58
+ backdropOpacity: ({ theme }) => theme('opacity'),
59
+ backdropSaturate: ({ theme }) => theme('saturate'),
60
+ backdropSepia: ({ theme }) => theme('sepia'),
61
+ backgroundColor: ({ theme }) => theme('colors'),
62
+ backgroundImage: {
63
+ none: 'none',
64
+ 'gradient-to-t': 'linear-gradient(to top, var(--tw-gradient-stops))',
65
+ 'gradient-to-tr': 'linear-gradient(to top right, var(--tw-gradient-stops))',
66
+ 'gradient-to-r': 'linear-gradient(to right, var(--tw-gradient-stops))',
67
+ 'gradient-to-br': 'linear-gradient(to bottom right, var(--tw-gradient-stops))',
68
+ 'gradient-to-b': 'linear-gradient(to bottom, var(--tw-gradient-stops))',
69
+ 'gradient-to-bl': 'linear-gradient(to bottom left, var(--tw-gradient-stops))',
70
+ 'gradient-to-l': 'linear-gradient(to left, var(--tw-gradient-stops))',
71
+ 'gradient-to-tl': 'linear-gradient(to top left, var(--tw-gradient-stops))',
72
+ },
73
+ backgroundOpacity: ({ theme }) => theme('opacity'),
74
+ backgroundPosition: {
75
+ bottom: 'bottom',
76
+ center: 'center',
77
+ left: 'left',
78
+ 'left-bottom': 'left bottom',
79
+ 'left-top': 'left top',
80
+ right: 'right',
81
+ 'right-bottom': 'right bottom',
82
+ 'right-top': 'right top',
83
+ top: 'top',
84
+ },
85
+ backgroundSize: {
86
+ auto: 'auto',
87
+ cover: 'cover',
88
+ contain: 'contain',
89
+ },
90
+ blur: {
91
+ 0: '0',
92
+ none: '0',
93
+ sm: '4px',
94
+ DEFAULT: '8px',
95
+ md: '12px',
96
+ lg: '16px',
97
+ xl: '24px',
98
+ '2xl': '40px',
99
+ '3xl': '64px',
100
+ },
101
+ borderColor: ({ theme }) => ({
102
+ ...theme('colors'),
103
+ DEFAULT: theme('colors.gray.200', 'currentColor'),
104
+ }),
105
+ borderOpacity: ({ theme }) => theme('opacity'),
106
+ borderRadius: {
107
+ /* shadcn's:
108
+ lg: `var(--radius)`,
109
+ md: `calc(var(--radius) - 2px)`,
110
+ sm: "calc(var(--radius) - 4px)",
111
+ */
112
+ none: '0px',
113
+ sm: '0.125rem',
114
+ DEFAULT: '0.25rem',
115
+ md: '0.375rem',
116
+ lg: '0.5rem',
117
+ xl: '0.75rem',
118
+ '2xl': '1rem',
119
+ '3xl': '1.5rem',
120
+ full: '9999px',
121
+ },
122
+ borderSpacing: spacing,
123
+ borderWidth: {
124
+ DEFAULT: '1px',
125
+ 0: '0px',
126
+ 2: '2px',
127
+ 4: '4px',
128
+ 8: '8px',
129
+ },
130
+ boxShadow: {
131
+ sm: '0 1px 2px 0 rgb(0 0 0 / 0.05)',
132
+ DEFAULT: '0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)',
133
+ md: '0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)',
134
+ lg: '0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)',
135
+ xl: '0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)',
136
+ '2xl': '0 25px 50px -12px rgb(0 0 0 / 0.25)',
137
+ inner: 'inset 0 2px 4px 0 rgb(0 0 0 / 0.05)',
138
+ none: 'none',
139
+ },
140
+ boxShadowColor: ({ theme }) => theme('colors'),
141
+ brightness: {
142
+ 0: '0',
143
+ 50: '.5',
144
+ 75: '.75',
145
+ 90: '.9',
146
+ 95: '.95',
147
+ 100: '1',
148
+ 105: '1.05',
149
+ 110: '1.1',
150
+ 125: '1.25',
151
+ 150: '1.5',
152
+ 200: '2',
153
+ },
154
+ caretColor: ({ theme }) => theme('colors'),
155
+ colors,
156
+ columns: {
157
+ auto: 'auto',
158
+ 1: '1',
159
+ 2: '2',
160
+ 3: '3',
161
+ 4: '4',
162
+ 5: '5',
163
+ 6: '6',
164
+ 7: '7',
165
+ 8: '8',
166
+ 9: '9',
167
+ 10: '10',
168
+ 11: '11',
169
+ 12: '12',
170
+ '3xs': '16rem',
171
+ '2xs': '18rem',
172
+ xs: '20rem',
173
+ sm: '24rem',
174
+ md: '28rem',
175
+ lg: '32rem',
176
+ xl: '36rem',
177
+ '2xl': '42rem',
178
+ '3xl': '48rem',
179
+ '4xl': '56rem',
180
+ '5xl': '64rem',
181
+ '6xl': '72rem',
182
+ '7xl': '80rem',
183
+ },
184
+ container: {
185
+ center: true,
186
+ padding: "2rem",
187
+ },
188
+ content: {
189
+ none: 'none',
190
+ },
191
+ contrast: {
192
+ 0: '0',
193
+ 50: '.5',
194
+ 75: '.75',
195
+ 100: '1',
196
+ 125: '1.25',
197
+ 150: '1.5',
198
+ 200: '2',
199
+ },
200
+ cursor: {
201
+ auto: 'auto',
202
+ default: 'default',
203
+ pointer: 'pointer',
204
+ wait: 'wait',
205
+ text: 'text',
206
+ move: 'move',
207
+ help: 'help',
208
+ 'not-allowed': 'not-allowed',
209
+ none: 'none',
210
+ 'context-menu': 'context-menu',
211
+ progress: 'progress',
212
+ cell: 'cell',
213
+ crosshair: 'crosshair',
214
+ 'vertical-text': 'vertical-text',
215
+ alias: 'alias',
216
+ copy: 'copy',
217
+ 'no-drop': 'no-drop',
218
+ grab: 'grab',
219
+ grabbing: 'grabbing',
220
+ 'all-scroll': 'all-scroll',
221
+ 'col-resize': 'col-resize',
222
+ 'row-resize': 'row-resize',
223
+ 'n-resize': 'n-resize',
224
+ 'e-resize': 'e-resize',
225
+ 's-resize': 's-resize',
226
+ 'w-resize': 'w-resize',
227
+ 'ne-resize': 'ne-resize',
228
+ 'nw-resize': 'nw-resize',
229
+ 'se-resize': 'se-resize',
230
+ 'sw-resize': 'sw-resize',
231
+ 'ew-resize': 'ew-resize',
232
+ 'ns-resize': 'ns-resize',
233
+ 'nesw-resize': 'nesw-resize',
234
+ 'nwse-resize': 'nwse-resize',
235
+ 'zoom-in': 'zoom-in',
236
+ 'zoom-out': 'zoom-out',
237
+ },
238
+ divideColor: ({ theme }) => theme('borderColor'),
239
+ divideOpacity: ({ theme }) => theme('borderOpacity'),
240
+ divideWidth: ({ theme }) => theme('borderWidth'),
241
+ dropShadow: {
242
+ sm: '0 1px 1px rgb(0 0 0 / 0.05)',
243
+ DEFAULT: ['0 1px 2px rgb(0 0 0 / 0.1)', '0 1px 1px rgb(0 0 0 / 0.06)'],
244
+ md: ['0 4px 3px rgb(0 0 0 / 0.07)', '0 2px 2px rgb(0 0 0 / 0.06)'],
245
+ lg: ['0 10px 8px rgb(0 0 0 / 0.04)', '0 4px 3px rgb(0 0 0 / 0.1)'],
246
+ xl: ['0 20px 13px rgb(0 0 0 / 0.03)', '0 8px 5px rgb(0 0 0 / 0.08)'],
247
+ '2xl': '0 25px 25px rgb(0 0 0 / 0.15)',
248
+ none: '0 0 #0000',
249
+ },
250
+ fill: ({ theme }) => ({
251
+ none: 'none',
252
+ ...theme('colors'),
253
+ }),
254
+ flex: {
255
+ 1: '1 1 0%',
256
+ auto: '1 1 auto',
257
+ initial: '0 1 auto',
258
+ none: 'none',
259
+ },
260
+ flexBasis: {
261
+ auto: 'auto',
262
+ ...spacing,
263
+ '1/2': '50%',
264
+ '1/3': '33.333333%',
265
+ '2/3': '66.666667%',
266
+ '1/4': '25%',
267
+ '2/4': '50%',
268
+ '3/4': '75%',
269
+ '1/5': '20%',
270
+ '2/5': '40%',
271
+ '3/5': '60%',
272
+ '4/5': '80%',
273
+ '1/6': '16.666667%',
274
+ '2/6': '33.333333%',
275
+ '3/6': '50%',
276
+ '4/6': '66.666667%',
277
+ '5/6': '83.333333%',
278
+ '1/12': '8.333333%',
279
+ '2/12': '16.666667%',
280
+ '3/12': '25%',
281
+ '4/12': '33.333333%',
282
+ '5/12': '41.666667%',
283
+ '6/12': '50%',
284
+ '7/12': '58.333333%',
285
+ '8/12': '66.666667%',
286
+ '9/12': '75%',
287
+ '10/12': '83.333333%',
288
+ '11/12': '91.666667%',
289
+ full: '100%',
290
+ },
291
+ flexGrow: {
292
+ 0: '0',
293
+ DEFAULT: '1',
294
+ },
295
+ flexShrink: {
296
+ 0: '0',
297
+ DEFAULT: '1',
298
+ },
299
+ fontFamily,
300
+ fontSize,
301
+ fontWeight: {
302
+ thin: '100',
303
+ extralight: '200',
304
+ light: '300',
305
+ normal: '400',
306
+ medium: '500',
307
+ semibold: '600',
308
+ bold: '700',
309
+ extrabold: '800',
310
+ black: '900',
311
+ },
312
+ gap: spacing,
313
+ gradientColorStops: ({ theme }) => theme('colors'),
314
+ gradientColorStopPositions: {
315
+ '0%': '0%',
316
+ '5%': '5%',
317
+ '10%': '10%',
318
+ '15%': '15%',
319
+ '20%': '20%',
320
+ '25%': '25%',
321
+ '30%': '30%',
322
+ '35%': '35%',
323
+ '40%': '40%',
324
+ '45%': '45%',
325
+ '50%': '50%',
326
+ '55%': '55%',
327
+ '60%': '60%',
328
+ '65%': '65%',
329
+ '70%': '70%',
330
+ '75%': '75%',
331
+ '80%': '80%',
332
+ '85%': '85%',
333
+ '90%': '90%',
334
+ '95%': '95%',
335
+ '100%': '100%',
336
+ },
337
+ grayscale: {
338
+ 0: '0',
339
+ DEFAULT: '100%',
340
+ },
341
+ gridAutoColumns: {
342
+ auto: 'auto',
343
+ min: 'min-content',
344
+ max: 'max-content',
345
+ fr: 'minmax(0, 1fr)',
346
+ },
347
+ gridAutoRows: {
348
+ auto: 'auto',
349
+ min: 'min-content',
350
+ max: 'max-content',
351
+ fr: 'minmax(0, 1fr)',
352
+ },
353
+ gridColumn: {
354
+ auto: 'auto',
355
+ 'span-1': 'span 1 / span 1',
356
+ 'span-2': 'span 2 / span 2',
357
+ 'span-3': 'span 3 / span 3',
358
+ 'span-4': 'span 4 / span 4',
359
+ 'span-5': 'span 5 / span 5',
360
+ 'span-6': 'span 6 / span 6',
361
+ 'span-7': 'span 7 / span 7',
362
+ 'span-8': 'span 8 / span 8',
363
+ 'span-9': 'span 9 / span 9',
364
+ 'span-10': 'span 10 / span 10',
365
+ 'span-11': 'span 11 / span 11',
366
+ 'span-12': 'span 12 / span 12',
367
+ 'span-full': '1 / -1',
368
+ },
369
+ gridColumnEnd: {
370
+ auto: 'auto',
371
+ 1: '1',
372
+ 2: '2',
373
+ 3: '3',
374
+ 4: '4',
375
+ 5: '5',
376
+ 6: '6',
377
+ 7: '7',
378
+ 8: '8',
379
+ 9: '9',
380
+ 10: '10',
381
+ 11: '11',
382
+ 12: '12',
383
+ 13: '13',
384
+ },
385
+ gridColumnStart: {
386
+ auto: 'auto',
387
+ 1: '1',
388
+ 2: '2',
389
+ 3: '3',
390
+ 4: '4',
391
+ 5: '5',
392
+ 6: '6',
393
+ 7: '7',
394
+ 8: '8',
395
+ 9: '9',
396
+ 10: '10',
397
+ 11: '11',
398
+ 12: '12',
399
+ 13: '13',
400
+ },
401
+ gridRow: {
402
+ auto: 'auto',
403
+ 'span-1': 'span 1 / span 1',
404
+ 'span-2': 'span 2 / span 2',
405
+ 'span-3': 'span 3 / span 3',
406
+ 'span-4': 'span 4 / span 4',
407
+ 'span-5': 'span 5 / span 5',
408
+ 'span-6': 'span 6 / span 6',
409
+ 'span-full': '1 / -1',
410
+ },
411
+ gridRowEnd: {
412
+ auto: 'auto',
413
+ 1: '1',
414
+ 2: '2',
415
+ 3: '3',
416
+ 4: '4',
417
+ 5: '5',
418
+ 6: '6',
419
+ 7: '7',
420
+ },
421
+ gridRowStart: {
422
+ auto: 'auto',
423
+ 1: '1',
424
+ 2: '2',
425
+ 3: '3',
426
+ 4: '4',
427
+ 5: '5',
428
+ 6: '6',
429
+ 7: '7',
430
+ },
431
+ gridTemplateColumns: {
432
+ none: 'none',
433
+ 1: 'repeat(1, minmax(0, 1fr))',
434
+ 2: 'repeat(2, minmax(0, 1fr))',
435
+ 3: 'repeat(3, minmax(0, 1fr))',
436
+ 4: 'repeat(4, minmax(0, 1fr))',
437
+ 5: 'repeat(5, minmax(0, 1fr))',
438
+ 6: 'repeat(6, minmax(0, 1fr))',
439
+ 7: 'repeat(7, minmax(0, 1fr))',
440
+ 8: 'repeat(8, minmax(0, 1fr))',
441
+ 9: 'repeat(9, minmax(0, 1fr))',
442
+ 10: 'repeat(10, minmax(0, 1fr))',
443
+ 11: 'repeat(11, minmax(0, 1fr))',
444
+ 12: 'repeat(12, minmax(0, 1fr))',
445
+ },
446
+ gridTemplateRows: {
447
+ none: 'none',
448
+ 1: 'repeat(1, minmax(0, 1fr))',
449
+ 2: 'repeat(2, minmax(0, 1fr))',
450
+ 3: 'repeat(3, minmax(0, 1fr))',
451
+ 4: 'repeat(4, minmax(0, 1fr))',
452
+ 5: 'repeat(5, minmax(0, 1fr))',
453
+ 6: 'repeat(6, minmax(0, 1fr))',
454
+ },
455
+ height: {
456
+ auto: 'auto',
457
+ ...spacing,
458
+ '1/2': '50%',
459
+ '1/3': '33.333333%',
460
+ '2/3': '66.666667%',
461
+ '1/4': '25%',
462
+ '2/4': '50%',
463
+ '3/4': '75%',
464
+ '1/5': '20%',
465
+ '2/5': '40%',
466
+ '3/5': '60%',
467
+ '4/5': '80%',
468
+ '1/6': '16.666667%',
469
+ '2/6': '33.333333%',
470
+ '3/6': '50%',
471
+ '4/6': '66.666667%',
472
+ '5/6': '83.333333%',
473
+ full: '100%',
474
+ screen: '100vh',
475
+ min: 'min-content',
476
+ max: 'max-content',
477
+ fit: 'fit-content',
478
+ },
479
+ hueRotate: {
480
+ 0: '0deg',
481
+ 15: '15deg',
482
+ 30: '30deg',
483
+ 60: '60deg',
484
+ 90: '90deg',
485
+ 180: '180deg',
486
+ },
487
+ inset: {
488
+ auto: 'auto',
489
+ ...spacing,
490
+ '1/2': '50%',
491
+ '1/3': '33.333333%',
492
+ '2/3': '66.666667%',
493
+ '1/4': '25%',
494
+ '2/4': '50%',
495
+ '3/4': '75%',
496
+ full: '100%',
497
+ },
498
+ invert: {
499
+ 0: '0',
500
+ DEFAULT: '100%',
501
+ },
502
+ keyframes: {
503
+ spin: {
504
+ to: {
505
+ transform: 'rotate(360deg)',
506
+ },
507
+ },
508
+ ping: {
509
+ '75%, 100%': {
510
+ transform: 'scale(2)',
511
+ opacity: '0',
512
+ },
513
+ },
514
+ pulse: {
515
+ '50%': {
516
+ opacity: '.5',
517
+ },
518
+ },
519
+ bounce: {
520
+ '0%, 100%': {
521
+ transform: 'translateY(-25%)',
522
+ animationTimingFunction: 'cubic-bezier(0.8,0,1,1)',
523
+ },
524
+ '50%': {
525
+ transform: 'none',
526
+ animationTimingFunction: 'cubic-bezier(0,0,0.2,1)',
527
+ },
528
+ },
529
+ "accordion-down": {
530
+ from: { height: 0 },
531
+ to: { height: "var(--radix-accordion-content-height)" },
532
+ },
533
+ "accordion-up": {
534
+ from: { height: "var(--radix-accordion-content-height)" },
535
+ to: { height: 0 },
536
+ },
537
+ },
538
+ letterSpacing: {
539
+ tighter: '-0.05em',
540
+ tight: '-0.025em',
541
+ normal: '0em',
542
+ wide: '0.025em',
543
+ wider: '0.05em',
544
+ widest: '0.1em',
545
+ },
546
+ lineHeight: {
547
+ none: '1',
548
+ tight: '1.25',
549
+ snug: '1.375',
550
+ normal: '1.5',
551
+ relaxed: '1.625',
552
+ loose: '2',
553
+ 3: '.75rem',
554
+ 4: '1rem',
555
+ 5: '1.25rem',
556
+ 6: '1.5rem',
557
+ 7: '1.75rem',
558
+ 8: '2rem',
559
+ 9: '2.25rem',
560
+ 10: '2.5rem',
561
+ },
562
+ listStyleType: {
563
+ none: 'none',
564
+ disc: 'disc',
565
+ decimal: 'decimal',
566
+ },
567
+ listStyleImage: {
568
+ none: 'none',
569
+ },
570
+ margin: {
571
+ auto: 'auto',
572
+ ...spacing,
573
+ },
574
+ lineClamp: {
575
+ 1: '1',
576
+ 2: '2',
577
+ 3: '3',
578
+ 4: '4',
579
+ 5: '5',
580
+ 6: '6',
581
+ },
582
+ maxHeight: {
583
+ ...spacing,
584
+ none: 'none',
585
+ full: '100%',
586
+ screen: '100vh',
587
+ min: 'min-content',
588
+ max: 'max-content',
589
+ fit: 'fit-content',
590
+ },
591
+ maxWidth: ({ theme, breakpoints }) => ({
592
+ none: 'none',
593
+ 0: '0rem',
594
+ xs: '20rem',
595
+ sm: '24rem',
596
+ md: '28rem',
597
+ lg: '32rem',
598
+ xl: '36rem',
599
+ '2xl': '42rem',
600
+ '3xl': '48rem',
601
+ '4xl': '56rem',
602
+ '5xl': '64rem',
603
+ '6xl': '72rem',
604
+ '7xl': '80rem',
605
+ full: '100%',
606
+ min: 'min-content',
607
+ max: 'max-content',
608
+ fit: 'fit-content',
609
+ prose: '65ch',
610
+ ...breakpoints(theme('screens')),
611
+ }),
612
+ minHeight: {
613
+ 0: '0px',
614
+ full: '100%',
615
+ screen: '100vh',
616
+ min: 'min-content',
617
+ max: 'max-content',
618
+ fit: 'fit-content',
619
+ },
620
+ minWidth: {
621
+ 0: '0px',
622
+ full: '100%',
623
+ min: 'min-content',
624
+ max: 'max-content',
625
+ fit: 'fit-content',
626
+ },
627
+ objectPosition: {
628
+ bottom: 'bottom',
629
+ center: 'center',
630
+ left: 'left',
631
+ 'left-bottom': 'left bottom',
632
+ 'left-top': 'left top',
633
+ right: 'right',
634
+ 'right-bottom': 'right bottom',
635
+ 'right-top': 'right top',
636
+ top: 'top',
637
+ },
638
+ opacity: {
639
+ 0: '0',
640
+ 5: '0.05',
641
+ 10: '0.1',
642
+ 20: '0.2',
643
+ 25: '0.25',
644
+ 30: '0.3',
645
+ 40: '0.4',
646
+ 50: '0.5',
647
+ 60: '0.6',
648
+ 70: '0.7',
649
+ 75: '0.75',
650
+ 80: '0.8',
651
+ 90: '0.9',
652
+ 95: '0.95',
653
+ 100: '1',
654
+ },
655
+ order: {
656
+ first: '-9999',
657
+ last: '9999',
658
+ none: '0',
659
+ 1: '1',
660
+ 2: '2',
661
+ 3: '3',
662
+ 4: '4',
663
+ 5: '5',
664
+ 6: '6',
665
+ 7: '7',
666
+ 8: '8',
667
+ 9: '9',
668
+ 10: '10',
669
+ 11: '11',
670
+ 12: '12',
671
+ },
672
+ outlineColor: ({ theme }) => theme('colors'),
673
+ outlineOffset: {
674
+ 0: '0px',
675
+ 1: '1px',
676
+ 2: '2px',
677
+ 4: '4px',
678
+ 8: '8px',
679
+ },
680
+ outlineWidth: {
681
+ 0: '0px',
682
+ 1: '1px',
683
+ 2: '2px',
684
+ 4: '4px',
685
+ 8: '8px',
686
+ },
687
+ padding: spacing,
688
+ placeholderColor: ({ theme }) => theme('colors'),
689
+ placeholderOpacity: ({ theme }) => theme('opacity'),
690
+ ringColor: ({ theme }) => ({
691
+ DEFAULT: theme('colors.blue.500', '#3b82f6'),
692
+ ...theme('colors'),
693
+ }),
694
+ ringOffsetColor: ({ theme }) => theme('colors'),
695
+ ringOffsetWidth: {
696
+ 0: '0px',
697
+ 1: '1px',
698
+ 2: '2px',
699
+ 4: '4px',
700
+ 8: '8px',
701
+ },
702
+ ringOpacity: ({ theme }) => ({
703
+ DEFAULT: '0.5',
704
+ ...theme('opacity'),
705
+ }),
706
+ ringWidth: {
707
+ DEFAULT: '3px',
708
+ 0: '0px',
709
+ 1: '1px',
710
+ 2: '2px',
711
+ 4: '4px',
712
+ 8: '8px',
713
+ },
714
+ rotate: {
715
+ 0: '0deg',
716
+ 1: '1deg',
717
+ 2: '2deg',
718
+ 3: '3deg',
719
+ 6: '6deg',
720
+ 12: '12deg',
721
+ 45: '45deg',
722
+ 90: '90deg',
723
+ 180: '180deg',
724
+ },
725
+ saturate: {
726
+ 0: '0',
727
+ 50: '.5',
728
+ 100: '1',
729
+ 150: '1.5',
730
+ 200: '2',
731
+ },
732
+ scale: {
733
+ 0: '0',
734
+ 50: '.5',
735
+ 75: '.75',
736
+ 90: '.9',
737
+ 95: '.95',
738
+ 100: '1',
739
+ 105: '1.05',
740
+ 110: '1.1',
741
+ 125: '1.25',
742
+ 150: '1.5',
743
+ },
744
+ screens,
745
+ scrollMargin: spacing,
746
+ scrollPadding: spacing,
747
+ sepia: {
748
+ 0: '0',
749
+ DEFAULT: '100%',
750
+ },
751
+ skew: {
752
+ 0: '0deg',
753
+ 1: '1deg',
754
+ 2: '2deg',
755
+ 3: '3deg',
756
+ 6: '6deg',
757
+ 12: '12deg',
758
+ },
759
+ space: spacing,
760
+ spacing,
761
+ stroke: ({ theme }) => ({
762
+ none: 'none',
763
+ ...theme('colors'),
764
+ }),
765
+ strokeWidth: {
766
+ 0: '0',
767
+ 1: '1',
768
+ 2: '2',
769
+ },
770
+ supports: {},
771
+ data: {},
772
+ textColor: ({ theme }) => theme('colors'),
773
+ textDecorationColor: ({ theme }) => theme('colors'),
774
+ textDecorationThickness: {
775
+ auto: 'auto',
776
+ 'from-font': 'from-font',
777
+ 0: '0px',
778
+ 1: '1px',
779
+ 2: '2px',
780
+ 4: '4px',
781
+ 8: '8px',
782
+ },
783
+ textIndent: spacing,
784
+ textOpacity: ({ theme }) => theme('opacity'),
785
+ textUnderlineOffset: {
786
+ auto: 'auto',
787
+ 0: '0px',
788
+ 1: '1px',
789
+ 2: '2px',
790
+ 4: '4px',
791
+ 8: '8px',
792
+ },
793
+ transformOrigin: {
794
+ center: 'center',
795
+ top: 'top',
796
+ 'top-right': 'top right',
797
+ right: 'right',
798
+ 'bottom-right': 'bottom right',
799
+ bottom: 'bottom',
800
+ 'bottom-left': 'bottom left',
801
+ left: 'left',
802
+ 'top-left': 'top left',
803
+ },
804
+ transitionDelay: {
805
+ 0: '0s',
806
+ 75: '75ms',
807
+ 100: '100ms',
808
+ 150: '150ms',
809
+ 200: '200ms',
810
+ 300: '300ms',
811
+ 500: '500ms',
812
+ 700: '700ms',
813
+ 1000: '1000ms',
814
+ },
815
+ transitionDuration: {
816
+ DEFAULT: '150ms',
817
+ 0: '0s',
818
+ 75: '75ms',
819
+ 100: '100ms',
820
+ 150: '150ms',
821
+ 200: '200ms',
822
+ 300: '300ms',
823
+ 500: '500ms',
824
+ 700: '700ms',
825
+ 1000: '1000ms',
826
+ },
827
+ transitionProperty: {
828
+ none: 'none',
829
+ all: 'all',
830
+ DEFAULT:
831
+ 'color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter',
832
+ colors: 'color, background-color, border-color, text-decoration-color, fill, stroke',
833
+ opacity: 'opacity',
834
+ shadow: 'box-shadow',
835
+ transform: 'transform',
836
+ },
837
+ transitionTimingFunction: {
838
+ DEFAULT: 'cubic-bezier(0.4, 0, 0.2, 1)',
839
+ linear: 'linear',
840
+ in: 'cubic-bezier(0.4, 0, 1, 1)',
841
+ out: 'cubic-bezier(0, 0, 0.2, 1)',
842
+ 'in-out': 'cubic-bezier(0.4, 0, 0.2, 1)',
843
+ },
844
+ translate: {
845
+ ...spacing,
846
+ '1/2': '50%',
847
+ '1/3': '33.333333%',
848
+ '2/3': '66.666667%',
849
+ '1/4': '25%',
850
+ '2/4': '50%',
851
+ '3/4': '75%',
852
+ full: '100%',
853
+ },
854
+ width: {
855
+ auto: 'auto',
856
+ ...spacing,
857
+ '1/2': '50%',
858
+ '1/3': '33.333333%',
859
+ '2/3': '66.666667%',
860
+ '1/4': '25%',
861
+ '2/4': '50%',
862
+ '3/4': '75%',
863
+ '1/5': '20%',
864
+ '2/5': '40%',
865
+ '3/5': '60%',
866
+ '4/5': '80%',
867
+ '1/6': '16.666667%',
868
+ '2/6': '33.333333%',
869
+ '3/6': '50%',
870
+ '4/6': '66.666667%',
871
+ '5/6': '83.333333%',
872
+ '1/12': '8.333333%',
873
+ '2/12': '16.666667%',
874
+ '3/12': '25%',
875
+ '4/12': '33.333333%',
876
+ '5/12': '41.666667%',
877
+ '6/12': '50%',
878
+ '7/12': '58.333333%',
879
+ '8/12': '66.666667%',
880
+ '9/12': '75%',
881
+ '10/12': '83.333333%',
882
+ '11/12': '91.666667%',
883
+ full: '100%',
884
+ screen: '100vw',
885
+ min: 'min-content',
886
+ max: 'max-content',
887
+ fit: 'fit-content',
888
+ },
889
+ willChange: {
890
+ auto: 'auto',
891
+ scroll: 'scroll-position',
892
+ contents: 'contents',
893
+ transform: 'transform',
894
+ },
895
+ zIndex: {
896
+ auto: 'auto',
897
+ 0: '0',
898
+ 10: '10',
899
+ 20: '20',
900
+ 30: '30',
901
+ 40: '40',
902
+ 50: '50',
903
+ },
904
+ },
905
+ }