Back

SVG Drawing Match #20

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A tea party with floating jellyfish under a giant, glowing moon"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background - Night Sky -->
  <rect x="0" y="0" width="300" height="300" fill="#150050" />
  
  <!-- Giant Moon -->
  <circle cx="150" cy="150" r="100" fill="#FDE74C" />
  
  <!-- Moon Glow -->
  <circle cx="150" cy="150" r="120" fill="#FDE74C" opacity="0.5" />
  
  <!-- Tea Table -->
  <rect x="50" y="180" width="200" height="80" fill="#205072" />
  
  <!-- Tea Cups -->
  <circle cx="90" cy="220" r="15" fill="#FF4E50" />
  <circle cx="130" cy="220" r="15" fill="#FFA07A" />
  <circle cx="170" cy="220" r="15" fill="#FFD369" />
  <circle cx="210" cy="220" r="15" fill="#77D8D8" />
  
  <!-- Tea Cups Handles -->
  <path d="M85,220 Q90,190 95,220" fill="none" stroke="#FFF" stroke-width="2" />
  <path d="M125,220 Q130,190 135,220" fill="none" stroke="#FFF" stroke-width="2" />
  <path d="M165,220 Q170,190 175,220" fill="none" stroke="#FFF" stroke-width="2" />
  <path d="M205,220 Q210,190 215,220" fill="none" stroke="#FFF" stroke-width="2" />
  
  <!-- Jellyfish Body -->
  <ellipse cx="80" cy="90" rx="20" ry="60" fill="#FFE066" />
  <ellipse cx="140" cy="80" rx="25" ry="70" fill="#63A088" />
  <ellipse cx="200" cy="100" rx="30" ry="50" fill="#FF8C42" />
  
  <!-- Jellyfish Tentacles -->
  <path d="M72,120 Q60,135 65,160 Q70,140 72,120" fill="none" stroke="#FFE066" stroke-width="2" />
  <path d="M138,140 Q130,155 135,180 Q140,160 138,140" fill="none" stroke="#63A088" stroke-width="2" />
  <path d="M198,130 Q190,145 195,170 Q200,150 198,130" fill="none" stroke="#FF8C42" stroke-width="2" />
</svg>
SVG by Claude 3.7 Sonnet Thinking (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Definitions -->
  <defs>
    <!-- Gradients -->
    <radialGradient id="moonGlow" cx="0.5" cy="0.5" r="0.6" fx="0.45" fy="0.45">
      <stop offset="0%" stop-color="#fffde7" />
      <stop offset="30%" stop-color="#fff9c4" />
      <stop offset="70%" stop-color="#ffd54f" />
      <stop offset="100%" stop-color="#ffb300" stop-opacity="0" />
    </radialGradient>
    
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#0d1a2d" />
      <stop offset="70%" stop-color="#1a237e" />
      <stop offset="100%" stop-color="#311b92" />
    </linearGradient>
    
    <linearGradient id="waterGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#4a148c" stop-opacity="0.8" />
      <stop offset="100%" stop-color="#26418f" stop-opacity="0.6" />
    </linearGradient>
    
    <!-- Filters -->
    <filter id="jellyfishGlow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur stdDeviation="2" result="blur" />
      <feComposite in="SourceGraphic" in2="blur" operator="over" />
    </filter>
    
    <filter id="moonFilter" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur stdDeviation="3" result="blur" />
      <feComposite in="SourceGraphic" in2="blur" operator="over" />
    </filter>
    
    <filter id="steamFilter" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur stdDeviation="1" />
    </filter>
    
    <!-- Patterns -->
    <pattern id="waterPattern" x="0" y="0" width="30" height="10" patternUnits="userSpaceOnUse">
      <path d="M0,5 Q7.5,0 15,5 Q22.5,10 30,5" fill="none" stroke="#b39ddb" stroke-width="0.5" stroke-opacity="0.3" />
    </pattern>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Stars -->
  <g>
    <circle cx="25" cy="30" r="0.8" fill="white" opacity="0.8" />
    <circle cx="50" cy="15" r="0.6" fill="white" opacity="0.7" />
    <circle cx="80" cy="40" r="0.9" fill="white" opacity="0.9" />
    <circle cx="120" cy="25" r="0.7" fill="white" opacity="0.6" />
    <circle cx="170" cy="35" r="1" fill="white" opacity="0.8" />
    <circle cx="210" cy="15" r="0.7" fill="white" opacity="0.9" />
    <circle cx="250" cy="30" r="0.8" fill="white" opacity="0.7" />
    <circle cx="280" cy="45" r="0.6" fill="white" opacity="0.8" />
    <circle cx="30" cy="60" r="0.7" fill="white" opacity="0.7" />
    <circle cx="70" cy="75" r="0.9" fill="white" opacity="0.6" />
    <circle cx="140" cy="55" r="1" fill="white" opacity="0.9" />
    <circle cx="190" cy="65" r="0.7" fill="white" opacity="0.8" />
    <circle cx="240" cy="80" r="0.8" fill="white" opacity="0.6" />
    <circle cx="15" cy="90" r="0.6" fill="white" opacity="0.7" />
    <circle cx="90" cy="100" r="0.5" fill="white" opacity="0.8" />
    <circle cx="160" cy="85" r="0.7" fill="white" opacity="0.9" />
    <circle cx="270" cy="95" r="0.8" fill="white" opacity="0.7" />
    <circle cx="45" cy="110" r="0.5" fill="#fffde7" opacity="0.6" />
    <circle cx="195" cy="105" r="0.6" fill="#fffde7" opacity="0.8" />
  </g>
  
  <!-- Giant glowing moon -->
  <circle cx="220" cy="70" r="35" fill="#fafafa" />
  <circle cx="220" cy="70" r="50" fill="url(#moonGlow)" filter="url(#moonFilter)" />
  
  <!-- Moon craters -->
  <circle cx="205" cy="65" r="4" fill="#e0e0e0" opacity="0.7" />
  <circle cx="230" cy="60" r="3" fill="#e0e0e0" opacity="0.5" />
  <circle cx="215" cy="80" r="5" fill="#e0e0e0" opacity="0.6" />
  <circle cx="235" cy="75" r="2" fill="#e0e0e0" opacity="0.5" />
  
  <!-- Water surface -->
  <rect x="0" y="200" width="300" height="100" fill="url(#waterGradient)" />
  <rect x="0" y="200" width="300" height="100" fill="url(#waterPattern)" />
  
  <!-- Moon reflection on water -->
  <ellipse cx="220" cy="240" rx="25" ry="10" fill="#fafafa" opacity="0.3" />
  <ellipse cx="220" cy="240" rx="35" ry="15" fill="url(#moonGlow)" opacity="0.2" />
  
  <!-- Floating tea table -->
  <ellipse cx="150" cy="210" rx="60" ry="15" fill="#6d4c41" opacity="0.9" />
  <ellipse cx="150" cy="210" rx="55" ry="12" fill="#8d6e63" opacity="0.9" />
  <ellipse cx="150" cy="209" rx="50" ry="10" fill="#a1887f" opacity="0.9" />
  
  <!-- Tea set -->
  <!-- Teapot -->
  <g transform="translate(175, 190)">
    <ellipse cx="0" cy="2" rx="10" ry="6" fill="#e1bee7" />
    <path d="M-5,-4 Q-10,-8 -8,-12 H8 Q10,-8 5,-4 Z" fill="#e1bee7" />
    <ellipse cx="0" cy="-12" rx="4" ry="2" fill="#e1bee7" />
    <ellipse cx="0" cy="-13" rx="3" ry="1" fill="#ce93d8" />
    <path d="M10,0 Q18,-5 15,5" fill="none" stroke="#e1bee7" stroke-width="2" />
  </g>
  
  <!-- Teacups and saucers -->
  <g transform="translate(125, 190)">
    <!-- Saucer 1 -->
    <ellipse cx="0" cy="8" rx="12" ry="4" fill="#bbdefb" />
    <!-- Cup 1 -->
    <path d="M-6,0 Q-7,8 0,8 Q7,8 6,0 Z" fill="#e3f2fd" />
    <path d="M-6,0 Q-3,-3 6,-3 Q11,0 6,0" fill="none" stroke="#e3f2fd" stroke-width="2" />
    <!-- Tea 1 -->
    <ellipse cx="0" cy="4" rx="5" ry="2" fill="#ff9800" opacity="0.8" />
    <!-- Steam -->
    <path d="M-3,0 Q-2,-6 0,-3 Q2,-8 3,-2" fill="none" stroke="white" stroke-width="1" opacity="0.7" filter="url(#steamFilter)" />
  </g>
  
  <g transform="translate(155, 195)">
    <!-- Saucer 2 -->
    <ellipse cx="0" cy="8" rx="12" ry="4" fill="#bbdefb" />
    <!-- Cup 2 -->
    <path d="M-6,0 Q-7,8 0,8 Q7,8 6,0 Z" fill="#e3f2fd" />
    <path d="M-6,0 Q-3,-3 6,-3 Q11,0 6,0" fill="none" stroke="#e3f2fd" stroke-width="2" />
    <!-- Tea 2 -->
    <ellipse cx="0" cy="4" rx="5" ry="2" fill="#ff9800" opacity="0.8" />
    <!-- Steam -->
    <path d="M-2,0 Q0,-5 1,-2 Q3,-7 4,-1" fill="none" stroke="white" stroke-width="1" opacity="0.7" filter="url(#steamFilter)" />
  </g>
  
  <g transform="translate(130, 205)">
    <!-- Plate with treats -->
    <ellipse cx="0" cy="0" rx="15" ry="5" fill="#f5f5f5" />
    <!-- Cookies/pastries -->
    <circle cx="-5" cy="-1" r="3" fill="#d7ccc8" />
    <circle cx="5" cy="-1" r="3" fill="#ffccbc" />
    <ellipse cx="0" cy="-2" rx="4" ry="2" fill="#ffe0b2" />
  </g>
  
  <!-- Jellyfish 1 (large pink) -->
  <g transform="translate(200, 150)">
    <!-- Bell -->
    <ellipse cx="0" cy="0" rx="20" ry="14" fill="#ec407a" opacity="0.7" filter="url(#jellyfishGlow)" />
    <ellipse cx="0" cy="-2" rx="16" ry="10" fill="#f48fb1" opacity="0.8" />
    
    <!-- Inner details -->
    <path d="M-8,-2 Q0,-8 8,-2" fill="none" stroke="#f8bbd0" stroke-width="1.5" />
    <path d="M-6,0 Q0,-4 6,0" fill="none" stroke="#f8bbd0" stroke-width="1.5" />
    <path d="M-4,2 Q0,0 4,2" fill="none" stroke="#f8bbd0" stroke-width="1.5" />
    
    <!-- Glowing spots -->
    <circle cx="-8" cy="-4" r="1.5" fill="#f8bbd0" />
    <circle cx="8" cy="-4" r="1.5" fill="#f8bbd0" />
    <circle cx="-4" cy="4" r="1" fill="#f8bbd0" />
    <circle cx="4" cy="4" r="1" fill="#f8bbd0" />
    
    <!-- Tentacles -->
    <path d="M-12,10 Q-15,20 -10,30 Q-12,40 -15,45" fill="none" stroke="#f8bbd0" stroke-width="1.2" opacity="0.8" />
    <path d="M-6,12 Q-8,25 -4,35 Q-6,45 -3,50" fill="none" stroke="#f8bbd0" stroke-width="1.2" opacity="0.8" />
    <path d="M0,14 Q-2,30 0,40 Q-1,50 0,55" fill="none" stroke="#f8bbd0" stroke-width="1.2" opacity="0.8" />
    <path d="M6,12 Q8,25 4,35 Q6,45 3,50" fill="none" stroke="#f8bbd0" stroke-width="1.2" opacity="0.8" />
    <path d="M12,10 Q15,20 10,30 Q12,40 15,45" fill="none" stroke="#f8bbd0" stroke-width="1.2" opacity="0.8" />
  </g>
  
  <!-- Jellyfish 2 (blue) -->
  <g transform="translate(80, 120)">
    <!-- Bell -->
    <ellipse cx="0" cy="0" rx="15" ry="10" fill="#1e88e5" opacity="0.7" filter="url(#jellyfishGlow)" />
    <ellipse cx="0" cy="-2" rx="12" ry="7" fill="#64b5f6" opacity="0.8" />
    
    <!-- Inner details -->
    <path d="M-6,-2 Q0,-6 6,-2" fill="none" stroke="#bbdefb" stroke-width="1.2" />
    <path d="M-4,0 Q0,-3 4,0" fill="none" stroke="#bbdefb" stroke-width="1.2" />
    <path d="M-3,2 Q0,0 3,2" fill="none" stroke="#bbdefb" stroke-width="1.2" />
    
    <!-- Glowing spots -->
    <circle cx="-6" cy="-3" r="1.2" fill="#bbdefb" />
    <circle cx="6" cy="-3" r="1.2" fill="#bbdefb" />
    <circle cx="-3" cy="3" r="0.8" fill="#bbdefb" />
    <circle cx="3" cy="3" r="0.8" fill="#bbdefb" />
    
    <!-- Tentacles -->
    <path d="M-9,8 Q-10,15 -7,22 Q-9,30 -12,35" fill="none" stroke="#bbdefb" stroke-width="1" opacity="0.8" />
    <path d="M-4,9 Q-6,20 -3,28 Q-5,35 -2,40" fill="none" stroke="#bbdefb" stroke-width="1" opacity="0.8" />
    <path d="M0,10 Q-1,22 0,30 Q-1,38 0,45" fill="none" stroke="#bbdefb" stroke-width="1" opacity="0.8" />
    <path d="M4,9 Q6,20 3,28 Q5,35 2,40" fill="none" stroke="#bbdefb" stroke-width="1" opacity="0.8" />
    <path d="M9,8 Q10,15 7,22 Q9,30 12,35" fill="none" stroke="#bbdefb" stroke-width="1" opacity="0.8" />
  </g>
  
  <!-- Jellyfish 3 (purple) -->
  <g transform="translate(250, 130)">
    <!-- Bell -->
    <ellipse cx="0" cy="0" rx="12" ry="8" fill="#7b1fa2" opacity="0.7" filter="url(#jellyfishGlow)" />
    <ellipse cx="0" cy="-1" rx="10" ry="6" fill="#9c27b0" opacity="0.8" />
    
    <!-- Inner details -->
    <path d="M-5,-1 Q0,-4 5,-1" fill="none" stroke="#ce93d8" stroke-width="1" />
    <path d="M-3,0 Q0,-2 3,0" fill="none" stroke="#ce93d8" stroke-width="1" />
    <path d="M-2,1 Q0,0 2,1" fill="none" stroke="#ce93d8" stroke-width="1" />
    
    <!-- Glowing spots -->
    <circle cx="-5" cy="-2" r="1" fill="#ce93d8" />
    <circle cx="5" cy="-2" r="1" fill="#ce93d8" />
    <circle cx="-2" cy="2" r="0.6" fill="#ce93d8" />
    <circle cx="2" cy="2" r="0.6" fill="#ce93d8" />
    
    <!-- Tentacles -->
    <path d="M-7,6 Q-8,12 -5,18 Q-7,25 -9,28" fill="none" stroke="#ce93d8" stroke-width="0.8" opacity="0.8" />
    <path d="M-3,7 Q-4,15 -2,20 Q-3,25 -1,30" fill="none" stroke="#ce93d8" stroke-width="0.8" opacity="0.8" />
    <path d="M0,8 Q-1,16 0,22 Q-1,28 0,32" fill="none" stroke="#ce93d8" stroke-width="0.8" opacity="0.8" />
    <path d="M3,7 Q4,15 2,20 Q3,25 1,30" fill="none" stroke="#ce93d8" stroke-width="0.8" opacity="0.8" />
    <path d="M7,6 Q8,12 5,18 Q7,25 9,28" fill="none" stroke="#ce93d8" stroke-width="0.8" opacity="0.8" />
  </g>
  
  <!-- Jellyfish 4 (teal) -->
  <g transform="translate(40, 160)">
    <!-- Bell -->
    <ellipse cx="0" cy="0" rx="10" ry="7" fill="#00897b" opacity="0.7" filter="url(#jellyfishGlow)" />
    <ellipse cx="0" cy="-1" rx="8" ry="5" fill="#26a69a" opacity="0.8" />
    
    <!-- Inner details -->
    <path d="M-4,-1 Q0,-3 4,-1" fill="none" stroke="#80cbc4" stroke-width="0.8" />
    <path d="M-2,0 Q0,-1 2,0" fill="none" stroke="#80cbc4" stroke-width="0.8" />
    
    <!-- Glowing spots -->
    <circle cx="-4" cy="-2" r="0.8" fill="#80cbc4" />
    <circle cx="4" cy="-2" r="0.8" fill="#80cbc4" />
    <circle cx="-2" cy="2" r="0.5" fill="#80cbc4" />
    <circle cx="2" cy="2" r="0.5" fill="#80cbc4" />
    
    <!-- Tentacles -->
    <path d="M-6,5 Q-7,10 -4,15 Q-6,20 -8,23" fill="none" stroke="#80cbc4" stroke-width="0.7" opacity="0.8" />
    <path d="M-2,6 Q-3,12 -1,17 Q-2,22 -1,25" fill="none" stroke="#80cbc4" stroke-width="0.7" opacity="0.8" />
    <path d="M0,7 Q0,14 0,19 Q0,24 0,27" fill="none" stroke="#80cbc4" stroke-width="0.7" opacity="0.8" />
    <path d="M2,6 Q3,12 1,17 Q2,22 1,25" fill="none" stroke="#80cbc4" stroke-width="0.7" opacity="0.8" />
    <path d="M6,5 Q7,10 4,15 Q6,20 8,23" fill="none" stroke="#80cbc4" stroke-width="0.7" opacity="0.8" />
  </g>
  
  <!-- Jellyfish 5 (golden) -->
  <g transform="translate(140, 140)">
    <!-- Bell -->
    <ellipse cx="0" cy="0" rx="13" ry="9" fill="#ff8f00" opacity="0.7" filter="url(#jellyfishGlow)" />
    <ellipse cx="0" cy="-1" rx="10" ry="6" fill="#ffa726" opacity="0.8" />
    
    <!-- Inner details -->
    <path d="M-5,-1 Q0,-5 5,-1" fill="none" stroke="#ffe0b2" stroke-width="1" />
    <path d="M-3,0 Q0,-3 3,0" fill="none" stroke="#ffe0b2" stroke-width="1" />
    <path d="M-2,1 Q0,0 2,1" fill="none" stroke="#ffe0b2" stroke-width="1" />
    
    <!-- Glowing spots -->
    <circle cx="-5" cy="-2" r="1" fill="#ffe0b2" />
    <circle cx="5" cy="-2" r="1" fill="#ffe0b2" />
    <circle cx="-2" cy="2" r="0.6" fill="#ffe0b2" />
    <circle cx="2" cy="2" r="0.6" fill="#ffe0b2" />
    
    <!-- Tentacles -->
    <path d="M-8,7 Q-9,15 -6,22 Q-8,30 -10,34" fill="none" stroke="#ffe0b2" stroke-width="0.9" opacity="0.8" />
    <path d="M-4,8 Q-5,18 -2,25 Q-4,32 -2,37" fill="none" stroke="#ffe0b2" stroke-width="0.9" opacity="0.8" />
    <path d="M0,9 Q-1,20 0,28 Q-1,35 0,40" fill="none" stroke="#ffe0b2" stroke-width="0.9" opacity="0.8" />
    <path d="M4,8 Q5,18 2,25 Q4,32 2,37" fill="none" stroke="#ffe0b2" stroke-width="0.9" opacity="0.8" />
    <path d="M8,7 Q9,15 6,22 Q8,30 10,34" fill="none" stroke="#ffe0b2" stroke-width="0.9" opacity="0.8" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet Thinking (2025-02-19) Player 2

Judge's Analysis

    Player 2's image vividly captures the whimsical concept of a 'tea party with floating jellyfish under a giant, glowing moon' with detailed visuals and a dreamlike atmosphere.

    The use of color and composition effectively conveys the theme, showcasing both technical quality and creativity.

    Player 1's image, although colorful, is more abstract and less aligned with the prompt's narrative elements.

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
18
Player 2
122
Rectangles

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

Player 1
2
Player 2
3
Circles

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

Player 1
6
Player 2
47
Ellipses

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

Player 1
3
Player 2
24
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
7
Player 2
48
Groups

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

Player 1
Player 2
10

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
7
Player 2
45

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
11
Player 2
37

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
Player 2
9

Complexity Metrics

Path Commands

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

Player 1
17
Player 2
133
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
Player 2
7
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