@hanzo/ui 5.3.19 → 5.3.21

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 (229) hide show
  1. package/dist/3d/button.js +298 -1
  2. package/dist/3d/button.mjs +273 -1
  3. package/dist/3d/card.js +234 -1
  4. package/dist/3d/card.mjs +207 -1
  5. package/dist/3d/carousel.js +371 -1
  6. package/dist/3d/carousel.mjs +344 -1
  7. package/dist/3d/grid.js +362 -1
  8. package/dist/3d/grid.mjs +337 -1
  9. package/dist/3d/index.js +1518 -1
  10. package/dist/3d/index.mjs +1472 -1
  11. package/dist/3d/marquee.js +352 -1
  12. package/dist/3d/marquee.mjs +327 -1
  13. package/dist/3d/pin.js +46 -1
  14. package/dist/3d/pin.mjs +24 -1
  15. package/dist/accordion.js +80 -1
  16. package/dist/accordion.mjs +55 -1
  17. package/dist/alert-dialog.js +220 -1
  18. package/dist/alert-dialog.mjs +187 -1
  19. package/dist/alert.js +68 -1
  20. package/dist/alert.mjs +64 -1
  21. package/dist/animation/animated-background.js +424 -1
  22. package/dist/animation/animated-background.mjs +418 -1
  23. package/dist/animation/animated-beam.js +119 -1
  24. package/dist/animation/animated-beam.mjs +97 -1
  25. package/dist/animation/animated-cursor.js +275 -1
  26. package/dist/animation/animated-cursor.mjs +270 -1
  27. package/dist/animation/animated-icon.js +357 -2
  28. package/dist/animation/animated-icon.mjs +351 -2
  29. package/dist/animation/animated-list.js +339 -1
  30. package/dist/animation/animated-list.mjs +333 -1
  31. package/dist/animation/animated-number.js +283 -1
  32. package/dist/animation/animated-number.mjs +277 -1
  33. package/dist/animation/animated-testimonials.js +97 -1
  34. package/dist/animation/animated-testimonials.mjs +75 -1
  35. package/dist/animation/animated-tooltip.js +67 -1
  36. package/dist/animation/animated-tooltip.mjs +45 -1
  37. package/dist/animation/apple-cards-carousel.js +308 -1
  38. package/dist/animation/apple-cards-carousel.mjs +285 -1
  39. package/dist/animation/apple-hello-effect.js +60 -1
  40. package/dist/animation/apple-hello-effect.mjs +38 -1
  41. package/dist/animation/index.js +1952 -2
  42. package/dist/animation/index.mjs +1921 -2
  43. package/dist/avatar.js +71 -1
  44. package/dist/avatar.mjs +47 -1
  45. package/dist/badge.js +66 -1
  46. package/dist/badge.mjs +40 -1
  47. package/dist/blocks/index.js +1665 -2
  48. package/dist/blocks/index.mjs +1626 -2
  49. package/dist/breadcrumb.js +107 -1
  50. package/dist/breadcrumb.mjs +99 -1
  51. package/dist/calendar.js +189 -1
  52. package/dist/calendar.mjs +164 -1
  53. package/dist/carousel.js +278 -1
  54. package/dist/carousel.mjs +249 -1
  55. package/dist/checkbox.js +60 -1
  56. package/dist/checkbox.mjs +35 -1
  57. package/dist/code/block.js +226 -2
  58. package/dist/code/block.mjs +203 -2
  59. package/dist/code/compare.js +445 -5
  60. package/dist/code/compare.mjs +422 -5
  61. package/dist/code/diff.js +430 -12
  62. package/dist/code/diff.mjs +406 -11
  63. package/dist/code/editor.js +243 -1
  64. package/dist/code/editor.mjs +218 -1
  65. package/dist/code/explorer.js +291 -1
  66. package/dist/code/explorer.mjs +268 -1
  67. package/dist/code/index.js +2515 -26
  68. package/dist/code/index.mjs +2472 -24
  69. package/dist/code/preview.js +364 -6
  70. package/dist/code/preview.mjs +341 -6
  71. package/dist/code/snippet.js +274 -2
  72. package/dist/code/snippet.mjs +250 -2
  73. package/dist/code/tabs.js +75 -1
  74. package/dist/code/tabs.mjs +53 -1
  75. package/dist/code/terminal.js +437 -3
  76. package/dist/code/terminal.mjs +414 -3
  77. package/dist/collapsible.js +33 -1
  78. package/dist/collapsible.mjs +9 -1
  79. package/dist/command.js +262 -1
  80. package/dist/command.mjs +232 -1
  81. package/dist/context-menu.js +207 -1
  82. package/dist/context-menu.mjs +171 -1
  83. package/dist/device/index.js +3 -1
  84. package/dist/device/index.mjs +2 -0
  85. package/dist/dialog.js +151 -1
  86. package/dist/dialog.mjs +121 -1
  87. package/dist/dock/basic.js +174 -1
  88. package/dist/dock/basic.mjs +151 -1
  89. package/dist/dock/index.js +628 -1
  90. package/dist/dock/index.mjs +601 -1
  91. package/dist/dock/limelight-nav.js +295 -1
  92. package/dist/dock/limelight-nav.mjs +274 -1
  93. package/dist/dock/macos.js +141 -1
  94. package/dist/dock/macos.mjs +118 -1
  95. package/dist/dock/menu.js +70 -1
  96. package/dist/dock/menu.mjs +48 -1
  97. package/dist/dock/message.js +144 -1
  98. package/dist/dock/message.mjs +122 -1
  99. package/dist/drawer.js +115 -1
  100. package/dist/drawer.mjs +103 -1
  101. package/dist/dropdown-menu.js +202 -1
  102. package/dist/dropdown-menu.mjs +166 -1
  103. package/dist/finance/AdvancedChart.js +48 -2
  104. package/dist/finance/AdvancedChart.mjs +46 -2
  105. package/dist/finance/CompanyProfile.js +48 -2
  106. package/dist/finance/CompanyProfile.mjs +46 -2
  107. package/dist/finance/CryptoScreener.js +45 -2
  108. package/dist/finance/CryptoScreener.mjs +43 -2
  109. package/dist/finance/Financials.js +52 -2
  110. package/dist/finance/Financials.mjs +50 -2
  111. package/dist/finance/ForexScreener.js +46 -2
  112. package/dist/finance/ForexScreener.mjs +44 -2
  113. package/dist/finance/MarketOverview.js +104 -2
  114. package/dist/finance/MarketOverview.mjs +102 -2
  115. package/dist/finance/NewsTimeline.js +44 -2
  116. package/dist/finance/NewsTimeline.mjs +42 -2
  117. package/dist/finance/OrderEntry.js +131 -1
  118. package/dist/finance/OrderEntry.mjs +129 -1
  119. package/dist/finance/OrdersHistory.js +64 -1
  120. package/dist/finance/OrdersHistory.mjs +62 -1
  121. package/dist/finance/PositionsList.js +80 -1
  122. package/dist/finance/PositionsList.mjs +78 -1
  123. package/dist/finance/StockScreener.js +46 -2
  124. package/dist/finance/StockScreener.mjs +44 -2
  125. package/dist/finance/SymbolInfo.js +46 -2
  126. package/dist/finance/SymbolInfo.mjs +44 -2
  127. package/dist/finance/TechnicalAnalysis.js +54 -2
  128. package/dist/finance/TechnicalAnalysis.mjs +52 -2
  129. package/dist/finance/TickerTape.js +56 -2
  130. package/dist/finance/TickerTape.mjs +54 -2
  131. package/dist/finance/TradingPanel.js +191 -1
  132. package/dist/finance/TradingPanel.mjs +189 -1
  133. package/dist/finance/index.js +930 -2
  134. package/dist/finance/index.mjs +914 -2
  135. package/dist/form/index.js +155 -1
  136. package/dist/form/index.mjs +125 -1
  137. package/dist/form.js +172 -1
  138. package/dist/form.mjs +142 -1
  139. package/dist/hover-card.js +58 -1
  140. package/dist/hover-card.mjs +34 -1
  141. package/dist/index.js +8467 -192
  142. package/dist/index.mjs +8087 -192
  143. package/dist/input-otp.js +79 -1
  144. package/dist/input-otp.mjs +54 -1
  145. package/dist/lib/utils.js +29 -1
  146. package/dist/lib/utils.mjs +25 -1
  147. package/dist/navigation/index.js +98 -1
  148. package/dist/navigation/index.mjs +79 -1
  149. package/dist/navigation-menu.js +149 -1
  150. package/dist/navigation-menu.mjs +116 -1
  151. package/dist/pattern/grid-pattern.js +326 -3
  152. package/dist/pattern/grid-pattern.mjs +303 -3
  153. package/dist/pattern/index.js +326 -3
  154. package/dist/pattern/index.mjs +303 -3
  155. package/dist/popover.js +63 -1
  156. package/dist/popover.mjs +37 -1
  157. package/dist/primitives/index.js +8467 -192
  158. package/dist/primitives/index.mjs +8087 -192
  159. package/dist/primitives-export.js +8467 -192
  160. package/dist/primitives-export.mjs +8087 -192
  161. package/dist/progress.js +62 -1
  162. package/dist/progress.mjs +37 -1
  163. package/dist/project/gantt.js +65 -1
  164. package/dist/project/gantt.mjs +43 -1
  165. package/dist/project/index.js +636 -1
  166. package/dist/project/index.mjs +611 -1
  167. package/dist/project/kanban.js +597 -1
  168. package/dist/project/kanban.mjs +572 -1
  169. package/dist/project/list.js +35 -1
  170. package/dist/project/list.mjs +12 -1
  171. package/dist/radio-group.js +68 -1
  172. package/dist/radio-group.mjs +45 -1
  173. package/dist/resizable.js +72 -1
  174. package/dist/resizable.mjs +48 -1
  175. package/dist/scroll-area.js +89 -1
  176. package/dist/scroll-area.mjs +66 -1
  177. package/dist/select.js +140 -1
  178. package/dist/select.mjs +111 -1
  179. package/dist/separator.js +59 -1
  180. package/dist/separator.mjs +34 -1
  181. package/dist/sheet.js +148 -1
  182. package/dist/sheet.mjs +117 -1
  183. package/dist/skeleton.js +32 -1
  184. package/dist/skeleton.mjs +27 -1
  185. package/dist/slider.js +99 -1
  186. package/dist/slider.mjs +73 -1
  187. package/dist/sonner.js +34 -1
  188. package/dist/sonner.mjs +29 -1
  189. package/dist/switch.js +62 -1
  190. package/dist/switch.mjs +37 -1
  191. package/dist/table.js +110 -1
  192. package/dist/table.mjs +101 -1
  193. package/dist/tabs.js +82 -1
  194. package/dist/tabs.mjs +57 -1
  195. package/dist/tailwind/index.js +2024 -1
  196. package/dist/tailwind/index.mjs +2012 -1
  197. package/dist/textarea.js +78 -1
  198. package/dist/textarea.mjs +56 -1
  199. package/dist/toggle-group.js +118 -1
  200. package/dist/toggle-group.mjs +93 -1
  201. package/dist/toggle.js +71 -1
  202. package/dist/toggle.mjs +48 -1
  203. package/dist/tooltip.js +67 -1
  204. package/dist/tooltip.mjs +40 -1
  205. package/dist/types/index.js +58 -1
  206. package/dist/types/index.mjs +52 -1
  207. package/dist/ui/announcement.js +129 -1
  208. package/dist/ui/announcement.mjs +107 -1
  209. package/dist/ui/avatar-group.js +88 -1
  210. package/dist/ui/avatar-group.mjs +65 -1
  211. package/dist/ui/banner.js +85 -1
  212. package/dist/ui/banner.mjs +62 -1
  213. package/dist/ui/cursor.js +78 -1
  214. package/dist/ui/cursor.mjs +56 -1
  215. package/dist/ui/index.js +475 -1
  216. package/dist/ui/index.mjs +442 -1
  217. package/dist/ui/marquee.js +74 -1
  218. package/dist/ui/marquee.mjs +52 -1
  219. package/dist/ui/pill.js +85 -1
  220. package/dist/ui/pill.mjs +62 -1
  221. package/dist/ui/spinner.js +28 -1
  222. package/dist/ui/spinner.mjs +26 -1
  223. package/dist/ui/tags.js +101 -1
  224. package/dist/ui/tags.mjs +79 -1
  225. package/dist/ui/ticker.js +73 -1
  226. package/dist/ui/ticker.mjs +51 -1
  227. package/dist/util/index.js +458 -1
  228. package/dist/util/index.mjs +400 -1
  229. package/package.json +1 -1
@@ -1 +1,2012 @@
1
- import G from'tailwindcss-animate';import Q from'@tailwindcss/container-queries';import V from'tailwindcss-interaction-media';import j from'tailwindcss/plugin';import P from'lodash.merge';import I from'lodash.castarray';import'lodash.isplainobject';import D from'postcss-selector-parser';var U=Object.defineProperty;var e=(t,n)=>U(t,"name",{value:n,configurable:true});var y=e(({colors:t})=>({inherit:t.inherit,current:t.current,transparent:t.transparent,ring:"var(--hz-ui-ring)",background:"var(--hz-ui-bg-0)",overlay:"var(--hz-ui-bg-overlay)",level:{DEFAULT:"var(--hz-ui-bg-0)",0:"var(--hz-ui-bg-0)",1:"var(--hz-ui-bg-1)",2:"var(--hz-ui-bg-2)",3:"var(--hz-ui-bg-3)"},accent:"var(--hz-ui-fg-0)",foreground:"var(--hz-ui-fg-body)",muted:{DEFAULT:"var(--hz-ui-fg-2)",1:"var(--hz-ui-fg-2)",2:"var(--hz-ui-fg-3)",3:"var(--hz-ui-fg-4)",4:"var(--hz-ui-fg-5)"},primary:{DEFAULT:"var(--hz-ui-primary)",lux:"var(--hz-ui-primary)",hover:"var(--hz-ui-primary-hover)",fg:"var(--hz-ui-primary-fg)"},secondary:{DEFAULT:"var(--hz-ui-secondary)",lux:"var(--hz-ui-secondary)",hover:"var(--hz-ui-secondary-hover)",fg:"var(--hz-ui-secondary-fg)",0:"var(--hz-ui-secondary-0)",1:"var(--hz-ui-secondary-1)",2:"var(--hz-ui-secondary-2)",3:"var(--hz-ui-secondary-3)"},destructive:{DEFAULT:"var(--hz-ui-destructive)",fg:"var(--hz-ui-destructive-fg)"},nav:{DEFAULT:"var(--hz-ui-nav)",hover:"var(--hz-ui-nav-hover)",current:"var(--hz-ui-nav-current)"}}),"default");var v=["font-sans",{pattern:/grid-cols-[1-6]/,variants:["xs","sm","md","lg","xl","2xl"]},{pattern:/h-([0-9]|[1-3][0-9]|40)/,variants:["xs","sm","md","lg","xl","2xl"]},{pattern:/order-[0-6]/},{pattern:/mb-([1-9]|1[0-2])/},"md:text-left","md:text-center","md:text-right","md:self-start","md:self-center","md:self-end"];var w={xs:"0px",sm:"480px",md:"768px",lg:"1024px",xl:"1280px","2xl":"1500px"};var z={};for(let t=0;t<=100;t++)z[`pr-${t}`]=`${t}%`;var l={...z,px:"1px",0:"0px",.5:"0.125rem",1:"0.25rem",1.5:"0.375rem",2:"0.5rem",2.5:"0.625rem",3:"0.75rem",3.5:"0.875rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem",11:"2.75rem",12:"3rem",13:"3.25rem",14:"3.5rem",15:"3.75rem",16:"4rem",17:"4.25rem",18:"4.5rem",19:"4.75rem",20:"5rem",21:"5.25rem",22:"5.5rem",23:"5.75rem",24:"6rem",25:"5.25rem",26:"5.5rem",27:"5.75rem",28:"7rem",29:"7.25rem",30:"7.5rem",31:"7.75rem",32:"8rem",33:"8.25rem",34:"8.5rem",35:"8.75rem",36:"9rem",37:"9.25rem",38:"9.5rem",39:"9.75rem",40:"10rem",44:"11rem",48:"12rem",52:"13rem",56:"14rem",60:"15rem",64:"16rem",72:"18rem",80:"20rem",96:"24rem"};var T={xxs:["0.65rem",{lineHeight:"0.8rem"}],xs:["0.8rem",{lineHeight:"1rem"}],sm:["0.9rem",{lineHeight:"1.2rem"}],base:["1rem",{lineHeight:1.4}],lg:["1.125rem",{lineHeight:"1.75rem"}],xl:["1.25rem",{lineHeight:"1.75rem"}],"2xl":["1.5rem",{lineHeight:"2rem"}],"3xl":["1.875rem",{lineHeight:"2.25rem"}],"4xl":["2.25rem",{lineHeight:"2.5rem"}],"5xl":["3rem",{lineHeight:"1"}],"6xl":["3.75rem",{lineHeight:"1"}]};var k={sans:["sans-serif"],heading:["serif"],nav:["serif"],serif:["serif"],mono:["monospace"]};var S={auto:"auto",unset:"unset","below-content-3":"-3","below-content-2":"-2","below-content-1":"-1","below-content":"-1",content:"0","above-content":"1","above-content-1":"1","above-content-2":"2","above-content-3":"3","below-popup-3":"7","below-popup-2":"8","below-popup-1":"9","below-popup":"9",popup:"10","above-popup":"11","above-popup-1":"11","above-popup-2":"12","above-popup-3":"13","below-header-3":"17","below-header-2":"18","below-header-1":"19","below-header":"19",header:"20","above-header":"21","above-header-1":"21","above-header-2":"22","above-header-3":"23","below-modal-3":"27","below-modal-2":"28","below-modal-1":"29","below-modal":"29",modal:"30","above-modal":"31","above-modal-1":"31","above-modal-2":"32","above-modal-3":"33","below-floating-3":"37","below-floating-2":"38","below-floating-1":"39","below-floating":"39",floating:"40","above-floating":"41","above-floating-1":"41","above-floating-2":"42","above-floating-3":"43"};for(let t=0;t<=50;t++)S[`${t}`]=`${t}`;var A=S;function h(t){return Math.round(t*100)/100}e(h,"round");function o(t,n=16){return `${t/n}rem`}e(o,"pxToRem");function r(t,n=16){return `${t/n}em`}e(r,"pxToEm");var q={"--tw-typo-plugin-body":"var(--hz-ui-fg-body)","--tw-typo-plugin-headings":"var(--hz-ui-fg-0)","--tw-typo-plugin-links":"var(--hz-ui-fg-0)","--tw-typo-plugin-links-hover":"var(--hz-ui-fg-2)","--tw-typo-plugin-bold":"var(--hz-ui-fg-0)","--tw-typo-plugin-counters":"var(--hz-ui-fg-4)","--tw-typo-plugin-bullets":"var(--hz-ui-fg-2)","--tw-typo-plugin-hr":"var(--hz-ui-fg-2)","--tw-typo-plugin-quotes":"var(--hz-ui-fg-body)","--tw-typo-plugin-quote-borders":"var(--hz-ui-fg-3)","--tw-typo-plugin-captions":"var(--hz-ui-fg-2)","--tw-typo-plugin-kbd":"var(--hz-ui-fg-0)","--tw-typo-plugin-kbd-shadows":"var(--hz-ui-fg-1)","--tw-typo-plugin-code":"var(--hz-ui-fg-0)","--tw-typo-plugin-pre-code":"var(--hz-ui-fg-1)","--tw-typo-plugin-pre-bg":"var(--hz-ui-bg-1)","--tw-typo-plugin-th-borders":"var(--hz-ui-fg-2)","--tw-typo-plugin-td-borders":"var(--hz-ui-fg-3)"},$={color:"var(--tw-typo-plugin-body)",p:{textAlign:"inherit"},"p:first-child":{},"p:last-child":{},a:{color:"var(--tw-typo-plugin-links)",textDecoration:"underline",fontWeight:"400"},"a:hover":{color:"var(--tw-typo-plugin-links-hover)"},blockquote:{fontWeight:"400",fontStyle:"italic",color:"var(--tw-typo-plugin-quotes)",quotes:'"\\201C""\\201D""\\2018""\\2019"'},"blockquote p:first-of-type::before":{content:"open-quote"},"blockquote p:last-of-type::after":{content:"close-quote"},"blockquote strong":{color:"inherit"},cite:{display:"block",fontStyle:"normal",textAlign:"right",color:"var(--tw-typo-plugin-quotes)"},ol:{listStyleType:"decimal"},ul:{},"ol > li::marker":{fontWeight:"400",color:"var(--tw-typo-plugin-counters)"},"ul > li::marker":{color:"var(--tw-typo-plugin-bullets)"},"ul > li::before":{},hr:{borderColor:"var(--tw-typo-plugin-hr)",borderTopWidth:1},h1:{color:"var(--tw-typo-plugin-headings)",fontWeight:"800",textAlign:"inherit",textTransform:"uppercase"},h2:{color:"var(--tw-typo-plugin-headings)",fontWeight:"700",textAlign:"inherit",textTransform:"uppercase"},h3:{color:"var(--tw-typo-plugin-headings)",fontWeight:"600",textAlign:"inherit",textTransform:"uppercase"},h4:{color:"var(--tw-typo-plugin-headings)",fontWeight:"600",textAlign:"inherit"},h5:{color:"var(--tw-typo-plugin-headings)",fontWeight:"600",textAlign:"inherit"},h6:{color:"var(--tw-typo-plugin-headings)",textAlign:"inherit"},img:{},"img:first-child":{},"img:last-child":{},picture:{display:"block"},strong:{color:"var(--tw-typo-plugin-bold)",fontWeight:"600"},video:{},kbd:{fontWeight:"500",fontFamily:"inherit",color:"var(--tw-typo-plugin-kbd)",boxShadow:"0 0 0 1px rgb(var(--tw-typo-plugin-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-typo-plugin-kbd-shadows) / 10%)"},code:{color:"var(--tw-typo-plugin-code)",fontWeight:"500"},"code::before":{content:'"`"'},"code::after":{content:'"`"'},"a code":{color:"inherit"},"h1 code":{color:"inherit"},"h2 code":{color:"inherit"},"h3 code":{color:"inherit"},"h4 code":{color:"inherit"},"h5 code":{color:"inherit"},"h6 code":{color:"inherit"},"blockquote code":{color:"inherit"},"thead th code":{color:"inherit"},pre:{color:"var(--tw-typo-plugin-pre-code)",backgroundColor:"var(--tw-typo-plugin-pre-bg)",overflowX:"auto",fontWeight:"400"},"pre code":{backgroundColor:"transparent",borderWidth:"0",borderRadius:"0",padding:"0",fontWeight:"inherit",color:"inherit",fontSize:"inherit",fontFamily:"inherit",lineHeight:"inherit"},"pre code::before":{content:"none"},"pre code::after":{content:"none"},table:{width:"100%",tableLayout:"auto",textAlign:"left"},thead:{borderBottomWidth:"1px",borderBottomColor:"var(--tw-typo-plugin-th-borders)"},"thead th":{color:"var(--tw-typo-plugin-headings)",fontWeight:"600",verticalAlign:"bottom"},"tbody tr":{},"tbody tr:last-child":{},"tbody td":{verticalAlign:"baseline"},tfoot:{borderTopWidth:"1px",borderTopColor:"var(--tw-typo-plugin-th-borders)"},"tfoot td":{verticalAlign:"top"}},u=e(t=>({base:{css:[{fontSize:"1rem",lineHeight:1.4,p:{marginTop:"0.33rem",marginBottom:"0.33rem"},"p:first-child":{marginTop:0},"p:last-child":{marginBottom:0},a:{},"a:hover":{},blockquote:{},"blockquote p:first-of-type::before":{},"blockquote p:last-of-type::after":{},cite:{},ol:{fontSize:"1rem",paddingLeft:"1.5rem",margin:0,marginLeft:"-5px"},ul:{fontSize:"1rem",paddingLeft:"1.5rem",margin:0,marginLeft:"-0.6rem",listStylePosition:"outside",listStyleType:"'\u25BC'"},li:{},"ol > li":{paddingLeft:"0.4rem"},"ul > li":{paddingLeft:"0.75rem",marginBottom:"0.75rem"},"ul > li:last-child":{marginBottom:0},"> ul > li p":{margin:0,display:"inline"},hr:{},h1:{fontSize:o(40,t),lineHeight:1.2},h2:{fontSize:o(36,t),lineHeight:1.2},h3:{fontSize:"1.4rem",lineHeight:1.2},h4:{marginTop:"0.5rem",marginBottom:"0.5rem",fontSize:"1.3rem",lineHeight:1.2},h5:{marginTop:"0.5rem",marginBottom:"0.5rem",fontSize:"1.2rem",lineHeight:1.4},h6:{marginTop:"0.5rem",marginBottom:"0.5rem",fontSize:"1.15rem",lineHeight:1.3},"hr + *":{marginTop:"0"},"h2 + *":{marginTop:"0"},"h3 + *":{marginTop:"0"},"h4 + *":{marginTop:"0"},img:{marginTop:"0.5rem",marginBottom:"0.5rem"},"img:first-child":{marginTop:0},"img:last-child":{marginBottom:0},picture:{marginTop:o(20,t),marginBottom:o(20,t)},"picture > img":{marginTop:"0",marginBottom:"0"},video:{marginTop:o(20,t),marginBottom:o(20,t)},kbd:{fontSize:r(14,16),borderRadius:o(5,t),paddingTop:r(3,16),paddingRight:r(6,16),paddingBottom:r(3,16),paddingLeft:r(6,16)},code:{fontSize:r(14,16)},"h2 code":{fontSize:r(21,24)},"h3 code":{fontSize:r(18,20)},pre:{fontSize:o(14,16),lineHeight:h(24/14),marginTop:r(24,14),marginBottom:r(24,14),borderRadius:o(6,t),paddingTop:r(12,14),paddingRight:r(16,14),paddingBottom:r(12,14),paddingLeft:r(16,14)},"ul ul, ul ol, ol ul, ol ol":{marginTop:o(12,t),marginBottom:o(12,t)},dl:{marginTop:r(20,16),marginBottom:r(20,t)},dt:{marginTop:r(20,t)},dd:{marginTop:r(8,t),paddingLeft:r(26,t)},table:{fontSize:r(14,t),lineHeight:h(24/14)},"thead th":{paddingRight:r(8,14),paddingBottom:r(8,14),paddingLeft:r(8,14)},"thead th:first-child":{paddingLeft:"0"},"thead th:last-child":{paddingRight:"0"},"tbody td, tfoot td":{paddingTop:r(8,14),paddingRight:r(8,14),paddingBottom:r(8,14),paddingLeft:r(8,14)},"tbody td:first-child, tfoot td:first-child":{paddingLeft:"0"},"tbody td:last-child, tfoot td:last-child":{paddingRight:"0"}}]},sm:{css:[{p:{},"p:first-child":{},"p:last-child":{},a:{},"a:hover":{},blockquote:{},"blockquote p:first-of-type::before":{},"blockquote p:last-of-type::after":{},cite:{},ol:{},ul:{},li:{},"ol > li":{},"ul > li":{},"ul > li:last-child":{},"> ul > li p":{},hr:{},h1:{fontSize:o(24,t)},h2:{fontSize:o(20,t)},h3:{fontSize:r(18,t)},h4:{},h5:{},h6:{},"hr + *":{},"h2 + *":{},"h3 + *":{},"h4 + *":{},img:{},"img:first-child":{},"img:last-child":{},picture:{},"picture > img":{},video:{},kbd:{},code:{},"h2 code":{},"h3 code":{},pre:{},"ul ul, ul ol, ol ul, ol ol":{},dl:{},dt:{},dd:{},table:{},"thead th":{},"thead th:first-child":{},"thead th:last-child":{},"tbody td, tfoot td":{},"tbody td:first-child, tfoot td:first-child":{},"tbody td:last-child, tfoot td:last-child":{}}]},lg:{css:[{p:{},"p:first-child":{},"p:last-child":{},a:{},"a:hover":{},blockquote:{},"blockquote p:first-of-type::before":{},"blockquote p:last-of-type::after":{},cite:{},ol:{},ul:{},li:{},"ol > li":{},"ul > li":{},"ul > li:last-child":{},"> ul > li p":{},hr:{},h1:{fontSize:o(45,t),lineHeight:1.1},h2:{fontSize:o(40,t),lineHeight:1.1},h3:{fontSize:o(32,t),lineHeight:1.1},h4:{fontSize:o(26,t),marginTop:o(13,t),marginBottom:o(13,t)},h5:{fontSize:o(22,t),marginTop:o(11,t),marginBottom:o(11,t)},h6:{},"hr + *":{},"h2 + *":{},"h3 + *":{},"h4 + *":{},img:{},"img:first-child":{},"img:last-child":{},picture:{},"picture > img":{},video:{},kbd:{},code:{},"h2 code":{},"h3 code":{},pre:{},"ul ul, ul ol, ol ul, ol ol":{},dl:{},dt:{},dd:{},table:{},"thead th":{},"thead th:first-child":{},"thead th:last-child":{},"tbody td, tfoot td":{},"tbody td:first-child, tfoot td:first-child":{},"tbody td:last-child, tfoot td:last-child":{}}]},xl:{css:[{p:{},"p:first-child":{},"p:last-child":{},a:{},"a:hover":{},blockquote:{},"blockquote p:first-of-type::before":{},"blockquote p:last-of-type::after":{},cite:{},ol:{},ul:{},li:{},"ol > li":{},"ul > li":{},"ul > li:last-child":{},"> ul > li p":{},hr:{},h1:{fontSize:o(52,t),lineHeight:1.1},h2:{fontSize:o(45,t),lineHeight:1.1},h3:{fontSize:o(40,t),lineHeight:1.1},h4:{fontSize:o(28,t),marginTop:o(13,t),marginBottom:o(13,t)},h5:{fontSize:o(22,t),marginTop:o(11,t),marginBottom:o(11,t)},h6:{},"hr + *":{},"h2 + *":{},"h3 + *":{},"h4 + *":{},img:{},"img:first-child":{},"img:last-child":{},picture:{},"picture > img":{},video:{},kbd:{},code:{},"h2 code":{},"h3 code":{},pre:{},"ul ul, ul ol, ol ul, ol ol":{},dl:{},dt:{},dd:{},table:{},"thead th":{},"thead th:first-child":{},"thead th:last-child":{},"tbody td, tfoot td":{},"tbody td:first-child, tfoot td:first-child":{},"tbody td:last-child, tfoot td:last-child":{}}]}}),"defaultModifiers"),R=e(t=>({DEFAULT:{css:[$,q,...u(t).base.css]},sm:u(t).sm,lg:u(t).lg,xl:u(t).xl}),"getStyles"),L=R;var O=D();function E(t){let n=O.astSync(t),m=[];for(let[p,d]of n.nodes.entries())for(let[i,a]of [...d.nodes].reverse().entries()){if(a.type!=="pseudo"||!a.value.startsWith("::"))break;m[i]=m[i]||[],m[i][p]=a;}let s=D.selector();for(let p of m){if(!p)continue;if(new Set([...p.map(i=>i.value)]).size>1)break;p.forEach(i=>i.remove()),s.prepend(p[0]);}return s.nodes.length?[s.toString(),n.toString()]:[null,t]}e(E,"commonTrailingPseudos");var C=16,F={};function f(t,{className:n,modifier:m,prefix:s}){let p=s(`.not-${n}`).slice(1),d=t.startsWith(">")?`${m==="DEFAULT"?`.${n}`:`.${n}-${m}`} `:"",[i,a]=E(t);return i?`:where(${d}${a}):not(:where([class~="${p}"],[class~="${p}"] *))${i}`:`:where(${d}${t}):not(:where([class~="${p}"],[class~="${p}"] *))`}e(f,"inWhere");function H(t){return typeof t=="object"&&t!==null}e(H,"isObject");function M(t={},{target:n,className:m,modifier:s,prefix:p}){function d(i,a){return n==="legacy"?[i,a]:Array.isArray(a)?[i,a]:H(a)?Object.values(a).some(H)?[f(i,{className:m,modifier:s,prefix:p}),a,Object.fromEntries(Object.entries(a).map(([c,g])=>d(c,g)))]:[f(i,{className:m,modifier:s,prefix:p}),a]:[i,a]}return e(d,"updateSelector"),Object.fromEntries(Object.entries(P({},...Object.keys(t).filter(i=>F[i]).map(i=>F[i](t[i])),...I(t.css||{}))).map(([i,a])=>d(i,a)))}e(M,"configToCss");var W=j.withOptions(({className:t="prose",target:n="modern",base:m=16}={})=>(C=m,function({addVariant:s,addComponents:p,theme:d,prefix:i}){let a=d("typography"),x={className:t,prefix:i};for(let[c,...g]of [["headings","h1","h2","h3"],["h1"],["h2"],["h3"],["h4"],["h5"],["h6"],["p"],["a"],["blockquote"],["figure"],["figcaption"],["strong"],["em"],["code"],["pre"],["ol"],["ul"],["li"],["table"],["thead"],["tr"],["th"],["td"],["img"],["video"],["hr"]]){g=g.length===0?[c]:g;let b=n==="legacy"?g.map(B=>`& ${B}`):g.join(", ");s(`${t}-${c}`,n==="legacy"?b:`& :is(${f(b,x)})`);}p(Object.keys(a).map(c=>({[c==="DEFAULT"?`.${t}`:`.${t}-${c}`]:M(a[c],{target:n,className:t,modifier:c,prefix:i})})));}),()=>({theme:{typography:L(C)}}));var X={darkMode:["class"],content:[],safelist:v,plugins:[G,W({className:"typography",base:16}),Q,V],theme:{accentColor:e(({theme:t})=>({...t("colors"),auto:"auto"}),"accentColor"),animation:{none:"none",spin:"spin 1s linear infinite",ping:"ping 1s cubic-bezier(0, 0, 0.2, 1) infinite",pulse:"pulse 2s linear(0, 1) infinite",pulsereverse:"pulse 2s linear(1, 0) infinite",bounce:"bounce 1s infinite","accordion-down":"accordion-down 0.2s ease-out","accordion-up":"accordion-up 0.2s ease-out","mobile-menu-open":"opacity-in 300ms ease-in"},aria:{checked:'checked="true"',disabled:'disabled="true"',expanded:'expanded="true"',hidden:'hidden="true"',pressed:'pressed="true"',readonly:'readonly="true"',required:'required="true"',selected:'selected="true"'},aspectRatio:{auto:"auto",square:"1 / 1",video:"16 / 9"},backdropBlur:e(({theme:t})=>t("blur"),"backdropBlur"),backdropBrightness:e(({theme:t})=>t("brightness"),"backdropBrightness"),backdropContrast:e(({theme:t})=>t("contrast"),"backdropContrast"),backdropGrayscale:e(({theme:t})=>t("grayscale"),"backdropGrayscale"),backdropHueRotate:e(({theme:t})=>t("hueRotate"),"backdropHueRotate"),backdropInvert:e(({theme:t})=>t("invert"),"backdropInvert"),backdropOpacity:e(({theme:t})=>t("opacity"),"backdropOpacity"),backdropSaturate:e(({theme:t})=>t("saturate"),"backdropSaturate"),backdropSepia:e(({theme:t})=>t("sepia"),"backdropSepia"),backgroundColor:e(({theme:t})=>t("colors"),"backgroundColor"),backgroundImage:{none:"none","gradient-to-t":"linear-gradient(to top, var(--tw-gradient-stops))","gradient-to-tr":"linear-gradient(to top right, var(--tw-gradient-stops))","gradient-to-r":"linear-gradient(to right, var(--tw-gradient-stops))","gradient-to-br":"linear-gradient(to bottom right, var(--tw-gradient-stops))","gradient-to-b":"linear-gradient(to bottom, var(--tw-gradient-stops))","gradient-to-bl":"linear-gradient(to bottom left, var(--tw-gradient-stops))","gradient-to-l":"linear-gradient(to left, var(--tw-gradient-stops))","gradient-to-tl":"linear-gradient(to top left, var(--tw-gradient-stops))"},backgroundOpacity:e(({theme:t})=>t("opacity"),"backgroundOpacity"),backgroundPosition:{bottom:"bottom",center:"center",left:"left","left-bottom":"left bottom","left-top":"left top",right:"right","right-bottom":"right bottom","right-top":"right top",top:"top"},backgroundSize:{auto:"auto",cover:"cover",contain:"contain"},blur:{0:"0",none:"0",sm:"4px",DEFAULT:"8px",md:"12px",lg:"16px",xl:"24px","2xl":"40px","3xl":"64px"},borderColor:e(({theme:t})=>({...t("colors"),DEFAULT:t("colors.muted.3")}),"borderColor"),borderOpacity:e(({theme:t})=>t("opacity"),"borderOpacity"),borderRadius:{none:"0px",sm:"0.25rem",DEFAULT:"0.5rem",md:"0.5rem",lg:"0.75rem",xl:"1rem","2xl":"1.5rem","3xl":"2rem",full:"9999px"},borderSpacing:l,borderWidth:{DEFAULT:"1px",0:"0px",2:"2px",4:"4px",8:"8px"},boxShadow:{sm:"0 1px 2px 0 rgb(0 0 0 / 0.05)",DEFAULT:"0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",md:"0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",lg:"0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",xl:"0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)","2xl":"0 25px 50px -12px rgb(0 0 0 / 0.25)",inner:"inset 0 2px 4px 0 rgb(0 0 0 / 0.05)",none:"none"},boxShadowColor:e(({theme:t})=>t("colors"),"boxShadowColor"),brightness:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5",200:"2"},caretColor:e(({theme:t})=>t("colors"),"caretColor"),colors:y,columns:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12","3xs":"16rem","2xs":"18rem",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem"},container:{center:true,padding:"2rem"},content:{none:"none"},contrast:{0:"0",50:".5",75:".75",100:"1",125:"1.25",150:"1.5",200:"2"},cursor:{auto:"auto",default:"default",pointer:"pointer",wait:"wait",text:"text",move:"move",help:"help","not-allowed":"not-allowed",none:"none","context-menu":"context-menu",progress:"progress",cell:"cell",crosshair:"crosshair","vertical-text":"vertical-text",alias:"alias",copy:"copy","no-drop":"no-drop",grab:"grab",grabbing:"grabbing","all-scroll":"all-scroll","col-resize":"col-resize","row-resize":"row-resize","n-resize":"n-resize","e-resize":"e-resize","s-resize":"s-resize","w-resize":"w-resize","ne-resize":"ne-resize","nw-resize":"nw-resize","se-resize":"se-resize","sw-resize":"sw-resize","ew-resize":"ew-resize","ns-resize":"ns-resize","nesw-resize":"nesw-resize","nwse-resize":"nwse-resize","zoom-in":"zoom-in","zoom-out":"zoom-out"},divideColor:e(({theme:t})=>t("borderColor"),"divideColor"),divideOpacity:e(({theme:t})=>t("borderOpacity"),"divideOpacity"),divideWidth:e(({theme:t})=>t("borderWidth"),"divideWidth"),dropShadow:{sm:"0 1px 1px rgb(0 0 0 / 0.05)",DEFAULT:["0 1px 2px rgb(0 0 0 / 0.1)","0 1px 1px rgb(0 0 0 / 0.06)"],md:["0 4px 3px rgb(0 0 0 / 0.07)","0 2px 2px rgb(0 0 0 / 0.06)"],lg:["0 10px 8px rgb(0 0 0 / 0.04)","0 4px 3px rgb(0 0 0 / 0.1)"],xl:["0 20px 13px rgb(0 0 0 / 0.03)","0 8px 5px rgb(0 0 0 / 0.08)"],"2xl":"0 25px 25px rgb(0 0 0 / 0.15)",none:"0 0 #0000"},fill:e(({theme:t})=>({none:"none",...t("colors")}),"fill"),flex:{1:"1 1 0%",auto:"1 1 auto",initial:"0 1 auto",none:"none"},flexBasis:{auto:"auto",...l,"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%"},flexGrow:{0:"0",DEFAULT:"1"},flexShrink:{0:"0",DEFAULT:"1"},fontFamily:k,fontSize:T,fontWeight:{thin:"100",extralight:"200",light:"300",normal:"400",medium:"500",semibold:"600",bold:"700",extrabold:"800",black:"900"},gap:l,gradientColorStops:e(({theme:t})=>t("colors"),"gradientColorStops"),gradientColorStopPositions:{"0%":"0%","5%":"5%","10%":"10%","15%":"15%","20%":"20%","25%":"25%","30%":"30%","35%":"35%","40%":"40%","45%":"45%","50%":"50%","55%":"55%","60%":"60%","65%":"65%","70%":"70%","75%":"75%","80%":"80%","85%":"85%","90%":"90%","95%":"95%","100%":"100%"},grayscale:{0:"0",DEFAULT:"100%"},gridAutoColumns:{auto:"auto",min:"min-content",max:"max-content",fr:"minmax(0, 1fr)"},gridAutoRows:{auto:"auto",min:"min-content",max:"max-content",fr:"minmax(0, 1fr)"},gridColumn:{auto:"auto","span-1":"span 1 / span 1","span-2":"span 2 / span 2","span-3":"span 3 / span 3","span-4":"span 4 / span 4","span-5":"span 5 / span 5","span-6":"span 6 / span 6","span-7":"span 7 / span 7","span-8":"span 8 / span 8","span-9":"span 9 / span 9","span-10":"span 10 / span 10","span-11":"span 11 / span 11","span-12":"span 12 / span 12","span-full":"1 / -1"},gridColumnEnd:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13"},gridColumnStart:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13"},gridRow:{auto:"auto","span-1":"span 1 / span 1","span-2":"span 2 / span 2","span-3":"span 3 / span 3","span-4":"span 4 / span 4","span-5":"span 5 / span 5","span-6":"span 6 / span 6","span-full":"1 / -1"},gridRowEnd:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7"},gridRowStart:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7"},gridTemplateColumns:{none:"none",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))",7:"repeat(7, minmax(0, 1fr))",8:"repeat(8, minmax(0, 1fr))",9:"repeat(9, minmax(0, 1fr))",10:"repeat(10, minmax(0, 1fr))",11:"repeat(11, minmax(0, 1fr))",12:"repeat(12, minmax(0, 1fr))"},gridTemplateRows:{none:"none",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))"},height:{auto:"auto",...l,"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%",full:"100%",screen:"100vh",min:"min-content",max:"max-content",fit:"fit-content"},hueRotate:{0:"0deg",15:"15deg",30:"30deg",60:"60deg",90:"90deg",180:"180deg"},inset:{auto:"auto",...l,"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%",full:"100%"},invert:{0:"0",DEFAULT:"100%"},keyframes:{spin:{to:{transform:"rotate(360deg)"}},ping:{"75%, 100%":{transform:"scale(2)",opacity:"0"}},pulse:{"50%":{opacity:".5"}},bounce:{"0%, 100%":{transform:"translateY(-25%)",animationTimingFunction:"cubic-bezier(0.8,0,1,1)"},"50%":{transform:"none",animationTimingFunction:"cubic-bezier(0,0,0.2,1)"}},"accordion-down":{from:{height:0},to:{height:"var(--radix-accordion-content-height)"}},"accordion-up":{from:{height:"var(--radix-accordion-content-height)"},to:{height:0}},"opacity-in":{from:{opacity:"0"},to:{opacity:"1"}}},letterSpacing:{tighter:"-0.05em",tight:"-0.025em",normal:"0em",wide:"0.025em",wider:"0.05em",widest:"0.1em"},lineHeight:{none:"1",tight:"1.25",snug:"1.375",normal:"1.5",relaxed:"1.625",loose:"2",3:".75rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem"},listStyleType:{none:"none",disc:"disc",decimal:"decimal"},listStyleImage:{none:"none"},margin:{auto:"auto",...l},lineClamp:{1:"1",2:"2",3:"3",4:"4",5:"5",6:"6"},maxHeight:{...l,none:"none",full:"100%",screen:"100vh",min:"min-content",max:"max-content",fit:"fit-content"},maxWidth:e(({theme:t,breakpoints:n})=>({...l,none:"none",0:"0rem",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem",full:"100%",min:"min-content",max:"max-content",fit:"fit-content",prose:"65ch",...n(t("screens"))}),"maxWidth"),minHeight:{...l,0:"0px",full:"100%",screen:"100vh",min:"min-content",max:"max-content",fit:"fit-content"},minWidth:e(({theme:t,breakpoints:n})=>({...l,0:"0px",full:"100%",min:"min-content",max:"max-content",fit:"fit-content",...n(t("screens"))}),"minWidth"),objectPosition:{bottom:"bottom",center:"center",left:"left","left-bottom":"left bottom","left-top":"left top",right:"right","right-bottom":"right bottom","right-top":"right top",top:"top"},opacity:{0:"0",5:"0.05",10:"0.1",20:"0.2",25:"0.25",30:"0.3",35:"0.35",40:"0.4",45:"0.45",50:"0.5",55:"0.55",60:"0.6",65:"0.65",70:"0.7",75:"0.75",80:"0.8",85:"0.85",90:"0.9",95:"0.95",100:"1"},order:{first:"-9999",last:"9999",none:"0",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12"},outlineColor:e(({theme:t})=>t("colors"),"outlineColor"),outlineOffset:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px"},outlineWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px"},padding:l,placeholderColor:e(({theme:t})=>t("colors"),"placeholderColor"),placeholderOpacity:e(({theme:t})=>t("opacity"),"placeholderOpacity"),ringColor:e(({theme:t})=>({DEFAULT:t("colors.blue.500","#3b82f6"),...t("colors")}),"ringColor"),ringOffsetColor:e(({theme:t})=>t("colors"),"ringOffsetColor"),ringOffsetWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px"},ringOpacity:e(({theme:t})=>({DEFAULT:"0.5",...t("opacity")}),"ringOpacity"),ringWidth:{DEFAULT:"3px",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px"},rotate:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg",45:"45deg",90:"90deg",180:"180deg"},saturate:{0:"0",50:".5",100:"1",150:"1.5",200:"2"},scale:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5"},screens:w,scrollMargin:l,scrollPadding:l,sepia:{0:"0",DEFAULT:"100%"},skew:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg"},space:l,spacing:l,stroke:e(({theme:t})=>({none:"none",...t("colors")}),"stroke"),strokeWidth:{0:"0",1:"1",2:"2"},supports:{},data:{on:'state~="on"',off:'state~="off"'},textColor:e(({theme:t})=>t("colors"),"textColor"),textDecorationColor:e(({theme:t})=>t("colors"),"textDecorationColor"),textDecorationThickness:{auto:"auto","from-font":"from-font",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px"},textIndent:l,textOpacity:e(({theme:t})=>t("opacity"),"textOpacity"),textUnderlineOffset:{auto:"auto",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px"},transformOrigin:{center:"center",top:"top","top-right":"top right",right:"right","bottom-right":"bottom right",bottom:"bottom","bottom-left":"bottom left",left:"left","top-left":"top left"},transitionDelay:{0:"0s",75:"75ms",100:"100ms",150:"150ms",200:"200ms",300:"300ms",500:"500ms",700:"700ms",1e3:"1000ms"},transitionDuration:{DEFAULT:"150ms",0:"0s",75:"75ms",100:"100ms",150:"150ms",200:"200ms",300:"300ms",500:"500ms",700:"700ms",1e3:"1000ms"},transitionProperty:{none:"none",all:"all",DEFAULT:"color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter",colors:"color, background-color, border-color, text-decoration-color, fill, stroke",opacity:"opacity",shadow:"box-shadow",transform:"transform",height:"height",spacing:"margin, padding"},transitionTimingFunction:{DEFAULT:"cubic-bezier(0.4, 0, 0.2, 1)",linear:"linear",in:"cubic-bezier(0.4, 0, 1, 1)",out:"cubic-bezier(0, 0, 0.2, 1)","in-out":"cubic-bezier(0.4, 0, 0.2, 1)"},translate:{...l,"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%",full:"100%"},width:e(({theme:t,breakpoints:n})=>({auto:"auto",...l,"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",screen:"100vw",min:"min-content",max:"max-content",fit:"fit-content",...n(t("screens"))}),"width"),willChange:{auto:"auto",scroll:"scroll-position",contents:"contents",transform:"transform"},zIndex:A}};export{X as preset};
1
+ "use client";
2
+ import animatePlugin from 'tailwindcss-animate';
3
+ import containerQueriesPlugin from '@tailwindcss/container-queries';
4
+ import tailwindInteractionMediaPlugin from 'tailwindcss-interaction-media';
5
+ import plugin from 'tailwindcss/plugin';
6
+ import merge from 'lodash.merge';
7
+ import castArray from 'lodash.castarray';
8
+ import 'lodash.isplainobject';
9
+ import parser from 'postcss-selector-parser';
10
+
11
+ var __defProp = Object.defineProperty;
12
+ var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
13
+
14
+ // tailwind/colors.tailwind.js
15
+ var colors_tailwind_default = /* @__PURE__ */ __name(({ colors }) => ({
16
+ inherit: colors.inherit,
17
+ current: colors.current,
18
+ transparent: colors.transparent,
19
+ ring: "var(--hz-ui-ring)",
20
+ background: "var(--hz-ui-bg-0)",
21
+ // Should be partially transparent,
22
+ // so opacity animations in 'vaul' module and other 3rd party stuff work
23
+ overlay: "var(--hz-ui-bg-overlay)",
24
+ // levels forward in z-index (a la Material Design)
25
+ level: {
26
+ DEFAULT: "var(--hz-ui-bg-0)",
27
+ "0": "var(--hz-ui-bg-0)",
28
+ "1": "var(--hz-ui-bg-1)",
29
+ "2": "var(--hz-ui-bg-2)",
30
+ "3": "var(--hz-ui-bg-3)"
31
+ },
32
+ accent: "var(--hz-ui-fg-0)",
33
+ // full contrast (darkTheme:white) : heading and links hover
34
+ foreground: "var(--hz-ui-fg-body)",
35
+ // body text off-white (bright enough to contrast to bg-level-1)
36
+ muted: {
37
+ DEFAULT: "var(--hz-ui-fg-2)",
38
+ // de-emphasized: fine print
39
+ "1": "var(--hz-ui-fg-2)",
40
+ // synonymous ^^^
41
+ "2": "var(--hz-ui-fg-3)",
42
+ // disabled or very de-emphasized
43
+ "3": "var(--hz-ui-fg-4)",
44
+ // very disabled ;)
45
+ "4": "var(--hz-ui-fg-5)"
46
+ // disabled border
47
+ },
48
+ primary: {
49
+ DEFAULT: "var(--hz-ui-primary)",
50
+ lux: "var(--hz-ui-primary)",
51
+ // in case there are two configs
52
+ hover: "var(--hz-ui-primary-hover)",
53
+ fg: "var(--hz-ui-primary-fg)"
54
+ },
55
+ secondary: {
56
+ DEFAULT: "var(--hz-ui-secondary)",
57
+ lux: "var(--hz-ui-secondary)",
58
+ // in case there are two configs
59
+ hover: "var(--hz-ui-secondary-hover)",
60
+ fg: "var(--hz-ui-secondary-fg)",
61
+ "0": "var(--hz-ui-secondary-0)",
62
+ "1": "var(--hz-ui-secondary-1)",
63
+ "2": "var(--hz-ui-secondary-2)",
64
+ "3": "var(--hz-ui-secondary-3)"
65
+ },
66
+ destructive: {
67
+ DEFAULT: "var(--hz-ui-destructive)",
68
+ fg: "var(--hz-ui-destructive-fg)"
69
+ },
70
+ nav: {
71
+ DEFAULT: "var(--hz-ui-nav)",
72
+ hover: "var(--hz-ui-nav-hover)",
73
+ current: "var(--hz-ui-nav-current)"
74
+ }
75
+ }), "default");
76
+
77
+ // tailwind/safelist.tailwind.js
78
+ var safelist_tailwind_default = [
79
+ "font-sans",
80
+ {
81
+ pattern: /grid-cols-[1-6]/,
82
+ variants: ["xs", "sm", "md", "lg", "xl", "2xl"]
83
+ },
84
+ {
85
+ // SpaceBlock
86
+ pattern: /h-([0-9]|[1-3][0-9]|40)/,
87
+ variants: ["xs", "sm", "md", "lg", "xl", "2xl"]
88
+ },
89
+ {
90
+ pattern: /order-[0-6]/
91
+ },
92
+ {
93
+ // EnhHeadingBlock
94
+ pattern: /mb-([1-9]|1[0-2])/
95
+ },
96
+ "md:text-left",
97
+ // EnhHeadingBlock
98
+ "md:text-center",
99
+ "md:text-right",
100
+ "md:self-start",
101
+ "md:self-center",
102
+ "md:self-end"
103
+ ];
104
+
105
+ // tailwind/screens.tailwind.js
106
+ var screens_tailwind_default = {
107
+ xs: "0px",
108
+ // <-- phone
109
+ sm: "480px",
110
+ // phone --><-- sm tablets / narrow
111
+ md: "768px",
112
+ // sm tablets / narrow -->
113
+ lg: "1024px",
114
+ xl: "1280px",
115
+ "2xl": "1500px"
116
+ };
117
+
118
+ // tailwind/spacing.tailwind.js
119
+ var percentages = {};
120
+ for (let i = 0; i <= 100; i++) {
121
+ percentages[`pr-${i}`] = `${i}%`;
122
+ }
123
+ var spacing_tailwind_default = {
124
+ ...percentages,
125
+ px: "1px",
126
+ 0: "0px",
127
+ 0.5: "0.125rem",
128
+ 1: "0.25rem",
129
+ 1.5: "0.375rem",
130
+ 2: "0.5rem",
131
+ 2.5: "0.625rem",
132
+ 3: "0.75rem",
133
+ 3.5: "0.875rem",
134
+ 4: "1rem",
135
+ 5: "1.25rem",
136
+ 6: "1.5rem",
137
+ 7: "1.75rem",
138
+ 8: "2rem",
139
+ 9: "2.25rem",
140
+ 10: "2.5rem",
141
+ 11: "2.75rem",
142
+ 12: "3rem",
143
+ 13: "3.25rem",
144
+ 14: "3.5rem",
145
+ 15: "3.75rem",
146
+ 16: "4rem",
147
+ 17: "4.25rem",
148
+ 18: "4.5rem",
149
+ 19: "4.75rem",
150
+ 20: "5rem",
151
+ 21: "5.25rem",
152
+ 22: "5.5rem",
153
+ 23: "5.75rem",
154
+ 24: "6rem",
155
+ 25: "5.25rem",
156
+ 26: "5.5rem",
157
+ 27: "5.75rem",
158
+ 28: "7rem",
159
+ 29: "7.25rem",
160
+ 30: "7.5rem",
161
+ 31: "7.75rem",
162
+ 32: "8rem",
163
+ 33: "8.25rem",
164
+ 34: "8.5rem",
165
+ 35: "8.75rem",
166
+ 36: "9rem",
167
+ 37: "9.25rem",
168
+ 38: "9.5rem",
169
+ 39: "9.75rem",
170
+ 40: "10rem",
171
+ 44: "11rem",
172
+ 48: "12rem",
173
+ 52: "13rem",
174
+ 56: "14rem",
175
+ 60: "15rem",
176
+ 64: "16rem",
177
+ 72: "18rem",
178
+ 80: "20rem",
179
+ 96: "24rem"
180
+ };
181
+
182
+ // tailwind/fontSize.tailwind.ts
183
+ var fontSize_tailwind_default = {
184
+ xxs: ["0.65rem", { lineHeight: "0.8rem" }],
185
+ // very fine print
186
+ xs: ["0.8rem", { lineHeight: "1rem" }],
187
+ // fine print
188
+ sm: ["0.9rem", { lineHeight: "1.2rem" }],
189
+ // 'standard' some news article cards (set manually when using typography-sm)
190
+ base: ["1rem", { lineHeight: 1.4 }],
191
+ lg: ["1.125rem", { lineHeight: "1.75rem" }],
192
+ xl: ["1.25rem", { lineHeight: "1.75rem" }],
193
+ "2xl": ["1.5rem", { lineHeight: "2rem" }],
194
+ "3xl": ["1.875rem", { lineHeight: "2.25rem" }],
195
+ "4xl": ["2.25rem", { lineHeight: "2.5rem" }],
196
+ "5xl": ["3rem", { lineHeight: "1" }],
197
+ "6xl": ["3.75rem", { lineHeight: "1" }]
198
+ };
199
+
200
+ // tailwind/fontFamily.tailwind.ts
201
+ var fontFamily_tailwind_default = {
202
+ sans: ["sans-serif"],
203
+ heading: ["serif"],
204
+ nav: ["serif"],
205
+ serif: ["serif"],
206
+ mono: ["monospace"]
207
+ };
208
+
209
+ // tailwind/z-index.tailwind.js
210
+ var zIndex = {
211
+ auto: "auto",
212
+ unset: "unset",
213
+ ...{
214
+ "below-content-3": "-3",
215
+ "below-content-2": "-2",
216
+ "below-content-1": "-1",
217
+ "below-content": "-1",
218
+ "content": "0",
219
+ "above-content": "1",
220
+ "above-content-1": "1",
221
+ "above-content-2": "2",
222
+ "above-content-3": "3"
223
+ },
224
+ // popups that may scroll w content, appear below header, etc
225
+ // for larger, modal popups, please use 'modal'
226
+ ...{
227
+ "below-popup-3": "7",
228
+ "below-popup-2": "8",
229
+ "below-popup-1": "9",
230
+ "below-popup": "9",
231
+ "popup": "10",
232
+ "above-popup": "11",
233
+ "above-popup-1": "11",
234
+ "above-popup-2": "12",
235
+ "above-popup-3": "13"
236
+ },
237
+ ...{
238
+ "below-header-3": "17",
239
+ "below-header-2": "18",
240
+ "below-header-1": "19",
241
+ "below-header": "19",
242
+ "header": "20",
243
+ "above-header": "21",
244
+ "above-header-1": "21",
245
+ "above-header-2": "22",
246
+ "above-header-3": "23"
247
+ },
248
+ // drawer, dialog, full screen menu
249
+ ...{
250
+ "below-modal-3": "27",
251
+ "below-modal-2": "28",
252
+ "below-modal-1": "29",
253
+ "below-modal": "29",
254
+ "modal": "30",
255
+ "above-modal": "31",
256
+ "above-modal-1": "31",
257
+ "above-modal-2": "32",
258
+ "above-modal-3": "33"
259
+ },
260
+ // "highest": help button, other UI that floats above everything.
261
+ ...{
262
+ "below-floating-3": "37",
263
+ "below-floating-2": "38",
264
+ "below-floating-1": "39",
265
+ "below-floating": "39",
266
+ "floating": "40",
267
+ "above-floating": "41",
268
+ "above-floating-1": "41",
269
+ "above-floating-2": "42",
270
+ "above-floating-3": "43"
271
+ }
272
+ };
273
+ for (let i = 0; i <= 50; i++) {
274
+ zIndex[`${i}`] = `${i}`;
275
+ }
276
+ var z_index_tailwind_default = zIndex;
277
+
278
+ // util/index.ts
279
+ function round(value) {
280
+ return Math.round(value * 100) / 100;
281
+ }
282
+ __name(round, "round");
283
+ function pxToRem(px, base = 16) {
284
+ return `${px / base}rem`;
285
+ }
286
+ __name(pxToRem, "pxToRem");
287
+ function pxToEm(px, base = 16) {
288
+ return `${px / base}em`;
289
+ }
290
+ __name(pxToEm, "pxToEm");
291
+
292
+ // tailwind/typo-plugin/get-plugin-styles.js
293
+ var typographyColorTheme = {
294
+ // vars are defined in global.css
295
+ // and dark mode is handled at that level.
296
+ "--tw-typo-plugin-body": "var(--hz-ui-fg-body)",
297
+ "--tw-typo-plugin-headings": "var(--hz-ui-fg-0)",
298
+ "--tw-typo-plugin-links": "var(--hz-ui-fg-0)",
299
+ "--tw-typo-plugin-links-hover": "var(--hz-ui-fg-2)",
300
+ "--tw-typo-plugin-bold": "var(--hz-ui-fg-0)",
301
+ "--tw-typo-plugin-counters": "var(--hz-ui-fg-4)",
302
+ "--tw-typo-plugin-bullets": "var(--hz-ui-fg-2)",
303
+ "--tw-typo-plugin-hr": "var(--hz-ui-fg-2)",
304
+ "--tw-typo-plugin-quotes": "var(--hz-ui-fg-body)",
305
+ "--tw-typo-plugin-quote-borders": "var(--hz-ui-fg-3)",
306
+ "--tw-typo-plugin-captions": "var(--hz-ui-fg-2)",
307
+ "--tw-typo-plugin-kbd": "var(--hz-ui-fg-0)",
308
+ "--tw-typo-plugin-kbd-shadows": "var(--hz-ui-fg-1)",
309
+ "--tw-typo-plugin-code": "var(--hz-ui-fg-0)",
310
+ "--tw-typo-plugin-pre-code": "var(--hz-ui-fg-1)",
311
+ "--tw-typo-plugin-pre-bg": "var(--hz-ui-bg-1)",
312
+ "--tw-typo-plugin-th-borders": "var(--hz-ui-fg-2)",
313
+ "--tw-typo-plugin-td-borders": "var(--hz-ui-fg-3)"
314
+ };
315
+ var defaultCSS = {
316
+ color: "var(--tw-typo-plugin-body)",
317
+ // YUCK maxWidth: '65ch',
318
+ p: {
319
+ textAlign: "inherit"
320
+ },
321
+ // Required to maintain correct order when merging
322
+ "p:first-child": {},
323
+ "p:last-child": {},
324
+ a: {
325
+ color: "var(--tw-typo-plugin-links)",
326
+ textDecoration: "underline",
327
+ fontWeight: "400"
328
+ },
329
+ "a:hover": {
330
+ color: "var(--tw-typo-plugin-links-hover)"
331
+ },
332
+ blockquote: {
333
+ fontWeight: "400",
334
+ fontStyle: "italic",
335
+ color: "var(--tw-typo-plugin-quotes)",
336
+ quotes: '"\\201C""\\201D""\\2018""\\2019"'
337
+ },
338
+ //'blockquote::before': {},
339
+ //'blockquote::after': {},
340
+ "blockquote p:first-of-type::before": {
341
+ content: "open-quote"
342
+ },
343
+ "blockquote p:last-of-type::after": {
344
+ content: "close-quote"
345
+ },
346
+ "blockquote strong": {
347
+ color: "inherit"
348
+ },
349
+ cite: {
350
+ display: "block",
351
+ fontStyle: "normal",
352
+ textAlign: "right",
353
+ color: "var(--tw-typo-plugin-quotes)"
354
+ },
355
+ ol: {
356
+ listStyleType: "decimal"
357
+ },
358
+ ul: {
359
+ //listStyleType: 'disc',
360
+ },
361
+ "ol > li::marker": {
362
+ fontWeight: "400",
363
+ color: "var(--tw-typo-plugin-counters)"
364
+ },
365
+ "ul > li::marker": {
366
+ color: "var(--tw-typo-plugin-bullets)"
367
+ },
368
+ "ul > li::before": {},
369
+ hr: {
370
+ borderColor: "var(--tw-typo-plugin-hr)",
371
+ borderTopWidth: 1
372
+ },
373
+ h1: {
374
+ color: "var(--tw-typo-plugin-headings)",
375
+ fontWeight: "800",
376
+ textAlign: "inherit",
377
+ textTransform: "uppercase"
378
+ },
379
+ h2: {
380
+ color: "var(--tw-typo-plugin-headings)",
381
+ fontWeight: "700",
382
+ textAlign: "inherit",
383
+ textTransform: "uppercase"
384
+ },
385
+ h3: {
386
+ color: "var(--tw-typo-plugin-headings)",
387
+ fontWeight: "600",
388
+ textAlign: "inherit",
389
+ textTransform: "uppercase"
390
+ },
391
+ h4: {
392
+ color: "var(--tw-typo-plugin-headings)",
393
+ fontWeight: "600",
394
+ textAlign: "inherit"
395
+ },
396
+ h5: {
397
+ color: "var(--tw-typo-plugin-headings)",
398
+ fontWeight: "600",
399
+ textAlign: "inherit"
400
+ },
401
+ h6: {
402
+ color: "var(--tw-typo-plugin-headings)",
403
+ textAlign: "inherit"
404
+ },
405
+ img: {},
406
+ "img:first-child": {},
407
+ "img:last-child": {},
408
+ picture: {
409
+ display: "block"
410
+ },
411
+ strong: {
412
+ color: "var(--tw-typo-plugin-bold)",
413
+ fontWeight: "600"
414
+ },
415
+ video: {},
416
+ kbd: {
417
+ fontWeight: "500",
418
+ fontFamily: "inherit",
419
+ color: "var(--tw-typo-plugin-kbd)",
420
+ boxShadow: "0 0 0 1px rgb(var(--tw-typo-plugin-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-typo-plugin-kbd-shadows) / 10%)"
421
+ },
422
+ code: {
423
+ color: "var(--tw-typo-plugin-code)",
424
+ fontWeight: "500"
425
+ },
426
+ "code::before": {
427
+ content: '"`"'
428
+ },
429
+ "code::after": {
430
+ content: '"`"'
431
+ },
432
+ "a code": {
433
+ color: "inherit"
434
+ },
435
+ "h1 code": {
436
+ color: "inherit"
437
+ },
438
+ "h2 code": {
439
+ color: "inherit"
440
+ },
441
+ "h3 code": {
442
+ color: "inherit"
443
+ },
444
+ "h4 code": {
445
+ color: "inherit"
446
+ },
447
+ "h5 code": {
448
+ color: "inherit"
449
+ },
450
+ "h6 code": {
451
+ color: "inherit"
452
+ },
453
+ "blockquote code": {
454
+ color: "inherit"
455
+ },
456
+ "thead th code": {
457
+ color: "inherit"
458
+ },
459
+ pre: {
460
+ color: "var(--tw-typo-plugin-pre-code)",
461
+ backgroundColor: "var(--tw-typo-plugin-pre-bg)",
462
+ overflowX: "auto",
463
+ fontWeight: "400"
464
+ },
465
+ "pre code": {
466
+ backgroundColor: "transparent",
467
+ borderWidth: "0",
468
+ borderRadius: "0",
469
+ padding: "0",
470
+ fontWeight: "inherit",
471
+ color: "inherit",
472
+ fontSize: "inherit",
473
+ fontFamily: "inherit",
474
+ lineHeight: "inherit"
475
+ },
476
+ "pre code::before": {
477
+ content: "none"
478
+ },
479
+ "pre code::after": {
480
+ content: "none"
481
+ },
482
+ table: {
483
+ width: "100%",
484
+ tableLayout: "auto",
485
+ textAlign: "left"
486
+ },
487
+ thead: {
488
+ borderBottomWidth: "1px",
489
+ borderBottomColor: "var(--tw-typo-plugin-th-borders)"
490
+ },
491
+ "thead th": {
492
+ color: "var(--tw-typo-plugin-headings)",
493
+ fontWeight: "600",
494
+ verticalAlign: "bottom"
495
+ },
496
+ "tbody tr": {},
497
+ "tbody tr:last-child": {},
498
+ "tbody td": {
499
+ verticalAlign: "baseline"
500
+ },
501
+ tfoot: {
502
+ borderTopWidth: "1px",
503
+ borderTopColor: "var(--tw-typo-plugin-th-borders)"
504
+ },
505
+ "tfoot td": {
506
+ verticalAlign: "top"
507
+ }
508
+ };
509
+ var defaultModifiers = /* @__PURE__ */ __name((base) => ({
510
+ base: {
511
+ css: [
512
+ {
513
+ fontSize: "1rem",
514
+ lineHeight: 1.4,
515
+ p: {
516
+ marginTop: "0.33rem",
517
+ marginBottom: "0.33rem"
518
+ },
519
+ "p:first-child": {
520
+ marginTop: 0
521
+ },
522
+ "p:last-child": {
523
+ marginBottom: 0
524
+ },
525
+ a: {},
526
+ "a:hover": {},
527
+ blockquote: {
528
+ //color: 'blue', //var(--tw-typo-plugin-quotes)',
529
+ //marginTop: pxToEm(32, 20),
530
+ //marginBottom: pxToEm(32, 20),
531
+ //paddingLeft: pxToEm(20, 20),
532
+ },
533
+ //'blockquote::before': {},
534
+ //'blockquote::after': {},
535
+ "blockquote p:first-of-type::before": {},
536
+ "blockquote p:last-of-type::after": {},
537
+ cite: {},
538
+ ol: {
539
+ fontSize: "1rem",
540
+ paddingLeft: "1.5rem",
541
+ margin: 0,
542
+ marginLeft: "-5px"
543
+ },
544
+ ul: {
545
+ fontSize: "1rem",
546
+ paddingLeft: "1.5rem",
547
+ margin: 0,
548
+ marginLeft: "-0.6rem",
549
+ listStylePosition: "outside",
550
+ listStyleType: "'\u25BC'"
551
+ },
552
+ li: {},
553
+ "ol > li": {
554
+ paddingLeft: "0.4rem"
555
+ },
556
+ "ul > li": {
557
+ paddingLeft: "0.75rem",
558
+ marginBottom: "0.75rem"
559
+ },
560
+ "ul > li:last-child": {
561
+ marginBottom: 0
562
+ },
563
+ "> ul > li p": {
564
+ margin: 0,
565
+ display: "inline"
566
+ },
567
+ hr: {},
568
+ h1: {
569
+ fontSize: pxToRem(40, base),
570
+ lineHeight: 1.2
571
+ },
572
+ h2: {
573
+ fontSize: pxToRem(36, base),
574
+ lineHeight: 1.2
575
+ },
576
+ h3: {
577
+ fontSize: "1.4rem",
578
+ lineHeight: 1.2
579
+ },
580
+ h4: {
581
+ marginTop: "0.5rem",
582
+ marginBottom: "0.5rem",
583
+ fontSize: "1.3rem",
584
+ lineHeight: 1.2
585
+ },
586
+ h5: {
587
+ marginTop: "0.5rem",
588
+ marginBottom: "0.5rem",
589
+ fontSize: "1.2rem",
590
+ lineHeight: 1.4
591
+ },
592
+ h6: {
593
+ marginTop: "0.5rem",
594
+ marginBottom: "0.5rem",
595
+ fontSize: "1.15rem",
596
+ lineHeight: 1.3
597
+ },
598
+ "hr + *": {
599
+ marginTop: "0"
600
+ },
601
+ "h2 + *": {
602
+ marginTop: "0"
603
+ },
604
+ "h3 + *": {
605
+ marginTop: "0"
606
+ },
607
+ "h4 + *": {
608
+ marginTop: "0"
609
+ },
610
+ img: {
611
+ marginTop: "0.5rem",
612
+ marginBottom: "0.5rem"
613
+ },
614
+ "img:first-child": {
615
+ marginTop: 0
616
+ },
617
+ "img:last-child": {
618
+ marginBottom: 0
619
+ },
620
+ picture: {
621
+ marginTop: pxToRem(20, base),
622
+ marginBottom: pxToRem(20, base)
623
+ },
624
+ "picture > img": {
625
+ marginTop: "0",
626
+ marginBottom: "0"
627
+ },
628
+ video: {
629
+ marginTop: pxToRem(20, base),
630
+ marginBottom: pxToRem(20, base)
631
+ },
632
+ kbd: {
633
+ fontSize: pxToEm(14, 16),
634
+ borderRadius: pxToRem(5, base),
635
+ paddingTop: pxToEm(3, 16),
636
+ paddingRight: pxToEm(6, 16),
637
+ paddingBottom: pxToEm(3, 16),
638
+ paddingLeft: pxToEm(6, 16)
639
+ },
640
+ code: {
641
+ fontSize: pxToEm(14, 16)
642
+ },
643
+ "h2 code": {
644
+ fontSize: pxToEm(21, 24)
645
+ },
646
+ "h3 code": {
647
+ fontSize: pxToEm(18, 20)
648
+ },
649
+ pre: {
650
+ fontSize: pxToRem(14, 16),
651
+ lineHeight: round(24 / 14),
652
+ marginTop: pxToEm(24, 14),
653
+ marginBottom: pxToEm(24, 14),
654
+ borderRadius: pxToRem(6, base),
655
+ paddingTop: pxToEm(12, 14),
656
+ paddingRight: pxToEm(16, 14),
657
+ paddingBottom: pxToEm(12, 14),
658
+ paddingLeft: pxToEm(16, 14)
659
+ },
660
+ /*
661
+ '> ul > li > *:first-child': {},
662
+ '> ul > li > *:last-child': {},
663
+ '> ol > li > *:first-child': {},
664
+ '> ol > li > *:last-child': {},
665
+ */
666
+ "ul ul, ul ol, ol ul, ol ol": {
667
+ marginTop: pxToRem(12, base),
668
+ marginBottom: pxToRem(12, base)
669
+ },
670
+ dl: {
671
+ marginTop: pxToEm(20, 16),
672
+ marginBottom: pxToEm(20, base)
673
+ },
674
+ dt: {
675
+ marginTop: pxToEm(20, base)
676
+ },
677
+ dd: {
678
+ marginTop: pxToEm(8, base),
679
+ paddingLeft: pxToEm(26, base)
680
+ },
681
+ table: {
682
+ fontSize: pxToEm(14, base),
683
+ lineHeight: round(24 / 14)
684
+ },
685
+ "thead th": {
686
+ paddingRight: pxToEm(8, 14),
687
+ paddingBottom: pxToEm(8, 14),
688
+ paddingLeft: pxToEm(8, 14)
689
+ },
690
+ "thead th:first-child": {
691
+ paddingLeft: "0"
692
+ },
693
+ "thead th:last-child": {
694
+ paddingRight: "0"
695
+ },
696
+ "tbody td, tfoot td": {
697
+ paddingTop: pxToEm(8, 14),
698
+ paddingRight: pxToEm(8, 14),
699
+ paddingBottom: pxToEm(8, 14),
700
+ paddingLeft: pxToEm(8, 14)
701
+ },
702
+ "tbody td:first-child, tfoot td:first-child": {
703
+ paddingLeft: "0"
704
+ },
705
+ "tbody td:last-child, tfoot td:last-child": {
706
+ paddingRight: "0"
707
+ }
708
+ }
709
+ ]
710
+ },
711
+ sm: {
712
+ css: [
713
+ {
714
+ p: {},
715
+ "p:first-child": {},
716
+ "p:last-child": {},
717
+ a: {},
718
+ "a:hover": {},
719
+ blockquote: {},
720
+ //'blockquote::before': {},
721
+ //'blockquote::after': {},
722
+ "blockquote p:first-of-type::before": {},
723
+ "blockquote p:last-of-type::after": {},
724
+ cite: {},
725
+ ol: {},
726
+ ul: {},
727
+ li: {},
728
+ "ol > li": {},
729
+ "ul > li": {},
730
+ "ul > li:last-child": {},
731
+ "> ul > li p": {},
732
+ hr: {},
733
+ h1: {
734
+ fontSize: pxToRem(24, base)
735
+ },
736
+ h2: {
737
+ fontSize: pxToRem(20, base)
738
+ },
739
+ h3: {
740
+ fontSize: pxToEm(18, base)
741
+ },
742
+ h4: {},
743
+ h5: {},
744
+ h6: {},
745
+ "hr + *": {},
746
+ "h2 + *": {},
747
+ "h3 + *": {},
748
+ "h4 + *": {},
749
+ img: {},
750
+ "img:first-child": {},
751
+ "img:last-child": {},
752
+ picture: {},
753
+ "picture > img": {},
754
+ video: {},
755
+ kbd: {},
756
+ code: {},
757
+ "h2 code": {},
758
+ "h3 code": {},
759
+ pre: {},
760
+ /*
761
+ '> ul > li > *:first-child': {},
762
+ '> ul > li > *:last-child': {},
763
+ '> ol > li > *:first-child': {},
764
+ '> ol > li > *:last-child': {},
765
+ */
766
+ "ul ul, ul ol, ol ul, ol ol": {},
767
+ dl: {},
768
+ dt: {},
769
+ dd: {},
770
+ table: {},
771
+ "thead th": {},
772
+ "thead th:first-child": {},
773
+ "thead th:last-child": {},
774
+ "tbody td, tfoot td": {},
775
+ "tbody td:first-child, tfoot td:first-child": {},
776
+ "tbody td:last-child, tfoot td:last-child": {}
777
+ }
778
+ ]
779
+ },
780
+ lg: {
781
+ css: [
782
+ {
783
+ p: {},
784
+ "p:first-child": {},
785
+ "p:last-child": {},
786
+ a: {},
787
+ "a:hover": {},
788
+ blockquote: {},
789
+ //'blockquote::before': {},
790
+ //'blockquote::after': {},
791
+ "blockquote p:first-of-type::before": {},
792
+ "blockquote p:last-of-type::after": {},
793
+ cite: {},
794
+ ol: {},
795
+ ul: {},
796
+ li: {},
797
+ "ol > li": {},
798
+ "ul > li": {},
799
+ "ul > li:last-child": {},
800
+ "> ul > li p": {},
801
+ hr: {},
802
+ h1: {
803
+ fontSize: pxToRem(45, base),
804
+ lineHeight: 1.1
805
+ },
806
+ h2: {
807
+ fontSize: pxToRem(40, base),
808
+ lineHeight: 1.1
809
+ },
810
+ h3: {
811
+ fontSize: pxToRem(32, base),
812
+ lineHeight: 1.1
813
+ },
814
+ h4: {
815
+ fontSize: pxToRem(26, base),
816
+ marginTop: pxToRem(13, base),
817
+ marginBottom: pxToRem(13, base)
818
+ },
819
+ h5: {
820
+ fontSize: pxToRem(22, base),
821
+ marginTop: pxToRem(11, base),
822
+ marginBottom: pxToRem(11, base)
823
+ },
824
+ h6: {},
825
+ "hr + *": {},
826
+ "h2 + *": {},
827
+ "h3 + *": {},
828
+ "h4 + *": {},
829
+ img: {},
830
+ "img:first-child": {},
831
+ "img:last-child": {},
832
+ picture: {},
833
+ "picture > img": {},
834
+ video: {},
835
+ kbd: {},
836
+ code: {},
837
+ "h2 code": {},
838
+ "h3 code": {},
839
+ pre: {},
840
+ /*
841
+ '> ul > li > *:first-child': {},
842
+ '> ul > li > *:last-child': {},
843
+ '> ol > li > *:first-child': {},
844
+ '> ol > li > *:last-child': {},
845
+ */
846
+ "ul ul, ul ol, ol ul, ol ol": {},
847
+ dl: {},
848
+ dt: {},
849
+ dd: {},
850
+ table: {},
851
+ "thead th": {},
852
+ "thead th:first-child": {},
853
+ "thead th:last-child": {},
854
+ "tbody td, tfoot td": {},
855
+ "tbody td:first-child, tfoot td:first-child": {},
856
+ "tbody td:last-child, tfoot td:last-child": {}
857
+ }
858
+ ]
859
+ },
860
+ xl: {
861
+ css: [
862
+ {
863
+ p: {},
864
+ "p:first-child": {},
865
+ "p:last-child": {},
866
+ a: {},
867
+ "a:hover": {},
868
+ blockquote: {},
869
+ //'blockquote::before': {},
870
+ //'blockquote::after': {},
871
+ "blockquote p:first-of-type::before": {},
872
+ "blockquote p:last-of-type::after": {},
873
+ cite: {},
874
+ ol: {},
875
+ ul: {},
876
+ li: {},
877
+ "ol > li": {},
878
+ "ul > li": {},
879
+ "ul > li:last-child": {},
880
+ "> ul > li p": {},
881
+ hr: {},
882
+ h1: {
883
+ fontSize: pxToRem(52, base),
884
+ lineHeight: 1.1
885
+ },
886
+ h2: {
887
+ fontSize: pxToRem(45, base),
888
+ lineHeight: 1.1
889
+ },
890
+ h3: {
891
+ fontSize: pxToRem(40, base),
892
+ lineHeight: 1.1
893
+ },
894
+ h4: {
895
+ fontSize: pxToRem(28, base),
896
+ marginTop: pxToRem(13, base),
897
+ marginBottom: pxToRem(13, base)
898
+ },
899
+ h5: {
900
+ fontSize: pxToRem(22, base),
901
+ marginTop: pxToRem(11, base),
902
+ marginBottom: pxToRem(11, base)
903
+ },
904
+ h6: {},
905
+ "hr + *": {},
906
+ "h2 + *": {},
907
+ "h3 + *": {},
908
+ "h4 + *": {},
909
+ img: {},
910
+ "img:first-child": {},
911
+ "img:last-child": {},
912
+ picture: {},
913
+ "picture > img": {},
914
+ video: {},
915
+ kbd: {},
916
+ code: {},
917
+ "h2 code": {},
918
+ "h3 code": {},
919
+ pre: {},
920
+ /*
921
+ '> ul > li > *:first-child': {},
922
+ '> ul > li > *:last-child': {},
923
+ '> ol > li > *:first-child': {},
924
+ '> ol > li > *:last-child': {},
925
+ */
926
+ "ul ul, ul ol, ol ul, ol ol": {},
927
+ dl: {},
928
+ dt: {},
929
+ dd: {},
930
+ table: {},
931
+ "thead th": {},
932
+ "thead th:first-child": {},
933
+ "thead th:last-child": {},
934
+ "tbody td, tfoot td": {},
935
+ "tbody td:first-child, tfoot td:first-child": {},
936
+ "tbody td:last-child, tfoot td:last-child": {}
937
+ }
938
+ ]
939
+ }
940
+ }), "defaultModifiers");
941
+ var getStyles = /* @__PURE__ */ __name((baseFontSize2) => ({
942
+ DEFAULT: {
943
+ css: [
944
+ defaultCSS,
945
+ typographyColorTheme,
946
+ ...defaultModifiers(baseFontSize2).base.css
947
+ ]
948
+ },
949
+ sm: defaultModifiers(baseFontSize2).sm,
950
+ lg: defaultModifiers(baseFontSize2).lg,
951
+ xl: defaultModifiers(baseFontSize2).xl
952
+ }), "getStyles");
953
+ var get_plugin_styles_default = getStyles;
954
+ var parseSelector = parser();
955
+ function commonTrailingPseudos(selector) {
956
+ let ast = parseSelector.astSync(selector);
957
+ let matrix = [];
958
+ for (let [i, sel] of ast.nodes.entries()) {
959
+ for (const [j, child] of [...sel.nodes].reverse().entries()) {
960
+ if (child.type !== "pseudo" || !child.value.startsWith("::")) {
961
+ break;
962
+ }
963
+ matrix[j] = matrix[j] || [];
964
+ matrix[j][i] = child;
965
+ }
966
+ }
967
+ let trailingPseudos = parser.selector();
968
+ for (const pseudos of matrix) {
969
+ if (!pseudos) {
970
+ continue;
971
+ }
972
+ let values = /* @__PURE__ */ new Set([...pseudos.map((p) => p.value)]);
973
+ if (values.size > 1) {
974
+ break;
975
+ }
976
+ pseudos.forEach((pseudo) => pseudo.remove());
977
+ trailingPseudos.prepend(pseudos[0]);
978
+ }
979
+ if (trailingPseudos.nodes.length) {
980
+ return [trailingPseudos.toString(), ast.toString()];
981
+ }
982
+ return [null, selector];
983
+ }
984
+ __name(commonTrailingPseudos, "commonTrailingPseudos");
985
+
986
+ // tailwind/typo-plugin/index.js
987
+ var baseFontSize = 16;
988
+ var computed = {
989
+ // Reserved for future "magic properties", for example:
990
+ // bulletColor: (color) => ({ 'ul > li::before': { backgroundColor: color } }),
991
+ };
992
+ function inWhere(selector, { className, modifier, prefix }) {
993
+ let prefixedNot = prefix(`.not-${className}`).slice(1);
994
+ let selectorPrefix = selector.startsWith(">") ? `${modifier === "DEFAULT" ? `.${className}` : `.${className}-${modifier}`} ` : "";
995
+ let [trailingPseudo, rebuiltSelector] = commonTrailingPseudos(selector);
996
+ if (trailingPseudo) {
997
+ return `:where(${selectorPrefix}${rebuiltSelector}):not(:where([class~="${prefixedNot}"],[class~="${prefixedNot}"] *))${trailingPseudo}`;
998
+ }
999
+ return `:where(${selectorPrefix}${selector}):not(:where([class~="${prefixedNot}"],[class~="${prefixedNot}"] *))`;
1000
+ }
1001
+ __name(inWhere, "inWhere");
1002
+ function isObject(value) {
1003
+ return typeof value === "object" && value !== null;
1004
+ }
1005
+ __name(isObject, "isObject");
1006
+ function configToCss(config = {}, { target, className, modifier, prefix }) {
1007
+ function updateSelector(k, v) {
1008
+ if (target === "legacy") {
1009
+ return [k, v];
1010
+ }
1011
+ if (Array.isArray(v)) {
1012
+ return [k, v];
1013
+ }
1014
+ if (isObject(v)) {
1015
+ let nested = Object.values(v).some(isObject);
1016
+ if (nested) {
1017
+ return [
1018
+ inWhere(k, { className, modifier, prefix }),
1019
+ v,
1020
+ Object.fromEntries(Object.entries(v).map(([k2, v2]) => updateSelector(k2, v2)))
1021
+ ];
1022
+ }
1023
+ return [inWhere(k, { className, modifier, prefix }), v];
1024
+ }
1025
+ return [k, v];
1026
+ }
1027
+ __name(updateSelector, "updateSelector");
1028
+ return Object.fromEntries(
1029
+ Object.entries(
1030
+ merge(
1031
+ {},
1032
+ ...Object.keys(config).filter((key) => computed[key]).map((key) => computed[key](config[key])),
1033
+ ...castArray(config.css || {})
1034
+ )
1035
+ ).map(([k, v]) => updateSelector(k, v))
1036
+ );
1037
+ }
1038
+ __name(configToCss, "configToCss");
1039
+ var typo_plugin_default = plugin.withOptions(
1040
+ ({ className = "prose", target = "modern", base = 16 } = {}) => {
1041
+ baseFontSize = base;
1042
+ return function({ addVariant, addComponents, theme, prefix }) {
1043
+ let modifiers = theme("typography");
1044
+ let options = { className, prefix };
1045
+ for (let [name, ...selectors] of [
1046
+ [
1047
+ "headings",
1048
+ "h1",
1049
+ "h2",
1050
+ "h3"
1051
+ /* 'h4', 'h5', 'h6', 'th' */
1052
+ ],
1053
+ ["h1"],
1054
+ ["h2"],
1055
+ ["h3"],
1056
+ ["h4"],
1057
+ ["h5"],
1058
+ ["h6"],
1059
+ ["p"],
1060
+ ["a"],
1061
+ ["blockquote"],
1062
+ ["figure"],
1063
+ ["figcaption"],
1064
+ ["strong"],
1065
+ ["em"],
1066
+ ["code"],
1067
+ ["pre"],
1068
+ ["ol"],
1069
+ ["ul"],
1070
+ ["li"],
1071
+ ["table"],
1072
+ ["thead"],
1073
+ ["tr"],
1074
+ ["th"],
1075
+ ["td"],
1076
+ ["img"],
1077
+ ["video"],
1078
+ ["hr"]
1079
+ ]) {
1080
+ selectors = selectors.length === 0 ? [name] : selectors;
1081
+ let selector = target === "legacy" ? selectors.map((selector2) => `& ${selector2}`) : selectors.join(", ");
1082
+ addVariant(
1083
+ `${className}-${name}`,
1084
+ target === "legacy" ? selector : `& :is(${inWhere(selector, options)})`
1085
+ );
1086
+ }
1087
+ addComponents(
1088
+ Object.keys(modifiers).map((modifier) => ({
1089
+ [modifier === "DEFAULT" ? `.${className}` : `.${className}-${modifier}`]: configToCss(
1090
+ modifiers[modifier],
1091
+ {
1092
+ target,
1093
+ className,
1094
+ modifier,
1095
+ prefix
1096
+ }
1097
+ )
1098
+ }))
1099
+ );
1100
+ };
1101
+ },
1102
+ () => {
1103
+ return {
1104
+ theme: { typography: get_plugin_styles_default(baseFontSize) }
1105
+ };
1106
+ }
1107
+ );
1108
+
1109
+ // tailwind/tailwind.config.hanzo-preset.js
1110
+ var tailwind_config_hanzo_preset_default = {
1111
+ darkMode: ["class"],
1112
+ content: [],
1113
+ safelist: safelist_tailwind_default,
1114
+ plugins: [
1115
+ animatePlugin,
1116
+ typo_plugin_default({ className: "typography", base: 16 }),
1117
+ containerQueriesPlugin,
1118
+ tailwindInteractionMediaPlugin
1119
+ ],
1120
+ theme: {
1121
+ accentColor: /* @__PURE__ */ __name(({ theme }) => ({
1122
+ ...theme("colors"),
1123
+ auto: "auto"
1124
+ }), "accentColor"),
1125
+ animation: {
1126
+ none: "none",
1127
+ spin: "spin 1s linear infinite",
1128
+ ping: "ping 1s cubic-bezier(0, 0, 0.2, 1) infinite",
1129
+ pulse: "pulse 2s linear(0, 1) infinite",
1130
+ // cubic-bezier(0.4, 0, 0.6, 1)
1131
+ pulsereverse: "pulse 2s linear(1, 0) infinite",
1132
+ bounce: "bounce 1s infinite",
1133
+ "accordion-down": "accordion-down 0.2s ease-out",
1134
+ "accordion-up": "accordion-up 0.2s ease-out",
1135
+ "mobile-menu-open": "opacity-in 300ms ease-in"
1136
+ },
1137
+ aria: {
1138
+ checked: 'checked="true"',
1139
+ disabled: 'disabled="true"',
1140
+ expanded: 'expanded="true"',
1141
+ hidden: 'hidden="true"',
1142
+ pressed: 'pressed="true"',
1143
+ readonly: 'readonly="true"',
1144
+ required: 'required="true"',
1145
+ selected: 'selected="true"'
1146
+ },
1147
+ aspectRatio: {
1148
+ auto: "auto",
1149
+ square: "1 / 1",
1150
+ video: "16 / 9"
1151
+ },
1152
+ backdropBlur: /* @__PURE__ */ __name(({ theme }) => theme("blur"), "backdropBlur"),
1153
+ backdropBrightness: /* @__PURE__ */ __name(({ theme }) => theme("brightness"), "backdropBrightness"),
1154
+ backdropContrast: /* @__PURE__ */ __name(({ theme }) => theme("contrast"), "backdropContrast"),
1155
+ backdropGrayscale: /* @__PURE__ */ __name(({ theme }) => theme("grayscale"), "backdropGrayscale"),
1156
+ backdropHueRotate: /* @__PURE__ */ __name(({ theme }) => theme("hueRotate"), "backdropHueRotate"),
1157
+ backdropInvert: /* @__PURE__ */ __name(({ theme }) => theme("invert"), "backdropInvert"),
1158
+ backdropOpacity: /* @__PURE__ */ __name(({ theme }) => theme("opacity"), "backdropOpacity"),
1159
+ backdropSaturate: /* @__PURE__ */ __name(({ theme }) => theme("saturate"), "backdropSaturate"),
1160
+ backdropSepia: /* @__PURE__ */ __name(({ theme }) => theme("sepia"), "backdropSepia"),
1161
+ backgroundColor: /* @__PURE__ */ __name(({ theme }) => theme("colors"), "backgroundColor"),
1162
+ backgroundImage: {
1163
+ none: "none",
1164
+ "gradient-to-t": "linear-gradient(to top, var(--tw-gradient-stops))",
1165
+ "gradient-to-tr": "linear-gradient(to top right, var(--tw-gradient-stops))",
1166
+ "gradient-to-r": "linear-gradient(to right, var(--tw-gradient-stops))",
1167
+ "gradient-to-br": "linear-gradient(to bottom right, var(--tw-gradient-stops))",
1168
+ "gradient-to-b": "linear-gradient(to bottom, var(--tw-gradient-stops))",
1169
+ "gradient-to-bl": "linear-gradient(to bottom left, var(--tw-gradient-stops))",
1170
+ "gradient-to-l": "linear-gradient(to left, var(--tw-gradient-stops))",
1171
+ "gradient-to-tl": "linear-gradient(to top left, var(--tw-gradient-stops))"
1172
+ },
1173
+ backgroundOpacity: /* @__PURE__ */ __name(({ theme }) => theme("opacity"), "backgroundOpacity"),
1174
+ backgroundPosition: {
1175
+ bottom: "bottom",
1176
+ center: "center",
1177
+ left: "left",
1178
+ "left-bottom": "left bottom",
1179
+ "left-top": "left top",
1180
+ right: "right",
1181
+ "right-bottom": "right bottom",
1182
+ "right-top": "right top",
1183
+ top: "top"
1184
+ },
1185
+ backgroundSize: {
1186
+ auto: "auto",
1187
+ cover: "cover",
1188
+ contain: "contain"
1189
+ },
1190
+ blur: {
1191
+ 0: "0",
1192
+ none: "0",
1193
+ sm: "4px",
1194
+ DEFAULT: "8px",
1195
+ md: "12px",
1196
+ lg: "16px",
1197
+ xl: "24px",
1198
+ "2xl": "40px",
1199
+ "3xl": "64px"
1200
+ },
1201
+ borderColor: /* @__PURE__ */ __name(({ theme }) => ({
1202
+ ...theme("colors"),
1203
+ DEFAULT: theme("colors.muted.3")
1204
+ }), "borderColor"),
1205
+ borderOpacity: /* @__PURE__ */ __name(({ theme }) => theme("opacity"), "borderOpacity"),
1206
+ borderRadius: {
1207
+ none: "0px",
1208
+ sm: "0.25rem",
1209
+ DEFAULT: "0.5rem",
1210
+ md: "0.5rem",
1211
+ lg: "0.75rem",
1212
+ xl: "1rem",
1213
+ "2xl": "1.5rem",
1214
+ "3xl": "2rem",
1215
+ full: "9999px"
1216
+ },
1217
+ borderSpacing: spacing_tailwind_default,
1218
+ borderWidth: {
1219
+ DEFAULT: "1px",
1220
+ 0: "0px",
1221
+ 2: "2px",
1222
+ 4: "4px",
1223
+ 8: "8px"
1224
+ },
1225
+ boxShadow: {
1226
+ sm: "0 1px 2px 0 rgb(0 0 0 / 0.05)",
1227
+ DEFAULT: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",
1228
+ md: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
1229
+ lg: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",
1230
+ xl: "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)",
1231
+ "2xl": "0 25px 50px -12px rgb(0 0 0 / 0.25)",
1232
+ inner: "inset 0 2px 4px 0 rgb(0 0 0 / 0.05)",
1233
+ none: "none"
1234
+ },
1235
+ boxShadowColor: /* @__PURE__ */ __name(({ theme }) => theme("colors"), "boxShadowColor"),
1236
+ brightness: {
1237
+ 0: "0",
1238
+ 50: ".5",
1239
+ 75: ".75",
1240
+ 90: ".9",
1241
+ 95: ".95",
1242
+ 100: "1",
1243
+ 105: "1.05",
1244
+ 110: "1.1",
1245
+ 125: "1.25",
1246
+ 150: "1.5",
1247
+ 200: "2"
1248
+ },
1249
+ caretColor: /* @__PURE__ */ __name(({ theme }) => theme("colors"), "caretColor"),
1250
+ colors: colors_tailwind_default,
1251
+ columns: {
1252
+ auto: "auto",
1253
+ 1: "1",
1254
+ 2: "2",
1255
+ 3: "3",
1256
+ 4: "4",
1257
+ 5: "5",
1258
+ 6: "6",
1259
+ 7: "7",
1260
+ 8: "8",
1261
+ 9: "9",
1262
+ 10: "10",
1263
+ 11: "11",
1264
+ 12: "12",
1265
+ "3xs": "16rem",
1266
+ "2xs": "18rem",
1267
+ xs: "20rem",
1268
+ sm: "24rem",
1269
+ md: "28rem",
1270
+ lg: "32rem",
1271
+ xl: "36rem",
1272
+ "2xl": "42rem",
1273
+ "3xl": "48rem",
1274
+ "4xl": "56rem",
1275
+ "5xl": "64rem",
1276
+ "6xl": "72rem",
1277
+ "7xl": "80rem"
1278
+ },
1279
+ container: {
1280
+ center: true,
1281
+ padding: "2rem"
1282
+ },
1283
+ content: {
1284
+ none: "none"
1285
+ },
1286
+ contrast: {
1287
+ 0: "0",
1288
+ 50: ".5",
1289
+ 75: ".75",
1290
+ 100: "1",
1291
+ 125: "1.25",
1292
+ 150: "1.5",
1293
+ 200: "2"
1294
+ },
1295
+ cursor: {
1296
+ auto: "auto",
1297
+ default: "default",
1298
+ pointer: "pointer",
1299
+ wait: "wait",
1300
+ text: "text",
1301
+ move: "move",
1302
+ help: "help",
1303
+ "not-allowed": "not-allowed",
1304
+ none: "none",
1305
+ "context-menu": "context-menu",
1306
+ progress: "progress",
1307
+ cell: "cell",
1308
+ crosshair: "crosshair",
1309
+ "vertical-text": "vertical-text",
1310
+ alias: "alias",
1311
+ copy: "copy",
1312
+ "no-drop": "no-drop",
1313
+ grab: "grab",
1314
+ grabbing: "grabbing",
1315
+ "all-scroll": "all-scroll",
1316
+ "col-resize": "col-resize",
1317
+ "row-resize": "row-resize",
1318
+ "n-resize": "n-resize",
1319
+ "e-resize": "e-resize",
1320
+ "s-resize": "s-resize",
1321
+ "w-resize": "w-resize",
1322
+ "ne-resize": "ne-resize",
1323
+ "nw-resize": "nw-resize",
1324
+ "se-resize": "se-resize",
1325
+ "sw-resize": "sw-resize",
1326
+ "ew-resize": "ew-resize",
1327
+ "ns-resize": "ns-resize",
1328
+ "nesw-resize": "nesw-resize",
1329
+ "nwse-resize": "nwse-resize",
1330
+ "zoom-in": "zoom-in",
1331
+ "zoom-out": "zoom-out"
1332
+ },
1333
+ divideColor: /* @__PURE__ */ __name(({ theme }) => theme("borderColor"), "divideColor"),
1334
+ divideOpacity: /* @__PURE__ */ __name(({ theme }) => theme("borderOpacity"), "divideOpacity"),
1335
+ divideWidth: /* @__PURE__ */ __name(({ theme }) => theme("borderWidth"), "divideWidth"),
1336
+ dropShadow: {
1337
+ sm: "0 1px 1px rgb(0 0 0 / 0.05)",
1338
+ DEFAULT: ["0 1px 2px rgb(0 0 0 / 0.1)", "0 1px 1px rgb(0 0 0 / 0.06)"],
1339
+ md: ["0 4px 3px rgb(0 0 0 / 0.07)", "0 2px 2px rgb(0 0 0 / 0.06)"],
1340
+ lg: ["0 10px 8px rgb(0 0 0 / 0.04)", "0 4px 3px rgb(0 0 0 / 0.1)"],
1341
+ xl: ["0 20px 13px rgb(0 0 0 / 0.03)", "0 8px 5px rgb(0 0 0 / 0.08)"],
1342
+ "2xl": "0 25px 25px rgb(0 0 0 / 0.15)",
1343
+ none: "0 0 #0000"
1344
+ },
1345
+ fill: /* @__PURE__ */ __name(({ theme }) => ({
1346
+ none: "none",
1347
+ ...theme("colors")
1348
+ }), "fill"),
1349
+ flex: {
1350
+ 1: "1 1 0%",
1351
+ auto: "1 1 auto",
1352
+ initial: "0 1 auto",
1353
+ none: "none"
1354
+ },
1355
+ flexBasis: {
1356
+ auto: "auto",
1357
+ ...spacing_tailwind_default,
1358
+ "1/2": "50%",
1359
+ "1/3": "33.333333%",
1360
+ "2/3": "66.666667%",
1361
+ "1/4": "25%",
1362
+ "2/4": "50%",
1363
+ "3/4": "75%",
1364
+ "1/5": "20%",
1365
+ "2/5": "40%",
1366
+ "3/5": "60%",
1367
+ "4/5": "80%",
1368
+ "1/6": "16.666667%",
1369
+ "2/6": "33.333333%",
1370
+ "3/6": "50%",
1371
+ "4/6": "66.666667%",
1372
+ "5/6": "83.333333%",
1373
+ "1/12": "8.333333%",
1374
+ "2/12": "16.666667%",
1375
+ "3/12": "25%",
1376
+ "4/12": "33.333333%",
1377
+ "5/12": "41.666667%",
1378
+ "6/12": "50%",
1379
+ "7/12": "58.333333%",
1380
+ "8/12": "66.666667%",
1381
+ "9/12": "75%",
1382
+ "10/12": "83.333333%",
1383
+ "11/12": "91.666667%",
1384
+ full: "100%"
1385
+ },
1386
+ flexGrow: {
1387
+ 0: "0",
1388
+ DEFAULT: "1"
1389
+ },
1390
+ flexShrink: {
1391
+ 0: "0",
1392
+ DEFAULT: "1"
1393
+ },
1394
+ fontFamily: fontFamily_tailwind_default,
1395
+ fontSize: fontSize_tailwind_default,
1396
+ fontWeight: {
1397
+ thin: "100",
1398
+ extralight: "200",
1399
+ light: "300",
1400
+ normal: "400",
1401
+ medium: "500",
1402
+ semibold: "600",
1403
+ bold: "700",
1404
+ extrabold: "800",
1405
+ black: "900"
1406
+ },
1407
+ gap: spacing_tailwind_default,
1408
+ gradientColorStops: /* @__PURE__ */ __name(({ theme }) => theme("colors"), "gradientColorStops"),
1409
+ gradientColorStopPositions: {
1410
+ "0%": "0%",
1411
+ "5%": "5%",
1412
+ "10%": "10%",
1413
+ "15%": "15%",
1414
+ "20%": "20%",
1415
+ "25%": "25%",
1416
+ "30%": "30%",
1417
+ "35%": "35%",
1418
+ "40%": "40%",
1419
+ "45%": "45%",
1420
+ "50%": "50%",
1421
+ "55%": "55%",
1422
+ "60%": "60%",
1423
+ "65%": "65%",
1424
+ "70%": "70%",
1425
+ "75%": "75%",
1426
+ "80%": "80%",
1427
+ "85%": "85%",
1428
+ "90%": "90%",
1429
+ "95%": "95%",
1430
+ "100%": "100%"
1431
+ },
1432
+ grayscale: {
1433
+ 0: "0",
1434
+ DEFAULT: "100%"
1435
+ },
1436
+ gridAutoColumns: {
1437
+ auto: "auto",
1438
+ min: "min-content",
1439
+ max: "max-content",
1440
+ fr: "minmax(0, 1fr)"
1441
+ },
1442
+ gridAutoRows: {
1443
+ auto: "auto",
1444
+ min: "min-content",
1445
+ max: "max-content",
1446
+ fr: "minmax(0, 1fr)"
1447
+ },
1448
+ gridColumn: {
1449
+ auto: "auto",
1450
+ "span-1": "span 1 / span 1",
1451
+ "span-2": "span 2 / span 2",
1452
+ "span-3": "span 3 / span 3",
1453
+ "span-4": "span 4 / span 4",
1454
+ "span-5": "span 5 / span 5",
1455
+ "span-6": "span 6 / span 6",
1456
+ "span-7": "span 7 / span 7",
1457
+ "span-8": "span 8 / span 8",
1458
+ "span-9": "span 9 / span 9",
1459
+ "span-10": "span 10 / span 10",
1460
+ "span-11": "span 11 / span 11",
1461
+ "span-12": "span 12 / span 12",
1462
+ "span-full": "1 / -1"
1463
+ },
1464
+ gridColumnEnd: {
1465
+ auto: "auto",
1466
+ 1: "1",
1467
+ 2: "2",
1468
+ 3: "3",
1469
+ 4: "4",
1470
+ 5: "5",
1471
+ 6: "6",
1472
+ 7: "7",
1473
+ 8: "8",
1474
+ 9: "9",
1475
+ 10: "10",
1476
+ 11: "11",
1477
+ 12: "12",
1478
+ 13: "13"
1479
+ },
1480
+ gridColumnStart: {
1481
+ auto: "auto",
1482
+ 1: "1",
1483
+ 2: "2",
1484
+ 3: "3",
1485
+ 4: "4",
1486
+ 5: "5",
1487
+ 6: "6",
1488
+ 7: "7",
1489
+ 8: "8",
1490
+ 9: "9",
1491
+ 10: "10",
1492
+ 11: "11",
1493
+ 12: "12",
1494
+ 13: "13"
1495
+ },
1496
+ gridRow: {
1497
+ auto: "auto",
1498
+ "span-1": "span 1 / span 1",
1499
+ "span-2": "span 2 / span 2",
1500
+ "span-3": "span 3 / span 3",
1501
+ "span-4": "span 4 / span 4",
1502
+ "span-5": "span 5 / span 5",
1503
+ "span-6": "span 6 / span 6",
1504
+ "span-full": "1 / -1"
1505
+ },
1506
+ gridRowEnd: {
1507
+ auto: "auto",
1508
+ 1: "1",
1509
+ 2: "2",
1510
+ 3: "3",
1511
+ 4: "4",
1512
+ 5: "5",
1513
+ 6: "6",
1514
+ 7: "7"
1515
+ },
1516
+ gridRowStart: {
1517
+ auto: "auto",
1518
+ 1: "1",
1519
+ 2: "2",
1520
+ 3: "3",
1521
+ 4: "4",
1522
+ 5: "5",
1523
+ 6: "6",
1524
+ 7: "7"
1525
+ },
1526
+ gridTemplateColumns: {
1527
+ none: "none",
1528
+ 1: "repeat(1, minmax(0, 1fr))",
1529
+ 2: "repeat(2, minmax(0, 1fr))",
1530
+ 3: "repeat(3, minmax(0, 1fr))",
1531
+ 4: "repeat(4, minmax(0, 1fr))",
1532
+ 5: "repeat(5, minmax(0, 1fr))",
1533
+ 6: "repeat(6, minmax(0, 1fr))",
1534
+ 7: "repeat(7, minmax(0, 1fr))",
1535
+ 8: "repeat(8, minmax(0, 1fr))",
1536
+ 9: "repeat(9, minmax(0, 1fr))",
1537
+ 10: "repeat(10, minmax(0, 1fr))",
1538
+ 11: "repeat(11, minmax(0, 1fr))",
1539
+ 12: "repeat(12, minmax(0, 1fr))"
1540
+ },
1541
+ gridTemplateRows: {
1542
+ none: "none",
1543
+ 1: "repeat(1, minmax(0, 1fr))",
1544
+ 2: "repeat(2, minmax(0, 1fr))",
1545
+ 3: "repeat(3, minmax(0, 1fr))",
1546
+ 4: "repeat(4, minmax(0, 1fr))",
1547
+ 5: "repeat(5, minmax(0, 1fr))",
1548
+ 6: "repeat(6, minmax(0, 1fr))"
1549
+ },
1550
+ height: {
1551
+ auto: "auto",
1552
+ ...spacing_tailwind_default,
1553
+ "1/2": "50%",
1554
+ "1/3": "33.333333%",
1555
+ "2/3": "66.666667%",
1556
+ "1/4": "25%",
1557
+ "2/4": "50%",
1558
+ "3/4": "75%",
1559
+ "1/5": "20%",
1560
+ "2/5": "40%",
1561
+ "3/5": "60%",
1562
+ "4/5": "80%",
1563
+ "1/6": "16.666667%",
1564
+ "2/6": "33.333333%",
1565
+ "3/6": "50%",
1566
+ "4/6": "66.666667%",
1567
+ "5/6": "83.333333%",
1568
+ full: "100%",
1569
+ screen: "100vh",
1570
+ min: "min-content",
1571
+ max: "max-content",
1572
+ fit: "fit-content"
1573
+ },
1574
+ hueRotate: {
1575
+ 0: "0deg",
1576
+ 15: "15deg",
1577
+ 30: "30deg",
1578
+ 60: "60deg",
1579
+ 90: "90deg",
1580
+ 180: "180deg"
1581
+ },
1582
+ inset: {
1583
+ auto: "auto",
1584
+ ...spacing_tailwind_default,
1585
+ "1/2": "50%",
1586
+ "1/3": "33.333333%",
1587
+ "2/3": "66.666667%",
1588
+ "1/4": "25%",
1589
+ "2/4": "50%",
1590
+ "3/4": "75%",
1591
+ full: "100%"
1592
+ },
1593
+ invert: {
1594
+ 0: "0",
1595
+ DEFAULT: "100%"
1596
+ },
1597
+ keyframes: {
1598
+ spin: {
1599
+ to: {
1600
+ transform: "rotate(360deg)"
1601
+ }
1602
+ },
1603
+ ping: {
1604
+ "75%, 100%": {
1605
+ transform: "scale(2)",
1606
+ opacity: "0"
1607
+ }
1608
+ },
1609
+ pulse: {
1610
+ "50%": {
1611
+ opacity: ".5"
1612
+ }
1613
+ },
1614
+ bounce: {
1615
+ "0%, 100%": {
1616
+ transform: "translateY(-25%)",
1617
+ animationTimingFunction: "cubic-bezier(0.8,0,1,1)"
1618
+ },
1619
+ "50%": {
1620
+ transform: "none",
1621
+ animationTimingFunction: "cubic-bezier(0,0,0.2,1)"
1622
+ }
1623
+ },
1624
+ "accordion-down": {
1625
+ from: { height: 0 },
1626
+ to: { height: "var(--radix-accordion-content-height)" }
1627
+ },
1628
+ "accordion-up": {
1629
+ from: { height: "var(--radix-accordion-content-height)" },
1630
+ to: { height: 0 }
1631
+ },
1632
+ "opacity-in": {
1633
+ from: { opacity: "0" },
1634
+ to: { opacity: "1" }
1635
+ }
1636
+ },
1637
+ letterSpacing: {
1638
+ tighter: "-0.05em",
1639
+ tight: "-0.025em",
1640
+ normal: "0em",
1641
+ wide: "0.025em",
1642
+ wider: "0.05em",
1643
+ widest: "0.1em"
1644
+ },
1645
+ lineHeight: {
1646
+ none: "1",
1647
+ tight: "1.25",
1648
+ snug: "1.375",
1649
+ normal: "1.5",
1650
+ relaxed: "1.625",
1651
+ loose: "2",
1652
+ 3: ".75rem",
1653
+ 4: "1rem",
1654
+ 5: "1.25rem",
1655
+ 6: "1.5rem",
1656
+ 7: "1.75rem",
1657
+ 8: "2rem",
1658
+ 9: "2.25rem",
1659
+ 10: "2.5rem"
1660
+ },
1661
+ listStyleType: {
1662
+ none: "none",
1663
+ disc: "disc",
1664
+ decimal: "decimal"
1665
+ },
1666
+ listStyleImage: {
1667
+ none: "none"
1668
+ },
1669
+ margin: {
1670
+ auto: "auto",
1671
+ ...spacing_tailwind_default
1672
+ },
1673
+ lineClamp: {
1674
+ 1: "1",
1675
+ 2: "2",
1676
+ 3: "3",
1677
+ 4: "4",
1678
+ 5: "5",
1679
+ 6: "6"
1680
+ },
1681
+ maxHeight: {
1682
+ ...spacing_tailwind_default,
1683
+ none: "none",
1684
+ full: "100%",
1685
+ screen: "100vh",
1686
+ min: "min-content",
1687
+ max: "max-content",
1688
+ fit: "fit-content"
1689
+ },
1690
+ maxWidth: /* @__PURE__ */ __name(({ theme, breakpoints }) => ({
1691
+ ...spacing_tailwind_default,
1692
+ none: "none",
1693
+ 0: "0rem",
1694
+ xs: "20rem",
1695
+ sm: "24rem",
1696
+ md: "28rem",
1697
+ lg: "32rem",
1698
+ xl: "36rem",
1699
+ "2xl": "42rem",
1700
+ "3xl": "48rem",
1701
+ "4xl": "56rem",
1702
+ "5xl": "64rem",
1703
+ "6xl": "72rem",
1704
+ "7xl": "80rem",
1705
+ full: "100%",
1706
+ min: "min-content",
1707
+ max: "max-content",
1708
+ fit: "fit-content",
1709
+ prose: "65ch",
1710
+ ...breakpoints(theme("screens"))
1711
+ }), "maxWidth"),
1712
+ minHeight: {
1713
+ ...spacing_tailwind_default,
1714
+ 0: "0px",
1715
+ full: "100%",
1716
+ screen: "100vh",
1717
+ min: "min-content",
1718
+ max: "max-content",
1719
+ fit: "fit-content"
1720
+ },
1721
+ minWidth: /* @__PURE__ */ __name(({ theme, breakpoints }) => ({
1722
+ ...spacing_tailwind_default,
1723
+ 0: "0px",
1724
+ full: "100%",
1725
+ min: "min-content",
1726
+ max: "max-content",
1727
+ fit: "fit-content",
1728
+ ...breakpoints(theme("screens"))
1729
+ }), "minWidth"),
1730
+ objectPosition: {
1731
+ bottom: "bottom",
1732
+ center: "center",
1733
+ left: "left",
1734
+ "left-bottom": "left bottom",
1735
+ "left-top": "left top",
1736
+ right: "right",
1737
+ "right-bottom": "right bottom",
1738
+ "right-top": "right top",
1739
+ top: "top"
1740
+ },
1741
+ opacity: {
1742
+ 0: "0",
1743
+ 5: "0.05",
1744
+ 10: "0.1",
1745
+ 20: "0.2",
1746
+ 25: "0.25",
1747
+ 30: "0.3",
1748
+ 35: "0.35",
1749
+ 40: "0.4",
1750
+ 45: "0.45",
1751
+ 50: "0.5",
1752
+ 55: "0.55",
1753
+ 60: "0.6",
1754
+ 65: "0.65",
1755
+ 70: "0.7",
1756
+ 75: "0.75",
1757
+ 80: "0.8",
1758
+ 85: "0.85",
1759
+ 90: "0.9",
1760
+ 95: "0.95",
1761
+ 100: "1"
1762
+ },
1763
+ order: {
1764
+ first: "-9999",
1765
+ last: "9999",
1766
+ none: "0",
1767
+ 1: "1",
1768
+ 2: "2",
1769
+ 3: "3",
1770
+ 4: "4",
1771
+ 5: "5",
1772
+ 6: "6",
1773
+ 7: "7",
1774
+ 8: "8",
1775
+ 9: "9",
1776
+ 10: "10",
1777
+ 11: "11",
1778
+ 12: "12"
1779
+ },
1780
+ outlineColor: /* @__PURE__ */ __name(({ theme }) => theme("colors"), "outlineColor"),
1781
+ outlineOffset: {
1782
+ 0: "0px",
1783
+ 1: "1px",
1784
+ 2: "2px",
1785
+ 4: "4px",
1786
+ 8: "8px"
1787
+ },
1788
+ outlineWidth: {
1789
+ 0: "0px",
1790
+ 1: "1px",
1791
+ 2: "2px",
1792
+ 4: "4px",
1793
+ 8: "8px"
1794
+ },
1795
+ padding: spacing_tailwind_default,
1796
+ placeholderColor: /* @__PURE__ */ __name(({ theme }) => theme("colors"), "placeholderColor"),
1797
+ placeholderOpacity: /* @__PURE__ */ __name(({ theme }) => theme("opacity"), "placeholderOpacity"),
1798
+ ringColor: /* @__PURE__ */ __name(({ theme }) => ({
1799
+ DEFAULT: theme("colors.blue.500", "#3b82f6"),
1800
+ ...theme("colors")
1801
+ }), "ringColor"),
1802
+ ringOffsetColor: /* @__PURE__ */ __name(({ theme }) => theme("colors"), "ringOffsetColor"),
1803
+ ringOffsetWidth: {
1804
+ 0: "0px",
1805
+ 1: "1px",
1806
+ 2: "2px",
1807
+ 4: "4px",
1808
+ 8: "8px"
1809
+ },
1810
+ ringOpacity: /* @__PURE__ */ __name(({ theme }) => ({
1811
+ DEFAULT: "0.5",
1812
+ ...theme("opacity")
1813
+ }), "ringOpacity"),
1814
+ ringWidth: {
1815
+ DEFAULT: "3px",
1816
+ 0: "0px",
1817
+ 1: "1px",
1818
+ 2: "2px",
1819
+ 4: "4px",
1820
+ 8: "8px"
1821
+ },
1822
+ rotate: {
1823
+ 0: "0deg",
1824
+ 1: "1deg",
1825
+ 2: "2deg",
1826
+ 3: "3deg",
1827
+ 6: "6deg",
1828
+ 12: "12deg",
1829
+ 45: "45deg",
1830
+ 90: "90deg",
1831
+ 180: "180deg"
1832
+ },
1833
+ saturate: {
1834
+ 0: "0",
1835
+ 50: ".5",
1836
+ 100: "1",
1837
+ 150: "1.5",
1838
+ 200: "2"
1839
+ },
1840
+ scale: {
1841
+ 0: "0",
1842
+ 50: ".5",
1843
+ 75: ".75",
1844
+ 90: ".9",
1845
+ 95: ".95",
1846
+ 100: "1",
1847
+ 105: "1.05",
1848
+ 110: "1.1",
1849
+ 125: "1.25",
1850
+ 150: "1.5"
1851
+ },
1852
+ screens: screens_tailwind_default,
1853
+ scrollMargin: spacing_tailwind_default,
1854
+ scrollPadding: spacing_tailwind_default,
1855
+ sepia: {
1856
+ 0: "0",
1857
+ DEFAULT: "100%"
1858
+ },
1859
+ skew: {
1860
+ 0: "0deg",
1861
+ 1: "1deg",
1862
+ 2: "2deg",
1863
+ 3: "3deg",
1864
+ 6: "6deg",
1865
+ 12: "12deg"
1866
+ },
1867
+ space: spacing_tailwind_default,
1868
+ spacing: spacing_tailwind_default,
1869
+ stroke: /* @__PURE__ */ __name(({ theme }) => ({
1870
+ none: "none",
1871
+ ...theme("colors")
1872
+ }), "stroke"),
1873
+ strokeWidth: {
1874
+ 0: "0",
1875
+ 1: "1",
1876
+ 2: "2"
1877
+ },
1878
+ supports: {},
1879
+ data: {
1880
+ on: 'state~="on"',
1881
+ off: 'state~="off"'
1882
+ },
1883
+ textColor: /* @__PURE__ */ __name(({ theme }) => theme("colors"), "textColor"),
1884
+ textDecorationColor: /* @__PURE__ */ __name(({ theme }) => theme("colors"), "textDecorationColor"),
1885
+ textDecorationThickness: {
1886
+ auto: "auto",
1887
+ "from-font": "from-font",
1888
+ 0: "0px",
1889
+ 1: "1px",
1890
+ 2: "2px",
1891
+ 4: "4px",
1892
+ 8: "8px"
1893
+ },
1894
+ textIndent: spacing_tailwind_default,
1895
+ textOpacity: /* @__PURE__ */ __name(({ theme }) => theme("opacity"), "textOpacity"),
1896
+ textUnderlineOffset: {
1897
+ auto: "auto",
1898
+ 0: "0px",
1899
+ 1: "1px",
1900
+ 2: "2px",
1901
+ 4: "4px",
1902
+ 8: "8px"
1903
+ },
1904
+ transformOrigin: {
1905
+ center: "center",
1906
+ top: "top",
1907
+ "top-right": "top right",
1908
+ right: "right",
1909
+ "bottom-right": "bottom right",
1910
+ bottom: "bottom",
1911
+ "bottom-left": "bottom left",
1912
+ left: "left",
1913
+ "top-left": "top left"
1914
+ },
1915
+ transitionDelay: {
1916
+ 0: "0s",
1917
+ 75: "75ms",
1918
+ 100: "100ms",
1919
+ 150: "150ms",
1920
+ 200: "200ms",
1921
+ 300: "300ms",
1922
+ 500: "500ms",
1923
+ 700: "700ms",
1924
+ 1e3: "1000ms"
1925
+ },
1926
+ transitionDuration: {
1927
+ DEFAULT: "150ms",
1928
+ 0: "0s",
1929
+ 75: "75ms",
1930
+ 100: "100ms",
1931
+ 150: "150ms",
1932
+ 200: "200ms",
1933
+ 300: "300ms",
1934
+ 500: "500ms",
1935
+ 700: "700ms",
1936
+ 1e3: "1000ms"
1937
+ },
1938
+ transitionProperty: {
1939
+ none: "none",
1940
+ all: "all",
1941
+ DEFAULT: "color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter",
1942
+ colors: "color, background-color, border-color, text-decoration-color, fill, stroke",
1943
+ opacity: "opacity",
1944
+ shadow: "box-shadow",
1945
+ transform: "transform",
1946
+ height: "height",
1947
+ spacing: "margin, padding"
1948
+ },
1949
+ transitionTimingFunction: {
1950
+ DEFAULT: "cubic-bezier(0.4, 0, 0.2, 1)",
1951
+ linear: "linear",
1952
+ in: "cubic-bezier(0.4, 0, 1, 1)",
1953
+ out: "cubic-bezier(0, 0, 0.2, 1)",
1954
+ "in-out": "cubic-bezier(0.4, 0, 0.2, 1)"
1955
+ },
1956
+ translate: {
1957
+ ...spacing_tailwind_default,
1958
+ "1/2": "50%",
1959
+ "1/3": "33.333333%",
1960
+ "2/3": "66.666667%",
1961
+ "1/4": "25%",
1962
+ "2/4": "50%",
1963
+ "3/4": "75%",
1964
+ full: "100%"
1965
+ },
1966
+ width: /* @__PURE__ */ __name(({ theme, breakpoints }) => ({
1967
+ auto: "auto",
1968
+ ...spacing_tailwind_default,
1969
+ "1/2": "50%",
1970
+ "1/3": "33.333333%",
1971
+ "2/3": "66.666667%",
1972
+ "1/4": "25%",
1973
+ "2/4": "50%",
1974
+ "3/4": "75%",
1975
+ "1/5": "20%",
1976
+ "2/5": "40%",
1977
+ "3/5": "60%",
1978
+ "4/5": "80%",
1979
+ "1/6": "16.666667%",
1980
+ "2/6": "33.333333%",
1981
+ "3/6": "50%",
1982
+ "4/6": "66.666667%",
1983
+ "5/6": "83.333333%",
1984
+ "1/12": "8.333333%",
1985
+ "2/12": "16.666667%",
1986
+ "3/12": "25%",
1987
+ "4/12": "33.333333%",
1988
+ "5/12": "41.666667%",
1989
+ "6/12": "50%",
1990
+ "7/12": "58.333333%",
1991
+ "8/12": "66.666667%",
1992
+ "9/12": "75%",
1993
+ "10/12": "83.333333%",
1994
+ "11/12": "91.666667%",
1995
+ full: "100%",
1996
+ screen: "100vw",
1997
+ min: "min-content",
1998
+ max: "max-content",
1999
+ fit: "fit-content",
2000
+ ...breakpoints(theme("screens"))
2001
+ }), "width"),
2002
+ willChange: {
2003
+ auto: "auto",
2004
+ scroll: "scroll-position",
2005
+ contents: "contents",
2006
+ transform: "transform"
2007
+ },
2008
+ zIndex: z_index_tailwind_default
2009
+ }
2010
+ };
2011
+
2012
+ export { tailwind_config_hanzo_preset_default as preset };