This commit is contained in:
mike
2025-12-17 16:21:03 +01:00
parent 3f24902f3f
commit 1687a19116
2 changed files with 42 additions and 0 deletions

BIN
favico.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 174 KiB

42
favico.svg Normal file
View File

@@ -0,0 +1,42 @@
<?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>

After

Width:  |  Height:  |  Size: 1.2 KiB