Spacing
Always use CSS variables for spacing, never hardcoded pixel values:
var(--space-2): 0.5remvar(--space-4): 1remvar(--space-8): 2rem
Colors
Use semantic color tokens:
var(--color-brand-500): Primary brand colorvar(--color-surface-0): Main backgroundvar(--color-text-primary): Primary text
Typography
- Headings:
var(--font-display) - Body:
var(--font-sans)