Files
jarvis-lan/www/icon.svg
2025-12-28 23:24:51 +01:00

42 lines
1.2 KiB
XML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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"/>
<!-- Lightblue 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 doublestroke 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>