THEMING
The CSS variable token system — how it works and how to customize it.
HOW IT WORKS
All design decisions are expressed as CSS custom properties in src/styles/globals.css. There are two layers:
@theme {}Tailwind v4 block — tokens that generate utility classes like text-teal, bg-void.:root {}Semantic tokens — contextual roles like --background, --text-primary, --glow-teal.COLOR PALETTE
--color-green#00ed3f--color-amber#ff8800--color-amber-light#ffa238--color-red#cc2200--color-blue#4466cc--color-bone#E0D5BE--background#050505--surface#0D0D0D--surface-raised#141414--color-teal#6DC3BB--color-pink#B53082--color-orange#F2963A--color-purple#381B57CUSTOMIZING
Override any CSS variable after importing globals.css. Components automatically pick up your changes.