:root {
--brand-color: #0f9f8f;
--spacing-md: 1rem;
}
.button {
background: var(--brand-color);
padding: var(--spacing-md);
}Tip
Unlike Sass variables, CSS custom properties are live in the DOM — you can change them at runtime with JavaScript.