CSS Custom Variables
CSS variables allow declaring reuse values globally.
# Declaring Variables
Variables are declared inside selectors (usually `:root`) and referenced using the `var()` keyword: ```css :root { --primary-color: #2563eb; }
.button { background-color: var(--primary-color); } ```