12 lines
481 B
XML
12 lines
481 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
|
|
<defs>
|
|
<linearGradient id="g" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" stop-color="#6c5ce7"/>
|
|
<stop offset="100%" stop-color="#9b59b6"/>
|
|
</linearGradient>
|
|
</defs>
|
|
<circle cx="50" cy="50" r="45" fill="url(#g)"/>
|
|
<circle cx="50" cy="50" r="38" fill="none" stroke="rgba(255,255,255,0.15)" stroke-width="2"/>
|
|
<circle cx="38" cy="38" r="8" fill="rgba(255,255,255,0.25)"/>
|
|
</svg>
|