This commit is contained in:
2026-04-05 19:00:58 -04:00
parent 139a158efc
commit 63fe3a3c04
3 changed files with 64 additions and 50 deletions
-15
View File
@@ -1,15 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256">
<defs>
<linearGradient id="zepGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#c77dff" />
<stop offset="100%" stop-color="#7b2cbf" />
</linearGradient>
<filter id="glow" x="-20%" y="-20%" width="140%" height="140%">
<feGaussianBlur stdDeviation="8" result="blur" />
<feComposite in="SourceGraphic" in2="blur" operator="over" />
</filter>
</defs>
<rect width="256" height="256" rx="64" fill="#0a0714" />
<path d="M60 70 L196 70 L110 186 L196 186" fill="none" stroke="url(#zepGrad)" stroke-width="32" stroke-linecap="round" stroke-linejoin="round" filter="url(#glow)" />
<path d="M60 70 L196 70 L110 186 L196 186" fill="none" stroke="#ffffff" stroke-width="12" stroke-linecap="round" stroke-linejoin="round" />
</svg>

Before

Width:  |  Height:  |  Size: 853 B

+24
View File
@@ -0,0 +1,24 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
<defs>
<linearGradient id="blimpGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#3b82f6" />
<stop offset="100%" stop-color="#2563eb" />
</linearGradient>
</defs>
<!-- Background Shape -->
<rect width="100" height="100" rx="24" fill="#1e1f22" />
<g transform="translate(0, 2)">
<!-- Fins -->
<path d="M20 40 L10 30 L10 70 L20 60" fill="#ffffff" opacity="0.2" />
<!-- The Sandwich Layers -->
<path d="M20 50 Q20 30 55 30 Q90 30 90 50" fill="none" stroke="#dbdee1" stroke-width="6" stroke-linecap="round" />
<path d="M22 50 H88" fill="none" stroke="url(#blimpGrad)" stroke-width="8" stroke-linecap="round" />
<path d="M20 50 Q20 70 55 70 Q90 70 90 50" fill="none" stroke="#dbdee1" stroke-width="6" stroke-linecap="round" />
<!-- Gondola -->
<rect x="45" y="72" width="20" height="6" rx="3" fill="#dbdee1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 984 B