Back

SVG Drawing Match #2318

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An octopus juggling planets underwater in a glowing coral reef."

SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="planet1" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#F9D71C"/>
      <stop offset="100%" stop-color="#FFA500"/>
    </radialGradient>
    <radialGradient id="planet2" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#8A2BE2"/>
      <stop offset="100%" stop-color="#4B0082"/>
    </radialGradient>
    <radialGradient id="planet3" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#228B22"/>
      <stop offset="100%" stop-color="#006400"/>
    </radialGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="3" result="blur"/>
      <feMerge>
        <feMergeNode in="blur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  <rect width="300" height="300" fill="#002366"/>
  <g filter="url(#glow)">
    <path d="M100 250 C 100 150, 200 150, 200 250" stroke="#FF69B4" stroke-width="5" fill="none" opacity="0.7"/>
    <path d="M110 240 C 110 160, 190 160, 190 240" stroke="#FF69B4" stroke-width="5" fill="none" opacity="0.7"/>
    <path d="M120 230 C 120 170, 180 170, 180 230" stroke="#FF69B4" stroke-width="5" fill="none" opacity="0.7"/>

    <circle cx="100" cy="100" r="20" fill="url(#planet1)"/>
    <circle cx="150" cy="70" r="30" fill="url(#planet2)"/>
    <circle cx="200" cy="120" r="15" fill="url(#planet3)"/>

    <g transform="translate(150, 200)">
      <ellipse cx="0" cy="0" rx="40" ry="20" fill="#F08080"/>
      <circle cx="-20" cy="-10" r="5" fill="white"/>
      <circle cx="20" cy="-10" r="5" fill="white"/>
      <path d="M-10 -5 C -5 -20, 5 -20, 10 -5" stroke="black" stroke-width="2" fill="none"/>
    </g>

    <g transform="translate(150, 220)">
      <path d="M-40 0 C -20 40, 20 40, 40 0" stroke="#A0522D" stroke-width="10" fill="none"/>
      <path d="M-30 0 C -15 30, 15 30, 30 0" stroke="#A0522D" stroke-width="10" fill="none"/>
      <path d="M-20 0 C -10 20, 10 20, 20 0" stroke="#A0522D" stroke-width="10" fill="none"/>
    </g>
  </g>

  <g transform="translate(50, 220)">
    <path d="M0 0 Q 20 30, 40 0" stroke="#FFD700" stroke-width="3" fill="yellow" opacity="0.8"/>
  </g>
  <g transform="translate(200, 260)">
    <path d="M0 0 Q 20 30, 40 0" stroke="#FFD700" stroke-width="3" fill="yellow" opacity="0.8"/>
  </g>

</svg>
SVG by Gemini 2.5 Pro Preview 05-06
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Water Gradient -->
    <linearGradient id="waterGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#4A90E2; stop-opacity:1" />
      <stop offset="30%" style="stop-color:#3A7ABF; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#072F5F; stop-opacity:1" />
    </linearGradient>

    <!-- Octopus Skin Gradient -->
    <radialGradient id="octopusHeadGradient" cx="50%" cy="40%" r="60%" fx="50%" fy="30%">
      <stop offset="0%" style="stop-color:#FF8A65;" /> <!-- Lighter coral orange -->
      <stop offset="100%" style="stop-color:#D9483B;" /> <!-- Darker coral red -->
    </radialGradient>

    <!-- Planet Glow -->
    <radialGradient id="planetHalo" cx="50%" cy="50%" r="70%">
      <stop offset="50%" style="stop-color:rgba(255,255,255,0.3);" />
      <stop offset="100%" style="stop-color:rgba(255,255,255,0);" />
    </radialGradient>

    <!-- Coral Glow Gradients -->
    <radialGradient id="coralPinkGlow" cx="50%" cy="50%" r="60%">
        <stop offset="0%" style="stop-color:#FF4081; stop-opacity:1"/> <!-- Hot Pink -->
        <stop offset="40%" style="stop-color:#FF80AB; stop-opacity:0.8"/> <!-- Light Pink -->
        <stop offset="100%" style="stop-color:#FF80AB; stop-opacity:0.1"/>
    </radialGradient>
    <radialGradient id="coralGreenGlow" cx="50%" cy="50%" r="60%">
        <stop offset="0%" style="stop-color:#4CAF50; stop-opacity:1"/> <!-- Green -->
        <stop offset="40%" style="stop-color:#81C784; stop-opacity:0.8"/> <!-- Light Green -->
        <stop offset="100%" style="stop-color:#81C784; stop-opacity:0.1"/>
    </radialGradient>
    <radialGradient id="coralBlueGlow" cx="50%" cy="50%" r="60%">
        <stop offset="0%" style="stop-color:#2196F3; stop-opacity:1"/> <!-- Blue -->
        <stop offset="40%" style="stop-color:#64B5F6; stop-opacity:0.8"/> <!-- Light Blue -->
        <stop offset="100%" style="stop-color:#64B5F6; stop-opacity:0.1"/>
    </radialGradient>
    <radialGradient id="coralYellowGlow" cx="50%" cy="50%" r="60%">
        <stop offset="0%" style="stop-color:#FFEB3B; stop-opacity:1"/> <!-- Yellow -->
        <stop offset="40%" style="stop-color:#FFF176; stop-opacity:0.8"/> <!-- Light Yellow -->
        <stop offset="100%" style="stop-color:#FFF176; stop-opacity:0.1"/>
    </radialGradient>
    <radialGradient id="coralPurpleGlow" cx="50%" cy="50%" r="60%">
        <stop offset="0%" style="stop-color:#9C27B0; stop-opacity:1"/> <!-- Purple -->
        <stop offset="40%" style="stop-color:#BA68C8; stop-opacity:0.8"/> <!-- Light Purple -->
        <stop offset="100%" style="stop-color:#BA68C8; stop-opacity:0.1"/>
    </radialGradient>
    <radialGradient id="coralOrangeGlow" cx="50%" cy="50%" r="60%">
        <stop offset="0%" style="stop-color:#FF9800; stop-opacity:1"/> <!-- Orange -->
        <stop offset="40%" style="stop-color:#FFB74D; stop-opacity:0.8"/> <!-- Light Orange -->
        <stop offset="100%" style="stop-color:#FFB74D; stop-opacity:0.1"/>
    </radialGradient>

    <!-- Planet Textures -->
    <radialGradient id="marsGradient" cx="30%" cy="30%" r="70%">
        <stop offset="0%" stop-color="#FF8A65"/>
        <stop offset="100%" stop-color="#D84315"/>
    </radialGradient>
    <linearGradient id="earthWaterGradient" x1="0" y1="0" x2="1" y2="1">
        <stop offset="0%" stop-color="#5D9CEC"/>
        <stop offset="100%" stop-color="#4A80D8"/>
    </linearGradient>
    <radialGradient id="purplePlanetGradient" cx="70%" cy="30%" r="80%">
        <stop offset="0%" stop-color="#CE93D8"/>
        <stop offset="60%" stop-color="#AB47BC"/>
        <stop offset="100%" stop-color="#6A1B9A"/>
    </radialGradient>
  </defs>

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

  <!-- Light Rays -->
  <g opacity="0.1">
    <polygon points="100,0 150,0 110,300 60,300" fill="rgba(200,220,255,0.5)"/>
    <polygon points="180,0 230,0 190,300 140,300" fill="rgba(200,220,255,0.5)"/>
  </g>

  <!-- Seabed -->
  <path d="M0 260 Q 75 240, 150 260 T 300 260 V 300 H 0 Z" fill="#BCA080" />
  <path d="M0 270 Q 80 255, 160 270 T 300 270 V 300 H 0 Z" fill="#D8C0A0" opacity="0.7"/>

  <!-- Coral Reef (Back Layer) -->
  <g id="coral-back">
    <g transform="translate(60, 250)"> <!-- Pink Brain Coral -->
      <ellipse cx="0" cy="0" rx="40" ry="30" fill="url(#coralPinkGlow)" />
      <path d="M-30 0 C -25 -20, 25 -20, 30 0 C 25 20, -25 20, -30 0 M-20 -8 C -15 -25, 15 -25, 20 -8 M-20 8 C -15 25, 15 25, 20 8" stroke="#C2185B" stroke-width="1.5" fill="none" opacity="0.5"/>
    </g>
    <g transform="translate(230, 260) scale(1.1)"> <!-- Green Staghorn Coral -->
        <path d="M0 0 Q -10 -25 0 -50 Q 10 -25 0 0 M0 -50 L -8 -70 M0 -50 L 8 -70 M0 -25 L 20 -40 M0 -25 L -20 -40" stroke="url(#coralGreenGlow)" stroke-width="10" stroke-linecap="round" fill="none"/>
        <circle cx="-8" cy="-70" r="4" fill="#388E3C"/> <circle cx="8" cy="-70" r="4" fill="#388E3C"/>
    </g>
     <g transform="translate(150, 280)"> <!-- Low Orange Coral -->
        <ellipse cx="0" cy="0" rx="50" ry="15" fill="url(#coralOrangeGlow)" />
        <ellipse cx="0" cy="0" rx="40" ry="10" fill="#E65100" opacity="0.2"/>
    </g>
  </g>

  <!-- Octopus -->
  <g id="octopus" transform="translate(150, 175)"> <!-- Octopus slightly lower and centered -->
    <!-- Tentacles -->
    <g id="tentacles">
      <!-- Back tentacles (lower opacity) -->
      <path d="M0,5 C -40,25 -60,50 -50,80" stroke="#D9483B" stroke-width="12" fill="none" stroke-linecap="round" opacity="0.7"/>
      <path d="M0,5 C -40,25 -60,50 -50,80" stroke="#FF8A65" stroke-width="6" fill="none" stroke-linecap="round" opacity="0.7"/>
      <path d="M0,5 C 40,25 60,50 50,80" stroke="#D9483B" stroke-width="12" fill="none" stroke-linecap="round" opacity="0.7"/>
      <path d="M0,5 C 40,25 60,50 50,80" stroke="#FF8A65" stroke-width="6" fill="none" stroke-linecap="round" opacity="0.7"/>
       <path d="M0,5 C -20,40 0,70 25,85" stroke="#D9483B" stroke-width="12" fill="none" stroke-linecap="round" opacity="0.7"/>
      <path d="M0,5 C -20,40 0,70 25,85" stroke="#FF8A65" stroke-width="6" fill="none" stroke-linecap="round" opacity="0.7"/>

      <!-- Tentacle 1 (to Planet 1 - top) -->
      <path d="M0,0 C -20,-35 -25,-75 -5,-95" stroke="#D9483B" stroke-width="15" fill="none" stroke-linecap="round"/>
      <path d="M0,0 C -20,-35 -25,-75 -5,-95" stroke="#FF8A65" stroke-width="7" fill="none" stroke-linecap="round"/>
      <!-- Tentacle 2 (to Planet 1 - top) -->
      <path d="M0,0 C 20,-35 25,-75 5,-95" stroke="#D9483B" stroke-width="15" fill="none" stroke-linecap="round"/>
      <path d="M0,0 C 20,-35 25,-75 5,-95" stroke="#FF8A65" stroke-width="7" fill="none" stroke-linecap="round"/>
      <!-- Tentacle 3 (to Planet 2 - left) -->
      <path d="M0,0 C -35,-15 -55,-35 -65,-50" stroke="#D9483B" stroke-width="15" fill="none" stroke-linecap="round"/>
      <path d="M0,0 C -35,-15 -55,-35 -65,-50" stroke="#FF8A65" stroke-width="7" fill="none" stroke-linecap="round"/>
      <!-- Tentacle 4 (to Planet 3 - right) -->
      <path d="M0,0 C 35,-15 55,-35 65,-50" stroke="#D9483B" stroke-width="15" fill="none" stroke-linecap="round"/>
      <path d="M0,0 C 35,-15 55,-35 65,-50" stroke="#FF8A65" stroke-width="7" fill="none" stroke-linecap="round"/>
      <!-- Tentacle 5 (to Planet 4 - bottom) -->
      <path d="M0,0 C -15,30 0,50 -10,65" stroke="#D9483B" stroke-width="15" fill="none" stroke-linecap="round"/>
      <path d="M0,0 C -15,30 0,50 -10,65" stroke="#FF8A65" stroke-width="7" fill="none" stroke-linecap="round"/>
    </g>
    <!-- Octopus Head -->
    <circle cx="0" cy="0" r="42" fill="url(#octopusHeadGradient)" />
    <!-- Octopus Eyes -->
    <g id="eyes">
      <circle cx="-16" cy="-7" r="13" fill="white" />
      <circle cx="-16" cy="-7" r="7" fill="#4A4A4A" />
      <circle cx="-18" cy="-10" r="3" fill="white" opacity="0.9"/>
      <circle cx="16" cy="-7" r="13" fill="white" />
      <circle cx="16" cy="-7" r="7" fill="#4A4A4A" />
      <circle cx="14" cy="-10" r="3" fill="white" opacity="0.9"/>
    </g>
  </g>

  <!-- Planets (Juggled Items) -->
  <g id="planets">
    <!-- Planet 1 (Earth-like, top-center, relative coords (0, -100) to octopus) -->
    <g transform="translate(150, 75)">
      <circle cx="0" cy="0" r="15" fill="url(#planetHalo)"/>
      <circle cx="0" cy="0" r="13" fill="url(#earthWaterGradient)"/>
      <path d="M -9 2 Q -2 -10 6 0 Q 0 10 -9 2 Z" fill="#50C878" opacity="0.9"/>
      <path d="M -5 -6 Q 2 -13 8 -5 Q 3 3 -5 -6 Z" fill="#66BB6A" opacity="0.8"/>
    </g>
    <!-- Planet 2 (Mars-like, left, relative (-65, -50) to octopus) -->
    <g transform="translate(85, 125)">
      <circle cx="0" cy="0" r="13" fill="url(#planetHalo)"/>
      <circle cx="0" cy="0" r="11" fill="url(#marsGradient)"/>
      <circle cx="-4" cy="-3" r="2.5" fill="#A13A1E" opacity="0.7"/>
      <circle cx="5" cy="4" r="2" fill="#A13A1E" opacity="0.7"/>
      <circle cx="1" cy="-5" r="1.5" fill="#A13A1E" opacity="0.6"/>
    </g>
    <!-- Planet 3 (Saturn-like, right, relative (65, -50) to octopus) -->
    <g transform="translate(215, 125)">
      <circle cx="0" cy="0" r="13" fill="url(#planetHalo)"/>
      <circle cx="0" cy="0" r="10" fill="#FFEE58"/>
      <ellipse cx="0" cy="0" rx="16" ry="6" stroke="#FFCA28" stroke-width="2.5" fill="none" transform="rotate(-25)"/>
    </g>
    <!-- Planet 4 (Purple Swirl, bottom, relative (-10, 65) to octopus) -->
    <g transform="translate(140, 240)">
      <circle cx="0" cy="0" r="14" fill="url(#planetHalo)"/>
      <circle cx="0" cy="0" r="12" fill="url(#purplePlanetGradient)"/>
      <path d="M -10 1 C -5 -8, 5 -6, 10 1 C 5 9, -5 7, -10 1" fill="#E1BEE7" opacity="0.7" transform="scale(0.7) rotate(10)"/>
      <path d="M -8 -2 C -3 -10, 7 -8, 8 -2 C 3 6, -3 4, -8 -2" fill="rgba(255,255,255,0.3)" opacity="0.5" transform="scale(0.9) rotate(-15)"/>
    </g>
  </g>

  <!-- Coral Reef (Front Layer) -->
  <g id="coral-front">
    <g transform="translate(35, 275)"> <!-- Yellow Tube Coral Cluster -->
      <ellipse cx="0" cy="0" rx="4" ry="12" fill="url(#coralYellowGlow)" transform="rotate(-20)"/>
      <ellipse cx="0" cy="0" rx="4" ry="12" fill="url(#coralYellowGlow)" transform="rotate(-5) translate(8,2)"/>
      <ellipse cx="0" cy="0" rx="4" ry="12" fill="url(#coralYellowGlow)" transform="rotate(10) translate(16,0)"/>
      <ellipse cx="0" cy="0" rx="4" ry="11" fill="url(#coralYellowGlow)" transform="rotate(25) translate(23,-2)"/>
    </g>
    <g transform="translate(260, 270)"> <!-- Purple Fan Coral -->
        <path d="M0 25 C -35 -5, 35 -5, 0 25 Z" fill="url(#coralPurpleGlow)" />
        <path d="M0 -2 L -25 23 M0 -2 L -15 23 M0 -2 L 0 23 M0 -2 L 15 23 M0 -2 L 25 23" stroke="#6A1B9A" stroke-width="1.2" opacity="0.6"/>
    </g>
    <g transform="translate(100, 285)"> <!-- Small Blue Anemone -->
        <circle cx="0" cy="0" r="15" fill="url(#coralBlueGlow)" />
        <circle cx="0" cy="0" r="5" fill="#1565C0" opacity="0.5"/>
    </g>
     <g transform="translate(190, 280)"> <!-- Small Orange Cluster -->
        <circle cx="0" cy="0" r="8" fill="url(#coralOrangeGlow)"/>
        <circle cx="10" cy="-5" r="6" fill="url(#coralOrangeGlow)"/>
        <circle cx="5" cy="8" r="7" fill="url(#coralOrangeGlow)"/>
    </g>
  </g>

  <!-- Bubbles -->
  <g id="bubbles" fill="rgba(200,225,255,0.3)" stroke="rgba(255,255,255,0.5)" stroke-width="0.5">
    <circle cx="270" cy="180" r="6">
      <animate attributeName="cy" values="180;30;180" dur="9s" repeatCount="indefinite" />
      <animate attributeName="cx" values="270;260;280;270" dur="7s" repeatCount="indefinite" />
      <animate attributeName="r" values="6;7;5;6" dur="3s" repeatCount="indefinite" />
    </circle>
    <circle cx="50" cy="220" r="4">
      <animate attributeName="cy" values="220;50;220" dur="7s" begin="-2s" repeatCount="indefinite" />
      <animate attributeName="cx" values="50;60;45;50" dur="6s" begin="-1s" repeatCount="indefinite" />
    </circle>
    <circle cx="150" cy="250" r="3">
      <animate attributeName="cy" values="250;80;250" dur="6s" begin="-4s" repeatCount="indefinite" />
    </circle>
     <circle cx="200" cy="100" r="5">
      <animate attributeName="cy" values="100;10;100" dur="10s" begin="-1s" repeatCount="indefinite" />
      <animate attributeName="cx" values="200;210;190;200" dur="8s" repeatCount="indefinite" />
    </circle>
  </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 more effectively captures the prompt by depicting a recognizable octopus juggling planets in a vibrant underwater scene that includes glowing coral elements.

    The composition is more detailed and visually appealing, adhering closely to the theme.

    Player 1's submission, while creative, lacks clarity in representing an octopus and the underwater setting, making it less compelling overall.

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
16
Player 2
66
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
5
Player 2
29
Ellipses

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

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

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

Player 1
9
Player 2
26
Groups

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

Player 1
5
Player 2
19

Visual Effects Metrics

Gradients

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

Player 1
3
Player 2
12
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
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
5
Player 2
21
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
9
Player 2
21

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
14
Player 2
26

Interactivity Metrics

Animations

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

Player 1
Player 2
8
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
4
Player 2
19

Complexity Metrics

Path Commands

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

Player 1
18
Player 2
89
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
4
Player 2
12
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