CSS custom properties make design tokens reusable and consistent.
:root
--brand: #0ea5e9;
var(--brand)
.title
--space: 16px;
.panel
Define variables in :root and read them with var(--name).