17 lines
687 B
XML
17 lines
687 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" width="120" height="120">
|
|
<defs>
|
|
<!-- Matching the face colors -->
|
|
<linearGradient id="neckGradient" x1="0%" y1="0%" x2="100%" y2="0%">
|
|
<stop offset="0%" stop-color="#CC9900"/>
|
|
<stop offset="30%" stop-color="#FFCC00"/>
|
|
<stop offset="70%" stop-color="#FFCC00"/>
|
|
<stop offset="100%" stop-color="#CC9900"/>
|
|
</linearGradient>
|
|
</defs>
|
|
|
|
<!-- Neck - cylindrical shape connecting to torso below -->
|
|
<rect x="42" y="0" width="36" height="120" fill="url(#neckGradient)"/>
|
|
|
|
<!-- Subtle center highlight -->
|
|
<rect x="52" y="0" width="16" height="120" fill="#FFE566" opacity="0.3"/>
|
|
</svg>
|