Logo Redesign: - Clean, minimal circular badge design - Beautiful gradient background (indigo → purple → cyan) - White outlined icons in Lucide/Heroicons style - Wrench and paintbrush side-by-side - Professional and modern aesthetic Icon Design: - Wrench: Simple outline with open-end head - Paintbrush: Clean brush with bristles and handle - Both icons use consistent 6px stroke width - Smooth entrance animations (slide in from sides) Favicon Update: - Matching circular badge design for 64x64 - Clear visibility at small sizes - Consistent white icons on gradient background - Professional brand identity Colors: - Background gradient: #667eea → #8b5cf6 → #06b6d4 - Icons: Pure white (#ffffff) for maximum contrast - Clean, modern, accessible design Animations: - Background circle scales in - Wrench slides in from left - Paintbrush slides in from right - Smooth, subtle entrance effects 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
46 lines
1.0 KiB
XML
46 lines
1.0 KiB
XML
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<!-- Background circle -->
|
|
<circle cx="32" cy="32" r="27" fill="url(#bg)"/>
|
|
|
|
<!-- Wrench icon -->
|
|
<g>
|
|
<path
|
|
d="M24 29L27 26M27 26L30 29M27 26V35M22 35H32"
|
|
stroke="white"
|
|
stroke-width="2"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
/>
|
|
</g>
|
|
|
|
<!-- Paintbrush icon -->
|
|
<g>
|
|
<path
|
|
d="M37 29V35M37 35L34 40L37 42L40 40L37 35Z"
|
|
stroke="white"
|
|
stroke-width="2"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
/>
|
|
<rect
|
|
x="35"
|
|
y="27"
|
|
width="4"
|
|
height="5"
|
|
rx="1"
|
|
stroke="white"
|
|
stroke-width="2"
|
|
fill="none"
|
|
/>
|
|
</g>
|
|
|
|
<!-- Gradients -->
|
|
<defs>
|
|
<linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" stop-color="#667eea"/>
|
|
<stop offset="50%" stop-color="#8b5cf6"/>
|
|
<stop offset="100%" stop-color="#06b6d4"/>
|
|
</linearGradient>
|
|
</defs>
|
|
</svg>
|