42 lines
1.2 KiB
XML
42 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
||
<svg xmlns="http://www.w3.org/2000/svg"
|
||
width="200" height="200"
|
||
viewBox="0 0 200 200">
|
||
|
||
<!-- Background circle -->
|
||
<circle cx="100" cy="100" r="90" fill="#00A2E8"/>
|
||
|
||
<!-- Light‑blue gradient for the inner halo -->
|
||
<defs>
|
||
<radialGradient id="halo" cx="50%" cy="30%" r="80%">
|
||
<stop offset="0%" stop-color="#6BC3FF"/>
|
||
<stop offset="100%" stop-color="#00A2E8"/>
|
||
</radialGradient>
|
||
|
||
<!-- Stroke for the “m” -->
|
||
<linearGradient id="mGrad" x1="0%" y1="0%" x2="100%" y2="100%">
|
||
<stop offset="0%" stop-color="#FFFFFF"/>
|
||
<stop offset="100%" stop-color="#E5F3FF"/>
|
||
</linearGradient>
|
||
</defs>
|
||
|
||
<!-- The “m” – a stylised double‑stroke shape -->
|
||
<path d="
|
||
M 65,110
|
||
L 70,80
|
||
C 75,60 85,50 95,55
|
||
C 105,60 115,40 125,45
|
||
L 130,70
|
||
L 135,90
|
||
"
|
||
fill="none" stroke="#FFFFFF" stroke-width="12" stroke-linecap="round"/>
|
||
|
||
<!-- The “IRC” text -->
|
||
<text x="140" y="135"
|
||
font-family="'Segoe UI', Arial, Helvetica, sans"
|
||
font-weight="700"
|
||
font-size="70"
|
||
fill="url(#halo)">
|
||
mIRC
|
||
</text>
|
||
</svg> |