26 lines
967 B
XML
26 lines
967 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" width="120" height="120">
|
|
<defs>
|
|
<radialGradient id="armGradient" cx="70%" 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>
|
|
|
|
<!-- Right arm - stubby sausage shape reaching up and out (mirrored) -->
|
|
<path d="M 0 90
|
|
Q 20 85 40 60
|
|
Q 55 40 70 25
|
|
Q 80 15 90 20
|
|
Q 100 25 95 40
|
|
Q 90 55 70 70
|
|
Q 50 85 25 95
|
|
Q 10 100 0 95
|
|
Z"
|
|
fill="url(#armGradient)" filter="url(#armShadow)"/>
|
|
|
|
<!-- Arm highlight -->
|
|
<path d="M 30 70 Q 50 50 65 35" stroke="#FFCC80" stroke-width="8" fill="none" stroke-linecap="round" opacity="0.4"/>
|
|
</svg>
|