Back

SVG Drawing Match #2668

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A snail racing a rocket under a rainbow."

SVG by GPT-4.1 nano (2025-04-14)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background Gradient Sky with Rainbow -->
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#87CEFA"/>
      <stop offset="100%" stop-color="#FFFFFF"/>
    </linearGradient>
    <linearGradient id="rainbowGradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" stop-color="#FF4F6D"/>
      <stop offset="20%" stop-color="#FFCA00"/>
      <stop offset="40%" stop-color="#7AFEDA"/>
      <stop offset="60%" stop-color="#4F86F7"/>
      <stop offset="80%" stop-color="#8A2BE2"/>
      <stop offset="100%" stop-color="#FF4F6D"/>
    </linearGradient>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)" />

  <!-- Rainbow -->
  <ellipse cx="150" cy="130" rx="130" ry="80" fill="none" stroke="url(#rainbowGradient)" stroke-width="25" />

  <!-- Sun -->
  <circle cx="50" cy="50" r="20" fill="#FFD700" stroke="#FFA500" stroke-width="3"/>

  <!-- Snail body -->
  <g id="snail" transform="translate(80, 180)">
    <!-- Snail shell with pattern -->
    <circle cx="0" cy="0" r="40" fill="url(#shellPattern)" stroke="#654321" stroke-width="3"/>
    <defs>
      <pattern id="shellPattern" patternUnits="userSpaceOnUse" width="10" height="10">
        <circle cx="5" cy="5" r="3" fill="#8B4513"/>
        <circle cx="2" cy="2" r="1.5" fill="#A0522D"/>
        <circle cx="8" cy="8" r="2" fill="#A0522D"/>
      </pattern>
    </defs>
    <!-- Snail head -->
    <circle cx="0" cy="-50" r="10" fill="#8B4513" stroke="#654321" stroke-width="2"/>
    <!-- Snail feelers -->
    <line x1="0" y1="-55" x2="-8" y2="-65" stroke="#654321" stroke-width="2"/>
    <line x1="0" y1="-55" x2="8" y2="-65" stroke="#654321" stroke-width="2"/>
  </g>

  <!-- Rocket -->
  <g id="rocket" transform="translate(150, 220)">
    <!-- Rocket body -->
    <polygon points="0,0 -10,40 10,40" fill="#FF4500" stroke="#B22222" stroke-width="2"/>
    <!-- Rocket nose -->
    <polygon points="0,-10 0,0 15,-15" fill="#FFD700" stroke="#B8860B" stroke-width="2"/>
    <!-- Fins -->
    <polygon points="-10,40 -20,30 -10,30" fill="#1E90FF"/>
    <polygon points="10,40 20,30 10,30" fill="#1E90FF"/>
    <!-- Flames -->
    <polygon points="0,40 0,50 5,40" fill="#FFA500"/>
    <polygon points="0,50 3,55 7,50" fill="#FF8C00"/>
  </g>

  <!-- Ground -->
  <rect x="0" y="250" width="300" height="50" fill="#228B22"/>

</svg>
SVG by Gemini 2.5 Pro Preview 05-06
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  <defs>
    <!-- Gradients -->
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#87CEEB;stop-opacity:1" />
      <stop offset="70%" style="stop-color:#ADD8E6;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#B6D0E2;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="snailShellGradient" cx="50%" cy="50%" r="60%" fx="35%" fy="35%">
      <stop offset="0%" style="stop-color:#F0E68C;" /> <!-- Khaki -->
      <stop offset="50%" style="stop-color:#CD853F;" /> <!-- Peru -->
      <stop offset="100%" style="stop-color:#8B4513;" /> <!-- SaddleBrown -->
    </radialGradient>
    <linearGradient id="rocketBodyGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#D3D3D3;" /> <!-- LightGray -->
      <stop offset="30%" style="stop-color:#FFFFFF;" />
      <stop offset="70%" style="stop-color:#B0B0B0;" />
      <stop offset="100%" style="stop-color:#808080;" /> <!-- Gray -->
    </linearGradient>
    <radialGradient id="flameGradient" cx="50%" cy="100%" r="70%" fx="50%" fy="100%">
      <stop offset="0%" style="stop-color:yellow;stop-opacity:1" />
      <stop offset="40%" style="stop-color:orange;stop-opacity:0.9" />
      <stop offset="100%" style="stop-color:red;stop-opacity:0.6" />
    </radialGradient>
    <linearGradient id="snailTrailGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:rgba(173,216,230,0.6);" />
      <stop offset="100%" style="stop-color:rgba(173,216,230,0);" />
    </linearGradient>
    <linearGradient id="groundGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#6B8E23;" /> <!-- OliveDrab -->
      <stop offset="100%" style="stop-color:#556B2F;" /> <!-- DarkOliveGreen -->
    </linearGradient>
    <linearGradient id="rainbowRed"><stop offset="0%" stop-color="#FF1A1A"/><stop offset="100%" stop-color="#E60000"/></linearGradient>
    <linearGradient id="rainbowOrange"><stop offset="0%" stop-color="#FFA500"/><stop offset="100%" stop-color="#E69500"/></linearGradient>
    <linearGradient id="rainbowYellow"><stop offset="0%" stop-color="#FFFF00"/><stop offset="100%" stop-color="#E6E600"/></linearGradient>
    <linearGradient id="rainbowGreen"><stop offset="0%" stop-color="#00C000"/><stop offset="100%" stop-color="#00A000"/></linearGradient>
    <linearGradient id="rainbowBlue"><stop offset="0%" stop-color="#0040FF"/><stop offset="100%" stop-color="#0030E0"/></linearGradient>
    <linearGradient id="rainbowIndigo"><stop offset="0%" stop-color="#4B0082"/><stop offset="100%" stop-color="#400070"/></linearGradient>
    <linearGradient id="rainbowViolet"><stop offset="0%" stop-color="#9400D3"/><stop offset="100%" stop-color="#8000C0"/></linearGradient>

    <pattern id="checkerPattern" patternUnits="userSpaceOnUse" width="16" height="16">
      <rect width="8" height="8" fill="black"/>
      <rect x="8" y="8" width="8" height="8" fill="black"/>
      <rect x="8" width="8" height="8" fill="white"/>
      <rect y="8" width="8" height="8" fill="white"/>
    </pattern>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="url(#skyGradient)" />

  <!-- Sparkles/Stars -->
  <g id="sparkles">
    <path d="M 250 30 L 252 25 L 254 30 L 259 32 L 254 34 L 252 39 L 250 34 L 245 32 Z" fill="yellow" opacity="0.9" filter="url(#glow)"/>
    <path d="M 50 40 L 52 35 L 54 40 L 59 42 L 54 44 L 52 49 L 50 44 L 45 42 Z" fill="gold" opacity="0.8" transform="scale(0.7) translate(15, 10)"/>
    <circle cx="150" cy="20" r="2.5" fill="white" opacity="0.7"/>
    <circle cx="200" cy="50" r="1.5" fill="white" opacity="0.6"/>
    <circle cx="80" cy="60" r="2" fill="white" opacity="0.7"/>
     <path d="M 120 70 L 121 67 L 122 70 L 125 71 L 122 72 L 121 75 L 120 72 L 117 71 Z" fill="#FFFAF0" opacity="0.8"/>
  </g>

  <!-- Rainbow -->
  <g id="rainbow" transform="translate(0 -45)">
    <path d="M 20 150 A 130 130 0 0 1 280 150" stroke="url(#rainbowRed)" stroke-width="12" fill="none" stroke-linecap="round"/>
    <path d="M 32 150 A 118 118 0 0 1 268 150" stroke="url(#rainbowOrange)" stroke-width="12" fill="none" stroke-linecap="round"/>
    <path d="M 44 150 A 106 106 0 0 1 256 150" stroke="url(#rainbowYellow)" stroke-width="12" fill="none" stroke-linecap="round"/>
    <path d="M 56 150 A 94 94 0 0 1 244 150" stroke="url(#rainbowGreen)" stroke-width="12" fill="none" stroke-linecap="round"/>
    <path d="M 68 150 A 82 82 0 0 1 232 150" stroke="url(#rainbowBlue)" stroke-width="12" fill="none" stroke-linecap="round"/>
    <path d="M 80 150 A 70 70 0 0 1 220 150" stroke="url(#rainbowIndigo)" stroke-width="12" fill="none" stroke-linecap="round"/>
    <path d="M 92 150 A 58 58 0 0 1 208 150" stroke="url(#rainbowViolet)" stroke-width="12" fill="none" stroke-linecap="round"/>
  </g>

  <!-- Ground -->
  <path d="M 0 220 Q 150 255 300 220 L 300 300 L 0 300 Z" fill="url(#groundGradient)" />

  <!-- Finish Line -->
  <g id="finish-line" transform="translate(0,5)">
    <ellipse cx="279" cy="228" rx="10" ry="3" fill="rgba(0,0,0,0.2)" /> <!-- Shadow -->
    <rect x="275" y="135" width="8" height="95" fill="#A0522D" stroke="#5C4033" stroke-width="1"/> <!-- Pole -->
    <path d="M 258 135 Q 269.5 130 281 135 L 281 153 Q 269.5 158 258 153 Z" 
          fill="url(#checkerPattern)" stroke="black" stroke-width="0.75" />
    <path d="M 258 135 Q 269.5 130 281 135" stroke="black" stroke-width="0.75" fill="none"/>
    <path d="M 258 153 Q 269.5 158 281 153" stroke="black" stroke-width="0.75" fill="none"/>
    <circle cx="279" cy="135" r="4.5" fill="#D32F2F" stroke="#B71C1C" stroke-width="0.5"/> <!-- Red tip -->
  </g>

  <!-- Rocket -->
  <g id="rocket" transform="translate(200 100) rotate(-20) scale(0.85)">
    <!-- Speed Lines (behind rocket) -->
    <g id="rocket-speed-lines" transform="translate(-75,0)">
        <path d="M 0 -3 Q -30 -5 -50 -8" stroke="rgba(255,255,255,0.7)" stroke-width="2.5" fill="none" stroke-linecap="round"/>
        <path d="M 0 0 Q -40 0 -60 0" stroke="rgba(255,255,255,0.9)" stroke-width="3" fill="none" stroke-linecap="round"/>
        <path d="M 0 3 Q -30 5 -50 8" stroke="rgba(255,255,255,0.7)" stroke-width="2.5" fill="none" stroke-linecap="round"/>
    </g>
    <!-- Flames -->
    <g id="flames" transform="translate(-65,0)">
      <path d="M 0 0 C -20 20, -15 40, 5 50 C 20 40, 15 20, 0 0 Z" fill="url(#flameGradient)" />
      <path d="M -5 0 C -20 15, -15 30, 0 40 C 10 30, 10 15, -5 0 Z" fill="orange" opacity="0.8" transform="translate(3, 2) scale(0.8)"/>
      <path d="M -2 0 C -15 10, -10 20, 0 30 C 8 20, 5 10, -2 0 Z" fill="yellow" opacity="0.9" transform="translate(1, 5) scale(0.6)"/>
    </g>
    <!-- Rocket Body -->
    <path d="M 0,0 C -50,0 -70,-10 -70,-20 L -70,20 C -70,10 -50,0 0,0 Z" fill="url(#rocketBodyGradient)" stroke="#333" stroke-width="1.5" />
    <path d="M 0,0 C 25,-12 25,12 0,0 Z" fill="#E53935" stroke="#B71C1C" stroke-width="1.5" transform="translate(15,0)"/> <!-- Nose Cone -->
    <polygon points="-60,-18 -85,-30 -70,-18" fill="#A9A9A9" stroke="#444" stroke-width="1"/> <!-- Fin 1 -->
    <polygon points="-60,18 -85,30 -70,18" fill="#A9A9A9" stroke="#444" stroke-width="1"/> <!-- Fin 2 -->
    <rect x="-65" y="-5" width="25" height="10" fill="#C0C0C0" stroke="#444" stroke-width="1" rx="3"/> <!-- Stabilizer -->
    <circle cx="-30" cy="0" r="10" fill="#87CEFA" stroke="#222" stroke-width="1"/> <!-- Window -->
    <path d="M -30 -10 A 10 10 0 0 0 -30 10" fill="rgba(255,255,255,0.4)" stroke="none"/> <!-- Highlight -->
    <text x="-50" y="6" font-family="Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif" font-size="14" fill="#FFFF00" stroke="black" stroke-width="0.4" text-anchor="middle">99</text>
  </g>

  <!-- Snail -->
  <g id="snail" transform="translate(40 205) scale(0.8)">
    <!-- Snail Shadow -->
    <ellipse cx="30" cy="42" rx="45" ry="8" fill="rgba(0,0,0,0.15)"/>
    <!-- Snail Trail -->
    <path d="M -50 25 Q 20 35 80 20 L 80 30 Q 20 45 -50 35 Z" fill="url(#snailTrailGradient)" />
    <!-- Snail Body -->
    <path d="M 0 0 C 10 -20, 40 -25, 60 -10 S 80 20, 70 30 L 20 35 C 10 40, -10 30, 0 15 Q -5 5, 0 0 Z" fill="#90EE90" stroke="#2E8B57" stroke-width="1.5"/>
    <!-- Snail Shell -->
    <g transform="translate(0, -5)"> <!-- Shift shell up slightly on body -->
        <path id="shellPath" d="M 50 0 C 50 -30, 20 -30, 20 0 C 20 25, 45 25, 45 5 C 45 -10, 25 -10, 25 5 C 25 15, 35 15, 35 8 Z"
              fill="url(#snailShellGradient)" stroke="#654321" stroke-width="2"/>
        <!-- Shell spiral detail -->
        <g transform="translate(35,1)"> <!-- Centered on shell visually -->
            <path d="M0,0 c1.5,1.5 4,0.5 4,-2s-2.5,-4 -5,-4s-4,2.5 -4,5s2.5,4 6,4s6.5,-3 6.5,-6.5"
                  stroke="#704214" stroke-width="1.2" fill="none" stroke-linecap="round"/>
        </g>
    </g>
    <!-- Snail Eyes -->
    <g id="snail-eyes">
      <line x1="55" y1="-10" x2="65" y2="-25" stroke="#2E8B57" stroke-width="2"/>
      <line x1="45" y1="-12" x2="50" y2="-28" stroke="#2E8B57" stroke-width="2"/>
      <circle cx="65" cy="-25" r="4.5" fill="white" stroke="black" stroke-width="0.5"/>
      <circle cx="50" cy="-28" r="4" fill="white" stroke="black" stroke-width="0.5"/>
      <circle cx="66.5" cy="-25" r="2" fill="black"/> <!-- pupil -->
      <circle cx="51" cy="-28" r="1.8" fill="black"/> <!-- pupil -->
    </g>
    <!-- Snail Mouth (determined) -->
    <path d="M 65 5 Q 68 8 71 5" stroke="#1A4314" stroke-width="1.2" fill="none" stroke-linecap="round"/>
    <!-- Snail racing number -->
    <text x="30" y="18" font-family="Arial, Helvetica, sans-serif" font-size="10" fill="#1E90FF" stroke="black" stroke-width="0.3" text-anchor="middle" font-weight="bold">1</text>
    <!-- Snail speed lines -->
    <g transform="translate(-20, 10) rotate(5)">
        <line x1="0" y1="0" x2="-20" y2="-2" stroke="#777" stroke-width="1.5" stroke-linecap="round" opacity="0.7"/>
        <line x1="0" y1="5" x2="-25" y2="4" stroke="#888" stroke-width="1" stroke-linecap="round" opacity="0.7"/>
        <line x1="0" y1="10" x2="-20" y2="11" stroke="#777" stroke-width="1.5" stroke-linecap="round" opacity="0.7"/>
    </g>
  </g>

  <!-- Snail's "exhaust" - determined puffs -->
  <g id="snail-puffs" transform="translate(18, 228)"> <!-- Approx global coords of snail's rear -->
    <circle cx="0" cy="0" r="5" fill="rgba(220,220,220,0.5)">
        <animate attributeName="cx" values="0;-6;-12" dur="1.8s" repeatCount="indefinite"/>
        <animate attributeName="r" values="5;8;3;5" dur="1.8s" repeatCount="indefinite"/>
        <animate attributeName="opacity" values="0.6;0.3;0;0.6" dur="1.8s" repeatCount="indefinite"/>
    </circle>
    <circle cx="-5" cy="3" r="4" fill="rgba(200,200,200,0.4)">
        <animate attributeName="cx" values="-5;-12;-18" dur="1.8s" begin="0.4s" repeatCount="indefinite"/>
        <animate attributeName="r" values="4;7;2;4" dur="1.8s" begin="0.4s" repeatCount="indefinite"/>
        <animate attributeName="opacity" values="0.5;0.2;0;0.5" dur="1.8s" begin="0.4s" repeatCount="indefinite"/>
    </circle>
  </g>

  <!-- Title Text -->
  <text x="150" y="288" font-family="'Comic Sans MS', 'Chalkboard SE', cursive, sans-serif" font-size="16" fill="#4A004A" text-anchor="middle" font-weight="bold" stroke="white" stroke-width="0.5">The Great Race!</text>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Gemini 2.5 Pro Preview 05-06 Player 2

Judge's Analysis

    Player 2's submission is more detailed, colorful, and closely adheres to the prompt with a clear depiction of both a snail and a rocket racing under a vibrant rainbow.

    The composition is dynamic and visually appealing, with elements like the finish line and motion effects adding creativity.

    Player 1's submission, while creative, lacks clarity in illustrating the concept of a race or a rocket, and the overall execution feels less polished.

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
17
Player 2
55
Rectangles

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

Player 1
2
Player 2
7
Circles

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

Player 1
6
Player 2
11
Ellipses

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

Player 1
1
Player 2
2
Lines

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

Player 1
2
Player 2
5
Polygons

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

Player 1
6
Player 2
2
Paths

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

Player 1
Player 2
28
Groups

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

Player 1
2
Player 2
12

Visual Effects Metrics

Gradients

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

Player 1
2
Player 2
13
Patterns

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

Player 1
1
Player 2
1
Filters

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

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

The number of elements with opacity attributes in the SVG.

Player 1
Player 2
11
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
8
Player 2
36

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
18
Player 2
46

Interactivity Metrics

Animations

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

Player 1
Player 2
6
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
2
Player 2
14

Complexity Metrics

Path Commands

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

Player 1
Player 2
109
Max Group Nesting

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

Player 1
Player 2
2
Defs Elements

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

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

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