Technical implementation guide for the Creative Chaos design system. Copy, paste, and create joyful interfaces that break conventions.
Primary backgrounds, hero sections
Interactive elements, cards
Success states, nature themes
Info states, tech themes
Premium features, luxury themes
Success states, nature themes
Interactive highlights, CTAs
Error states, urgent actions
Warning states, highlights
Hero titles, main headings
text-6xl font-boldSection headers
text-4xl font-semiboldPrimary content, descriptions
text-lg leading-relaxedCaptions, metadata
text-sm opacity-80Subtle pulsing for backgrounds
Gentle floating motion for particles
Interactive element responses
0.25rem (4px)
p-1, m-1, gap-10.5rem (8px)
p-2, m-2, gap-21rem (16px)
p-4, m-4, gap-41.5rem (24px)
p-6, m-6, gap-62rem (32px)
p-8, m-8, gap-8<div className="min-h-screen bg-gradient-to-br from-orange-600 via-red-700 to-amber-800">
{/* Floating particles */}
<div className="absolute inset-0 overflow-hidden pointer-events-none">
{[...Array(20)].map((_, i) => (
<div
key={i}
className="absolute w-2 h-2 bg-white/40 rounded-full animate-bounce"
style={{
left: `${Math.random() * 100}%`,
top: `${Math.random() * 100}%`,
animationDelay: `${Math.random() * 2}s`,
animationDuration: `${2 + Math.random() * 2}s`
}}
/>
))}
</div>
<div className="relative z-10 container mx-auto px-6 py-12">
<h1 className="text-6xl font-bold text-white mb-6">
Your Creative Title
</h1>
{/* Your content here */}
</div>
</div>