21 lines
553 B
XML
21 lines
553 B
XML
|
|
<svg width="180" height="180" xmlns="http://www.w3.org/2000/svg">
|
||
|
|
<!-- Background -->
|
||
|
|
<rect width="180" height="180" fill="#6366f1"/>
|
||
|
|
|
||
|
|
<!-- Spotlight effect -->
|
||
|
|
<g transform="translate(90, 90)">
|
||
|
|
<circle r="54" fill="#ffffff" opacity="0.2"/>
|
||
|
|
<circle r="36" fill="#ffffff" opacity="0.3"/>
|
||
|
|
<circle r="18" fill="#ffffff"/>
|
||
|
|
|
||
|
|
<!-- Letter 'S' -->
|
||
|
|
<text
|
||
|
|
x="0"
|
||
|
|
y="27"
|
||
|
|
font-family="Arial, sans-serif"
|
||
|
|
font-size="72"
|
||
|
|
font-weight="bold"
|
||
|
|
fill="#ffffff"
|
||
|
|
text-anchor="middle">S</text>
|
||
|
|
</g>
|
||
|
|
</svg>
|