Back

SVG Drawing Match #677

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A clock with rainbow-colored numbers and melting hands"

SVG by o3-mini high (2025-01-31)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <!-- Clock face gradient -->
    <radialGradient id="clockFaceGrad" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#FFFFFF"/>
      <stop offset="100%" stop-color="#DDDDDD"/>
    </radialGradient>
    <!-- Rainbow gradients for numbers -->
    <linearGradient id="rainbow12" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#FF0000"/>
      <stop offset="100%" stop-color="#FF6666"/>
    </linearGradient>
    <linearGradient id="rainbow1" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#FF7F00"/>
      <stop offset="100%" stop-color="#FFB266"/>
    </linearGradient>
    <linearGradient id="rainbow2" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#FFFF00"/>
      <stop offset="100%" stop-color="#FFFF66"/>
    </linearGradient>
    <linearGradient id="rainbow3" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#7FFF00"/>
      <stop offset="100%" stop-color="#ADFF2F"/>
    </linearGradient>
    <linearGradient id="rainbow4" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#00FF00"/>
      <stop offset="100%" stop-color="#66FF66"/>
    </linearGradient>
    <linearGradient id="rainbow5" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#00FFFF"/>
      <stop offset="100%" stop-color="#66FFFF"/>
    </linearGradient>
    <linearGradient id="rainbow6" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#0000FF"/>
      <stop offset="100%" stop-color="#6666FF"/>
    </linearGradient>
    <linearGradient id="rainbow7" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#4B0082"/>
      <stop offset="100%" stop-color="#6A5ACD"/>
    </linearGradient>
    <linearGradient id="rainbow8" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#8A2BE2"/>
      <stop offset="100%" stop-color="#A17BE2"/>
    </linearGradient>
    <linearGradient id="rainbow9" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#FF00FF"/>
      <stop offset="100%" stop-color="#FF66FF"/>
    </linearGradient>
    <linearGradient id="rainbow10" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#FF1493"/>
      <stop offset="100%" stop-color="#FF73AB"/>
    </linearGradient>
    <linearGradient id="rainbow11" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#FFD700"/>
      <stop offset="100%" stop-color="#FFEC99"/>
    </linearGradient>
    <!-- Gradients for melting hands -->
    <linearGradient id="meltGrad1" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#333333"/>
      <stop offset="100%" stop-color="#000000"/>
    </linearGradient>
    <linearGradient id="meltGrad2" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#555555"/>
      <stop offset="100%" stop-color="#111111"/>
    </linearGradient>
  </defs>
  
  <!-- Clock face -->
  <circle cx="150" cy="150" r="120" fill="url(#clockFaceGrad)" stroke="#999" stroke-width="4"/>
  
  <!-- Rainbow numbers -->
  <g transform="translate(150,150) rotate(0)">
    <text transform="rotate(0)" x="0" y="-100" text-anchor="middle" font-size="20" fill="url(#rainbow12)" font-family="Arial" font-weight="bold">12</text>
  </g>
  <g transform="translate(150,150) rotate(30)">
    <text transform="rotate(-30)" x="0" y="-100" text-anchor="middle" font-size="20" fill="url(#rainbow1)" font-family="Arial" font-weight="bold">1</text>
  </g>
  <g transform="translate(150,150) rotate(60)">
    <text transform="rotate(-60)" x="0" y="-100" text-anchor="middle" font-size="20" fill="url(#rainbow2)" font-family="Arial" font-weight="bold">2</text>
  </g>
  <g transform="translate(150,150) rotate(90)">
    <text transform="rotate(-90)" x="0" y="-100" text-anchor="middle" font-size="20" fill="url(#rainbow3)" font-family="Arial" font-weight="bold">3</text>
  </g>
  <g transform="translate(150,150) rotate(120)">
    <text transform="rotate(-120)" x="0" y="-100" text-anchor="middle" font-size="20" fill="url(#rainbow4)" font-family="Arial" font-weight="bold">4</text>
  </g>
  <g transform="translate(150,150) rotate(150)">
    <text transform="rotate(-150)" x="0" y="-100" text-anchor="middle" font-size="20" fill="url(#rainbow5)" font-family="Arial" font-weight="bold">5</text>
  </g>
  <g transform="translate(150,150) rotate(180)">
    <text transform="rotate(-180)" x="0" y="-100" text-anchor="middle" font-size="20" fill="url(#rainbow6)" font-family="Arial" font-weight="bold">6</text>
  </g>
  <g transform="translate(150,150) rotate(210)">
    <text transform="rotate(-210)" x="0" y="-100" text-anchor="middle" font-size="20" fill="url(#rainbow7)" font-family="Arial" font-weight="bold">7</text>
  </g>
  <g transform="translate(150,150) rotate(240)">
    <text transform="rotate(-240)" x="0" y="-100" text-anchor="middle" font-size="20" fill="url(#rainbow8)" font-family="Arial" font-weight="bold">8</text>
  </g>
  <g transform="translate(150,150) rotate(270)">
    <text transform="rotate(-270)" x="0" y="-100" text-anchor="middle" font-size="20" fill="url(#rainbow9)" font-family="Arial" font-weight="bold">9</text>
  </g>
  <g transform="translate(150,150) rotate(300)">
    <text transform="rotate(-300)" x="0" y="-100" text-anchor="middle" font-size="20" fill="url(#rainbow10)" font-family="Arial" font-weight="bold">10</text>
  </g>
  <g transform="translate(150,150) rotate(330)">
    <text transform="rotate(-330)" x="0" y="-100" text-anchor="middle" font-size="20" fill="url(#rainbow11)" font-family="Arial" font-weight="bold">11</text>
  </g>
  
  <!-- Melting clock hands -->
  <!-- Hour hand (short, pointing upward) -->
  <g transform="translate(150,150)">
    <path d="M0,0 L -10,-70 Q 0,-90 10,-70 L0,0 Z" fill="url(#meltGrad1)"/>
  </g>
  <!-- Minute hand (long, rotated 90° to point right) -->
  <g transform="translate(150,150) rotate(90)">
    <path d="M0,0 L -12,-80 Q 0,-100 12,-80 L0,0 Z" fill="url(#meltGrad2)"/>
  </g>
  
  <!-- Dripping melt effect at the bottom of the clock -->
  <path d="M90,260 Q150,290 210,260 L210,265 Q150,295 90,265 Z" fill="#BBBBBB" opacity="0.5"/>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <style>
    .number-text {
      font-family: Arial, sans-serif;
      font-size: 24;
      fill: url(#rainbow-gradient);
    }
    .hand {
      stroke: white;
      stroke-width: 4;
      fill: url(#melt-gradient);
    }
    .melt-drip {
      fill: none;
      stroke: url(#melt-gradient);
      stroke-width: 2;
    }
  </style>
  <defs>
    <linearGradient id="rainbow-gradient" x1="0" x2="1" y1="0.5" y2="0.5">
      <stop offset="0" stop-color="#ff0000"/>
      <stop offset="0.1667" stop-color="#ff9900"/>
      <stop offset="0.3333" stop-color="#ffff00"/>
      <stop offset="0.5" stop-color="#00ff00"/>
      <stop offset="0.6667" stop-color="#00ffff"/>
      <stop offset="0.8333" stop-color="#0000ff"/>
      <stop offset="1" stop-color="#ff00ff"/>
    </linearGradient>
    <radialGradient id="melt-gradient" cx="0.5" cy="0.5" rx="0.5" ry="0.5">
      <stop offset="0" stop-color="#ffffff" stop-opacity="1"/>
      <stop offset="1" stop-color="#ff6600" stop-opacity="0"/>
    </radialGradient>
    <linearGradient id="clock-face" x1="0" x2="300" y1="150" y2="150">
      <stop offset="0" stop-color="#1a1a1a"/>
      <stop offset="1" stop-color="#4a4a4a"/>
    </linearGradient>
  </defs>
  <g transform="translate(150,150)">
    <!-- Clock face background -->
    <circle r="140" fill="url(#clock-face)"/>
    
    <!-- Numbers -->
    <g transform="rotate(-90)">
      <text x="0" y="20" transform="rotate(30)" class="number-text">12</text>
      <text x="0" y="50" transform="rotate(60)" class="number-text">3</text>
      <text x="0" y="80" transform="rotate(90)" class="number-text">6</text>
      <text x="0" y="110" transform="rotate(120)" class="number-text">9</text>
    </g>

    <!-- Melting circles around numbers -->
    <circle cx="0" cy="-120" r="10" transform="rotate(30)" fill="url(#rainbow-gradient)"/>
    <circle cx="60" cy="-80" r="10" transform="rotate(60)" fill="url(#rainbow-gradient)"/>
    <circle cx="120" cy="-40" r="10" transform="rotate(90)" fill="url(#rainbow-gradient)"/>
    <circle cx="170" cy="0" r="10" transform="rotate(120)" fill="url(#rainbow-gradient)"/>
    <circle cx="220" cy="-40" r="10" transform="rotate(150)" fill="url(#rainbow-gradient)"/>
    <circle cx="260" cy="-80" r="10" transform="rotate(180)" fill="url(#rainbow-gradient)"/>
    <circle cx="290" cy="-120" r="10" transform="rotate(210)" fill="url(#rainbow-gradient)"/>
    <circle cx="310" cy="-150" r="10" transform="rotate(240)" fill="url(#rainbow-gradient)"/>
    <circle cx="320" cy="-170" r="10" transform="rotate(270)" fill="url(#rainbow-gradient)"/>
    <circle cx="310" cy="-190" r="10" transform="rotate(300)" fill="url(#rainbow-gradient)"/>
    <circle cx="290" cy="-200" r="10" transform="rotate(330)" fill="url(#rainbow-gradient)"/>
    <circle cx="260" cy="-210" r="10" transform="rotate(360)" fill="url(#rainbow-gradient)"/>

    <!-- Melting hour hand -->
    <path d="M 0 -80 Q 0 -120 0 -150" class="hand"/>
    <path d="M 0 -150 Q -20 -160 -40 -160" class="melt-drip"/>
    <path d="M 0 -150 Q 20 -160 40 -160" class="melt-drip"/>

    <!-- Melting minute hand -->
    <path d="M 0 -130 Q 0 -160 0 -180" class="hand"/>
    <path d="M 0 -180 Q -30 -190 -50 -190" class="melt-drip"/>
    <path d="M 0 -180 Q 30 -190 50 -190" class="melt-drip"/>

    <!-- Center glow -->
    <circle r="10" fill="url(#melt-gradient)"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Llama-70B Player 2

Judge's Analysis

    Player 2's submission better captures the whimsical and surreal nature of the prompt with rainbow-colored numbers and a visually interesting composition.

    The melting effect on the numbers adds a creative touch, while the overall design is more visually appealing.

    Player 1's image lacks the melting element and has limited use of rainbow colors, making it less aligned with the prompt.

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

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

Player 1
Player 2
Circles

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

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

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

Player 1
14
Player 2
2

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
32
Player 2
11

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
26
Player 2
18

Complexity Metrics

Path Commands

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

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

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