15 lines
518 B
XML
15 lines
518 B
XML
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" >
|
||
|
|
<defs>
|
||
|
|
|
||
|
|
<radialGradient id="grad1" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
|
||
|
|
<stop offset="0%" style="stop-color:#ffffff; stop-opacity:1" />
|
||
|
|
<stop offset="40%" style="stop-color:#ffffff; stop-opacity:1" />
|
||
|
|
<stop offset="80%" style="stop-color:#99aaff;stop-opacity:1" />
|
||
|
|
<stop offset="100%" style="stop-color:#99aaff;stop-opacity:1" />
|
||
|
|
</radialGradient>
|
||
|
|
</defs>
|
||
|
|
|
||
|
|
<circle cx="50%" cy="60%" r="30%" stroke="none" fill="url(#grad1)" />
|
||
|
|
|
||
|
|
</svg>
|