mirror of
https://github.com/AeThex-Corporation/AeThex-OS.git
synced 2026-04-25 09:27:21 +00:00
48 lines
2 KiB
XML
48 lines
2 KiB
XML
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
|
|
<defs>
|
|
<filter id="glow">
|
|
<feGaussianBlur stdDeviation="3" result="coloredBlur"/>
|
|
<feMerge>
|
|
<feMergeNode in="coloredBlur"/>
|
|
<feMergeNode in="SourceGraphic"/>
|
|
</feMerge>
|
|
</filter>
|
|
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#06b6d4;stop-opacity:1" />
|
|
<stop offset="100%" style="stop-color:#00d9ff;stop-opacity:1" />
|
|
</linearGradient>
|
|
</defs>
|
|
|
|
<!-- Outer ring with spikes -->
|
|
<g filter="url(#glow)">
|
|
<!-- Top spike -->
|
|
<polygon points="100,20 110,60 90,60" fill="url(#grad1)" opacity="0.9"/>
|
|
<!-- Top-right spike -->
|
|
<polygon points="141.4,41.4 120,75 135,65" fill="url(#grad1)" opacity="0.85"/>
|
|
<!-- Right spike -->
|
|
<polygon points="180,100 140,110 140,90" fill="url(#grad1)" opacity="0.9"/>
|
|
<!-- Bottom-right spike -->
|
|
<polygon points="158.6,158.6 135,135 145,150" fill="url(#grad1)" opacity="0.85"/>
|
|
<!-- Bottom spike -->
|
|
<polygon points="100,180 90,140 110,140" fill="url(#grad1)" opacity="0.9"/>
|
|
<!-- Bottom-left spike -->
|
|
<polygon points="41.4,158.6 65,135 55,150" fill="url(#grad1)" opacity="0.85"/>
|
|
<!-- Left spike -->
|
|
<polygon points="20,100 60,90 60,110" fill="url(#grad1)" opacity="0.9"/>
|
|
<!-- Top-left spike -->
|
|
<polygon points="58.6,41.4 75,60 65,75" fill="url(#grad1)" opacity="0.85"/>
|
|
</g>
|
|
|
|
<!-- Inner dark ring -->
|
|
<circle cx="100" cy="100" r="75" fill="#0f172a" stroke="url(#grad1)" stroke-width="2" opacity="0.95"/>
|
|
|
|
<!-- Middle ring with glow -->
|
|
<circle cx="100" cy="100" r="55" fill="none" stroke="url(#grad1)" stroke-width="1.5" opacity="0.6" filter="url(#glow)"/>
|
|
|
|
<!-- Center diamond -->
|
|
<g filter="url(#glow)">
|
|
<polygon points="100,70 130,100 100,130 70,100" fill="url(#grad1)" opacity="0.9"/>
|
|
<polygon points="100,75 125,100 100,125 75,100" fill="#00ffff" opacity="0.7"/>
|
|
<circle cx="100" cy="100" r="8" fill="#ffffff" opacity="0.8"/>
|
|
</g>
|
|
</svg>
|