File size: 2,442 Bytes
e756d26 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | <svg width="200" height="200" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
<!-- Kitten body -->
<ellipse cx="100" cy="140" rx="50" ry="45" fill="#f5d5a0" stroke="#e6c588" stroke-width="2"/>
<!-- Kitten head -->
<circle cx="100" cy="80" r="45" fill="#f5d5a0" stroke="#e6c588" stroke-width="2"/>
<!-- Left ear -->
<path d="M60,60 L45,40 L55,55 Z" fill="#f5d5a0" stroke="#e6c588" stroke-width="2"/>
<path d="M55,50 L50,42 L58,48 Z" fill="#ffb6c1"/>
<!-- Right ear -->
<path d="M140,60 L155,40 L145,55 Z" fill="#f5d5a0" stroke="#e6c588" stroke-width="2"/>
<path d="M145,50 L150,42 L142,48 Z" fill="#ffb6c1"/>
<!-- Eyes -->
<ellipse cx="80" cy="75" rx="12" ry="15" fill="#333"/>
<ellipse cx="120" cy="75" rx="12" ry="15" fill="#333"/>
<ellipse cx="83" cy="72" rx="5" ry="7" fill="white"/>
<ellipse cx="123" cy="72" rx="5" ry="7" fill="white"/>
<!-- Nose -->
<path d="M100,85 L95,95 L105,95 Z" fill="#ffb6c1"/>
<!-- Mouth -->
<path d="M100,95 Q90,100 80,95" fill="none" stroke="#333" stroke-width="2" stroke-linecap="round"/>
<path d="M100,95 Q110,100 120,95" fill="none" stroke="#333" stroke-width="2" stroke-linecap="round"/>
<!-- Whiskers -->
<line x1="40" y1="90" x2="70" y2="85" stroke="#333" stroke-width="1.5" stroke-linecap="round"/>
<line x1="40" y1="100" x2="70" y2="100" stroke="#333" stroke-width="1.5" stroke-linecap="round"/>
<line x1="130" y1="85" x2="160" y2="90" stroke="#333" stroke-width="1.5" stroke-linecap="round"/>
<line x1="130" y1="100" x2="160" y2="100" stroke="#333" stroke-width="1.5" stroke-linecap="round"/>
<!-- Front paws -->
<ellipse cx="75" cy="160" rx="15" ry="20" fill="#f5d5a0" stroke="#e6c588" stroke-width="2"/>
<ellipse cx="125" cy="160" rx="15" ry="20" fill="#f5d5a0" stroke="#e6c588" stroke-width="2"/>
<!-- Paw pads -->
<ellipse cx="75" cy="160" rx="5" ry="8" fill="#ffb6c1"/>
<ellipse cx="125" cy="160" rx="5" ry="8" fill="#ffb6c1"/>
<!-- Tail -->
<path d="M150,140 Q170,120 165,100" fill="none" stroke="#f5d5a0" stroke-width="15" stroke-linecap="round"/>
<path d="M150,140 Q170,120 165,100" fill="none" stroke="#e6c588" stroke-width="2" stroke-linecap="round"/>
<!-- Fur details -->
<circle cx="70" cy="60" r="3" fill="#e6c588"/>
<circle cx="130" cy="60" r="3" fill="#e6c588"/>
<circle cx="65" cy="90" r="3" fill="#e6c588"/>
<circle cx="135" cy="90" r="3" fill="#e6c588"/>
</svg> |