SyntaxStudy
Sign Up
CSS Variable Fallback Values
CSS Beginner 3 min read

Variable Fallback Values

Fallback Values

The second argument of var() is a fallback used when the variable is undefined.

Example
.el { color: var(--brand, steelblue); font-family: var(--font, var(--sys-font, sans-serif)); }
Pro Tip

Fallback values make components work even without a theme.