- Modern robot design with visor - INPI green colors (#22c55e → #14b8a6 gradient) - Glowing eyes effect - Friendly smile - Yellow antenna (north indicator) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
29 lines
1.3 KiB
XML
29 lines
1.3 KiB
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100">
|
|
<defs>
|
|
<linearGradient id="robotGrad" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#22c55e"/>
|
|
<stop offset="100%" style="stop-color:#14b8a6"/>
|
|
</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>
|
|
<!-- Background -->
|
|
<circle cx="50" cy="50" r="45" fill="#1a1a2e"/>
|
|
<!-- Antenna -->
|
|
<path d="M50 18 L50 8" stroke="url(#robotGrad)" stroke-width="3" stroke-linecap="round"/>
|
|
<circle cx="50" cy="6" r="3" fill="#fbbf24" filter="url(#glow)"/>
|
|
<!-- Head -->
|
|
<rect x="20" y="22" width="60" height="52" rx="14" fill="url(#robotGrad)"/>
|
|
<!-- Visor -->
|
|
<rect x="28" y="38" width="44" height="14" rx="7" fill="#0a0a1a"/>
|
|
<!-- Eyes -->
|
|
<rect x="32" y="41" width="12" height="8" rx="4" fill="#4ade80" filter="url(#glow)"/>
|
|
<rect x="56" y="41" width="12" height="8" rx="4" fill="#4ade80" filter="url(#glow)"/>
|
|
<!-- Smile -->
|
|
<path d="M38 60 Q 50 68, 62 60" stroke="#0a0a1a" stroke-width="3" fill="none" stroke-linecap="round"/>
|
|
</svg> |