blob: d1a8d615979640c6209233fb2d6807b194ac90e7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<svg xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="red">
<stop offset="0.0" stop-color="#f00"/>
</linearGradient>
</defs>
<rect width="100%" height="100%" fill="url(#red)">
<set attributeName="fill" to="lime"/>
</rect>
</svg>
|