File size: 3,017 Bytes
30b6bff
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<svg width="500" height="500" viewBox="0 0 500 500" xmlns="http://www.w3.org/2000/svg">
  <!-- Background -->
  <rect width="500" height="500" fill="#f8f8f8" />

  <!-- Kitten Body -->
  <ellipse cx="250" cy="280" rx="100" ry="80" fill="#ffdd99" stroke="#ffa500" stroke-width="2" />

  <!-- Kitten Head -->
  <ellipse cx="250" cy="200" rx="70" ry="60" fill="#ffdd99" stroke="#ffa500" stroke-width="2" />

  <!-- Ears -->
  <polygon points="220,160 230,140 250,150 270,140 280,160 270,180 250,170 230,180" fill="#d4a062" stroke="#a0522d" stroke-width="1" />
  <polygon points="270,160 280,140 300,150 320,140 330,160 320,180 300,170 280,180" fill="#d4a062" stroke="#a0522d" stroke-width="1" />

  <!-- Whiskers -->
  <line x1="290" y1="210" x2="330" y2="205" stroke="black" stroke-width="1" />
  <line x1="290" y1="215" x2="330" y2="210" stroke="black" stroke-width="1" />
  <line x1="290" y1="220" x2="330" y2="215" stroke="black" stroke-width="1" />
  <line x1="210" y1="210" x2="170" y2="205" stroke="black" stroke-width="1" />
  <line x1="210" y1="215" x2="170" y2="210" stroke="black" stroke-width="1" />
  <line x1="210" y1="220" x2="170" y2="215" stroke="black" stroke-width="1" />

  <!-- Eyes -->
  <ellipse cx="230" cy="185" rx="12" ry="15" fill="#ffffff" stroke="black" stroke-width="1" />
  <ellipse cx="270" cy="185" rx="12" ry="15" fill="#ffffff" stroke="black" stroke-width="1" />

  <!-- Pupils -->
  <circle cx="230" cy="185" r="6" fill="#000000" />
  <circle cx="270" cy="185" r="6" fill="#000000" />

  <!-- Highlights in eyes -->
  <circle cx="235" cy="180" r="2" fill="#ffffff" />
  <circle cx="275" cy="180" r="2" fill="#ffffff" />

  <!-- Nose -->
  <circle cx="250" cy="205" r="5" fill="#ff8c00" />

  <!-- Mouth -->
  <path d="M245 215 Q250 220 255 215" stroke="black" stroke-width="2" fill="none" />

  <!-- Paws -->
  <ellipse cx="220" cy="350" rx="15" ry="10" fill="#ffdd99" />
  <ellipse cx="280" cy="350" rx="15" ry="10" fill="#ffdd99" />
  <ellipse cx="250" cy="380" rx="10" ry="15" fill="#ffdd99" />

  <!-- Tail -->
  <path d="M340 290 Q360 300 350 330 Q340 360 320 370" fill="none" stroke="#ffa500" stroke-width="5" />
  <path d="M340 290 Q360 300 350 330 Q340 360 320 370" fill="none" stroke="#ffa500" stroke-width="2" stroke-dasharray="5,5" />

  <!-- Fur Texture -->
  <g stroke="#ffa500" stroke-width="1">
    <line x1="240" y1="210" x2="235" y2="200" />
    <line x1="260" y1="210" x2="265" y2="200" />
    <line x1="245" y1="220" x2="240" y2="230" />
    <line x1="255" y1="220" x2="260" y2="230" />
    <line x1="250" y1="235" x2="245" y2="245" />
    <line x1="250" y1="235" x2="255" y2="245" />
    <line x1="230" y1="270" x2="225" y2="280" />
    <line x1="270" y1="270" x2="275" y2="280" />
  </g>

  <!-- Shadow under kitten -->
  <ellipse cx="250" cy="320" rx="100" ry="20" fill="rgba(0,0,0,0.1)" />

  <!-- Text (Optional: "Meow!") -->
  <text x="250" y="430" font-family="Arial" font-size="24" fill="#8b4513" text-anchor="middle" font-style="italic">Meow!</text>
</svg>