- 创建品牌资源目录 brand/ - Logo SVG(主Logo、深色模式、图标、favicon) - 各子系统专用 Logo(AI-Proj、Gitea、Jenkins、Metabase、DBeaver) - CSS 变量文件 pipexerp-variables.css - 品牌条样式 pipexerp-brand-bar.css - 品牌 Header 模板 - 更新导航页 nav-home.html - 企业区域配色改为企业绿 #52c41a - 更新标题和 Logo 为 PipexERP - 添加 favicon 引用 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
20 lines
943 B
XML
20 lines
943 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 280 40">
|
|
<defs>
|
|
<linearGradient id="brandGradient" x1="0%" y1="0%" x2="100%" y2="0%">
|
|
<stop offset="0%" style="stop-color:#52c41a"/>
|
|
<stop offset="100%" style="stop-color:#389e0d"/>
|
|
</linearGradient>
|
|
</defs>
|
|
<!-- Logo Icon -->
|
|
<g transform="translate(0, 4)">
|
|
<!-- Hexagon shape representing enterprise/tech -->
|
|
<path d="M16 0 L28 8 L28 24 L16 32 L4 24 L4 8 Z" fill="url(#brandGradient)"/>
|
|
<!-- Inner P letter -->
|
|
<path d="M12 8 L12 24 L15 24 L15 18 L20 18 C23 18 25 16 25 13 C25 10 23 8 20 8 Z M15 11 L19 11 C21 11 22 12 22 13 C22 14 21 15 19 15 L15 15 Z" fill="white"/>
|
|
</g>
|
|
<!-- PipexERP Text -->
|
|
<text x="40" y="28" font-family="'Segoe UI', 'SF Pro Display', -apple-system, sans-serif" font-size="24" font-weight="700" fill="#333333">
|
|
<tspan fill="url(#brandGradient)">Pipex</tspan><tspan fill="#333333">ERP</tspan>
|
|
</text>
|
|
</svg>
|