mirror of
https://github.com/qingchencloud/clawpanel.git
synced 2026-06-06 00:00:06 +08:00
设计改进: - 更简洁的三爪抽象设计(左/右/下三个方向) - 去除复杂的网格装饰,更加简约现代 - 渐变色调整为更柔和的紫蓝色 - 侧边栏 Logo 从文字 CP 改为 SVG 图标 - 图标尺寸和样式优化,视觉效果更统一 技术细节: - 全套 PNG 图标重新生成(16-1024px) - 更新 icns (1.0M) 和 ico 文件 - 侧边栏 SVG 图标使用 currentColor 适配主题
42 lines
1.3 KiB
XML
42 lines
1.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<svg width="512" height="512" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg">
|
|
<defs>
|
|
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#818cf8;stop-opacity:1" />
|
|
<stop offset="100%" style="stop-color:#6366f1;stop-opacity:1" />
|
|
</linearGradient>
|
|
<filter id="glow">
|
|
<feGaussianBlur stdDeviation="4" result="coloredBlur"/>
|
|
<feMerge>
|
|
<feMergeNode in="coloredBlur"/>
|
|
<feMergeNode in="SourceGraphic"/>
|
|
</feMerge>
|
|
</filter>
|
|
</defs>
|
|
|
|
<!-- 背景圆形 -->
|
|
<circle cx="256" cy="256" r="240" fill="url(#grad1)"/>
|
|
|
|
<!-- 简洁的三爪设计 -->
|
|
<g fill="white" opacity="0.95" filter="url(#glow)">
|
|
<!-- 中心圆 -->
|
|
<circle cx="256" cy="280" r="55"/>
|
|
|
|
<!-- 左爪 -->
|
|
<ellipse cx="140" cy="200" rx="32" ry="70" transform="rotate(-30 140 200)"/>
|
|
|
|
<!-- 右爪 -->
|
|
<ellipse cx="372" cy="200" rx="32" ry="70" transform="rotate(30 372 200)"/>
|
|
|
|
<!-- 下爪 -->
|
|
<ellipse cx="256" cy="380" rx="32" ry="70"/>
|
|
</g>
|
|
|
|
<!-- 装饰线条 -->
|
|
<g stroke="white" stroke-width="3" fill="none" opacity="0.2">
|
|
<path d="M 256 100 Q 256 180 256 225"/>
|
|
<path d="M 100 256 Q 180 256 225 256"/>
|
|
<path d="M 412 256 Q 332 256 287 256"/>
|
|
</g>
|
|
</svg>
|