Can SVG <animate> tags' values attribute reference CSS variables? – Html
Using values="var(--color1);var(--color2)" in an SVG <animate> tag works in Firefox but not Chrome (see the snippet below). Is there a way to make it work in Chrome? :root { --color1: #7F0000; --color2: #007F00; } <svg width="100" viewBox="-50 -50 100 100">…