mirror of
https://github.com/ldxw/cdn.git
synced 2026-08-14 13:01:23 +08:00
31 lines
1.1 KiB
XML
31 lines
1.1 KiB
XML
|
|
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
|
|
<defs>
|
|
<!-- Gradient for ring and text stroke -->
|
|
<linearGradient id="ringGradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" stop-color="#4A00E0"/>
|
|
<stop offset="50%" stop-color="#00D4FF"/>
|
|
<stop offset="100%" stop-color="#00FFA3"/>
|
|
</linearGradient>
|
|
|
|
<!-- Enhanced colored shadow for smaller scale visibility -->
|
|
<filter id="enhancedShadow" x="-50%" y="-50%" width="200%" height="200%">
|
|
<feDropShadow dx="2" dy="2" stdDeviation="3" flood-color="#00d4ff" flood-opacity="0.9"/>
|
|
</filter>
|
|
</defs>
|
|
|
|
<!-- Unified group -->
|
|
<g transform="translate(150,150)">
|
|
<!-- Gradient circle -->
|
|
<circle cx="0" cy="0" r="130" stroke="url(#ringGradient)" stroke-width="10" fill="none" />
|
|
|
|
<!-- Enhanced visibility XW text -->
|
|
<text x="0" y="40" text-anchor="middle"
|
|
font-size="100" font-family="Noto Sans SC, sans-serif"
|
|
fill="white" stroke="url(#ringGradient)" stroke-width="3"
|
|
filter="url(#enhancedShadow)">
|
|
XW
|
|
</text>
|
|
</g>
|
|
</svg>
|