21 lines
558 B
Plaintext
21 lines
558 B
Plaintext
|
|
<svg width="512" height="512" xmlns="http://www.w3.org/2000/svg">
|
||
|
|
<!-- Background -->
|
||
|
|
<rect width="512" height="512" fill="#6366f1"/>
|
||
|
|
|
||
|
|
<!-- Spotlight effect -->
|
||
|
|
<g transform="translate(256, 256)">
|
||
|
|
<circle r="154" fill="#ffffff" opacity="0.2"/>
|
||
|
|
<circle r="102" fill="#ffffff" opacity="0.3"/>
|
||
|
|
<circle r="51" fill="#ffffff"/>
|
||
|
|
|
||
|
|
<!-- Letter 'S' -->
|
||
|
|
<text
|
||
|
|
x="0"
|
||
|
|
y="77"
|
||
|
|
font-family="Arial, sans-serif"
|
||
|
|
font-size="205"
|
||
|
|
font-weight="bold"
|
||
|
|
fill="#ffffff"
|
||
|
|
text-anchor="middle">S</text>
|
||
|
|
</g>
|
||
|
|
</svg>
|