@hanzo/ui 5.3.19 → 5.3.22

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