Back

SVG Drawing Match #2650

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A snail racing an excited cheetah on a rainbow track under confetti rain."

SVG by GPT-4.1 (2025-04-14)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Rainbow Track Gradient -->
    <linearGradient id="rainbow" x1="0" y1="0" 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="#8B00FF"/>
    </linearGradient>

    <!-- Snail Body Gradient -->
    <radialGradient id="snailBodyGrad" cx="50%" cy="50%" r="70%">
      <stop offset="0%" stop-color="#E1FFC8"/>
      <stop offset="100%" stop-color="#8BD26A"/>
    </radialGradient>

    <!-- Snail Shell Gradient -->
    <radialGradient id="snailShellGrad" cx="50%" cy="50%" r="70%">
      <stop offset="0%" stop-color="#FFD2A6"/>
      <stop offset="100%" stop-color="#FC9203"/>
    </radialGradient>

    <!-- Cheetah Body Gradient -->
    <linearGradient id="cheetahBodyGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#FFEE9B"/>
      <stop offset="100%" stop-color="#FFB800"/>
    </linearGradient>
    <linearGradient id="cheetahTailGrad" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#FFEE9B"/>
      <stop offset="100%" stop-color="#FFC743"/>
    </linearGradient>
    <!-- Confetti Patterns -->
    <pattern id="confetti1" width="8" height="8" patternUnits="userSpaceOnUse">
      <circle cx="2" cy="6" r="1.2" fill="#DF2BFF"/>
      <circle cx="6" cy="2" r="1.4" fill="#FF3161"/>
    </pattern>
    <pattern id="confetti2" width="12" height="12" patternUnits="userSpaceOnUse">
      <rect x="0" y="9" width="2" height="2" fill="#53FFF8"/>
      <rect x="10" y="2" width="2" height="2" fill="#FFDC5C"/>
      <circle cx="6" cy="6" r="1.6" fill="#61E063"/>
    </pattern>
    <!-- Shadow Filter -->
    <filter id="shadow">
      <feDropShadow dx="2" dy="3" stdDeviation="2" flood-color="#222" flood-opacity="0.25"/>
    </filter>
  </defs>
  <!-- Confetti BG layer -->
  <rect width="300" height="300" fill="white"/>
  <rect width="300" height="300" fill="url(#confetti1)" opacity="0.35"/>
  <rect width="300" height="300" fill="url(#confetti2)" opacity="0.25"/>
  <!-- Rainbow Track - wavy path -->
  <path d="M25 210
    C 65 180, 90 220, 150 200
    S 260 220, 270 170"
    stroke="url(#rainbow)" stroke-width="22" fill="none" filter="url(#shadow)"/>
  <!-- Lane separators (transparent white lines) -->
  <path d="M38 198
    C 78 178, 110 215, 153 195
    S 244 205, 260 172" stroke="rgba(255,255,255,0.38)" stroke-width="3" fill="none"/>
  <path d="M18 222
    C 55 189, 81 230, 147 206
    S 275 235, 282 168" stroke="rgba(255,255,255,0.38)" stroke-width="3" fill="none"/>
  <!-- Snail (Foreground, Lane 2, left) -->
  <g>
    <!-- Snail shadow -->
    <ellipse cx="58" cy="203" rx="18" ry="7" fill="#222" opacity="0.18"/>
    <!-- Body -->
    <ellipse cx="62" cy="191" rx="12" ry="8" fill="url(#snailBodyGrad)" stroke="#70BF56" stroke-width="1.5"/>
    <!-- Tail -->
    <ellipse cx="56" cy="193.5" rx="4" ry="2" fill="#70BF56" opacity="0.87"/>
    <!-- Head -->
    <ellipse cx="75" cy="188" rx="5" ry="6" fill="url(#snailBodyGrad)" stroke="#70BF56" stroke-width="1"/>
    <!-- Eye stalks -->
    <g>
      <line x1="77" y1="181" x2="79" y2="176" stroke="#8DC889" stroke-width="1.2"/>
      <line x1="72.8" y1="182" x2="72" y2="176" stroke="#8DC889" stroke-width="1.2"/>
      <circle cx="79" cy="176" r="1" fill="#444"/>
      <circle cx="72" cy="176" r="1" fill="#444"/>
      <circle cx="79" cy="176" r="0.4" fill="white" opacity="0.6"/>
      <circle cx="72" cy="176" r="0.4" fill="white" opacity="0.6"/>
    </g>
    <!-- Smile -->
    <path d="M77 190 Q76 193 73 191" stroke="#379A32" stroke-width="1.1" fill="none"/>
    <!-- Shell -->
    <ellipse cx="56" cy="187" rx="10" ry="9" fill="url(#snailShellGrad)" stroke="#B86116" stroke-width="1.5"/>
    <!-- Shell Spiral -->
    <path d="M56 187
        q0-4 4-4
        q5 0 2 4
        q-2 3 -3 0
        q-1 -3 2 -2.5" stroke="#E08536" stroke-width="1.3" fill="none"/>
    <!-- Speed Lines behind snail -->
    <g opacity="0.26">
      <rect x="36" y="192" width="7" height="1.7" fill="#50E5EC" rx="1"/>
      <rect x="39" y="186" width="13" height="2.2" fill="#52E043" rx="1"/>
    </g>
    <!-- Party hat -->
    <polygon points="73,181 71,176 75,176" fill="#FD70D3" stroke="#BC1BA9" stroke-width="0.7"/>
    <circle cx="73" cy="175.7" r="0.8" fill="#FFA371"/>
  </g>
  <!-- Cheetah (Foreground, Lane 1, right) -->
  <g>
    <!-- Cheetah shadow -->
    <ellipse cx="218" cy="181" rx="29" ry="9" fill="#222" opacity="0.18"/>
    <!-- Body (dynamic run) -->
    <ellipse cx="205" cy="170" rx="26" ry="11" fill="url(#cheetahBodyGrad)" stroke="#D79913" stroke-width="2"/>
    <!-- Hind leg (foliage, powerful kick) -->
    <ellipse cx="186" cy="174" rx="11" ry="4.5" fill="url(#cheetahBodyGrad)" stroke="#C19217" stroke-width="1.1"/>
    <!-- Foreleg (stretched) -->
    <ellipse cx="226" cy="174" rx="10" ry="3.5" fill="url(#cheetahBodyGrad)" stroke="#C19217" stroke-width="1.1"/>
    <!-- Rear thigh accent -->
    <ellipse cx="189" cy="171" rx="4" ry="2.3" fill="#FFE299" opacity="0.55"/>
    <!-- Head -->
    <ellipse cx="230" cy="160" rx="10" ry="8" fill="url(#cheetahBodyGrad)" stroke="#D79913" stroke-width="1.5"/>
    <!-- Mouth smile -->
    <path d="M236 167 Q233.5 167 232 164" stroke="#C77645" stroke-width="1.1" fill="none"/>
    <!-- Nose -->
    <ellipse cx="238.8" cy="163.5" rx="1.3" ry="1" fill="#8E3E00"/>
    <!-- Inner ear -->
    <ellipse cx="237" cy="154" rx="1.6" ry="2.7" fill="#FBCFB6"/>
    <!-- Eyes (big and excited) -->
    <ellipse cx="233.3" cy="158.3" rx="2.1" ry="2.3" fill="white"/>
    <ellipse cx="227.1" cy="158.1" rx="2" ry="2.1" fill="white"/>
    <circle cx="232.7" cy="159.4" r="0.8" fill="#461F00"/>
    <circle cx="226.9" cy="159.1" r="0.7" fill="#461F00"/>
    <ellipse cx="233.2" cy="158.6" rx="0.4" ry="0.4" fill="#fff" opacity="0.6"/>
    <ellipse cx="227.3" cy="158.8" rx="0.3" ry="0.3" fill="#fff" opacity="0.5"/>
    <!-- Cheeks -->
    <ellipse cx="236.9" cy="164.5" rx="1.2" ry="0.7" fill="#FFD7B0" opacity="0.7"/>
    <!-- Left Ear -->
    <ellipse cx="222" cy="153" rx="1.9" ry="3.4" fill="#D79330"/>
    <ellipse cx="221.8" cy="153.5" rx="1" ry="1.7" fill="#FBCFB6"/>
    <!-- Tail (Gradient, S-shaped)-->
    <path d="M179 169
      Q168 174 170 182
      Q172 192 187 185
      Q199 181 187 177" 
      stroke="url(#cheetahTailGrad)" stroke-width="7" fill="none" stroke-linecap="round"/>
    <!-- Tail tip -->
    <circle cx="170.5" cy="183" r="2.5" fill="#FFF" stroke="#222" stroke-width="0.8"/>
    <!-- Spots (random, vibrant)-->
    <g>
      <ellipse cx="206" cy="163" rx="1.7" ry="1.3" fill="#451700"/>
      <ellipse cx="193" cy="172" rx="1.3" ry="1.1" fill="#451700"/>
      <ellipse cx="221" cy="165" rx="1.1" ry="1.0" fill="#EB9003"/>
      <ellipse cx="214" cy="170" rx="1.4" ry="1.3" fill="#451700"/>
      <ellipse cx="197" cy="168" rx="1.8" ry="1.6" fill="#221200"/>
      <ellipse cx="217" cy="168" rx="0.7" ry="0.7" fill="#451700"/>
      <ellipse cx="200" cy="175" rx="1.2" ry="1" fill="#492800"/>
      <ellipse cx="193" cy="167" rx="1.1" ry="1" fill="#EB9003"/>
      <ellipse cx="211" cy="175" rx="1.4" ry="1.2" fill="#451700"/>
    </g>
    <!-- Vibrant speed lines -->
    <g>
      <rect x="234" y="152" width="12" height="2.4" fill="#FFA021" rx="1.2" transform="rotate(12 234 152)" opacity="0.36"/>
      <rect x="234" y="170" width="15" height="3" fill="#00E3B2" rx="1.5" transform="rotate(2 234 170)" opacity="0.26"/>
      <rect x="170" y="171" width="9" height="2" fill="#FFA021" rx="1" opacity="0.29"/>
    </g>
    <!-- Party hat (triangular, polka-dot) -->
    <polygon points="233,152 236,142 228,144" fill="#53FFF8" stroke="#00B3C6" stroke-width="1"/>
    <circle cx="233" cy="141.6" r="1.1" fill="#DF2BFF"/>
    <circle cx="229.2" cy="146.2" r="0.8" fill="#DF2BFF"/>
    <circle cx="235.4" cy="144.8" r="0.7" fill="#FFDC5C"/>
    <circle cx="233" cy="141.6" r="0.45" fill="white"/>
  </g>
  <!-- Confetti Rain (foreground, various shapes/colors) -->
  <g>
    <!-- Streams of confetti dots -->
    <circle cx="54" cy="40" r="2.3" fill="#FF3161"/>
    <circle cx="272" cy="27" r="2.1" fill="#53FFF8"/>
    <circle cx="37" cy="86" r="1.6" fill="#DF2BFF"/>
    <circle cx="283" cy="76" r="1.8" fill="#FFA21B"/>
    <!-- Confetti rectangles -->
    <rect x="70" y="17" width="5" height="2.1" transform="rotate(19 70 17)" fill="#4B0082"/>
    <rect x="210" y="30" width="7" height="2.1" transform="rotate(-12 210 30)" fill="#61E063"/>
    <rect x="108" y="71" width="6.5" height="2" transform="rotate(-45 108 71)" fill="#FF3161"/>
    <rect x="195" y="80" width="4.2" height="2.3" transform="rotate(12 195 80)" fill="#00E3B2"/>
    <!-- Confetti squiggle -->
    <path d="M63 29 Q68 25 69 34 Q70 41 76 35" stroke="#DF2BFF" stroke-width="2" fill="none"/>
    <path d="M120 56 Q125 52 127 60 Q129 68 135 62" stroke="#EB9003" stroke-width="2" fill="none"/>
    <path d="M230 64 Q239 67 237 77 Q235 84 245 80" stroke="#53FFF8" stroke-width="2" fill="none"/>
    <!-- Scattered dots -->
    <circle cx="188" cy="21" r="1.4" fill="#FFDC5C"/>
    <circle cx="119" cy="28" r="1" fill="#00E3B2"/>
    <circle cx="163" cy="34" r="1.2" fill="#61E063"/>
    <circle cx="198" cy="56" r="1.3" fill="#FF3161"/>
    <circle cx="77" cy="68" r="1.2" fill="#4B0082"/>
    <circle cx="127" cy="88" r="1" fill="#FFA21B"/>
    <circle cx="273" cy="97" r="0.85" fill="#FF3161"/>
  </g>
  <!-- Extra flourish: Victory tape at finish -->
  <g>
    <rect x="272" y="148" width="5" height="56" fill="#fff" opacity="0.67"/>
    <path d="M272 160 Q276 171 272 185" stroke="#FF3161" stroke-width="2.6" fill="none"/>
    <path d="M277 160 Q273 171 277 185" stroke="#53FFF8" stroke-width="2.6" fill="none"/>
  </g>
  <!-- "GO!" flag near start -->
  <g>
    <rect x="16" y="149" width="26" height="13" rx="2" fill="#FFDC5C" filter="url(#shadow)"/>
    <text x="29" y="159" text-anchor="middle" fill="#DF2BFF" font-size="12.5" font-family="Verdana" font-weight="bold" letter-spacing="1.3">GO!</text>
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Gradient background -->
  <defs>
    <linearGradient id="skyGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#ffeb00;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ff9a00;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#ff0000;stop-opacity:1" />
      <stop offset="20%" style="stop-color:#ff9a00;stop-opacity:1" />
      <stop offset="40%" style="stop-color:#ffff00;stop-opacity:1" />
      <stop offset="60%" style="stop-color:#00ff00;stop-opacity:1" />
      <stop offset="80%" style="stop-color:#00ffff;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ff00ff;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="snailShell" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#0066cc;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#cc0099;stop-opacity:1" />
    </linearGradient>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="url(#skyGrad)" />
  
  <!-- Rainbow track -->
  <path d="M50,200 C150,180 250,220 300,200 L300,100 C250,80 150,60 50,100 L50,200" 
        fill="none" stroke="url(#rainbow)" stroke-width="20" opacity="0.8" />
  
  <!-- Snail -->
  <g transform="translate(80,180)">
    <!-- Shell -->
    <path d="M0,0 Q20,-10 40,0 Q60,10 40,20 Q20,10 0,0" fill="url(#snailShell)" />
    <!-- Body -->
    <circle cx="20" cy="10" r="8" fill="#ffffff" />
    <circle cx="25" cy="15" r="3" fill="#000000" />
    <circle cx="15" cy="15" r="3" fill="#000000" />
    <!-- Antennae -->
    <path d="M10,5 L10,0 L12,0 L12,5" fill="#000000" />
    <path d="M30,5 L30,0 L32,0 L32,5" fill="#000000" />
  </g>

  <!-- Cheetah -->
  <g transform="translate(220,120)">
    <!-- Body -->
    <path d="M0,0 L20,10 L30,20 L20,30 L0,20 L-20,10 L-30,0 L-20,-10 L0,-20" fill="#ffd700" />
    <!-- Legs -->
    <path d="M5,20 L10,30" stroke="#000000" stroke-width="2" />
    <path d="M-5,20 L-10,30" stroke="#000000" stroke-width="2" />
    <!-- Face -->
    <circle cx="0" cy="-10" r="8" fill="#ffffff" />
    <circle cx="-4" cy="-12" r="2" fill="#000000" />
    <circle cx="4" cy="-12" r="2" fill="#000000" />
  </g>

  <!-- Confetti rain -->
  <clipPath id="confettiClip">
    <rect width="300" height="300" />
  </clipPath>
  <g clip-path="url(#confettiClip)">
    <!-- Multiple confetti pieces -->
    <circle cx="50" cy="50" r="2" fill="#ff0000" opacity="0.5" />
    <circle cx="100" cy="80" r="2" fill="#00ff00" opacity="0.5" />
    <circle cx="150" cy="60" r="2" fill="#0000ff" opacity="0.5" />
    <circle cx="200" cy="40" r="2" fill="#ffff00" opacity="0.5" />
    <circle cx="250" cy="70" r="2" fill="#ff00ff" opacity="0.5" />
    <!-- Add more confetti circles as needed -->
  </g>

  <!-- Finish line -->
  <path d="M300,150 L290,160 L300,170 L290,180 L300,190" 
        stroke="#000000" stroke-width="4" fill="none" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4.1 (2025-04-14) Player 1

Judge's Analysis

    Player 1's submission adheres more closely to the prompt with a clear depiction of a snail and an excited cheetah on a rainbow track, surrounded by confetti rain.

    The design is detailed, colorful, and visually appealing, with evident effort in composition and creativity.

    Player 2's submission is less detailed and lacks clarity in representing the cheetah and snail, making it less effective in conveying the prompt's idea.

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
87
Player 2
21
Rectangles

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

Player 1
16
Player 2
2
Circles

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

Player 1
26
Player 2
11
Ellipses

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

Player 1
29
Player 2
Lines

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

Player 1
2
Player 2
Polygons

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

Player 1
2
Player 2
Paths

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

Player 1
12
Player 2
8
Groups

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

Player 1
9
Player 2
3

Visual Effects Metrics

Gradients

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

Player 1
5
Player 2
3
Patterns

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

Player 1
2
Player 2
Filters

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

Player 1
1
Player 2
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
1
Elements with Opacity

The number of elements with opacity attributes in the SVG.

Player 1
16
Player 2
6
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
24
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
51
Player 2
8

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
6
Player 2
2

Complexity Metrics

Path Commands

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

Player 1
35
Player 2
35
Max Group Nesting

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

Player 1
1
Player 2
Defs Elements

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

Player 1
8
Player 2
3
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