11. Design Tokens
11.7 Multi-theme architecture
Design Tokens · Section 11.7
Diagram source
flowchart LR
A[Primitive palette]
B[Light semantic tokens]
C[Dark semantic tokens]
D[Components]
A --> B
A --> C
B --> D
C --> DComponents should prefer semantic tokens:
background: var(--color-bg-surface);
color: var(--color-text-primary);not:
background: var(--white);
color: var(--gray-900);