File size: 2,108 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
<svg width="300" height="300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background -->
  <rect width="100%" height="100%" fill="#f8f8f8" />

  <!-- Kitten Body -->
  <ellipse cx="150" cy="150" rx="60" ry="50" fill="#ffd9c2" stroke="#d6a98f" stroke-width="2" />

  <!-- Kitten Head -->
  <ellipse cx="150" cy="80" rx="40" ry="35" fill="#ffd9c2" stroke="#d6a98f" stroke-width="2" />

  <!-- Kitten Ears -->
  <path d="M110 70 Q105 60 115 60 L125 70 Z" fill="#ffd9c2" stroke="#d6a98f" stroke-width="2" />
  <path d="M190 70 Q195 60 185 60 L175 70 Z" fill="#ffd9c2" stroke="#d6a98f" stroke-width="2" />

  <!-- Kitten Eyes -->
  <circle cx="130" cy="85" r="5" fill="#333" />
  <circle cx="170" cy="85" r="5" fill="#333" />

  <!-- Kitten Eye Highlights -->
  <circle cx="130" cy="85" r="2" fill="white" />
  <circle cx="170" cy="85" r="2" fill="white" />

  <!-- Kitten Nose -->
  <ellipse cx="150" cy="100" rx="6" ry="4" fill="#ff6633" />

  <!-- Kitten Whiskers -->
  <line x1="140" y1="90" x2="130" y2="75" stroke="#000" stroke-width="1.5" />
  <line x1="140" y1="90" x2="150" y2="75" stroke="#000" stroke-width="1.5" />
  <line x1="160" y1="90" x2="170" y2="75" stroke="#000" stroke-width="1.5" />
  <line x1="160" y1="90" x2="150" y2="75" stroke="#000" stroke-width="1.5" />

  <!-- Kitten Paws -->
  <ellipse cx="120" cy="180" rx="15" ry="10" fill="#ffd9c2" stroke="#d6a98f" stroke-width="1" />
  <ellipse cx="180" cy="180" rx="15" ry="10" fill="#ffd9c2" stroke="#d6a98f" stroke-width="1" />
  <ellipse cx="150" cy="220" rx="15" ry="10" fill="#ffd9c2" stroke="#d6a98f" stroke-width="1" />

  <!-- Kitten Tail -->
  <path d="M150 150 Q160 130 170 110 Q180 90 185 70" fill="none" stroke="#d6a98f" stroke-width="4" stroke-linecap="round" />

  <!-- Kitten Smile -->
  <path d="M145 105 Q150 108 155 105" fill="none" stroke="#ff6633" stroke-width="2" />

  <!-- Kitten Collar (optional) -->
  <ellipse cx="150" cy="105" rx="20" ry="8" fill="none" stroke="#ff6633" stroke-width="2" />

  <!-- Kitten Collar Bow -->
  <path d="M140 105 L145 110 L150 105 L155 110 L160 105" fill="#ff6633" stroke="none" />
</svg>