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
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
<!-- Background circle -->
<circle cx="32" cy="32" r="32" fill="#FF6B35"/>
<!-- Chef hat (white puff top) -->
<ellipse cx="32" cy="18" rx="13" ry="11" fill="white"/>
<!-- Hat brim -->
<rect x="19" y="24" width="26" height="7" rx="3" fill="white"/>
<!-- Hat shine -->
<ellipse cx="27" cy="14" rx="4" ry="3" fill="rgba(255,255,255,0.4)"/>
<!-- Face -->
<circle cx="32" cy="42" r="13" fill="#FDDBB4"/>
<!-- Rosy cheeks -->
<circle cx="24" cy="44" r="3.5" fill="#FFB3A7" opacity="0.7"/>
<circle cx="40" cy="44" r="3.5" fill="#FFB3A7" opacity="0.7"/>
<!-- Eyes (cute closed/happy) -->
<path d="M27 40 Q28.5 38 30 40" stroke="#5C3317" stroke-width="1.8" fill="none" stroke-linecap="round"/>
<path d="M34 40 Q35.5 38 37 40" stroke="#5C3317" stroke-width="1.8" fill="none" stroke-linecap="round"/>
<!-- Smile -->
<path d="M27 46 Q32 51 37 46" stroke="#5C3317" stroke-width="1.8" fill="none" stroke-linecap="round"/>
<!-- Little nose dot -->
<circle cx="32" cy="43.5" r="1" fill="#C68642"/>
<!-- Tiny sparkle top right -->
<g fill="white" opacity="0.9">
<polygon points="56,10 57,13 60,13 57.5,15 58.5,18 56,16 53.5,18 54.5,15 52,13 55,13" transform="scale(0.6) translate(38, 4)"/>
</g>
</svg>
|