26 lines
960 B
XML
26 lines
960 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" width="120" height="120">
|
|
<defs>
|
|
<radialGradient id="armGradient" cx="30%" cy="30%" r="70%">
|
|
<stop offset="0%" stop-color="#FFB347"/>
|
|
<stop offset="100%" stop-color="#FF8C00"/>
|
|
</radialGradient>
|
|
<filter id="armShadow" x="-20%" y="-20%" width="140%" height="140%">
|
|
<feDropShadow dx="1" dy="2" stdDeviation="2" flood-color="#000000" flood-opacity="0.2"/>
|
|
</filter>
|
|
</defs>
|
|
|
|
<!-- Left arm - stubby sausage shape reaching up and out -->
|
|
<path d="M 120 90
|
|
Q 100 85 80 60
|
|
Q 65 40 50 25
|
|
Q 40 15 30 20
|
|
Q 20 25 25 40
|
|
Q 30 55 50 70
|
|
Q 70 85 95 95
|
|
Q 110 100 120 95
|
|
Z"
|
|
fill="url(#armGradient)" filter="url(#armShadow)"/>
|
|
|
|
<!-- Arm highlight -->
|
|
<path d="M 90 70 Q 70 50 55 35" stroke="#FFCC80" stroke-width="8" fill="none" stroke-linecap="round" opacity="0.4"/>
|
|
</svg>
|