Back

SVG Drawing Match #2562

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giant snail racing a time-traveling turtle under a starry sky."

SVG by Gemini 2.5 Pro Preview 05-06
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
    <defs>
        <radialGradient id="skyGradient" cx="50%" cy="30%" r="70%">
            <stop offset="0%" style="stop-color:#0A001F; stop-opacity:1" />
            <stop offset="70%" style="stop-color:#2D0043; stop-opacity:1" />
            <stop offset="100%" style="stop-color:#4C0B5F; stop-opacity:1" />
        </radialGradient>

        <filter id="glowFilter">
            <feGaussianBlur stdDeviation="2.5" result="coloredBlur"/>
            <feMerge>
                <feMergeNode in="coloredBlur"/>
                <feMergeNode in="SourceGraphic"/>
            </feMerge>
        </filter>

        <filter id="softGlow">
            <feGaussianBlur stdDeviation="1.5" result="blur"/>
            <feMerge>
                <feMergeNode in="blur"/>
                <feMergeNode in="SourceGraphic"/>
            </feMerge>
        </filter>
        
        <filter id="nebulaBlur">
            <feGaussianBlur in="SourceGraphic" stdDeviation="15" />
        </filter>

        <radialGradient id="nebulaPink" cx="50%" cy="50%" r="50%">
            <stop offset="0%" style="stop-color:#FF69B4; stop-opacity:0.6" />
            <stop offset="100%" style="stop-color:#FF69B4; stop-opacity:0" />
        </radialGradient>
        <radialGradient id="nebulaCyan" cx="50%" cy="50%" r="50%">
            <stop offset="0%" style="stop-color:#00FFFF; stop-opacity:0.5" />
            <stop offset="100%" style="stop-color:#00FFFF; stop-opacity:0" />
        </radialGradient>

        <linearGradient id="trackGradient" x1="0%" y1="0%" x2="100%" y2="0%">
            <stop offset="0%" style="stop-color:#FFD700; stop-opacity:0.7" />
            <stop offset="30%" style="stop-color:#FF69B4; stop-opacity:0.8" />
            <stop offset="70%" style="stop-color:#00FFFF; stop-opacity:0.8" />
            <stop offset="100%" style="stop-color:#9400D3; stop-opacity:0.7" />
        </linearGradient>

        <radialGradient id="snailShellCosmicGradient" cx="40%" cy="40%" r="60%">
            <stop offset="0%" style="stop-color:#6A0DAD;" />
            <stop offset="30%" style="stop-color:#FF1493;" />
            <stop offset="60%" style="stop-color:#4B0082;" />
            <stop offset="100%" style="stop-color:#00BFFF;" />
        </radialGradient>
        <linearGradient id="snailBodyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
            <stop offset="0%" style="stop-color:#B0E2FF;" /> <!-- Light blueish green -->
            <stop offset="100%" style="stop-color:#5F9EA0;" /> <!-- CadetBlue like -->
        </linearGradient>
        <linearGradient id="slimeTrailGradient" x1="0%" y1="0%" x2="100%" y2="0%">
            <stop offset="0%" style="stop-color:rgba(173,216,230,0.6);" />
            <stop offset="50%" style="stop-color:rgba(221,160,221,0.7);" />
            <stop offset="100%" style="stop-color:rgba(144,238,144,0.6);" />
        </linearGradient>
        <filter id="blurSlime">
            <feGaussianBlur in="SourceGraphic" stdDeviation="2.5" />
        </filter>

        <radialGradient id="turtleShellTechGradient" cx="50%" cy="50%" r="70%">
            <stop offset="0%" style="stop-color:#3E8E7E;" /> <!-- Tealish Green -->
            <stop offset="50%" style="stop-color:#287271;" /> <!-- Darker Teal -->
            <stop offset="100%" style="stop-color:#1D5C63;" /> <!-- Deepest Teal -->
        </radialGradient>
        <linearGradient id="turtleBodyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
            <stop offset="0%" style="stop-color:#A1BE95;" /> <!-- Sage Green -->
            <stop offset="100%" style="stop-color:#748B75;" /> <!-- Darker Sage -->
        </linearGradient>
    </defs>

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

    <!-- Nebulae -->
    <ellipse cx="70" cy="80" rx="120" ry="70" fill="url(#nebulaPink)" filter="url(#nebulaBlur)" />
    <ellipse cx="230" cy="130" rx="100" ry="60" fill="url(#nebulaCyan)" filter="url(#nebulaBlur)" />
    
    <!-- Clockwork Moon -->
    <g id="clockworkMoon" transform="translate(240 45)">
        <circle cx="0" cy="0" r="22" fill="#B0C4DE" filter="url(#softGlow)"/> <!-- LightSteelBlue -->
        <circle cx="0" cy="0" r="18" fill="#778899"/> <!-- LightSlateGray, inner shadow -->
        <circle cx="0" cy="0" r="16" fill="#D8D8D8"/> <!-- Moon face -->
        <!-- Gear "craters" -->
        <circle cx="-8" cy="-7" r="4" fill="#A0A0A0"/>
        <path d="M -8 -7 m -3.5 0 a 3.5 3.5 0 1 0 7 0 a 3.5 3.5 0 1 0 -7 0" stroke="#606060" stroke-width="0.5" fill="none" transform-origin="-8 -7" transform="rotate(20)"/>
        <circle cx="7" cy="6" r="2.5" fill="#A0A0A0"/>
        <path d="M 7 6 m -2 0 a 2 2 0 1 0 4 0 a 2 2 0 1 0 -4 0" stroke="#606060" stroke-width="0.5" fill="none" transform-origin="7 6" transform="rotate(-15)"/>
        <!-- Clock hands -->
        <line x1="0" y1="0" x2="0" y2="-10" stroke="#333" stroke-width="1.5" stroke-linecap="round"/>
        <line x1="0" y1="0" x2="7" y2="0" stroke="#333" stroke-width="2" stroke-linecap="round"/>
        <circle cx="0" cy="0" r="1.2" fill="#333"/>
    </g>

    <!-- Stars -->
    <g id="stars">
        <circle cx="20" cy="25" r="1.2" fill="#FFF8DC" opacity="0.9"/> <circle cx="40" cy="60" r="0.8" fill="#FFFFE0" opacity="0.7"/>
        <circle cx="60" cy="20" r="1.5" fill="white" filter="url(#softGlow)"/> <circle cx="80" cy="90" r="1" fill="#F0F8FF" opacity="0.8"/>
        <circle cx="100" cy="30" r="1.3" fill="#FFFACD"/> <circle cx="120" cy="70" r="0.9" fill="white" opacity="0.7"/>
        <circle cx="140" cy="40" r="1.6" fill="#FFFFF0" filter="url(#softGlow)"/> <circle cx="160" cy="100" r="1.1" fill="#F5FFFA"/>
        <circle cx="180" cy="20" r="1" fill="white" opacity="0.9"/> <circle cx="200" cy="65" r="1.4" fill="#FFF5EE"/>
        <circle cx="220" cy="35" r="0.8" fill="#F8F8FF" opacity="0.7"/> <circle cx="240" cy="80" r="1.2" fill="white"/>
        <circle cx="260" cy="50" r="1.8" fill="#FFFAF0" filter="url(#softGlow)"/> <circle cx="280" cy="25" r="1" fill="#F0FFF0" opacity="0.8"/>
        <circle cx="290" cy="95" r="0.7" fill="white" opacity="0.7"/> <circle cx="15" cy="120" r="1" fill="#E6E6FA"/>
        <circle cx="55" cy="150" r="1.3" fill="white"/> <circle cx="95" cy="110" r="0.9" fill="#FAFAD2" opacity="0.8"/>
        <circle cx="135" cy="140" r="1.1" fill="white"/> <circle cx="175" cy="125" r="1.4" fill="#FFF0F5" filter="url(#softGlow)"/>
        <circle cx="215" cy="155" r="0.8" fill="white" opacity="0.7"/> <circle cx="255" cy="115" r="1.2" fill="#LavenderBlush"/>
        <circle cx="285" cy="145" r="1.5" fill="white"/>
        <path d="M50 10 L 52 15 L 55 12" stroke="rgba(255,255,255,0.5)" stroke-width="1" fill="none"/> <!-- shooting star -->
        <path d="M200 150 L 205 153 L 203 157" stroke="rgba(255,255,255,0.5)" stroke-width="1" fill="none"/> <!-- shooting star -->
    </g>

    <!-- Race Track -->
    <g id="raceTrackElements">
        <path id="trackPath" d="M -30 270 Q 60 190, 150 170 T 260 200 T 330 250" fill="none" stroke="url(#trackGradient)" stroke-width="28" stroke-linecap="round" opacity="0.8"/>
        <path id="trackShine" d="M -30 270 Q 60 190, 150 170 T 260 200 T 330 250" fill="none" stroke="rgba(255,255,255,0.4)" stroke-width="8" stroke-linecap="round" stroke-dasharray="20 10" />
    </g>

    <!-- Giant Snail -->
    <g id="snail" transform="translate(70 230) scale(1.35) rotate(-15)">
        <path d="M 100 10 Q 0 -40, -200 -20" stroke="url(#slimeTrailGradient)" stroke-width="25" fill="none" stroke-linecap="round" filter="url(#blurSlime)"/>
        <g transform="translate(0,0)"> <!-- Snail body and shell group -->
            <path d="M 60 0 C 40 -35, -50 -30, -80 -5 C -90 5, -80 15, -70 20 C -30 40, 30 25, 60 0 Z" fill="url(#snailBodyGradient)" stroke="#4A708B" stroke-width="1"/>
            <path d="M -65 -5 Q -70 -20 -75 -30" stroke="#4A708B" stroke-width="4" fill="none" stroke-linecap="round"/>
            <circle cx="-75" cy="-32" r="4" fill="#1E1E1E" /><circle cx="-74" cy="-33" r="1.5" fill="#98F5FF" />
            <path d="M -50 -8 Q -55 -22 -58 -32" stroke="#4A708B" stroke-width="4" fill="none" stroke-linecap="round"/>
            <circle cx="-58" cy="-34" r="4" fill="#1E1E1E" /><circle cx="-57" cy="-35" r="1.5" fill="#98F5FF" />
            <!-- Speed lines -->
            <path d="M -90 0 L -110 -2 M -85 10 L -105 12" stroke="rgba(220,220,255,0.3)" stroke-width="1.5" stroke-linecap="round"/>

            <g id="snailShell" transform="translate(20, -35) scale(1.2) rotate(10)">
                <path d="M0,0 C 30,-5 50,-30 40,-55 S 5,-90 -30,-75 S -70,-35 -55,0 S -20,45 10,35 S 35,5 20,-20 S -10,-45 -20,-30"
                      fill="url(#snailShellCosmicGradient)" stroke="#2A0431" stroke-width="2.5" />
                <circle cx="20" cy="-35" r="3.5" fill="#FFEC8B" filter="url(#glowFilter)"/>
                <circle cx="-15" cy="-55" r="3" fill="#87CEFA" filter="url(#glowFilter)"/>
                <circle cx="-35" cy="-10" r="4" fill="#FFB6C1" filter="url(#glowFilter)"/>
                <path d="M 5 -15 Q 15 -25 25 -15 T 5 -15" stroke="#FFD700" stroke-width="1.5" opacity="0.8" fill="none"/>
            </g>
        </g>
    </g>

    <!-- Time-Traveling Turtle -->
    <g id="turtle" transform="translate(210 180) scale(0.9) rotate(12)">
        <g id="staticTimeTrail" transform="translate(-45 0)">
            <ellipse cx="-10" cy="2" rx="5" ry="2.5" fill="#00FFFF" opacity="0.5" filter="url(#softGlow)"/>
            <ellipse cx="-25" cy="-3" rx="6" ry="3" fill="#FF00FF" opacity="0.4" filter="url(#softGlow)"/>
            <ellipse cx="-40" cy="1" rx="5.5" ry="2.8" fill="#FFFF00" opacity="0.3" filter="url(#softGlow)"/>
            <path d="M 0 0 Q -20 5 -40 0 T -70 0" stroke="#ADFF2F" stroke-width="2" fill="none" opacity="0.5" stroke-dasharray="3 5"/>
        </g>
        <g transform="translate(0,0)"> <!-- Turtle body and shell group -->
            <path d="M 30 0 C 40 -15, 55 -10, 55 0 C 55 10, 40 15, 30 0 Z" fill="url(#turtleBodyGradient)" stroke="#52654F" stroke-width="0.5"/> <!-- Head -->
            <ellipse cx="48" cy="-3" rx="5" ry="3.5" fill="#111" stroke="silver" stroke-width="0.5"/> <!-- Goggle lens -->
            <ellipse cx="48" cy="-3" rx="3" ry="2" fill="#33BBFF" opacity="0.8"/> <!-- Goggle glass -->
            <line x1="38" y1="-3" x2="43" y2="-3" stroke="#888" stroke-width="1.5"/> <!-- Goggle strap -->

            <ellipse cx="15" cy="20" rx="12" ry="6" fill="url(#turtleBodyGradient)" transform="rotate(35 15 20)" stroke="#52654F" stroke-width="0.5"/> <!-- Rear leg -->
            <ellipse cx="-10" cy="22" rx="10" ry="5" fill="url(#turtleBodyGradient)" transform="rotate(15 -10 22)" stroke="#52654F" stroke-width="0.5"/> <!-- Rear leg -->
            <ellipse cx="20" cy="-20" rx="12" ry="6" fill="url(#turtleBodyGradient)" transform="rotate(-30 20 -20)" stroke="#52654F" stroke-width="0.5"/> <!-- Front leg -->
            <ellipse cx="-5" cy="-22" rx="10" ry="5" fill="url(#turtleBodyGradient)" transform="rotate(-15 -5 -22)" stroke="#52654F" stroke-width="0.5"/> <!-- Front leg -->
            <!-- Speed lines -->
            <path d="M 60 -2 L 75 -5 M 55 8 L 70 11" stroke="rgba(220,220,255,0.3)" stroke-width="1.5" stroke-linecap="round"/>

            <ellipse cx="0" cy="0" rx="40" ry="30" fill="url(#turtleShellTechGradient)" stroke="#163B3A" stroke-width="2.5"/> <!-- Shell -->
            <path d="M0,0 m -30,0 a30,22 0 1,0 60,0 a30,22 0 1,0 -60,0" fill="none" stroke="rgba(0,255,255,0.4)" stroke-width="1.5" />
            <path d="M0,0 m -20,0 a20,15 0 1,0 40,0 a20,15 0 1,0 -40,0" fill="none" stroke="rgba(255,255,0,0.5)" stroke-width="1.5" />
            <line x1="0" y1="0" x2="0" y2="-18" stroke="#FFD700" stroke-width="2.5" stroke-linecap="round" transform="rotate(135 0 0)"/> <!-- Clock hand 1 -->
            <line x1="0" y1="0" x2="12" y2="0" stroke="#FFD700" stroke-width="3" stroke-linecap="round" transform="rotate(-45 0 0)"/> <!-- Clock hand 2 -->
            <circle cx="0" cy="0" r="3.5" fill="#FF8C00" stroke="#A0522D" stroke-width="0.5"/>

            <path d="M -25 -5 Q -10 -12, 0 -8 Q 10 -4, 25 -6" stroke="#00FFFF" stroke-width="1.5" fill="none" filter="url(#glowFilter)"/>
            <path d="M -20 8 Q 0 15, 20 8" stroke="#FF00FF" stroke-width="1.5" fill="none" filter="url(#glowFilter)"/>
            <circle cx="18" cy="15" r="2" fill="#7FFF00" filter="url(#glowFilter)"/>
            <circle cx="-18" cy="-15" r="2" fill="#7FFF00" filter="url(#glowFilter)"/>
        </g>
    </g>
</svg>
SVG by DeepSeek R1
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#0a0a2e"/>
      <stop offset="100%" stop-color="#1a1a4a"/>
    </linearGradient>
    <radialGradient id="shellGrad">
      <stop offset="0%" stop-color="#ff6b6b"/>
      <stop offset="100%" stop-color="#ff8e8e"/>
    </radialGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="2" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

  <rect width="300" height="300" fill="url(#skyGrad)"/>

  <!-- Stars -->
  <g opacity="0.8">
    <circle cx="50" cy="40" r="1.2" fill="#fff"/>
    <circle cx="120" cy="80" r="0.8" fill="#fff"/>
    <circle cx="250" cy="30" r="1.5" fill="#fff"/>
    <circle cx="180" cy="150" r="1.1" fill="#fff"/>
    <path d="M280 120l-15-5" stroke="#fff" stroke-width="0.5" stroke-linecap="round"/>
  </g>

  <!-- Time Vortex -->
  <path d="M200 160c-20 40-60 30-90 20" stroke="url(#skyGrad)" stroke-width="8" stroke-dasharray="4" opacity="0.6"/>

  <!-- Racing Snail -->
  <g transform="translate(70 180)">
    <path d="M0 0Q30-40 60 0Q30 40 0 0" fill="url(#shellGrad)"/>
    <ellipse cx="60" cy="0" rx="30" ry="20" fill="#f5d7d7"/>
    <path d="M60 0q20 30 40 0" fill="#e8c4c4"/>
    <circle cx="75" cy="-15" r="3" fill="#ffec8b" filter="url(#glow)"/>
  </g>

  <!-- Time-Traveling Turtle -->
  <g transform="translate(160 200)">
    <path d="M0 0a25 15 0 1 0 50 0a25 15 0 1 0-50 0" fill="#2c5f2d"/>
    <circle cx="25" cy="0" r="20" fill="#006b76">
      <animateTransform attributeName="transform" type="rotate" from="0" to="360" dur="8s" repeatCount="indefinite"/>
    </circle>
    <path d="M10-10L0-30l10-5" stroke="#ffd700" stroke-width="2"/>
    <path d="M40-15L50-35l10-5" stroke="#ffd700" stroke-width="2"/>
  </g>

  <!-- Temporal Trail -->
  <g opacity="0.7">
    <path d="M220 210q-20-40 10-80" stroke="#9d4edd" stroke-width="4" stroke-dasharray="5"/>
    <circle cx="230" cy="150" r="3" fill="#4ea3df"/>
    <path d="M240 170l10-15-5 20z" fill="#88d8ff"/>
  </g>

  <!-- Ground -->
  <path d="M0 250h300v50H0" fill="#2d5a27"/>
  <path d="M50 260l-20 10 40-5z" fill="#3c6e37"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Gemini 2.5 Pro Preview 05-06 Player 1

Judge's Analysis

    Player 1's submission demonstrates greater creativity and technical quality, with vibrant colors, detailed designs, and clear depictions of both the giant snail and the time-traveling turtle under a starry sky.

    The composition captures the idea more effectively with dynamic elements like the glowing cosmic clock.

    Player 2's submission, while adhering to the prompt, is less detailed and lacks the visual appeal and imaginative elements seen in Player 1's work.

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
77
Player 2
20
Rectangles

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

Player 1
1
Player 2
1
Circles

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

Player 1
39
Player 2
7
Ellipses

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

Player 1
12
Player 2
1
Lines

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

Player 1
5
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
20
Player 2
11
Groups

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

Player 1
9
Player 2
4

Visual Effects Metrics

Gradients

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

Player 1
9
Player 2
2
Patterns

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

Player 1
Player 2
Filters

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

Player 1
4
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
17
Player 2
3
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
32
Player 2
5

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
46
Player 2
16

Interactivity Metrics

Animations

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

Player 1
Player 2
1
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
15
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
71
Player 2
30
Max Group Nesting

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

Player 1
2
Player 2
Defs Elements

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

Player 1
13
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
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