SVG Cat 63070057
✨ L. Whitewolf
<html> <head> <title>Let's Start </title> <style> body{ background:#333; margin:1em; font-family:sans-serif; } svg{ background:#F9F2D7; } </style> </head> <body> <svg viewBox="0 0 40 40"> <path d="M5 3 L5 20 L25 20 Z" fill="#e9cba7" /> <path d="M35 3 L35 20 L15 20 Z" fill="#e9cba7" /> <path d="M6 5 L6 20 L23 20 Z" fill="#d2b897" /> <path d="M34 5 L34 20 L17 20 Z" fill="#d2b897" /> <rect width="30" height="23" x="5" y="11" fill="#e9cba7" /> <ellipse cx="20" cy="11.5" fill="#e9cba7" rx="15" ry="1" /> <line x1="17.5" y1="11" x2="17.5" y2="14" stroke="#bea98c" stroke-width="1" stroke-linecap="round" /> <line x1="20" y1="11.25" x2="20" y2="16" stroke="#bea98c" stroke-width="1.5" stroke-linecap="round" /> <line x1="22.5" y1="11.125" x2="22.5" y2="15" stroke="#bea98c" stroke-width="1.25" stroke-linecap="round" /> <line x1="6" y1="34" x2="34" y2="34" stroke="#e9cba7" stroke-width="2" stroke-linecap="round" /> <circle cx="14" cy="20" r="2" fill="#554c43" /> <circle cx="13.25" cy="19.25" r="1" fill="white" /> <circle cx="26" cy="20" r="2" fill="#554c43" /> <circle cx="25.25" cy="19.25" r="1" fill="white" /> <circle cx="20" cy="40" fill="#f3e7d1" r="10" /> <rect width="20" height="15" x="10" y="35" fill="#F9F2D7"/> <ellipse cx="20" cy="26" fill="#ef929f" rx="2" ry="2"> <animate attributeName="rx" values="2;2;3;2;2" dur="4s" repeatCount="indefinite" /> <animate attributeName="ry" values="1;1;2;1;1" dur="5s" repeatCount="indefinite" /> </ellipse> <svg y="1"> <line x1="3" y1="20" x2="12" y2="23" stroke="#d3b998" stroke-width="0.5" stroke-linecap="round" /> <line x1="3" y1="25" x2="12" y2="25" stroke="#d3b998" stroke-width="0.5" stroke-linecap="round" /> <line x1="3" y1="30" x2="12" y2="27" stroke="#d3b998" stroke-width="0.5" stroke-linecap="round" /> <line x1="28" y1="23" x2="37" y2="20" stroke="#d3b998" stroke-width="0.5" stroke-linecap="round" /> <line x1="28" y1="25" x2="37" y2="25" stroke="#d3b998" stroke-width="0.5" stroke-linecap="round" /> <line x1="28" y1="27" x2="37" y2="30" stroke="#d3b998" stroke-width="0.5" stroke-linecap="round" /> </svg> <!-- Grid --> <defs> <pattern id="grid" viewBox="0,0,10,10" width="1%" height="1%"> <rect fill="#0001" width="1" height="10" x="1" y="0"/> <rect fill="#0001" width="1" height="10" x="3" y="0"/> <rect fill="#0001" width="1" height="10" x="5" y="0"/> <rect fill="#0001" width="1" height="10" x="7" y="0"/> <rect fill="#0001" width="1" height="10" x="9" y="0"/> <rect fill="#0001" width="10" height="1" x="0" y="1"/> <rect fill="#0001" width="10" height="1" x="0" y="3"/> <rect fill="#0001" width="10" height="1" x="0" y="5"/> <rect fill="#0001" width="10" height="1" x="0" y="7"/> <rect fill="#0001" width="10" height="1" x="0" y="9"/> <path d="M0 0 h10 L9 1 h-8 v8 L0 10 z" fill="#ff05"/> <path d="M10 10 h-10 L1 9 h8 v-8 L10 0 z" fill="#0f05"/> <rect fill="#0002" width="10" height=".1" x="0" y="9.9"/> <rect fill="#0002" width="10" height=".1" x="0" y="0"/> <rect fill="#0002" height="10" width=".1" y="0" x="9.9"/> <rect fill="#0002" height="10" width=".1" y="0" x="0"/> </pattern> </defs> <!-- <rect fill="url(#grid)" width="1000" height="1000" x="0" y="0"/> --> </svg> </body> </html>