Back

SVG Drawing Match #2306

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A flying toaster chasing a bagel through a rainbow."

SVG by Claude 3.7 Sonnet Thinking (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Definitions for reusable elements -->
  <defs>
    <!-- Rainbow gradient -->
    <linearGradient id="rainbowGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#ff0000" />
      <stop offset="16.6%" stop-color="#ff9900" />
      <stop offset="33.3%" stop-color="#ffff00" />
      <stop offset="50%" stop-color="#00ff00" />
      <stop offset="66.6%" stop-color="#0099ff" />
      <stop offset="83.3%" stop-color="#6633ff" />
      <stop offset="100%" stop-color="#ff00ff" />
    </linearGradient>
    
    <!-- Sky gradient -->
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#1e90ff" />
      <stop offset="100%" stop-color="#87ceeb" />
    </linearGradient>
    
    <!-- Toaster chrome gradient -->
    <linearGradient id="chromeGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ffffff" />
      <stop offset="50%" stop-color="#dddddd" />
      <stop offset="100%" stop-color="#aaaaaa" />
    </linearGradient>
    
    <!-- Bagel texture -->
    <radialGradient id="bagelGradient" cx="50%" cy="50%" r="50%" fx="30%" fy="30%">
      <stop offset="0%" stop-color="#deb887" />
      <stop offset="80%" stop-color="#b8860b" />
      <stop offset="100%" stop-color="#8b4513" />
    </radialGradient>
    
    <!-- Bagel hole gradient -->
    <radialGradient id="holeGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#87ceeb" />
      <stop offset="100%" stop-color="#1e90ff" />
    </radialGradient>
    
    <!-- Toast gradient -->
    <linearGradient id="toastGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#f5deb3" />
      <stop offset="30%" stop-color="#deb887" />
      <stop offset="60%" stop-color="#d2691e" />
      <stop offset="100%" stop-color="#8b4513" />
    </linearGradient>
    
    <!-- Wing blur filter -->
    <filter id="wingBlur" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur in="SourceGraphic" stdDeviation="2" />
    </filter>
    
    <!-- Motion blur filter -->
    <filter id="motionBlur" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur in="SourceGraphic" stdDeviation="3" />
    </filter>
    
    <!-- Motion lines pattern -->
    <pattern id="motionLines" patternUnits="userSpaceOnUse" width="20" height="10" patternTransform="rotate(30)">
      <line x1="0" y1="5" x2="20" y2="5" stroke="#ffffff" stroke-width="2" stroke-opacity="0.5" />
    </pattern>
    
    <!-- Sparkle filter -->
    <filter id="sparkle" x="-50%" y="-50%" width="200%" height="200%">
      <feTurbulence type="fractalNoise" baseFrequency="0.1" numOctaves="3" seed="5" />
      <feDisplacementMap in="SourceGraphic" scale="5" />
    </filter>
    
    <!-- Flying particle -->
    <radialGradient id="particleGlow" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#ffffff" />
      <stop offset="100%" stop-color="#ffffff" stop-opacity="0" />
    </radialGradient>
    
    <!-- Crumb texture -->
    <pattern id="crumbPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="2" cy="2" r="0.5" fill="#8b4513" opacity="0.6" />
      <circle cx="7" cy="5" r="0.6" fill="#8b4513" opacity="0.6" />
      <circle cx="4" cy="9" r="0.4" fill="#8b4513" opacity="0.6" />
    </pattern>
  </defs>

  <!-- Background gradient -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Small stars in background -->
  <g opacity="0.7">
    <circle cx="30" cy="30" r="1" fill="white" />
    <circle cx="70" cy="20" r="1.2" fill="white" />
    <circle cx="120" cy="40" r="0.8" fill="white" />
    <circle cx="170" cy="25" r="1" fill="white" />
    <circle cx="220" cy="35" r="1.2" fill="white" />
    <circle cx="260" cy="15" r="0.9" fill="white" />
    <circle cx="290" cy="45" r="1.1" fill="white" />
    <circle cx="50" cy="80" r="0.7" fill="white" />
    <circle cx="90" cy="60" r="1.3" fill="white" />
    <circle cx="270" cy="90" r="0.8" fill="white" />
    <circle cx="220" cy="70" r="0.9" fill="white" />
  </g>
  
  <!-- Rainbow arcs -->
  <path d="M -50,250 C 50,100 250,100 350,250" stroke="url(#rainbowGradient)" stroke-width="25" fill="none" stroke-opacity="0.8" />
  <path d="M -50,220 C 50,70 250,70 350,220" stroke="url(#rainbowGradient)" stroke-width="20" fill="none" stroke-opacity="0.7" />
  <path d="M -50,190 C 50,40 250,40 350,190" stroke="url(#rainbowGradient)" stroke-width="15" fill="none" stroke-opacity="0.6" />
  <path d="M -50,160 C 50,10 250,10 350,160" stroke="url(#rainbowGradient)" stroke-width="10" fill="none" stroke-opacity="0.5" />
  
  <!-- Clouds -->
  <g opacity="0.9">
    <ellipse cx="40" cy="50" rx="20" ry="15" fill="white" fill-opacity="0.8" />
    <ellipse cx="60" cy="45" rx="25" ry="18" fill="white" fill-opacity="0.8" />
    <ellipse cx="30" cy="45" rx="15" ry="12" fill="white" fill-opacity="0.8" />
    
    <ellipse cx="240" cy="70" rx="20" ry="15" fill="white" fill-opacity="0.8" />
    <ellipse cx="260" cy="65" rx="25" ry="18" fill="white" fill-opacity="0.8" />
    <ellipse cx="230" cy="65" rx="15" ry="12" fill="white" fill-opacity="0.8" />
    
    <ellipse cx="150" cy="35" rx="15" ry="10" fill="white" fill-opacity="0.6" />
    <ellipse cx="165" cy="30" rx="18" ry="12" fill="white" fill-opacity="0.6" />
    <ellipse cx="140" cy="30" rx="12" ry="8" fill="white" fill-opacity="0.6" />
  </g>
  
  <!-- Birds in distance -->
  <path d="M 50,100 Q 55,95 60,100 Q 65,95 70,100" fill="none" stroke="#555" stroke-width="1" />
  <path d="M 100,90 Q 105,85 110,90 Q 115,85 120,90" fill="none" stroke="#555" stroke-width="1" />
  <path d="M 280,110 Q 285,105 290,110 Q 295,105 300,110" fill="none" stroke="#555" stroke-width="1" />

  <!-- Flying toaster -->
  <g transform="translate(80, 150) rotate(25)">
    <!-- Toaster motion blur clone (for effect) -->
    <rect x="0" y="0" width="70" height="50" rx="5" ry="5" fill="#dddddd" opacity="0.3" filter="url(#motionBlur)" transform="translate(-8, 0)" />
    
    <!-- Toaster body -->
    <rect x="0" y="0" width="70" height="50" rx="5" ry="5" fill="url(#chromeGradient)" stroke="#444444" stroke-width="2" />
    
    <!-- Toaster slots -->
    <rect x="15" y="10" width="40" height="10" rx="2" ry="2" fill="#333333" />
    
    <!-- Toaster lever -->
    <rect x="60" y="20" width="5" height="15" rx="2" ry="2" fill="#444444" />
    
    <!-- Toaster controls -->
    <circle cx="10" cy="30" r="3" fill="#ff4500" />
    <rect x="20" y="30" width="10" height="2" rx="1" ry="1" fill="#444444" />
    <rect x="35" y="30" width="10" height="2" rx="1" ry="1" fill="#444444" />
    
    <!-- Toaster face -->
    <circle cx="30" cy="40" r="3" fill="white" />
    <circle cx="30" cy="40" r="1.5" fill="#333333" />
    <circle cx="45" cy="40" r="3" fill="white" />
    <circle cx="45" cy="40" r="1.5" fill="#333333" />
    <path d="M 34,45 Q 37.5,47 41,45" fill="none" stroke="#333333" stroke-width="1.5" />
    
    <!-- Toaster wings -->
    <path d="M -10,20 Q -20,25 -10,30 L 0,30 L 0,20 Z" fill="#dddddd" filter="url(#wingBlur)" />
    <path d="M -5,15 Q -15,25 -5,35 L 0,35 L 0,15 Z" fill="#ffffff" filter="url(#wingBlur)" />
    
    <!-- Toaster feet/jets -->
    <rect x="10" y="50" width="10" height="5" rx="2" ry="2" fill="#ff4500" />
    <rect x="50" y="50" width="10" height="5" rx="2" ry="2" fill="#ff4500" />
    
    <!-- Flames from jets -->
    <path d="M 15,55 L 10,65 L 15,60 L 20,65 L 15,55 Z" fill="#ff9900" />
    <path d="M 55,55 L 50,65 L 55,60 L 60,65 L 55,55 Z" fill="#ff9900" />
    
    <!-- Small fire particles -->
    <circle cx="15" cy="70" r="1.5" fill="#ff4500" />
    <circle cx="10" cy="67" r="1" fill="#ff9900" />
    <circle cx="20" cy="68" r="1.2" fill="#ff4500" />
    <circle cx="55" cy="70" r="1.5" fill="#ff4500" />
    <circle cx="50" cy="67" r="1" fill="#ff9900" />
    <circle cx="60" cy="68" r="1.2" fill="#ff4500" />
    
    <!-- Toast popping out -->
    <rect x="20" y="-15" width="30" height="20" rx="2" ry="2" fill="url(#toastGradient)" />
    <line x1="25" y1="-10" x2="45" y2="-10" stroke="#8b4513" stroke-width="0.5" />
    <line x1="25" y1="-5" x2="45" y2="-5" stroke="#8b4513" stroke-width="0.5" />
    <line x1="25" y1="0" x2="45" y2="0" stroke="#8b4513" stroke-width="0.5" />
    <rect x="20" y="-15" width="30" height="20" rx="2" ry="2" fill="url(#crumbPattern)" fill-opacity="0.3" />
    
    <!-- Sparkles around toaster -->
    <circle cx="75" cy="10" r="1" fill="yellow" />
    <circle cx="-5" cy="40" r="1.5" fill="yellow" />
    <circle cx="75" cy="45" r="1.2" fill="yellow" />
    
    <!-- Chrome shine effect -->
    <path d="M 10,5 Q 30,15 50,5" fill="white" opacity="0.3" />
  </g>
  
  <!-- Motion trails -->
  <path d="M 100,170 C 130,160 150,150 180,140" fill="none" stroke="#ffffff" stroke-width="4" stroke-opacity="0.3" stroke-linecap="round" stroke-dasharray="1,10" />
  <path d="M 100,160 C 130,150 150,140 180,130" fill="none" stroke="#ffffff" stroke-width="3" stroke-opacity="0.3" stroke-linecap="round" stroke-dasharray="1,8" />
  
  <!-- Bagel -->
  <g transform="translate(200, 120) rotate(-15)">
    <!-- Motion blur effect -->
    <ellipse cx="0" cy="0" rx="25" ry="25" fill="#deb887" opacity="0.3" filter="url(#motionBlur)" transform="translate(6, 0)" />
    
    <!-- Outer bagel shape -->
    <ellipse cx="0" cy="0" rx="25" ry="25" fill="url(#bagelGradient)" stroke="#8b4513" stroke-width="1" />
    
    <!-- Inner bagel hole -->
    <ellipse cx="0" cy="0" rx="8" ry="8" fill="url(#holeGradient)" />
    
    <!-- Bagel seeds/texture -->
    <circle cx="10" cy="10" r="1.5" fill="#f5f5dc" />
    <circle cx="-15" cy="7" r="1.5" fill="#f5f5dc" />
    <circle cx="0" cy="-12" r="1.5" fill="#f5f5dc" />
    <circle cx="-10" cy="-10" r="1.5" fill="#f5f5dc" />
    <circle cx="15" cy="-5" r="1.5" fill="#f5f5dc" />
    <circle cx="12" cy="-15" r="1.5" fill="#f5f5dc" />
    <circle cx="-12" cy="15" r="1.5" fill="#f5f5dc" />
    <circle cx="5" cy="18" r="1.5" fill="#f5f5dc" />
    <circle cx="-5" cy="-18" r="1.5" fill="#f5f5dc" />
    <circle cx="18" cy="5" r="1.5" fill="#f5f5dc" />
    <circle cx="-18" cy="-5" r="1.5" fill="#f5f5dc" />
    
    <!-- Bagel highlights -->
    <path d="M -10,-10 A 15,15 0 0,1 10,10" fill="none" stroke="#deb887" stroke-width="2" stroke-opacity="0.5" />
    <path d="M -8,-8 A 10,10 0 0,1 8,8" fill="none" stroke="#f5deb3" stroke-width="1.5" stroke-opacity="0.5" />
    
    <!-- Bagel face (scared) -->
    <circle cx="-3" cy="-3" r="2" fill="white" />
    <circle cx="-3" cy="-3" r="1" fill="#333" />
    <circle cx="3" cy="-3" r="2" fill="white" />
    <circle cx="3" cy="-3" r="1" fill="#333" />
    <path d="M -4,4 A 5,5 0 0,0 4,4" fill="none" stroke="#333" stroke-width="1" />
    
    <!-- Small eyebrows to show concern -->
    <path d="M -5,-6 L -1,-5" stroke="#333" stroke-width="0.7" />
    <path d="M 1,-5 L 5,-6" stroke="#333" stroke-width="0.7" />
    
    <!-- Bagel motion lines -->
    <path d="M 30,0 Q 40,-5 45,-2 Q 50,0 55,3" stroke="#ffffff" stroke-width="2" stroke-opacity="0.7" stroke-linecap="round" />
    <path d="M 30,5 Q 40,0 45,3 Q 50,5 55,8" stroke="#ffffff" stroke-width="2" stroke-opacity="0.7" stroke-linecap="round" />
    <path d="M 30,10 Q 40,5 45,8 Q 50,10 55,13" stroke="#ffffff" stroke-width="2" stroke-opacity="0.7" stroke-linecap="round" />
    
    <!-- Panic sweat droplets -->
    <path d="M 5,-18 L 3,-13" stroke="#87ceeb" stroke-width="1" />
    <circle cx="3" cy="-13" r="1" fill="#87ceeb" />
    
    <path d="M -5,-18 L -7,-13" stroke="#87ceeb" stroke-width="1" />
    <circle cx="-7" cy="-13" r="1.2" fill="#87ceeb" />
    
    <path d="M 15,-12 L 17,-7" stroke="#87ceeb" stroke-width="1" />
    <circle cx="17" cy="-7" r="0.8" fill="#87ceeb" />
  </g>
  
  <!-- Additional motion elements and particles -->
  <rect x="120" y="140" width="70" height="30" fill="url(#motionLines)" />
  
  <!-- Rainbow particles -->
  <g>
    <circle cx="180" cy="180" r="3" fill="#ff0000" opacity="0.7" />
    <circle cx="185" cy="175" r="2" fill="#ff9900" opacity="0.7" />
    <circle cx="175" cy="170" r="4" fill="#ffff00" opacity="0.7" />
    <circle cx="190" cy="165" r="2.5" fill="#00ff00" opacity="0.7" />
    <circle cx="180" cy="155" r="3" fill="#0099ff" opacity="0.7" />
    <circle cx="170" cy="150" r="2" fill="#6633ff" opacity="0.7" />
    <circle cx="175" cy="160" r="2.5" fill="#ff00ff" opacity="0.7" />
    <circle cx="160" cy="170" r="1.5" fill="#ff0000" opacity="0.7" />
    <circle cx="165" cy="175" r="2.5" fill="#ffff00" opacity="0.7" />
    <circle cx="155" cy="165" r="2" fill="#00ff00" opacity="0.7" />
  </g>
  
  <!-- Sparkles -->
  <circle cx="170" cy="100" r="3" fill="#ffffff" filter="url(#sparkle)" />
  <circle cx="190" cy="90" r="4" fill="#ffffff" filter="url(#sparkle)" />
  <circle cx="150" cy="110" r="2" fill="#ffffff" filter="url(#sparkle)" />
  <circle cx="210" cy="85" r="2.5" fill="#ffffff" filter="url(#sparkle)" />
  <circle cx="160" cy="80" r="1.5" fill="#ffffff" filter="url(#sparkle)" />
  
  <!-- Glowing particles -->
  <circle cx="135" cy="130" r="2" fill="url(#particleGlow)" />
  <circle cx="145" cy="125" r="3" fill="url(#particleGlow)" />
  <circle cx="160" cy="115" r="2.5" fill="url(#particleGlow)" />
  <circle cx="125" cy="140" r="1.5" fill="url(#particleGlow)" />
  <circle cx="115" cy="135" r="2" fill="url(#particleGlow)" />
  
  <!-- Rainbow intersection glow -->
  <circle cx="150" cy="200" r="15" fill="white" opacity="0.2" filter="url(#sparkle)" />
  
  <!-- Small crumbs falling from the bagel -->
  <circle cx="185" cy="140" r="1" fill="#deb887" />
  <circle cx="195" cy="145" r="0.8" fill="#deb887" />
  <circle cx="188" cy="150" r="1.2" fill="#deb887" />
  <circle cx="205" cy="135" r="0.6" fill="#deb887" />
  
  <!-- Text subtitle styled to match the whimsical theme-->
  <text x="150" y="280" font-family="Comic Sans MS, cursive" font-size="10" fill="#333" text-anchor="middle" opacity="0.8">Flying Toaster: The Great Bagel Chase</text>
</svg>
SVG by o4-mini low (2025-04-16)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <!-- Rainbow Gradient -->
    <linearGradient id="rainbow" x1="0" y1="1" x2="1" y2="0">
      <stop offset="0%" stop-color="#ff0000"/>
      <stop offset="16.6%" stop-color="#ff7f00"/>
      <stop offset="33.3%" stop-color="#ffff00"/>
      <stop offset="50%" stop-color="#00ff00"/>
      <stop offset="66.6%" stop-color="#0000ff"/>
      <stop offset="83.3%" stop-color="#4b0082"/>
      <stop offset="100%" stop-color="#8f00ff"/>
    </linearGradient>
    <!-- Toaster Shine -->
    <radialGradient id="shine" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#fff" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="#fff" stop-opacity="0"/>
    </radialGradient>
    <!-- Wing Feather Pattern -->
    <pattern id="feathers" patternUnits="userSpaceOnUse" width="4" height="4">
      <path d="M0,4 L4,0 M-1,2 L2,-1 M3,5 L5,3" stroke="#fff" stroke-width="0.5"/>
    </pattern>
    <!-- Motion Blur Filter -->
    <filter id="motionBlur" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur stdDeviation="2 0" />
    </filter>
  </defs>

  <!-- Background Sky -->
  <rect width="300" height="300" fill="#87ceeb"/>

  <!-- Rainbow Arcs -->
  <g transform="translate(150,300)">
    <path d="M-200,0 A200,200 0 0 1 200,0" fill="none" stroke="url(#rainbow)" stroke-width="20"/>
    <path d="M-180,0 A180,180 0 0 1 180,0" fill="none" stroke="#87ceeb" stroke-width="16"/>
  </g>

  <!-- Bagel (the chasee) -->
  <g id="bagel" transform="translate(200,100)">
    <circle cx="0" cy="0" r="25" fill="#d49a6a" stroke="#b0784f" stroke-width="4" filter="url(#motionBlur)"/>
    <circle cx="0" cy="0" r="10" fill="#f0c27b"/>
    <!-- Sesame seeds -->
    <ellipse cx="-5" cy="-10" rx="2" ry="1" fill="#fff"/>
    <ellipse cx="8" cy="-5" rx="2" ry="1" fill="#fff"/>
    <ellipse cx="-3" cy="8" rx="2" ry="1" fill="#fff"/>
    <ellipse cx="5" cy="5" rx="2" ry="1" fill="#fff"/>
  </g>

  <!-- Flying Toaster -->
  <g id="toaster" transform="translate(80,150) rotate(-10)">
    <!-- Toaster Body -->
    <rect x="-35" y="-20" width="70" height="40" rx="8" ry="8" fill="#ccc" stroke="#999" stroke-width="2"/>
    <!-- Slot Open -->
    <rect x="-30" y="-24" width="60" height="6" fill="#444"/>
    <!-- Shiny Reflection -->
    <ellipse cx="0" cy="0" rx="30" ry="15" fill="url(#shine)"/>
    <!-- Buttons -->
    <circle cx="20" cy="5" r="3" fill="#f66"/>
    <circle cx="12" cy="5" r="3" fill="#6cf"/>
    <!-- Wings -->
    <g id="wing-left" transform="translate(-35,0) rotate(-20)">
      <path d="M0,0 C-20,-10 -20,10 0,0" fill="#fff" stroke="#bbb" stroke-width="1"/>
      <path d="M0,0 C-15,-6 -15,6 0,0" fill="url(#feathers)" />
    </g>
    <g id="wing-right" transform="translate(35,0) scale(-1,1) rotate(-20)">
      <path d="M0,0 C-20,-10 -20,10 0,0" fill="#fff" stroke="#bbb" stroke-width="1"/>
      <path d="M0,0 C-15,-6 -15,6 0,0" fill="url(#feathers)" />
    </g>
  </g>

  <!-- Motion Lines for Bagel -->
  <path d="M210,100 L230,90 M205,115 L225,105" stroke="#fff" stroke-width="2" stroke-linecap="round" filter="url(#motionBlur)"/>

</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet Thinking (2025-02-19) Player 1

Judge's Analysis

    Player 1's submission is more creative and visually engaging, with a detailed flying toaster, a lively bagel, and a vibrant rainbow.

    The addition of clouds, birds, and colorful effects enhances the composition and storytelling, adhering closely to the prompt.

    Player 2's design is simpler and less dynamic, lacking the same level of creativity and embellishment.

These metrics analyze technical aspects of both SVG drawings. Look for differences that might explain the judge's decision. Use the "View Code" button above to see the SVG code for each drawing.

Shapes Metrics

Total Shapes

The total number of shape elements (rect, circle, ellipse, line, polygon, polyline, path) in the SVG.

Player 1
125
Player 2
20
Rectangles

The number of rectangle elements (rect) in the SVG.

Player 1
12
Player 2
3
Circles

The number of circle elements (circle) in the SVG.

Player 1
71
Player 2
4
Ellipses

The number of ellipse elements (ellipse) in the SVG.

Player 1
12
Player 2
5
Lines

The number of line elements (line) in the SVG.

Player 1
4
Player 2
Polygons

The number of polygon elements (polygon) in the SVG.

Player 1
Player 2
Paths

The number of path elements (path) in the SVG.

Player 1
26
Player 2
8
Groups

The number of group elements (g) in the SVG.

Player 1
5
Player 2
5

Visual Effects Metrics

Gradients

The number of gradient definitions (linearGradient, radialGradient) in the SVG.

Player 1
7
Player 2
2
Patterns

The number of pattern definitions (pattern) in the SVG.

Player 1
2
Player 2
1
Filters

The number of filter definitions (filter) in the SVG.

Player 1
3
Player 2
1
Masks

The number of mask definitions (mask) in the SVG.

Player 1
Player 2
Clip Paths

The number of clipping path definitions (clipPath) in the SVG.

Player 1
Player 2
Elements with Opacity

The number of elements with opacity attributes in the SVG.

Player 1
20
Player 2
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
27
Player 2
8

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
23
Player 2
18

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
4
Player 2
5

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

Player 1
72
Player 2
22
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
Player 2
1
Defs Elements

The number of elements defined within the defs element in the SVG.

Player 1
12
Player 2
4
Use Elements

The number of use elements (use) in the SVG.

Player 1
Player 2

Text Metrics

Text Elements

The number of text elements (text) in the SVG.

Player 1
1
Player 2

AI Judging Process

Creativity

Originality, innovative use of shapes and unique approach to the prompt.

Prompt Adherence

How accurately the SVG captures the essence of the prompt.

Visual Appeal

Aesthetic quality including composition, color usage and overall visual impact.

How does judging work?

SVG drawings are converted to static PNG images for evaluation. The AI judge receives the original prompt and both images, then determines which drawing better fulfills the evaluation criteria without seeing animations, interactivity, or SVG code.

Similar Challenges