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

  <!-- Kitten Body -->
  <ellipse cx="150" cy="160" rx="60" ry="40" fill="#ffd7a8" stroke="#d4a017" stroke-width="2" />

  <!-- Kitten Head -->
  <ellipse cx="150" cy="100" rx="50" ry="40" fill="#ffd7a8" stroke="#d4a017" stroke-width="2" />

  <!-- Kitten Ears -->
  <path d="M120 60 Q100 40 110 30 Q130 40 140 60" fill="#ffd7a8" stroke="#d4a017" stroke-width="2" />
  <path d="M180 60 Q200 40 190 30 Q170 40 160 60" fill="#ffd7a8" stroke="#d4a017" stroke-width="2" />

  <!-- Kitten Eyes -->
  <circle cx="135" cy="85" r="6" fill="#333" />
  <circle cx="175" cy="85" r="6" fill="#333" />
  <circle cx="135" cy="85" r="2" fill="white" />
  <circle cx="175" cy="85" r="2" fill="white" />

  <!-- Kitten Nose -->
  <ellipse cx="150" cy="100" rx="5" ry="3" fill="#ff6b6b" />

  <!-- Kitten Whiskers -->
  <line x1="135" y1="90" x2="135" y2="70" stroke="#333" stroke-width="1" />
  <line x1="135" y1="90" x2="135" y2="110" stroke="#333" stroke-width="1" />
  <line x1="175" y1="90" x2="175" y2="70" stroke="#333" stroke-width="1" />
  <line x1="175" y1="90" x2="175" y2="110" stroke="#333" stroke-width="1" />

  <!-- Kitten Paws -->
  <ellipse cx="110" cy="190" rx="15" ry="10" fill="#ffd7a8" stroke="#d4a017" stroke-width="1" />
  <ellipse cx="190" cy="190" rx="15" ry="10" fill="#ffd7a8" stroke="#d4a017" stroke-width="1" />
  <ellipse cx="150" cy="230" rx="10" ry="8" fill="#ffd7a8" stroke="#d4a017" stroke-width="1" />

  <!-- Kitten Tail -->
  <path d="M150 160 Q160 180 170 160 Q180 140 170 120 Q160 100 150 120" fill="none" stroke="#d4a017" stroke-width="3" />

  <!-- Kitten Smile -->
  <path d="M135 115 Q150 125 Q165 115" fill="none" stroke="#d4a017" stroke-width="1" />

  <!-- Kitten Collar (optional) -->
  <ellipse cx="150" cy="110" rx="10" ry="5" fill="none" stroke="#ff6b6b" stroke-width="2" />
  <circle cx="150" cy="110" r="2" fill="#ff6b6b" />

  <!-- Kitten Sparkle (optional) -->
  <circle cx="155" cy="80" r="2" fill="white" opacity="0.7" />
  <circle cx="145" cy="80" r="2" fill="white" opacity="0.7" />
</svg>