# Syntax
:root {
  --primary: #666;
  --hintergrund: #ccc;
  --akzent: #c32e04;
  --linkfarbe: #09c;
}

h2 {
  color: var(--primary);
  border-bottom: medium solid var(--akzent);
}

# Fallback mit festen Werten für custom properties
h1 {
  color: var(--akzentfarbe, red);
}