SVG attribute CSS variable

by Roman Bruckner

HTML

<svg>
  <rect width="100" height="100" fill="var(--rect-color, #bff)" />
</svg>

CSS

:root {
  --rect-color: red;  
}