Initial commit

This commit is contained in:
2026-05-22 12:52:50 +00:00
commit 2e587941c2
55 changed files with 10748 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" width="120" height="120">
<defs>
<radialGradient id="bg" cx="50%" cy="30%" r="70%">
<stop offset="0%" stop-color="#0a1628"/>
<stop offset="100%" stop-color="#040810"/>
</radialGradient>
<linearGradient id="blue" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#64b5f6"/>
<stop offset="100%" stop-color="#1565c0"/>
</linearGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="2" result="blur"/>
<feMerge><feMergeNode in="blur"/><feMergeNode in="SourceGraphic"/></feMerge>
</filter>
</defs>
<rect width="120" height="120" rx="24" fill="url(#bg)"/>
<!-- Crown at top -->
<path d="M42 28 L50 20 L60 26 L70 20 L78 28 L74 38 L46 38 Z" fill="#FFD700" opacity="0.9" filter="url(#glow)"/>
<circle cx="50" cy="20" r="3" fill="#FFD700"/>
<circle cx="60" cy="16" r="3.5" fill="#FFD700"/>
<circle cx="70" cy="20" r="3" fill="#FFD700"/>
<!-- Panda + paw -->
<text x="60" y="68" font-size="36" text-anchor="middle" filter="url(#glow)" font-family="Arial">🐾</text>
<!-- MASTER text -->
<text x="60" y="90" font-size="11" font-weight="900" text-anchor="middle" fill="url(#blue)" font-family="Arial Black, sans-serif" letter-spacing="2" filter="url(#glow)">MASTER</text>
<rect x="2" y="2" width="116" height="116" rx="22" fill="none" stroke="url(#blue)" stroke-width="1" opacity="0.5"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB