sajad torkamani

Recipes

Define a global variable

:root {
  --primary: blue;
} 

Use a variable

Without a fallback:

.some-component {
  color: var(--primary);
}

With a fallback:

.some-component {
  color: var(--primary, pink);
}

Other notes