13 lines
754 B
XML
13 lines
754 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
|
|
<defs>
|
|
<linearGradient id="chestGrad" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#f6d365;stop-opacity:1" />
|
|
<stop offset="100%" style="stop-color:#fda085;stop-opacity:1" />
|
|
</linearGradient>
|
|
</defs>
|
|
<path d="M15 40 L85 40 L80 80 L20 80 Z" fill="#8B4513" stroke="#333" stroke-width="2"/>
|
|
<path d="M15 40 Q50 10 85 40" fill="url(#chestGrad)" stroke="#333" stroke-width="2"/>
|
|
<rect x="45" y="35" width="10" height="15" rx="2" fill="#FFD700" stroke="#333" stroke-width="1"/>
|
|
<circle cx="30" cy="20" r="5" fill="#fff" opacity="0.8"/>
|
|
<circle cx="70" cy="25" r="4" fill="#fff" opacity="0.6"/>
|
|
</svg> |