File size: 2,362 Bytes
fb5556c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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">
  <!-- Background (optional, for display) -->
  <rect width="100%" height="100%" fill="#f8f8f8" />

  <!-- Kitten Body -->
  <ellipse cx="100" cy="120" rx="60" ry="40" fill="#ffcc99" stroke="#d9a773" stroke-width="2" />

  <!-- Kitten Head -->
  <ellipse cx="100" cy="70" rx="50" ry="40" fill="#ffcc99" stroke="#d9a773" stroke-width="2" />

  <!-- Kitten Ears -->
  <path d="M90 30 Q80 10 90 10 Q100 10 90 30" fill="#ffcc99" stroke="#d9a773" stroke-width="2" />
  <path d="M110 30 Q120 10 110 10 Q100 10 110 30" fill="#ffcc99" stroke="#d9a773" stroke-width="2" />

  <!-- Kitten Eyes -->
  <circle cx="85" cy="65" r="5" fill="#333" />
  <circle cx="115" cy="65" r="5" fill="#333" />
  <!-- Eye Highlights -->
  <circle cx="85" cy="65" r="2" fill="white" />
  <circle cx="115" cy="65" r="2" fill="white" />

  <!-- Kitten Nose -->
  <ellipse cx="100" cy="75" rx="6" ry="3" fill="#ff3300" />

  <!-- Kitten Mouth -->
  <path d="M95 80 Q100 83 Q105 80" fill="none" stroke="#000" stroke-width="1" />

  <!-- Kitten Whiskers -->
  <line x1="80" y1="70" x2="80" y2="50" stroke="#000" stroke-width="1" />
  <line x1="83" y1="70" x2="83" y2="50" stroke="#000" stroke-width="1" />
  <line x1="117" y1="70" x2="117" y2="50" stroke="#000" stroke-width="1" />
  <line x1="114" y1="70" x2="114" y2="50" stroke="#000" stroke-width="1" />

  <!-- Kitten Legs -->
  <ellipse cx="70" cy="140" rx="10" ry="20" fill="#ffcc99" stroke="#d9a773" stroke-width="2" />
  <ellipse cx="130" cy="140" rx="10" ry="20" fill="#ffcc99" stroke="#d9a773" stroke-width="2" />
  <ellipse cx="60" cy="150" rx="10" ry="20" fill="#ffcc99" stroke="#d9a773" stroke-width="2" />
  <ellipse cx="140" cy="150" rx="10" ry="20" fill="#ffcc99" stroke="#d9a773" stroke-width="2" />

  <!-- Kitten Tail -->
  <path d="M100 120 Q120 100 130 120 Q140 140 110 160" fill="#ffcc99" stroke="#d9a773" stroke-width="2" />

  <!-- Kitten Paws (optional detail) -->
  <circle cx="70" cy="140" r="6" fill="#ffcc99" />
  <circle cx="130" cy="140" r="6" fill="#ffcc99" />
  <circle cx="60" cy="150" r="6" fill="#ffcc99" />
  <circle cx="140" cy="150" r="6" fill="#ffcc99" />

  <!-- Optional: Cute little heart on chest -->
  <path d="M100 110 Q95 100 100 90 Q105 100 100 110" fill="#ff69b4" stroke="#ff3366" stroke-width="1" />

</svg>