Back

SVG Drawing Match #726

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Bubblegum clouds over a retro, neon city skyline"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background Gradient -->
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#ff8ad1" />
      <stop offset="100%" stop-color="#4c0070" />
    </linearGradient>
    <radialGradient id="cloudGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="20%" stop-color="#ffeeff" />
      <stop offset="100%" stop-color="#ff8ad1" stop-opacity="0" />
    </radialGradient>
    <linearGradient id="buildingShadow" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#000000" stop-opacity="0.7" />
      <stop offset="100%" stop-color="#000000" stop-opacity="0" />
    </linearGradient>
  </defs>
  <!-- Sky -->
  <rect width="300" height="300" fill="url(#skyGradient)" />
  <!-- Clouds -->
  <circle cx="60" cy="60" r="50" fill="url(#cloudGradient)" />
  <circle cx="100" cy="90" r="40" fill="url(#cloudGradient)" />
  <circle cx="210" cy="70" r="45" fill="url(#cloudGradient)" />
  <circle cx="250" cy="100" r="55" fill="url(#cloudGradient)" />
  <!-- City Skyline -->
  <g transform="translate(0, 180)">
    <rect x="0" y="40" width="40" height="80" fill="#d9e9ff" />
    <rect x="50" y="30" width="30" height="90" fill="#b3daf6" />
    <rect x="90" y="20" width="20" height="100" fill="#81c2fa" />
    <rect x="120" y="60" width="40" height="60" fill="#5cabff" />
    <rect x="170" y="40" width="30" height="80" fill="#3769b0" />
    <rect x="210" y="20" width="50" height="100" fill="#264373" />
    <rect x="270" y="70" width="25" height="50" fill="#1b2b50" />
  </g>
  <!-- Building Shadows -->
  <rect x="0" y="220" width="40" height="20" fill="url(#buildingShadow)" />
  <rect x="50" y="210" width="30" height="20" fill="url(#buildingShadow)" />
  <rect x="90" y="200" width="20" height="20" fill="url(#buildingShadow)" />
  <rect x="120" y="240" width="40" height="20" fill="url(#buildingShadow)" />
  <rect x="170" y="220" width="30" height="20" fill="url(#buildingShadow)" />
  <rect x="210" y="200" width="50" height="20" fill="url(#buildingShadow)" />
  <rect x="270" y="250" width="25" height="20" fill="url(#buildingShadow)" />
  <!-- Light Reflection -->
  <polygon points="0,300 300,300 300,280 0,260" fill="rgba(255, 255, 255, 0.1)" />
</svg>
SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Gradients -->
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#0c0042"/>
      <stop offset="70%" stop-color="#290065"/>
      <stop offset="100%" stop-color="#3a1073"/>
    </linearGradient>
    
    <linearGradient id="neonPink" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#ff36d9"/>
      <stop offset="100%" stop-color="#ff6cc4"/>
    </linearGradient>
    
    <linearGradient id="neonBlue" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#00d9ff"/>
      <stop offset="100%" stop-color="#00a3ff"/>
    </linearGradient>
    
    <linearGradient id="neonGreen" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#00ff9d"/>
      <stop offset="100%" stop-color="#00d972"/>
    </linearGradient>

    <linearGradient id="neonYellow" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#ffee00"/>
      <stop offset="100%" stop-color="#ffcc00"/>
    </linearGradient>
    
    <linearGradient id="bubblegumPink" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#ff8ad8"/>
      <stop offset="100%" stop-color="#ff5db8"/>
    </linearGradient>
    
    <linearGradient id="bubblegumBlue" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#8ab9ff"/>
      <stop offset="100%" stop-color="#5d9aff"/>
    </linearGradient>
    
    <filter id="neonGlow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur stdDeviation="4" result="blur"/>
      <feComposite in="SourceGraphic" in2="blur" operator="over"/>
    </filter>
    
    <filter id="softGlow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur stdDeviation="8" result="blur"/>
      <feComposite in="SourceGraphic" in2="blur" operator="over"/>
    </filter>
  </defs>
  
  <!-- Sky Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)"/>
  
  <!-- Stars -->
  <g id="stars">
    <circle cx="30" cy="20" r="0.8" fill="#ffffff" opacity="0.8"/>
    <circle cx="60" cy="40" r="0.6" fill="#ffffff" opacity="0.7"/>
    <circle cx="90" cy="15" r="0.7" fill="#ffffff" opacity="0.8"/>
    <circle cx="120" cy="25" r="0.9" fill="#ffffff" opacity="0.9"/>
    <circle cx="150" cy="10" r="0.7" fill="#ffffff" opacity="0.8"/>
    <circle cx="180" cy="30" r="0.8" fill="#ffffff" opacity="0.7"/>
    <circle cx="210" cy="20" r="0.6" fill="#ffffff" opacity="0.9"/>
    <circle cx="240" cy="15" r="0.7" fill="#ffffff" opacity="0.8"/>
    <circle cx="270" cy="35" r="0.8" fill="#ffffff" opacity="0.7"/>
    <circle cx="45" cy="50" r="0.7" fill="#ffffff" opacity="0.8"/>
    <circle cx="75" cy="25" r="0.9" fill="#ffffff" opacity="0.7"/>
    <circle cx="105" cy="35" r="0.6" fill="#ffffff" opacity="0.9"/>
    <circle cx="135" cy="45" r="0.7" fill="#ffffff" opacity="0.8"/>
    <circle cx="165" cy="20" r="0.8" fill="#ffffff" opacity="0.7"/>
    <circle cx="195" cy="40" r="0.6" fill="#ffffff" opacity="0.9"/>
    <circle cx="225" cy="30" r="0.7" fill="#ffffff" opacity="0.8"/>
    <circle cx="255" cy="10" r="0.9" fill="#ffffff" opacity="0.7"/>
    <circle cx="285" cy="45" r="0.8" fill="#ffffff" opacity="0.9"/>
  </g>
  
  <!-- Bubblegum Clouds -->
  <g id="bubblegumClouds">
    <circle cx="50" cy="100" r="25" fill="url(#bubblegumPink)" filter="url(#softGlow)" opacity="0.9"/>
    <circle cx="80" cy="85" r="20" fill="url(#bubblegumPink)" filter="url(#softGlow)" opacity="0.9"/>
    <circle cx="100" cy="105" r="30" fill="url(#bubblegumPink)" filter="url(#softGlow)" opacity="0.9"/>
    <circle cx="30" cy="90" r="15" fill="url(#bubblegumPink)" filter="url(#softGlow)" opacity="0.9"/>
    
    <circle cx="200" cy="80" r="28" fill="url(#bubblegumBlue)" filter="url(#softGlow)" opacity="0.9"/>
    <circle cx="230" cy="65" r="22" fill="url(#bubblegumBlue)" filter="url(#softGlow)" opacity="0.9"/>
    <circle cx="250" cy="90" r="25" fill="url(#bubblegumBlue)" filter="url(#softGlow)" opacity="0.9"/>
    <circle cx="180" cy="75" r="18" fill="url(#bubblegumBlue)" filter="url(#softGlow)" opacity="0.9"/>
    
    <circle cx="150" cy="70" r="20" fill="url(#bubblegumPink)" filter="url(#softGlow)" opacity="0.7"/>
    <circle cx="120" cy="60" r="15" fill="url(#bubblegumBlue)" filter="url(#softGlow)" opacity="0.7"/>
    <circle cx="160" cy="55" r="18" fill="url(#bubblegumPink)" filter="url(#softGlow)" opacity="0.7"/>
    <circle cx="130" cy="75" r="25" fill="url(#bubblegumBlue)" filter="url(#softGlow)" opacity="0.7"/>
  </g>
  
  <!-- City Skyline -->
  <g id="skyline">
    <!-- Far buildings -->
    <rect x="20" y="160" width="20" height="140" fill="#150030" rx="2"/>
    <rect x="45" y="180" width="15" height="120" fill="#150030" rx="2"/>
    <rect x="65" y="170" width="25" height="130" fill="#150030" rx="2"/>
    <rect x="95" y="150" width="20" height="150" fill="#150030" rx="2"/>
    <rect x="120" y="165" width="30" height="135" fill="#150030" rx="2"/>
    <rect x="155" y="155" width="20" height="145" fill="#150030" rx="2"/>
    <rect x="180" y="175" width="25" height="125" fill="#150030" rx="2"/>
    <rect x="210" y="160" width="15" height="140" fill="#150030" rx="2"/>
    <rect x="230" y="170" width="20" height="130" fill="#150030" rx="2"/>
    <rect x="255" y="150" width="25" height="150" fill="#150030" rx="2"/>
    
    <!-- Windows for far buildings -->
    <g fill="#fffc9e" opacity="0.7">
      <rect x="24" y="170" width="3" height="5" rx="1"/>
      <rect x="34" y="170" width="3" height="5" rx="1"/>
      <rect x="24" y="185" width="3" height="5" rx="1"/>
      <rect x="34" y="185" width="3" height="5" rx="1"/>
      <rect x="24" y="200" width="3" height="5" rx="1"/>
      <rect x="34" y="200" width="3" height="5" rx="1"/>
      
      <rect x="48" y="190" width="3" height="5" rx="1"/>
      <rect x="55" y="190" width="3" height="5" rx="1"/>
      <rect x="48" y="205" width="3" height="5" rx="1"/>
      <rect x="55" y="205" width="3" height="5" rx="1"/>
      
      <!-- More windows for other far buildings -->
      <rect x="70" y="180" width="3" height="5" rx="1"/>
      <rect x="80" y="180" width="3" height="5" rx="1"/>
      <rect x="70" y="195" width="3" height="5" rx="1"/>
      <rect x="80" y="195" width="3" height="5" rx="1"/>
      
      <rect x="98" y="160" width="3" height="5" rx="1"/>
      <rect x="108" y="160" width="3" height="5" rx="1"/>
      <rect x="98" y="175" width="3" height="5" rx="1"/>
      <rect x="108" y="175" width="3" height="5" rx="1"/>
      
      <!-- Windows for other buildings -->
      <rect x="125" y="175" width="4" height="6" rx="1"/>
      <rect x="135" y="175" width="4" height="6" rx="1"/>
      <rect x="145" y="175" width="4" height="6" rx="1"/>
      <rect x="125" y="190" width="4" height="6" rx="1"/>
      <rect x="135" y="190" width="4" height="6" rx="1"/>
      <rect x="145" y="190" width="4" height="6" rx="1"/>
      
      <rect x="160" y="165" width="3" height="5" rx="1"/>
      <rect x="170" y="165" width="3" height="5" rx="1"/>
      <rect x="160" y="180" width="3" height="5" rx="1"/>
      <rect x="170" y="180" width="3" height="5" rx="1"/>
      
      <rect x="185" y="185" width="4" height="6" rx="1"/>
      <rect x="195" y="185" width="4" height="6" rx="1"/>
      <rect x="185" y="200" width="4" height="6" rx="1"/>
      <rect x="195" y="200" width="4" height="6" rx="1"/>
      
      <rect x="213" y="170" width="3" height="5" rx="1"/>
      <rect x="220" y="170" width="3" height="5" rx="1"/>
      <rect x="213" y="185" width="3" height="5" rx="1"/>
      <rect x="220" y="185" width="3" height="5" rx="1"/>
      
      <rect x="235" y="180" width="3" height="5" rx="1"/>
      <rect x="245" y="180" width="3" height="5" rx="1"/>
      <rect x="235" y="195" width="3" height="5" rx="1"/>
      <rect x="245" y="195" width="3" height="5" rx="1"/>
      
      <rect x="260" y="160" width="4" height="6" rx="1"/>
      <rect x="270" y="160" width="4" height="6" rx="1"/>
      <rect x="260" y="175" width="4" height="6" rx="1"/>
      <rect x="270" y="175" width="4" height="6" rx="1"/>
    </g>
    
    <!-- Neon buildings -->
    <g>
      <!-- Pink Building -->
      <rect x="35" y="200" width="30" height="100" fill="#2a0030" stroke="url(#neonPink)" stroke-width="1.5" filter="url(#neonGlow)"/>
      
      <!-- Blue Building -->
      <rect x="75" y="190" width="40" height="110" fill="#2a0030" stroke="url(#neonBlue)" stroke-width="1.5" filter="url(#neonGlow)"/>
      <path d="M75 210 H115" stroke="url(#neonBlue)" stroke-width="1" filter="url(#neonGlow)"/>
      <path d="M75 230 H115" stroke="url(#neonBlue)" stroke-width="1" filter="url(#neonGlow)"/>
      <path d="M75 250 H115" stroke="url(#neonBlue)" stroke-width="1" filter="url(#neonGlow)"/>
      <path d="M75 270 H115" stroke="url(#neonBlue)" stroke-width="1" filter="url(#neonGlow)"/>
      
      <!-- Green Building (Taller) -->
      <rect x="130" y="160" width="35" height="140" fill="#2a0030" stroke="url(#neonGreen)" stroke-width="1.5" filter="url(#neonGlow)"/>
      <path d="M130 170 h35" stroke="url(#neonGreen)" stroke-width="1" filter="url(#neonGlow)"/>
      <path d="M130 180 h35" stroke="url(#neonGreen)" stroke-width="1" filter="url(#neonGlow)"/>
      <path d="M130 190 h35" stroke="url(#neonGreen)" stroke-width="1" filter="url(#neonGlow)"/>
      <path d="M130 200 h35" stroke="url(#neonGreen)" stroke-width="1" filter="url(#neonGlow)"/>
      <path d="M130 210 h35" stroke="url(#neonGreen)" stroke-width="1" filter="url(#neonGlow)"/>
      <path d="M130 220 h35" stroke="url(#neonGreen)" stroke-width="1" filter="url(#neonGlow)"/>
      <path d="M130 230 h35" stroke="url(#neonGreen)" stroke-width="1" filter="url(#neonGlow)"/>
      <path d="M130 240 h35" stroke="url(#neonGreen)" stroke-width="1" filter="url(#neonGlow)"/>
      <path d="M130 250 h35" stroke="url(#neonGreen)" stroke-width="1" filter="url(#neonGlow)"/>
      <path d="M130 260 h35" stroke="url(#neonGreen)" stroke-width="1" filter="url(#neonGlow)"/>
      <path d="M130 270 h35" stroke="url(#neonGreen)" stroke-width="1" filter="url(#neonGlow)"/>
      <path d="M130 280 h35" stroke="url(#neonGreen)" stroke-width="1" filter="url(#neonGlow)"/>
      
      <!-- Yellow Building -->
      <rect x="180" y="210" width="25" height="90" fill="#2a0030" stroke="url(#neonYellow)" stroke-width="1.5" filter="url(#neonGlow)"/>
      <path d="M180 230 h25" stroke="url(#neonYellow)" stroke-width="1" filter="url(#neonGlow)"/>
      <path d="M180 250 h25" stroke="url(#neonYellow)" stroke-width="1" filter="url(#neonGlow)"/>
      <path d="M180 270 h25" stroke="url(#neonYellow)" stroke-width="1" filter="url(#neonGlow)"/>
      
      <!-- Pink Building 2 -->
      <rect x="220" y="180" width="35" height="120" fill="#2a0030" stroke="url(#neonPink)" stroke-width="1.5" filter="url(#neonGlow)"/>
      <path d="M220 190 h35" stroke="url(#neonPink)" stroke-width="1" filter="url(#neonGlow)"/>
      <path d="M220 210 h35" stroke="url(#neonPink)" stroke-width="1" filter="url(#neonGlow)"/>
      <path d="M220 230 h35" stroke="url(#neonPink)" stroke-width="1" filter="url(#neonGlow)"/>
      <path d="M220 250 h35" stroke="url(#neonPink)" stroke-width="1" filter="url(#neonGlow)"/>
      <path d="M220 270 h35" stroke="url(#neonPink)" stroke-width="1" filter="url(#neonGlow)"/>
    </g>
  </g>

  <!-- Neon Signs -->
  <g id="neonSigns">
    <text x="100" y="240" font-family="Arial" font-size="6" fill="url(#neonBlue)" filter="url(#neonGlow)">ARCADE</text>
    <text x="40" y="230" font-family="Arial" font-size="5" fill="url(#neonPink)" filter="url(#neonGlow)">RETRO</text>
    <text x="190" y="250" font-family="Arial" font-size="5" fill="url(#neonYellow)" filter="url(#neonGlow)">VINYL</text>
    <text x="230" y="220" font-family="Arial" font-size="4" fill="url(#neonGreen)" filter="url(#neonGlow)">PIXELS</text>
  </g>
  
  <!-- Flying bubbles -->
  <g id="flyingBubbles">
    <circle cx="50" cy="130" r="5" fill="#ff8ad8" opacity="0.8" filter="url(#softGlow)"/>
    <circle cx="80" cy="140" r="3" fill="#8ab9ff" opacity="0.7" filter="url(#softGlow)"/>
    <circle cx="130" cy="120" r="4" fill="#ff8ad8" opacity="0.6" filter="url(#softGlow)"/>
    <circle cx="180" cy="135" r="3" fill="#8ab9ff" opacity="0.7" filter="url(#softGlow)"/>
    <circle cx="220" cy="110" r="5" fill="#ff8ad8" opacity="0.8" filter="url(#softGlow)"/>
    <circle cx="260" cy="125" r="4" fill="#8ab9ff" opacity="0.7" filter="url(#softGlow)"/>
  </g>
  
  <!-- Foreground elements -->
  <g id="foreground">
    <!-- Neon Floor Grid -->
    <path d="M0,300 L300,300" stroke="url(#neonPink)" stroke-width="2" filter="url(#neonGlow)"/>
    <path d="M0,290 L300,290" stroke="url(#neonPink)" stroke-width="0.5" opacity="0.7" filter="url(#neonGlow)"/>
    <path d="M0,280 L300,280" stroke="url(#neonPink)" stroke-width="0.5" opacity="0.5" filter="url(#neonGlow)"/>
    <path d="M0,270 L300,270" stroke="url(#neonPink)" stroke-width="0.5" opacity="0.3" filter="url(#neonGlow)"/>
    
    <path d="M50,300 L50,270" stroke="url(#neonBlue)" stroke-width="0.5" opacity="0.5" filter="url(#neonGlow)"/>
    <path d="M100,300 L100,270" stroke="url(#neonBlue)" stroke-width="0.5" opacity="0.5" filter="url(#neonGlow)"/>
    <path d="M150,300 L150,270" stroke="url(#neonBlue)" stroke-width="0.5" opacity="0.5" filter="url(#neonGlow)"/>
    <path d="M200,300 L200,270" stroke="url(#neonBlue)" stroke-width="0.5" opacity="0.5" filter="url(#neonGlow)"/>
    <path d="M250,300 L250,270" stroke="url(#neonBlue)" stroke-width="0.5" opacity="0.5" filter="url(#neonGlow)"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet (2025-02-19) Player 2

Judge's Analysis

    Player 2's submission excels in creativity and adherence to the prompt with its vibrant use of neon colors and clearly defined bubblegum clouds.

    The technical quality is superior, with well-executed elements that capture the retro, neon city skyline theme effectively.

    Player 1's submission, while visually appealing, lacks the vividness and thematic clarity present in Player 2's work.

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

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

Player 1
15
Player 2
60
Circles

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

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

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

Player 1
Player 2
33
Groups

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

Player 1
1
Player 2
8

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
38

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
12
Player 2
19

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

Complexity Metrics

Path Commands

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

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