Fallback Values
The second argument of var() is a fallback used when the variable is undefined.
The second argument of var() is a fallback used when the variable is undefined.
.el { color: var(--brand, steelblue); font-family: var(--font, var(--sys-font, sans-serif)); }
Fallback values make components work even without a theme.