File size: 3,029 Bytes
590cdce |
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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
<svg width="300" height="300" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="furGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#F0F0F0" />
<stop offset="50%" stop-color="#E0E0E0" />
<stop offset="100%" stop-color="#D0D0D0" />
</linearGradient>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="#F5F5F5" />
<!-- Kitten Body -->
<path d="M150,150 C130,160 120,180 110,210 C110,240 120,270 150,280 C180,270 190,240 190,210 C190,180 180,160 150,150"
fill="url(#furGradient)" stroke="#B0B0B0" stroke-width="1" />
<!-- Head -->
<path d="M150,150 C140,120 120,120 110,140 C110,170 120,190 130,190 C140,190 140,170 150,150"
fill="url(#furGradient)" stroke="#B0B0B0" stroke-width="1" />
<!-- Ears -->
<path d="M120,140 C110,120 120,100 130,120 C130,140 120,140 120,140"
fill="#E0E0E0" stroke="#B0B0B0" stroke-width="1" />
<path d="M180,140 C190,120 180,100 170,120 C170,140 180,140 180,140"
fill="#E0E0E0" stroke="#B0B0B0" stroke-width="1" />
<!-- Eyes -->
<circle cx="135" cy="130" r="10" fill="#FFFFFF" />
<circle cx="165" cy="130" r="10" fill="#FFFFFF" />
<circle cx="135" cy="130" r="5" fill="#000000" />
<circle cx="165" cy="130" r="5" fill="#000000" />
<circle cx="135" cy="125" r="2" fill="#000000" />
<circle cx="165" cy="125" r="2" fill="#000000" />
<!-- Nose -->
<circle cx="150" cy="155" r="5" fill="#FFC0C0" />
<!-- Whiskers -->
<line x1="135" y1="160" x2="110" y2="160" stroke="#000000" stroke-width="1" />
<line x1="165" y1="160" x2="190" y2="160" stroke="#000000" stroke-width="1" />
<line x1="135" y1="165" x2="110" y2="170" stroke="#000000" stroke-width="1" />
<line x1="165" y1="165" x2="190" y2="170" stroke="#000000" stroke-width="1" />
<!-- Mouth -->
<path d="M150,170 C155,175 155,180 150,185" fill="#FFFFFF" stroke="#000000" stroke-width="1" />
<!-- Tail -->
<path d="M190,210 C210,220 200,240 180,250 C170,260 150,260 150,250"
fill="url(#furGradient)" stroke="#B0B0B0" stroke-width="1" />
<!-- Paws -->
<circle cx="140" cy="275" r="10" fill="#E0E0E0" />
<circle cx="160" cy="275" r="10" fill="#E0E0E0" />
<circle cx="140" cy="220" r="10" fill="#E0E0E0" />
<circle cx="160" cy="220" r="10" fill="#E0E0E0" />
<!-- Shadow -->
<rect x="140" y="270" width="20" height="10" fill="#D0D0D0" />
<rect x="140" y="210" width="20" height="10" fill="#D0D0D0" />
<!-- Cat's Whiskers -->
<line x1="140" y1="155" x2="120" y2="155" stroke="#000000" stroke-width="1" />
<line x1="160" y1="155" x2="180" y2="155" stroke="#000000" stroke-width="1" />
<line x1="140" y1="160" x2="120" y2="160" stroke="#000000" stroke-width="1" />
<line x1="160" y1="160" x2="180" y2="160" stroke="#000000" stroke-width="1" />
<!-- Cute Paw Prints (Optional) -->
<path d="M110,250 C100,240 110,230 110,240" fill="#E0E0E0" />
<path d="M190,250 C200,240 190,230 190,240" fill="#E0E0E0" />
</svg>
|