designTailwind
Use Semantic Color Tokens
MUST
MUST: Use semantic tokens (bg-primary, text-destructive) instead of raw colors (bg-blue-500)
Define colors by purpose, not appearance
Bad
Good
Why it matters
Semantic tokens describe purpose, not appearance. bg-destructive means "danger/error background" regardless of the actual color. This separation allows themes to change without touching component code.
References