Back

SVG Drawing Match #1534

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Snail race on a rainbow highway"

SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:red"/>
      <stop offset="17%" style="stop-color:orange"/>
      <stop offset="33%" style="stop-color:yellow"/>
      <stop offset="50%" style="stop-color:green"/>
      <stop offset="67%" style="stop-color:blue"/>
      <stop offset="83%" style="stop-color:indigo"/>
      <stop offset="100%" style="stop-color:violet"/>
    </linearGradient>
    <radialGradient id="shell1" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#ffaa00"/>
      <stop offset="100%" style="stop-color:#cc7700"/>
    </radialGradient>
    <radialGradient id="shell2" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#ff44aa"/>
      <stop offset="100%" style="stop-color:#cc2288"/>
    </radialGradient>
  </defs>

  <!-- Rainbow Highway -->
  <path d="M0,200 Q150,100 300,200" stroke="url(#rainbow)" stroke-width="40" fill="none"/>
  <path d="M0,200 Q150,100 300,200" stroke="rgba(255,255,255,0.3)" stroke-width="35" fill="none"/>

  <!-- Snail 1 -->
  <g transform="translate(60,180) rotate(-20)">
    <path d="M0,0 Q5,-5 10,0 Q15,5 20,0" fill="none" stroke="#ffaa00" stroke-width="3"/>
    <circle cx="25" cy="0" r="12" fill="url(#shell1)"/>
    <circle cx="8" cy="-2" r="4" fill="#ffaa00"/>
    <circle cx="10" cy="-3" r="2" fill="black"/>
  </g>

  <!-- Snail 2 -->
  <g transform="translate(200,160) rotate(-15)">
    <path d="M0,0 Q5,-5 10,0 Q15,5 20,0" fill="none" stroke="#ff44aa" stroke-width="3"/>
    <circle cx="25" cy="0" r="12" fill="url(#shell2)"/>
    <circle cx="8" cy="-2" r="4" fill="#ff44aa"/>
    <circle cx="10" cy="-3" r="2" fill="black"/>
  </g>

  <!-- Finish Line -->
  <g transform="translate(260,180)">
    <rect x="0" y="-30" width="5" height="60" fill="black"/>
    <rect x="0" y="-30" width="5" height="10" fill="white"/>
    <rect x="0" y="-10" width="5" height="10" fill="white"/>
    <rect x="0" y="10" width="5" height="10" fill="white"/>
  </g>

  <!-- Speed Lines -->
  <g stroke="#ffffff" stroke-width="2" opacity="0.5">
    <line x1="40" y1="190" x2="60" y2="185"/>
    <line x1="180" y1="170" x2="200" y2="165"/>
  </g>

  <!-- Sparkles -->
  <g fill="#ffffff">
    <circle cx="100" cy="150" r="2"/>
    <circle cx="150" cy="140" r="2"/>
    <circle cx="220" cy="150" r="2"/>
    <circle cx="80" cy="170" r="2"/>
    <circle cx="180" cy="130" r="2"/>
  </g>
</svg>
SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Rainbow Highway -->
  <linearGradient id="rainbow" x1="0" x2="1" y1="0" y2="0">
    <stop offset="0" stop-color="#FF69B4" />
    <stop offset="0.2" stop-color="#FFC67D" />
    <stop offset="0.4" stop-color="#F7DC6F" />
    <stop offset="0.6" stop-color="#8BC34A" />
    <stop offset="0.8" stop-color="#45B3FA" />
    <stop offset="1" stop-color="#9C27B0" />
  </linearGradient>
  <rect x="50" y="100" width="200" height="50" fill="url(#rainbow)" rx="25" />
  
  <!-- Snails -->
  <symbol id="snail">
    <circle cx="0" cy="0" r="10" fill="#FFFFFF" />
    <circle cx="0" cy="-15" r="5" fill="#000000" />
    <path d="M 0 -20 L -10 -25 L 10 -25 Z" fill="#000000" />
  </symbol>
  
  <!-- Snail 1 -->
  <use xlink:href="#snail" x="70" y="125" transform="scale(0.8)" />
  <circle cx="70" y="125" r="8" fill="#FFC107" />
  
  <!-- Snail 2 -->
  <use xlink:href="#snail" x="120" y="125" transform="scale(0.9)" />
  <circle cx="120" y="125" r="9" fill="#8BC34A" />
  
  <!-- Snail 3 -->
  <use xlink:href="#snail" x="170" y="125" transform="scale(1)" />
  <circle cx="170" y="125" r="10" fill="#45B3FA" />
  
  <!-- Checkered Flag -->
  <pattern id="checkered" width="10" height="10" patternUnits="userSpaceOnUse">
    <rect x="0" y="0" width="5" height="5" fill="#FFFFFF" />
    <rect x="5" y="5" width="5" height="5" fill="#FFFFFF" />
  </pattern>
  <rect x="250" y="120" width="20" height="20" fill="url(#checkered)" rx="2" />
  
  <!-- Road Lines -->
  <line x1="50" y1="120" x2="250" y2="120" stroke="#FFFFFF" stroke-width="2" stroke-dasharray="5,5" />
  <line x1="50" y1="130" x2="250" y2="130" stroke="#FFFFFF" stroke-width="2" stroke-dasharray="5,5" />
  
  <!-- Stars -->
  <symbol id="star">
    <path d="M 0 -10 L 5 -5 L 0 -0 L -5 -5 Z" fill="#FFFFFF" />
  </symbol>
  <use xlink:href="#star" x="150" y="80" transform="scale(0.5)" />
  <use xlink:href="#star" x="220" y="60" transform="scale(0.7)" />
  <use xlink:href="#star" x="280" y="40" transform="scale(0.9)" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 1

Judge's Analysis

    Player 1's image creatively depicts snails racing on a rainbow highway, effectively capturing the theme with vibrant colors and dynamic composition.

    The use of a curved rainbow adds a sense of movement and excitement, enhancing the visual appeal.

    Player 2's submission failed to load, making it impossible to compete with Player 1's complete and imaginative entry.

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

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

Player 1
4
Player 2
4
Circles

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

Player 1
11
Player 2
5
Ellipses

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

Player 1
Player 2
Lines

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

Player 1
2
Player 2
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
4
Player 2
2
Groups

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

Player 1
5
Player 2

Visual Effects Metrics

Gradients

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

Player 1
3
Player 2
1
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
5
Player 2
9

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

Complexity Metrics

Path Commands

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

Player 1
10
Player 2
9
Max Group Nesting

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

Player 1
Player 2
Defs Elements

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

Player 1
3
Player 2
Use Elements

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

Player 1
Player 2
6

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