I want to fade the fill color of a svg circle from one color to another color, like from red to black.
<svg height="100" width="100">
<circle cx="50" cy="50" r="40" stroke="black" stroke-width="3" fill="red" fade-to="black"/>
</svg>
What would I do in place of the fade-to="black"?