favicon.svg 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="32" height="32">
  2. <!-- Cat face background -->
  3. <circle cx="16" cy="16" r="14" fill="#f5f5f5" stroke="#333" stroke-width="1"/>
  4. <!-- Cat ears -->
  5. <polygon points="8,8 12,2 16,8" fill="#f5f5f5" stroke="#333" stroke-width="1"/>
  6. <polygon points="16,8 20,2 24,8" fill="#f5f5f5" stroke="#333" stroke-width="1"/>
  7. <!-- Inner ears -->
  8. <polygon points="9,7 11,4 13,7" fill="#ffb3d9"/>
  9. <polygon points="19,7 21,4 23,7" fill="#ffb3d9"/>
  10. <!-- Eyes -->
  11. <ellipse cx="12" cy="14" rx="2" ry="3" fill="#333"/>
  12. <ellipse cx="20" cy="14" rx="2" ry="3" fill="#333"/>
  13. <!-- Eye highlights -->
  14. <ellipse cx="12.5" cy="13" rx="0.5" ry="1" fill="white"/>
  15. <ellipse cx="20.5" cy="13" rx="0.5" ry="1" fill="white"/>
  16. <!-- Nose -->
  17. <polygon points="16,18 14,20 18,20" fill="#ffb3d9"/>
  18. <!-- Mouth -->
  19. <path d="M 16 20 Q 13 22 11 20" stroke="#333" stroke-width="1" fill="none"/>
  20. <path d="M 16 20 Q 19 22 21 20" stroke="#333" stroke-width="1" fill="none"/>
  21. <!-- Whiskers -->
  22. <line x1="6" y1="16" x2="10" y2="15" stroke="#333" stroke-width="1"/>
  23. <line x1="6" y1="18" x2="10" y2="18" stroke="#333" stroke-width="1"/>
  24. <line x1="22" y1="15" x2="26" y2="16" stroke="#333" stroke-width="1"/>
  25. <line x1="22" y1="18" x2="26" y2="18" stroke="#333" stroke-width="1"/>
  26. </svg>