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
+35
View File
@@ -0,0 +1,35 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" width="120" height="120">
<defs>
<radialGradient id="bg" cx="40%" cy="40%" r="60%">
<stop offset="0%" stop-color="#1a0a40"/>
<stop offset="60%" stop-color="#0a0520"/>
<stop offset="100%" stop-color="#050210"/>
</radialGradient>
<linearGradient id="purple" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#c77dff"/>
<stop offset="100%" stop-color="#7b2fbe"/>
</linearGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="3" result="blur"/>
<feMerge><feMergeNode in="blur"/><feMergeNode in="SourceGraphic"/></feMerge>
</filter>
</defs>
<rect width="120" height="120" rx="24" fill="url(#bg)"/>
<!-- Galactic swirl -->
<ellipse cx="60" cy="60" rx="38" ry="12" fill="none" stroke="url(#purple)" stroke-width="1.5" opacity="0.5" transform="rotate(-30 60 60)"/>
<ellipse cx="60" cy="60" rx="28" ry="8" fill="none" stroke="#c77dff" stroke-width="1" opacity="0.4" transform="rotate(20 60 60)"/>
<!-- Stars -->
<circle cx="30" cy="25" r="1.5" fill="white" opacity="0.9"/>
<circle cx="88" cy="30" r="1" fill="white" opacity="0.7"/>
<circle cx="20" cy="70" r="1" fill="white" opacity="0.6"/>
<circle cx="95" cy="65" r="1.5" fill="white" opacity="0.8"/>
<circle cx="50" cy="15" r="1" fill="white" opacity="0.5"/>
<circle cx="75" cy="100" r="1.5" fill="white" opacity="0.7"/>
<circle cx="40" cy="95" r="1" fill="#c77dff" opacity="0.9"/>
<circle cx="100" cy="45" r="1" fill="#c77dff" opacity="0.6"/>
<!-- Galaxy emoji + text -->
<text x="60" y="56" font-size="34" text-anchor="middle" filter="url(#glow)" font-family="Arial">🌌</text>
<text x="60" y="80" font-size="11" font-weight="700" text-anchor="middle" fill="url(#purple)" font-family="Arial, sans-serif" letter-spacing="1.5">MILKY WAY</text>
<!-- Border glow -->
<rect x="2" y="2" width="116" height="116" rx="22" fill="none" stroke="url(#purple)" stroke-width="1" opacity="0.4"/>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB