SVG attribute CSS variable
HTML
<svg>
<rect width="100" height="100" fill="var(--rect-color, #bff)" />
</svg>
CSS
:root {
--rect-color: red;
}
<svg>
<rect width="100" height="100" fill="var(--rect-color, #bff)" />
</svg>
:root {
--rect-color: red;
}