;; @client — send all define forms to browser for client-side use. ;; CSSX — computed CSS from s-expressions. ;; ;; Tailwind-style utility component using spread + collect primitives. ;; Use as a child of any element — injects classes onto the parent: ;; ;; (div (~cssx/tw "bg-yellow-199 text-violet-700 p-4 font-bold") ;; "content") ;; ;; (button (~cssx/tw "hover:bg-rose-500 md:text-xl") ;; "click me") ;; ;; Each token becomes a deterministic class + JIT CSS rule. ;; Rules are collected into the "cssx" bucket, flushed once by ~cssx/flush. ;; No wrapper elements, no per-element ")))))