Back

SVG Drawing Match #1562

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A penguin juggling colorful fish under the northern lights"

SVG by Claude 3.7 Sonnet (2025-02-19)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Sky background with gradient -->
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#051937" />
      <stop offset="50%" stop-color="#082554" />
      <stop offset="100%" stop-color="#0a2e6b" />
    </linearGradient>
    
    <!-- Northern lights gradients -->
    <linearGradient id="aurora1" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#39FF14" stop-opacity="0.2" />
      <stop offset="50%" stop-color="#00FFFF" stop-opacity="0.7" />
      <stop offset="100%" stop-color="#39FF14" stop-opacity="0.2" />
    </linearGradient>
    
    <linearGradient id="aurora2" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#FF69B4" stop-opacity="0.2" />
      <stop offset="50%" stop-color="#9370DB" stop-opacity="0.7" />
      <stop offset="100%" stop-color="#FF69B4" stop-opacity="0.2" />
    </linearGradient>
    
    <!-- Fish pattern -->
    <pattern id="fishScale" width="5" height="5" patternUnits="userSpaceOnUse">
      <path d="M0,2.5 A2.5,2.5 0 0,1 5,2.5 A2.5,2.5 0 0,1 0,2.5 Z" fill="#ffffff" fill-opacity="0.2" />
    </pattern>
    
    <!-- Star pattern -->
    <filter id="glow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur stdDeviation="2" result="blur" />
      <feComposite in="SourceGraphic" in2="blur" operator="over" />
    </filter>
  </defs>
  
  <!-- Sky -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Stars -->
  <g>
    <circle cx="30" cy="40" r="1" fill="white" />
    <circle cx="50" cy="20" r="0.8" fill="white" />
    <circle cx="80" cy="35" r="1.2" fill="white" />
    <circle cx="120" cy="15" r="1" fill="white" />
    <circle cx="150" cy="30" r="0.7" fill="white" />
    <circle cx="180" cy="10" r="1.3" fill="white" />
    <circle cx="210" cy="40" r="0.9" fill="white" />
    <circle cx="240" cy="20" r="1.1" fill="white" />
    <circle cx="270" cy="35" r="0.8" fill="white" />
    <circle cx="20" cy="70" r="1" fill="white" />
    <circle cx="60" cy="85" r="0.7" fill="white" />
    <circle cx="100" cy="65" r="1.2" fill="white" />
    <circle cx="140" cy="80" r="0.9" fill="white" />
    <circle cx="190" cy="60" r="1" fill="white" />
    <circle cx="230" cy="75" r="0.8" fill="white" />
    <circle cx="280" cy="65" r="1.1" fill="white" />
  </g>
  
  <!-- Northern Lights -->
  <path d="M0,50 Q75,20 150,60 Q225,100 300,40" stroke="url(#aurora1)" stroke-width="15" fill="none" opacity="0.7">
    <animate attributeName="d" 
             values="M0,50 Q75,20 150,60 Q225,100 300,40;
                     M0,60 Q75,30 150,40 Q225,80 300,50;
                     M0,50 Q75,20 150,60 Q225,100 300,40" 
             dur="15s" 
             repeatCount="indefinite" />
  </path>
  
  <path d="M0,100 Q75,70 150,110 Q225,150 300,90" stroke="url(#aurora2)" stroke-width="20" fill="none" opacity="0.6">
    <animate attributeName="d" 
             values="M0,100 Q75,70 150,110 Q225,150 300,90;
                     M0,90 Q75,120 150,90 Q225,130 300,100;
                     M0,100 Q75,70 150,110 Q225,150 300,90" 
             dur="17s" 
             repeatCount="indefinite" />
  </path>
  
  <!-- Snow ground -->
  <ellipse cx="150" cy="300" rx="150" ry="30" fill="white" />
  
  <!-- Penguin Body -->
  <ellipse cx="150" cy="230" rx="30" ry="45" fill="black" />
  <ellipse cx="150" cy="230" rx="22" ry="35" fill="white" />
  
  <!-- Penguin Head -->
  <circle cx="150" cy="175" r="25" fill="black" />
  <ellipse cx="150" cy="182" rx="15" ry="12" fill="white" />
  
  <!-- Penguin Eyes -->
  <circle cx="140" cy="170" r="5" fill="white" />
  <circle cx="160" cy="170" r="5" fill="white" />
  <circle cx="140" cy="170" r="2" fill="black" />
  <circle cx="160" cy="170" r="2" fill="black" />
  
  <!-- Penguin Beak -->
  <path d="M145,185 L155,185 L150,195 Z" fill="orange" />
  
  <!-- Penguin Flippers -->
  <path d="M120,220 Q105,235 115,255" stroke="black" stroke-width="10" fill="none" stroke-linecap="round" />
  <path d="M180,220 Q195,235 185,255" stroke="black" stroke-width="10" fill="none" stroke-linecap="round" />
  
  <!-- Penguin Feet -->
  <path d="M140,275 L130,283 L140,283 L150,283" fill="orange" />
  <path d="M160,275 L170,283 L160,283 L150,283" fill="orange" />
  
  <!-- Juggling Fish -->
  <!-- Fish 1 (top) -->
  <g transform="translate(150, 110) rotate(-30) scale(0.8)">
    <path d="M0,0 Q10,-15 30,0 Q10,15 0,0 Z" fill="#FF6B6B" stroke="#CC5757" stroke-width="1" />
    <path d="M30,0 L40,10 L40,-10 Z" fill="#FF6B6B" stroke="#CC5757" stroke-width="1" />
    <circle cx="10" cy="-5" r="2" fill="black" />
    <path d="M0,0 Q10,-15 30,0 Q10,15 0,0 Z" fill="url(#fishScale)" />
  </g>
  
  <!-- Fish 2 (left) -->
  <g transform="translate(90, 160) rotate(30) scale(0.8)">
    <path d="M0,0 Q10,-15 30,0 Q10,15 0,0 Z" fill="#4ECDC4" stroke="#3DAEA7" stroke-width="1" />
    <path d="M30,0 L40,10 L40,-10 Z" fill="#4ECDC4" stroke="#3DAEA7" stroke-width="1" />
    <circle cx="10" cy="-5" r="2" fill="black" />
    <path d="M0,0 Q10,-15 30,0 Q10,15 0,0 Z" fill="url(#fishScale)" />
  </g>
  
  <!-- Fish 3 (right) -->
  <g transform="translate(210, 160) rotate(-30) scale(0.8)">
    <path d="M0,0 Q10,-15 30,0 Q10,15 0,0 Z" fill="#FFD166" stroke="#E5BD5C" stroke-width="1" />
    <path d="M30,0 L40,10 L40,-10 Z" fill="#FFD166" stroke="#E5BD5C" stroke-width="1" />
    <circle cx="10" cy="-5" r="2" fill="black" />
    <path d="M0,0 Q10,-15 30,0 Q10,15 0,0 Z" fill="url(#fishScale)" />
  </g>
  
  <!-- Juggling Motion Lines -->
  <path d="M150,175 C140,150 90,160 90,160" stroke="white" stroke-width="1" stroke-dasharray="3,3" fill="none" />
  <path d="M150,175 C160,150 210,160 210,160" stroke="white" stroke-width="1" stroke-dasharray="3,3" fill="none" />
  <path d="M150,175 C150,140 150,110 150,110" stroke="white" stroke-width="1" stroke-dasharray="3,3" fill="none" />
  
  <!-- Motion blur on fish -->
  <ellipse cx="150" cy="110" rx="5" ry="2" fill="white" opacity="0.3" />
  <ellipse cx="90" cy="160" rx="5" ry="2" fill="white" opacity="0.3" />
  <ellipse cx="210" cy="160" rx="5" ry="2" fill="white" opacity="0.3" />
  
  <!-- Subtle reflections on snow -->
  <ellipse cx="150" cy="300" rx="120" ry="20" fill="#39FF14" opacity="0.05" />
  <ellipse cx="150" cy="300" rx="100" ry="15" fill="#9370DB" opacity="0.05" />
</svg>
SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Northern Lights Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#auroraGradient)"/>
  <linearGradient id="auroraGradient" x1="0%" y1="0%" x2="0%" y2="100%">
    <stop offset="0%" stop-color="#3498db" stop-opacity="0.5"/>
    <stop offset="50%" stop-color="#f1c40f" stop-opacity="0.8"/>
    <stop offset="100%" stop-color="#e74c3c" stop-opacity="1"/>
  </linearGradient>

  <!-- Penguin -->
  <g transform="translate(150, 200)">
    <circle cx="0" cy="0" r="30" fill="#222" stroke="#333" stroke-width="2"/>
    <ellipse cx="0" cy="-20" rx="15" ry="10" fill="#fff" stroke="#333" stroke-width="2"/>
    <g transform="translate(0, 10)">
      <path d="M-20 0 L20 0 L0 -30Z" fill="#222" stroke="#333" stroke-width="2"/>
      <circle cx="0" cy="-30" r="5" fill="#fff" stroke="#333" stroke-width="2"/>
    </g>
    <g transform="translate(0, 40)">
      <path d="M-20 0 L20 0 L0 20Z" fill="#222" stroke="#333" stroke-width="2"/>
      <circle cx="0" cy="20" r="5" fill="#fff" stroke="#333" stroke-width="2"/>
    </g>
  </g>

  <!-- Juggling Fish -->
  <g transform="translate(120, 150)">
    <ellipse cx="0" cy="0" rx="10" ry="20" fill="#a1c45a" stroke="#333" stroke-width="2"/>
    <path d="M-5 -15 L5 -15 L0 15Z" fill="#3498db" stroke="#333" stroke-width="2"/>
  </g>
  <g transform="translate(180, 100)">
    <ellipse cx="0" cy="0" rx="10" ry="20" fill="#e67e73" stroke="#333" stroke-width="2"/>
    <path d="M-5 -15 L5 -15 L0 15Z" fill="#f1c40f" stroke="#333" stroke-width="2"/>
  </g>
  <g transform="translate(220, 120)">
    <ellipse cx="0" cy="0" rx="10" ry="20" fill="#8e44ad" stroke="#333" stroke-width="2"/>
    <path d="M-5 -15 L5 -15 L0 15Z" fill="#e74c3c" stroke="#333" stroke-width="2"/>
  </g>

  <!-- Movement Lines -->
  <path d="M120 150 L180 100" stroke="#fff" stroke-width="2" stroke-dasharray="5,5"/>
  <path d="M180 100 L220 120" stroke="#fff" stroke-width="2" stroke-dasharray="5,5"/>
  <path d="M220 120 L120 150" stroke="#fff" stroke-width="2" stroke-dasharray="5,5"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet (2025-02-19) Player 1

Judge's Analysis

    Player 1's image creatively incorporates a penguin juggling colorful fish under a backdrop of the northern lights, adhering closely to the prompt.

    The technical quality is strong with clear lines and a cohesive color scheme.

    Player 2's submission lacks clear representation of a penguin or the northern lights, reducing adherence to the prompt and overall visual appeal.

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
54
Player 2
16
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
24
Player 2
3
Ellipses

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

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

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

Player 1
4
Player 2
6

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

The number of elements with opacity attributes in the SVG.

Player 1
7
Player 2
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
13
Player 2
15

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
16
Player 2
9

Interactivity Metrics

Animations

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

Player 1
2
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
68
Player 2
26
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
5
Player 2
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