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

  <!-- Kitten body -->
  <circle cx="200" cy="250" r="80" fill="#e6c2ff" stroke="#c299ff" stroke-width="3" />
  
  <!-- Kitten head -->
  <circle cx="200" cy="170" r="60" fill="#d9b3ff" stroke="#b37fff" stroke-width="3" />
  
  <!-- Ears -->
  <polygon points="160,110 180,70 200,110" fill="#e6c2ff" stroke="#c299ff" stroke-width="2" />
  <polygon points="240,110 220,70 200,110" fill="#e6c2ff" stroke="#c299ff" stroke-width="2" />
  
  <!-- Ear inner details -->
  <circle cx="175" cy="85" r="10" fill="#f2d9ff" />
  <circle cx="225" cy="85" r="10" fill="#f2d9ff" />
  
  <!-- Eyes -->
  <circle cx="170" cy="165" r="8" fill="white" stroke="#333" stroke-width="2" />
  <circle cx="230" cy="165" r="8" fill="white" stroke="#333" stroke-width="2" />
  <circle cx="170" cy="165" r="4" fill="black" />
  <circle cx="230" cy="165" r="4" fill="black" />
  
  <!-- Pupils -->
  <circle cx="170" cy="165" r="2" fill="white" />
  <circle cx="230" cy="165" r="2" fill="white" />
  
  <!-- Nose -->
  <circle cx="200" cy="190" r="6" fill="#ff9999" stroke="#cc6666" stroke-width="2" />
  <circle cx="200" cy="190" r="2" fill="#333" />
  
  <!-- Whiskers -->
  <line x1="160" y1="190" x2="130" y2="175" stroke="#888" stroke-width="1" />
  <line x1="160" y1="190" x2="130" y2="190" stroke="#888" stroke-width="1" />
  <line x1="160" y1="190" x2="130" y2="205" stroke="#888" stroke-width="1" />
  <line x1="240" y1="190" x2="270" y2="175" stroke="#888" stroke-width="1" />
  <line x1="240" y1="190" x2="270" y2="190" stroke="#888" stroke-width="1" />
  <line x1="240" y1="190" x2="270" y2="205" stroke="#888" stroke-width="1" />
  
  <!-- Mouth -->
  <path d="M190 205 C190 215, 210 215, 210 205" fill="none" stroke="#333" stroke-width="2" />
  
  <!-- Legs -->
  <path d="M140 270 C140 300, 120 320, 120 350" fill="none" stroke="#e6c2ff" stroke-width="10" stroke-linecap="round" />
  <path d="M260 270 C260 300, 280 320, 280 350" fill="none" stroke="#e6c2ff" stroke-width="10" stroke-linecap="round" />
  
  <!-- Tail -->
  <path d="M120 250 C80 200, 120 150, 140 130" fill="none" stroke="#e6c2ff" stroke-width="8" stroke-linecap="round" />
  <circle cx="150" cy="120" r="5" fill="#e6c2ff" />
  
  <!-- Fur highlights -->
  <ellipse cx="200" cy="120" rx="40" ry="20" fill="#f0e6ff" opacity="0.6" />
  <ellipse cx="150" cy="130" rx="25" ry="15" fill="#f0e6ff" opacity="0.6" />
  <ellipse cx="250" cy="130" rx="25" ry="15" fill="#f0e6ff" opacity="0.6" />
  <ellipse cx="120" cy="230" rx="15" ry="10" fill="#f0e6ff" opacity="0.6" />
  <ellipse cx="280" cy="230" rx="15" ry="10" fill="#f0e6ff" opacity="0.6" />
  
  <!-- Shadow -->
  <ellipse cx="200" cy="330" rx="90" ry="20" fill="#9966ff" opacity="0.3" />
</svg>