Back

SVG Drawing Match #2630

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Octopus juggling pumpkins under a disco ball."

SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <defs>
    <radialGradient id="floorGradient" cx="50%" cy="90%" r="70%">
      <stop offset="0%" stop-color="#8a2be2" />
      <stop offset="100%" stop-color="#4b0082" />
    </radialGradient>
    <filter id="discoGlow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur stdDeviation="2" result="blur" />
      <feComposite in="SourceGraphic" in2="blur" operator="over" />
    </filter>
    <pattern id="discoPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="2" fill="white" opacity="0.3" />
    </pattern>
  </defs>
  
  <!-- Floor -->
  <rect x="0" y="220" width="300" height="80" fill="url(#floorGradient)" />
  
  <!-- Disco ball light rays -->
  <g>
    <path d="M150,60 L80,220" stroke="yellow" stroke-width="2" opacity="0.3" />
    <path d="M150,60 L100,240" stroke="cyan" stroke-width="2" opacity="0.3" />
    <path d="M150,60 L120,230" stroke="magenta" stroke-width="2" opacity="0.3" />
    <path d="M150,60 L140,220" stroke="yellow" stroke-width="2" opacity="0.3" />
    <path d="M150,60 L160,240" stroke="cyan" stroke-width="2" opacity="0.3" />
    <path d="M150,60 L180,230" stroke="magenta" stroke-width="2" opacity="0.3" />
    <path d="M150,60 L200,220" stroke="yellow" stroke-width="2" opacity="0.3" />
    <path d="M150,60 L220,230" stroke="cyan" stroke-width="2" opacity="0.3" />
  </g>
  
  <!-- Disco ball -->
  <g>
    <line x1="150" y1="0" x2="150" y2="60" stroke="#888" stroke-width="2" />
    <circle cx="150" cy="60" r="20" fill="#ddd" stroke="#888" stroke-width="1" />
    <circle cx="150" cy="60" r="20" fill="url(#discoPattern)" />
    <circle cx="150" cy="60" r="20" fill="none" stroke="white" stroke-width="0.5" filter="url(#discoGlow)" />
  </g>
  
  <!-- Octopus body -->
  <g>
    <ellipse cx="150" cy="160" rx="30" ry="35" fill="#5b3b8c" />
    <ellipse cx="150" cy="150" rx="28" ry="33" fill="#7b52bc" />
    
    <!-- Eyes -->
    <circle cx="140" cy="145" r="7" fill="white" />
    <circle cx="160" cy="145" r="7" fill="white" />
    <circle cx="140" cy="145" r="3" fill="black" />
    <circle cx="160" cy="145" r="3" fill="black" />
    
    <!-- Smile -->
    <path d="M140,160 Q150,170 160,160" fill="none" stroke="#5b3b8c" stroke-width="2" stroke-linecap="round" />
  </g>
  
  <!-- Tentacles -->
  <g>
    <!-- Left tentacles -->
    <path d="M130,170 C120,190 100,200 85,190 C75,185 85,175 90,180" fill="none" stroke="#7b52bc" stroke-width="6" stroke-linecap="round" />
    <path d="M125,175 C110,195 90,210 70,200 C60,195 65,185 70,190" fill="none" stroke="#7b52bc" stroke-width="6" stroke-linecap="round" />
    <path d="M135,180 C125,200 110,220 95,230 C85,235 80,225 85,220" fill="none" stroke="#7b52bc" stroke-width="6" stroke-linecap="round" />
    <path d="M145,185 C140,205 135,230 125,240 C115,245 110,235 115,230" fill="none" stroke="#7b52bc" stroke-width="6" stroke-linecap="round" />
    
    <!-- Right tentacles -->
    <path d="M170,170 C180,190 200,200 215,190 C225,185 215,175 210,180" fill="none" stroke="#7b52bc" stroke-width="6" stroke-linecap="round" />
    <path d="M175,175 C190,195 210,210 230,200 C240,195 235,185 230,190" fill="none" stroke="#7b52bc" stroke-width="6" stroke-linecap="round" />
    <path d="M165,180 C175,200 190,220 205,230 C215,235 220,225 215,220" fill="none" stroke="#7b52bc" stroke-width="6" stroke-linecap="round" />
    <path d="M155,185 C160,205 165,230 175,240 C185,245 190,235 185,230" fill="none" stroke="#7b52bc" stroke-width="6" stroke-linecap="round" />
    
    <!-- Suckers -->
    <g fill="#9d7ad2">
      <circle cx="85" cy="190" r="2" />
      <circle cx="90" cy="180" r="2" />
      <circle cx="70" cy="200" r="2" />
      <circle cx="70" cy="190" r="2" />
      <circle cx="95" cy="230" r="2" />
      <circle cx="85" cy="220" r="2" />
      <circle cx="125" cy="240" r="2" />
      <circle cx="115" cy="230" r="2" />
      
      <circle cx="215" cy="190" r="2" />
      <circle cx="210" cy="180" r="2" />
      <circle cx="230" cy="200" r="2" />
      <circle cx="230" cy="190" r="2" />
      <circle cx="205" cy="230" r="2" />
      <circle cx="215" cy="220" r="2" />
      <circle cx="175" cy="240" r="2" />
      <circle cx="185" cy="230" r="2" />
    </g>
  </g>
  
  <!-- Pumpkins being juggled -->
  <g>
    <!-- Pumpkin 1 -->
    <ellipse cx="100" cy="110" rx="15" ry="13" fill="#ff7518" />
    <path d="M100,97 C100,95 105,95 105,97" fill="none" stroke="#5d3a00" stroke-width="2" />
    <path d="M95,103 L97,107 M105,103 L103,107" stroke="black" stroke-width="0.8" />
    <path d="M98,110 Q100,112 102,110" stroke="black" stroke-width="0.8" />
    
    <!-- Pumpkin 2 -->
    <ellipse cx="150" cy="90" rx="15" ry="13" fill="#ff7518" />
    <path d="M150,77 C150,75 155,75 155,77" fill="none" stroke="#5d3a00" stroke-width="2" />
    <path d="M145,83 L147,87 M155,83 L153,87" stroke="black" stroke-width="0.8" />
    <path d="M148,90 Q150,92 152,90" stroke="black" stroke-width="0.8" />
    
    <!-- Pumpkin 3 -->
    <ellipse cx="200" cy="110" rx="15" ry="13" fill="#ff7518" />
    <path d="M200,97 C200,95 205,95 205,97" fill="none" stroke="#5d3a00" stroke-width="2" />
    <path d="M195,103 L197,107 M205,103 L203,107" stroke="black" stroke-width="0.8" />
    <path d="M198,110 Q200,112 202,110" stroke="black" stroke-width="0.8" />
  </g>
  
  <!-- Colorful light spots on floor -->
  <circle cx="80" cy="240" r="15" fill="yellow" opacity="0.2" />
  <circle cx="130" cy="250" r="20" fill="cyan" opacity="0.2" />
  <circle cx="180" cy="260" r="25" fill="magenta" opacity="0.2" />
  <circle cx="230" cy="245" r="18" fill="lime" opacity="0.2" />
</svg>
SVG by Gemini 2.5 Pro Preview 05-06
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Gradients -->
    <radialGradient id="bgGradient" cx="0.5" cy="0.3" r="0.8">
      <stop offset="0%" stop-color="#301934" /> <!-- Dark Purple / Amethyst -->
      <stop offset="50%" stop-color="#1a001a" /> <!-- Very Dark Purple -->
      <stop offset="100%" stop-color="#0d000d" /> <!-- Almost Black Purple -->
    </radialGradient>

    <radialGradient id="octopusHeadGradient" cx="0.5" cy="0.4" r="0.6">
      <stop offset="0%" stop-color="#9F70CF" /> <!-- Lighter Purple -->
      <stop offset="50%" stop-color="#8A2BE2" /> <!-- Vibrant Purple -->
      <stop offset="100%" stop-color="#4B0082" /> <!-- Indigo -->
    </radialGradient>

    <linearGradient id="tentacleGradient" x1="0%" y1="0%" x2="30%" y2="100%">
      <stop offset="0%" stop-color="#8A2BE2" />
      <stop offset="50%" stop-color="#6A1B9A" />
      <stop offset="100%" stop-color="#4A0072" />
    </linearGradient>
    
    <radialGradient id="pumpkinGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#FFA500" /> <!-- Orange -->
      <stop offset="60%" stop-color="#FF8C00" /> <!-- DarkOrange -->
      <stop offset="100%" stop-color="#D2691E" /> <!-- Chocolate for shading -->
    </radialGradient>

    <radialGradient id="discoBallGradient" cx="0.3" cy="0.3" r="0.7">
      <stop offset="0%" stop-color="#FFFFFF" />
      <stop offset="30%" stop-color="#E8E8E8" />
      <stop offset="70%" stop-color="#D0D0D0" />
      <stop offset="100%" stop-color="#B0B0B0" />
    </radialGradient>
    
    <linearGradient id="lightBeamGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="rgba(255, 255, 220, 0.6)" />
      <stop offset="100%" stop-color="rgba(255, 255, 220, 0)" />
    </linearGradient>

    <!-- Filter for glow -->
    <filter id="glow">
      <feGaussianBlur stdDeviation="2" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="url(#bgGradient)" />

  <!-- Floor reflections/light spots -->
  <g id="floor-reflections" opacity="0.7">
    <ellipse cx="100" cy="280" rx="30" ry="10" fill="rgba(220, 220, 180, 0.2)" filter="url(#glow)"/>
    <ellipse cx="200" cy="285" rx="25" ry="8" fill="rgba(220, 220, 180, 0.15)" filter="url(#glow)"/>
    <ellipse cx="150" cy="290" rx="35" ry="12" fill="rgba(220, 220, 180, 0.25)" filter="url(#glow)"/>
  </g>

  <!-- Light Beams -->
  <g id="light-beams">
      <path d="M150 50 L100 150 Q150 160 200 150 Z" fill="url(#lightBeamGradient)" opacity="0.5" transform-origin="150 50" transform="rotate(-45)"/>
      <path d="M150 50 L120 180 Q150 190 180 180 Z" fill="url(#lightBeamGradient)" opacity="0.6" transform-origin="150 50" transform="rotate(-15)"/>
      <path d="M150 50 L100 160 Q150 170 200 160 Z" fill="url(#lightBeamGradient)" opacity="0.5" transform-origin="150 50" transform="rotate(15)"/>
      <path d="M150 50 L130 200 Q150 210 170 200 Z" fill="url(#lightBeamGradient)" opacity="0.6" transform-origin="150 50" transform="rotate(45)"/>
      <path d="M150 50 L140 190 Q150 200 160 190 Z" fill="url(#lightBeamGradient)" opacity="0.4" transform-origin="150 50" transform="rotate(75)"/>
      <path d="M150 50 L140 190 Q150 200 160 190 Z" fill="url(#lightBeamGradient)" opacity="0.4" transform-origin="150 50" transform="rotate(-75)"/>
  </g>

  <!-- Disco Ball Body -->
  <g id="disco-ball-body">
    <line x1="150" y1="0" x2="150" y2="30" stroke="#888" stroke-width="1.5"/>
    <circle cx="150" cy="50" r="25" fill="url(#discoBallGradient)" stroke="#AAA" stroke-width="0.5"/>
    <!-- Reflective Facets -->
    <rect x="140" y="35" width="4" height="4" fill="#FFF" transform="rotate(15 142 37)" opacity="0.9"/>
    <rect x="155" y="40" width="5" height="5" fill="#FFF" transform="rotate(-10 157.5 42.5)" opacity="0.8"/>
    <rect x="135" y="50" width="3.5" height="3.5" fill="#FEFECE" transform="rotate(5 136.75 51.75)" opacity="0.9"/>
    <rect x="160" y="58" width="4" height="4" fill="#FEFECE" transform="rotate(25 162 60)" opacity="0.7"/>
    <rect x="148" y="62" width="3.5" height="3.5" fill="#FFF" transform="rotate(-5 149.75 63.75)" opacity="0.8"/>
    <!-- Sparkles -->
    <circle cx="140" cy="45" r="1.2" fill="#FFF" filter="url(#glow)"/>
    <circle cx="160" cy="55" r="1.5" fill="#FFF" filter="url(#glow)"/>
    <circle cx="155" cy="38" r="1" fill="#FFF" filter="url(#glow)"/>
  </g>
  
  <!-- Octopus -->
  <g id="octopus" transform="translate(0, 20)">
    <g stroke-linecap="round" stroke-linejoin="round" id="octopus-tentacles">
        <path d="M135 160 C100 130, 90 100, 70 100" stroke="url(#tentacleGradient)" stroke-width="20" fill="none" id="t1"/>
        <path d="M165 160 C200 130, 210 100, 230 100" stroke="url(#tentacleGradient)" stroke-width="20" fill="none" id="t2"/>
        <path d="M125 170 C100 190, 80 170, 70 130" stroke="url(#tentacleGradient)" stroke-width="18" fill="none" id="t3"/>
        <path d="M175 170 C200 190, 220 170, 230 130" stroke="url(#tentacleGradient)" stroke-width="18" fill="none" id="t4"/>
        <path d="M130 185 C110 210, 120 240, 140 230" stroke="url(#tentacleGradient)" stroke-width="22" fill="none" id="t5"/>
        <path d="M170 185 C190 210, 180 240, 160 230" stroke="url(#tentacleGradient)" stroke-width="22" fill="none" id="t6"/>
        <path d="M115 180 C90 200, 80 220, 100 230" stroke="url(#tentacleGradient)" stroke-width="18" fill="none" id="t7"/>
        <path d="M185 180 C210 200, 220 220, 200 230" stroke="url(#tentacleGradient)" stroke-width="18" fill="none" id="t8"/>
    </g>
    
    <ellipse cx="150" cy="160" rx="55" ry="45" fill="url(#octopusHeadGradient)" />
    <path d="M140 145 C145 142, 155 142, 160 145 C162 148, 162 152, 160 155 C155 158, 145 158, 140 155 C138 152, 138 148, 140 145 Z" fill="rgba(255,255,255,0.07)" />


    <g id="octopus-eyes">
      <ellipse cx="130" cy="150" rx="12" ry="15" fill="#FFF8DC"/>
      <ellipse cx="130" cy="150" rx="7" ry="9" fill="#1A1A1A"/>
      <circle cx="127" cy="147" r="2.5" fill="white"/>

      <ellipse cx="170" cy="150" rx="12" ry="15" fill="#FFF8DC"/>
      <ellipse cx="170" cy="150" rx="7" ry="9" fill="#1A1A1A"/>
      <circle cx="167" cy="147" r="2.5" fill="white"/>
    </g>
    
    <path d="M140 175 Q150 182 160 175" stroke="#4A0072" stroke-width="2" fill="none" stroke-linecap="round"/>

    <g id="octopus-suckers">
        <circle cx="75" cy="100" r="5" fill="#C5A5F5" /> <circle cx="75" cy="100" r="2" fill="#AD88E6" /> 
        <circle cx="85" cy="105" r="4" fill="#C5A5F5" /> <circle cx="85" cy="105" r="1.5" fill="#AD88E6" />
        <circle cx="95" cy="115" r="4" fill="#C5A5F5" /> <circle cx="95" cy="115" r="1.5" fill="#AD88E6" />

        <circle cx="225" cy="100" r="5" fill="#C5A5F5" /> <circle cx="225" cy="100" r="2" fill="#AD88E6" />
        <circle cx="215" cy="105" r="4" fill="#C5A5F5" /> <circle cx="215" cy="105" r="1.5" fill="#AD88E6" />
        <circle cx="205" cy="115" r="4" fill="#C5A5F5" /> <circle cx="205" cy="115" r="1.5" fill="#AD88E6" />
        
        <circle cx="135" cy="220" r="6" fill="#C5A5F5" /> <circle cx="135" cy="220" r="2.5" fill="#AD88E6" />
        <circle cx="165" cy="220" r="6" fill="#C5A5F5" /> <circle cx="165" cy="220" r="2.5" fill="#AD88E6" />

        <circle cx="75" cy="135" r="3.5" fill="#C5A5F5" /> <circle cx="75" cy="135" r="1.2" fill="#AD88E6" />
        <circle cx="225" cy="135" r="3.5" fill="#C5A5F5" /> <circle cx="225" cy="135" r="1.2" fill="#AD88E6" />
        
        <circle cx="105" cy="225" r="3" fill="#C5A5F5" opacity="0.8"/> <circle cx="105" cy="225" r="1" fill="#AD88E6" opacity="0.8"/>
        <circle cx="195" cy="225" r="3" fill="#C5A5F5" opacity="0.8"/> <circle cx="195" cy="225" r="1" fill="#AD88E6" opacity="0.8"/>
    </g>
  </g>

  <g id="pumpkins">
    <g transform="translate(150 70) rotate(15)">
      <path d="M0 0 C-15 -5, -20 -20, -15 -30 C-10 -40, 10 -40, 15 -30 C20 -20, 15 -5, 0 0 Z" fill="url(#pumpkinGradient)" stroke="#A0522D" stroke-width="0.5"/>
      <path d="M-10 -28 C-5 -35, 5 -35, 10 -28" stroke="#A0522D" stroke-width="1.5" fill="none"/>
      <path d="M-5 -29 C0 -38, 0 -38, 5 -29" stroke="#A0522D" stroke-width="1.5" fill="none"/>
      <rect x="-3" y="-38" width="6" height="8" fill="#006400" rx="2" stroke="#004000" stroke-width="0.5"/>
    </g>

    <g transform="translate(70 95) rotate(-25)">
      <path d="M0 0 C-15 -5, -20 -20, -15 -30 C-10 -40, 10 -40, 15 -30 C20 -20, 15 -5, 0 0 Z" fill="url(#pumpkinGradient)" stroke="#A0522D" stroke-width="0.5"/>
      <path d="M-10 -28 C-5 -35, 5 -35, 10 -28" stroke="#A0522D" stroke-width="1.5" fill="none"/>
      <path d="M-5 -29 C0 -38, 0 -38, 5 -29" stroke="#A0522D" stroke-width="1.5" fill="none"/>
      <rect x="-3" y="-38" width="6" height="8" fill="#006400" rx="2" stroke="#004000" stroke-width="0.5"/>
    </g>

     <g transform="translate(230 95) rotate(25)">
      <path d="M0 0 C-15 -5, -20 -20, -15 -30 C-10 -40, 10 -40, 15 -30 C20 -20, 15 -5, 0 0 Z" fill="url(#pumpkinGradient)" stroke="#A0522D" stroke-width="0.5"/>
      <path d="M-10 -28 C-5 -35, 5 -35, 10 -28" stroke="#A0522D" stroke-width="1.5" fill="none"/>
      <path d="M-5 -29 C0 -38, 0 -38, 5 -29" stroke="#A0522D" stroke-width="1.5" fill="none"/>
      <rect x="-3" y="-38" width="6" height="8" fill="#006400" rx="2" stroke="#004000" stroke-width="0.5"/>
    </g>
    
    <g transform="translate(110 110) rotate(40) scale(0.9)">
      <path d="M0 0 C-15 -5, -20 -20, -15 -30 C-10 -40, 10 -40, 15 -30 C20 -20, 15 -5, 0 0 Z" fill="url(#pumpkinGradient)" stroke="#A0522D" stroke-width="0.5"/>
      <path d="M-10 -28 C-5 -35, 5 -35, 10 -28" stroke="#A0522D" stroke-width="1.5" fill="none"/>
      <path d="M-5 -29 C0 -38, 0 -38, 5 -29" stroke="#A0522D" stroke-width="1.5" fill="none"/>
      <rect x="-3" y="-38" width="6" height="8" fill="#006400" rx="2" stroke="#004000" stroke-width="0.5"/>
    </g>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Gemini 2.5 Pro Preview 05-06 Player 2

Judge's Analysis

    Player 2's submission presents a more cohesive and visually appealing design, with a darker background that emphasizes the disco ball and pumpkins, creating a nightclub-like atmosphere.

    The octopus is well-integrated into the scene, and the use of lighting adds depth.

    While Player 1's image is colorful and fun, it lacks the same level of polish and depth in composition compared to Player 2's entry.

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
61
Player 2
77
Rectangles

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

Player 1
1
Player 2
10
Circles

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

Player 1
28
Player 2
30
Ellipses

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

Player 1
5
Player 2
8
Lines

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

Player 1
1
Player 2
1
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
26
Player 2
28
Groups

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

Player 1
6
Player 2
12

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
29
Player 2
27

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
15
Player 2
32

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
16

Complexity Metrics

Path Commands

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

Player 1
66
Player 2
84
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
1
Player 2
1
Defs Elements

The number of elements defined within the defs element in the SVG.

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