14 lines
592 B
XML
14 lines
592 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200">
|
|
<defs>
|
|
<linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" stop-color="#032340" />
|
|
<stop offset="100%" stop-color="#0c3c66" />
|
|
</linearGradient>
|
|
</defs>
|
|
<rect width="200" height="200" fill="url(#grad)" />
|
|
<!-- Circle for head -->
|
|
<circle cx="100" cy="82" r="32" fill="#CD9E53" />
|
|
<!-- Path for shoulders/torso -->
|
|
<path d="M40 165 C 40 130, 70 122, 100 122 C 130 122, 160 130, 160 165 C 160 175, 150 180, 100 180 C 50 180, 40 175, 40 165 Z" fill="#CD9E53" />
|
|
</svg>
|