Files

24 lines
950 B
XML
Raw Permalink Normal View History

2025-12-04 15:26:53 +08:00
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64">
2025-11-26 17:31:42 +08:00
<defs>
<linearGradient id="bg" x1="0" y1="0" x2="1" y2="1">
<stop offset="0" stop-color="#0c1426"/>
<stop offset="1" stop-color="#0a2a3b"/>
</linearGradient>
<filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur stdDeviation="2" result="blur"/>
<feMerge>
<feMergeNode in="blur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- 背景圆 -->
2025-12-04 15:26:53 +08:00
<circle cx="32" cy="32" r="30" fill="#ffffff" stroke="#00d4ff" stroke-width="3"/>
2025-11-26 17:31:42 +08:00
<!-- 牛字标识 -->
2025-12-04 15:26:53 +08:00
<g fill="#0C2435" font-family="'Microsoft YaHei','Arial'" font-weight="800" text-anchor="middle" filter="url(#glow)">
<text x="32" y="44" font-size="40"></text>
2025-11-26 17:31:42 +08:00
</g>
<!-- 亮边描边 -->
<circle cx="32" cy="32" r="30" fill="none" stroke="rgba(0,212,255,0.35)" stroke-width="2"/>
2025-12-04 15:26:53 +08:00
</svg>