Back

SVG Drawing Match #2108

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A cat juggling fish while riding a unicycle on a rainbow"

SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Definitions -->
  <defs>
    <!-- Rainbow gradient -->
    <linearGradient id="rainbowGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#FF0000"/>
      <stop offset="16.6%" stop-color="#FF9900"/>
      <stop offset="33.3%" stop-color="#FFFF00"/>
      <stop offset="50%" stop-color="#00FF00"/>
      <stop offset="66.6%" stop-color="#0099FF"/>
      <stop offset="83.3%" stop-color="#6633FF"/>
      <stop offset="100%" stop-color="#FF00FF"/>
    </linearGradient>
    
    <!-- Fish pattern -->
    <pattern id="fishPattern" width="30" height="20" patternUnits="userSpaceOnUse">
      <path d="M5,10 Q10,5 15,10 Q20,15 25,10" fill="none" stroke="#00AAFF" stroke-width="1"/>
    </pattern>
    
    <!-- Cat fur texture -->
    <pattern id="furPattern" width="5" height="5" patternUnits="userSpaceOnUse">
      <circle cx="2.5" cy="2.5" r="0.5" fill="#DDDDDD"/>
    </pattern>
    
    <!-- Fish gradient -->
    <linearGradient id="fishGradient1" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#FF5E5E"/>
      <stop offset="50%" stop-color="#FF8A8A"/>
      <stop offset="100%" stop-color="#FF5E5E"/>
    </linearGradient>
    
    <linearGradient id="fishGradient2" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#5E8EFF"/>
      <stop offset="50%" stop-color="#8EADFF"/>
      <stop offset="100%" stop-color="#5E8EFF"/>
    </linearGradient>
    
    <linearGradient id="fishGradient3" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#FFDD5E"/>
      <stop offset="50%" stop-color="#FFE88E"/>
      <stop offset="100%" stop-color="#FFDD5E"/>
    </linearGradient>
    
    <filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
      <feDropShadow dx="2" dy="4" stdDeviation="4" flood-opacity="0.3"/>
    </filter>
  </defs>
  
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#87CEEB"/>
  
  <!-- Rainbow -->
  <path d="M-50,250 Q150,100 350,250" stroke="url(#rainbowGradient)" stroke-width="20" fill="none" stroke-linecap="round"/>
  
  <!-- Unicycle -->
  <circle cx="150" cy="220" r="25" fill="none" stroke="#333" stroke-width="4"/>
  <line x1="150" y1="195" x2="150" y2="170" stroke="#333" stroke-width="4"/>
  <line x1="150" y1="170" x2="145" y2="150" stroke="#333" stroke-width="3"/>
  <line x1="150" y1="170" x2="155" y2="150" stroke="#333" stroke-width="3"/>
  <rect x="140" y="181" width="20" height="6" fill="#333" rx="2"/>
  
  <!-- Cat -->
  <g transform="translate(150, 140) rotate(-5)">
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="25" ry="20" fill="#F9C846" filter="url(#shadow)"/>
    <ellipse cx="0" cy="0" rx="22" ry="17" fill="#F9C846" fill-opacity="0.7"/>
    
    <!-- Head -->
    <ellipse cx="0" cy="-25" rx="18" ry="16" fill="#F9C846" filter="url(#shadow)"/>
    
    <!-- Ears -->
    <path d="M-12,-35 L-18,-48 L-6,-40 Z" fill="#F9C846"/>
    <path d="M12,-35 L18,-48 L6,-40 Z" fill="#F9C846"/>
    <path d="M-12,-35 L-16,-45 L-8,-39 Z" fill="#FFA7A7"/>
    <path d="M12,-35 L16,-45 L8,-39 Z" fill="#FFA7A7"/>
    
    <!-- Face -->
    <circle cx="-7" cy="-27" r="2.5" fill="#333"/>
    <circle cx="7" cy="-27" r="2.5" fill="#333"/>
    <path d="M0,-22 L0,-18" stroke="#333" stroke-width="1" stroke-linecap="round"/>
    <path d="M0,-18 C2,-16 4,-16 6,-17" stroke="#333" stroke-width="1" fill="none"/>
    <path d="M0,-18 C-2,-16 -4,-16 -6,-17" stroke="#333" stroke-width="1" fill="none"/>
    
    <!-- Whiskers -->
    <line x1="-8" y1="-20" x2="-25" y2="-22" stroke="#999" stroke-width="0.8"/>
    <line x1="-8" y1="-20" x2="-25" y2="-18" stroke="#999" stroke-width="0.8"/>
    <line x1="8" y1="-20" x2="25" y2="-22" stroke="#999" stroke-width="0.8"/>
    <line x1="8" y1="-20" x2="25" y2="-18" stroke="#999" stroke-width="0.8"/>
    
    <!-- Arms juggling -->
    <path d="M-15,-5 C-25,-20 -35,-10 -40,0" stroke="#F9C846" stroke-width="4" fill="none" stroke-linecap="round"/>
    <path d="M15,-5 C25,-20 35,-10 40,0" stroke="#F9C846" stroke-width="4" fill="none" stroke-linecap="round"/>
    
    <!-- Legs on pedals -->
    <path d="M-10,15 C-15,35 -10,45 0,45" stroke="#F9C846" stroke-width="4" fill="none" stroke-linecap="round"/>
    <path d="M10,15 C15,35 10,45 0,45" stroke="#F9C846" stroke-width="4" fill="none" stroke-linecap="round"/>
    
    <!-- Tail -->
    <path d="M20,10 C35,5 40,15 35,25 C45,20 50,10 40,0" stroke="#F9C846" stroke-width="4" fill="none" stroke-linecap="round"/>
  </g>
  
  <!-- Juggling Fish -->
  <g>
    <path d="M120,80 C115,75 105,75 100,80 C95,85 95,95 100,100 L80,110 L100,120 C95,125 95,135 100,140 C105,145 115,145 120,140 C125,135 125,125 120,120 C140,115 140,105 120,100 C125,95 125,85 120,80Z" fill="url(#fishGradient1)" filter="url(#shadow)" transform="rotate(30, 100, 110)">
      <animateTransform attributeName="transform" type="rotate" from="30 100 110" to="390 100 110" dur="2s" repeatCount="indefinite"/>
    </path>
    <circle cx="108" cy="90" r="2" fill="black" transform="rotate(30, 100, 110)">
      <animateTransform attributeName="transform" type="rotate" from="30 100 110" to="390 100 110" dur="2s" repeatCount="indefinite"/>
    </circle>
  </g>
  
  <g>
    <path d="M185,50 C180,45 170,45 165,50 C160,55 160,65 165,70 L145,80 L165,90 C160,95 160,105 165,110 C170,115 180,115 185,110 C190,105 190,95 185,90 C205,85 205,75 185,70 C190,65 190,55 185,50Z" fill="url(#fishGradient2)" filter="url(#shadow)" transform="rotate(-20, 175, 80)">
      <animateTransform attributeName="transform" type="rotate" from="-20 175 80" to="-380 175 80" dur="2s" repeatCount="indefinite" begin="0.3s"/>
    </path>
    <circle cx="173" cy="60" r="2" fill="black" transform="rotate(-20, 175, 80)">
      <animateTransform attributeName="transform" type="rotate" from="-20 175 80" to="-380 175 80" dur="2s" repeatCount="indefinite" begin="0.3s"/>
    </circle>
  </g>
  
  <g>
    <path d="M150,40 C145,35 135,35 130,40 C125,45 125,55 130,60 L110,70 L130,80 C125,85 125,95 130,100 C135,105 145,105 150,100 C155,95 155,85 150,80 C170,75 170,65 150,60 C155,55 155,45 150,40Z" fill="url(#fishGradient3)" filter="url(#shadow)" transform="rotate(10, 140, 70)">
      <animateTransform attributeName="transform" type="rotate" from="10 140 70" to="370 140 70" dur="2s" repeatCount="indefinite" begin="0.6s"/>
    </path>
    <circle cx="138" cy="50" r="2" fill="black" transform="rotate(10, 140, 70)">
      <animateTransform attributeName="transform" type="rotate" from="10 140 70" to="370 140 70" dur="2s" repeatCount="indefinite" begin="0.6s"/>
    </circle>
  </g>
  
  <!-- Sparkles -->
  <g>
    <circle cx="90" cy="60" r="2" fill="white">
      <animate attributeName="opacity" values="0;1;0" dur="1.5s" repeatCount="indefinite"/>
    </circle>
    <circle cx="210" cy="70" r="2" fill="white">
      <animate attributeName="opacity" values="0;1;0" dur="1.3s" repeatCount="indefinite" begin="0.2s"/>
    </circle>
    <circle cx="180" cy="40" r="2" fill="white">
      <animate attributeName="opacity" values="0;1;0" dur="1.7s" repeatCount="indefinite" begin="0.5s"/>
    </circle>
    <circle cx="120" cy="50" r="2" fill="white">
      <animate attributeName="opacity" values="0;1;0" dur="1.4s" repeatCount="indefinite" begin="0.8s"/>
    </circle>
  </g>
  
  <!-- Small clouds -->
  <path d="M40,60 Q50,50 60,60 Q70,50 80,60 Q80,70 60,70 Q40,70 40,60" fill="white" fill-opacity="0.8"/>
  <path d="M220,50 Q230,40 240,50 Q250,40 260,50 Q260,60 240,60 Q220,60 220,50" fill="white" fill-opacity="0.8"/>
</svg>
SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Rainbow Background -->
  <linearGradient id="rainbow" x1="0" x2="0" y1="0" y2="1">
    <stop offset="0" stop-color="#FFC67D"/>
    <stop offset="0.2" stop-color="#FF69B4"/>
    <stop offset="0.4" stop-color="#8BC34A"/>
    <stop offset="0.6" stop-color="#45B3FA"/>
    <stop offset="0.8" stop-color="#9C27B0"/>
    <stop offset="1" stop-color="#FFC67D"/>
  </linearGradient>
  <rect x="0" y="0" width="300" height="300" fill="url(#rainbow)"/>
  
  <!-- Unicycle -->
  <circle cx="150" cy="120" r="20" fill="#F7F7F7"/>
  <circle cx="150" cy="120" r="15" fill="#CCCCCC"/>
  <circle cx="150" cy="120" r="10" fill="#999999"/>
  <path d="M150 140 C150 160 170 160 170 140 L150 140 Z" fill="#CCCCCC"/>
  
  <!-- Cat -->
  <g transform="translate(150 140)">
    <path d="M-20 -20 C-10 -30 10 -30 20 -20 L-20 -20 Z" fill="#FFD7BE"/>
    <path d="M-15 -25 C-5 -35 5 -35 15 -25 L-15 -25 Z" fill="#FFC499"/>
    <circle cx="0" cy="-30" r="5" fill="#FFFFFF"/>
    <circle cx="0" cy="-30" r="3" fill="#000000"/>
    <path d="M-10 -10 C-10 10 10 10 10 -10 L-10 -10 Z" fill="#FFC499"/>
    <path d="M-5 -5 C-5 5 5 5 5 -5 L-5 -5 Z" fill="#FFD7BE"/>
  </g>
  
  <!-- Fish -->
  <g transform="translate(150 160)">
    <circle cx="-20" cy="0" r="10" fill="#87CEEB"/>
    <circle cx="-20" cy="0" r="8" fill="#ADD8E6"/>
    <path d="M-25 -5 C-25 5 -15 5 -15 -5 L-25 -5 Z" fill="#87CEEB"/>
    <circle cx="-10" cy="0" r="5" fill="#FFFFFF"/>
    <circle cx="-10" cy="0" r="3" fill="#000000"/>
  </g>
  <g transform="translate(150 180)">
    <circle cx="20" cy="0" r="10" fill="#87CEEB"/>
    <circle cx="20" cy="0" r="8" fill="#ADD8E6"/>
    <path d="M25 -5 C25 5 15 5 15 -5 L25 -5 Z" fill="#87CEEB"/>
    <circle cx="10" cy="0" r="5" fill="#FFFFFF"/>
    <circle cx="10" cy="0" r="3" fill="#000000"/>
  </g>
  <g transform="translate(150 200)">
    <circle cx="0" cy="0" r="10" fill="#87CEEB"/>
    <circle cx="0" cy="0" r="8" fill="#ADD8E6"/>
    <path d="M-5 -5 C-5 5 5 5 5 -5 L-5 -5 Z" fill="#87CEEB"/>
    <circle cx="0" cy="0" r="5" fill="#FFFFFF"/>
    <circle cx="0" cy="0" r="3" fill="#000000"/>
  </g>
  
  <!-- Juggling Arcs -->
  <path d="M130 160 C140 170 150 180 160 190" stroke="#CCCCCC" stroke-width="2" fill="none"/>
  <path d="M170 160 C180 170 190 180 200 190" stroke="#CCCCCC" stroke-width="2" fill="none"/>
  <path d="M150 190 C140 180 130 170 120 160" stroke="#CCCCCC" stroke-width="2" fill="none"/>
</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 clearly depicts a cat juggling colorful fish while riding a unicycle on a rainbow, adhering well to the prompt.

    The composition is playful and visually appealing with distinct elements.

    Player 2's image lacks clarity in representing the cat and the unicycle, making it less effective in fulfilling the prompt's requirements.

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
42
Player 2
29
Rectangles

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

Player 1
2
Player 2
1
Circles

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

Player 1
11
Player 2
17
Ellipses

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

Player 1
3
Player 2
Lines

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

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

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

Player 1
5
Player 2
4

Visual Effects Metrics

Gradients

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

Player 1
4
Player 2
1
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
18
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
22
Player 2
14

Interactivity Metrics

Animations

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

Player 1
10
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
7
Player 2
4

Complexity Metrics

Path Commands

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

Player 1
81
Player 2
38
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
7
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