Back

SVG Drawing Match #2595

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An octopus juggling planets in deep space."

SVG by Gemini 2.5 Pro Preview 05-06
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  <defs>
    <!-- Gradients -->
    <radialGradient id="deepSpaceGradient" cx="50%" cy="50%" r="70%">
      <stop offset="0%" stop-color="#0A001F" />
      <stop offset="100%" stop-color="#000005" />
    </radialGradient>

    <linearGradient id="octopusSkinGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#6A0DAD" />
      <stop offset="30%" stop-color="#9B59B6" />
      <stop offset="70%" stop-color="#8E44AD" />
      <stop offset="100%" stop-color="#4A148C" />
    </linearGradient>

    <radialGradient id="octopusEyeGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#F1C40F" /> <!-- Bright Yellow -->
      <stop offset="70%" stop-color="#F39C12" /> <!-- Orange Yellow -->
    </radialGradient>

    <radialGradient id="planetFireGradient" cx="35%" cy="35%" r="65%">
      <stop offset="0%" stop-color="#FF6B6B" /> <!-- Light Red -->
      <stop offset="50%" stop-color="#FF4500" /> <!-- OrangeRed -->
      <stop offset="100%" stop-color="#B22222" /> <!-- Firebrick -->
    </radialGradient>

    <radialGradient id="planetIceGradient" cx="65%" cy="35%" r="65%">
      <stop offset="0%" stop-color="#E0FFFF" /> <!-- LightCyan -->
      <stop offset="50%" stop-color="#AFEEEE" /> <!-- PaleTurquoise -->
      <stop offset="100%" stop-color="#76D7C4" /> <!-- MediumTurquoise -->
    </radialGradient>

    <radialGradient id="planetEarthGradient" cx="40%" cy="40%" r="60%">
      <stop offset="0%" stop-color="#5DADE2" /> <!-- Bright Blue (ocean) -->
      <stop offset="100%" stop-color="#58D68D" /> <!-- Bright Green (land) -->
    </radialGradient>

    <radialGradient id="planetRockyGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#B0BEC5" /> <!-- Blue Grey -->
      <stop offset="100%" stop-color="#78909C" /> <!-- Darker Blue Grey -->
    </radialGradient>

    <radialGradient id="planetSaturnBodyGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#FAD7A0" /> <!-- Pale Orange -->
      <stop offset="100%" stop-color="#E59866" /> <!-- Darker Orange/Brown -->
    </radialGradient>

    <linearGradient id="planetSaturnRingGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#F8C471" />
      <stop offset="50%" stop-color="#FDEBD0" />
      <stop offset="100%" stop-color="#F8C471" />
    </linearGradient>

    <radialGradient id="planetGasGiantGradient" cx="30%" cy="70%" r="70%">
      <stop offset="0%" stop-color="#F5CBA7" /> <!-- Light Peach -->
      <stop offset="30%" stop-color="#DC7633" /> <!-- Orange -->
      <stop offset="70%" stop-color="#AF601A" /> <!-- Brown -->
      <stop offset="100%" stop-color="#6E2C00" /> <!-- Dark Brown -->
    </radialGradient>

    <radialGradient id="planetPurpleDwarfGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#D7BDE2" /> <!-- Pale Lilac -->
      <stop offset="100%" stop-color="#A569BD" /> <!-- Medium Purple -->
    </radialGradient>

    <radialGradient id="nebulaGradient1" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#EC008C" stop-opacity="0.5"/> <!-- Hot Pink -->
      <stop offset="100%" stop-color="#EC008C" stop-opacity="0"/>
    </radialGradient>
    <radialGradient id="nebulaGradient2" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#00BFFF" stop-opacity="0.4"/> <!-- Deep Sky Blue -->
      <stop offset="100%" stop-color="#00BFFF" stop-opacity="0"/>
    </radialGradient>

    <filter id="starGlow">
      <feGaussianBlur stdDeviation="0.7" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <filter id="planetAtmosphereGlow">
        <feGaussianBlur in="SourceAlpha" stdDeviation="2.5" result="blur"/>
        <feFlood flood-color="#A9CCE3" flood-opacity="0.6" result="glowColor"/>
        <feComposite in="glowColor" in2="blur" operator="in" result="softGlow_colored"/>
        <feMerge>
            <feMergeNode in="softGlow_colored"/>
            <feMergeNode in="SourceGraphic"/>
        </feMerge>
    </filter>
    <filter id="fieryGlow">
        <feGaussianBlur in="SourceAlpha" stdDeviation="2" result="blur"/>
        <feFlood flood-color="#FF8C00" flood-opacity="0.7" result="glowColor"/>
        <feComposite in="glowColor" in2="blur" operator="in" result="softGlow_colored"/>
        <feMerge>
            <feMergeNode in="softGlow_colored"/>
            <feMergeNode in="SourceGraphic"/>
        </feMerge>
    </filter>

    <pattern id="octopusPattern" patternUnits="userSpaceOnUse" width="12" height="12">
      <circle cx="2.5" cy="2.5" r="0.6" fill="#FFFFFF" fill-opacity="0.15"/>
      <circle cx="8" cy="8" r="0.4" fill="#FFFFFF" fill-opacity="0.1"/>
    </pattern>
    <path id="starSymbol" d="M0 -5 L1.18 -1.54 L4.76 -0.92 L1.92 1.18 L2.94 4.48 L0 2.5 L-2.94 4.48 L-1.92 1.18 L-4.76 -0.92 L-1.18 -1.54 Z" />
  </defs>

  <rect width="300" height="300" fill="url(#deepSpaceGradient)" />

  <ellipse cx="70" cy="60" rx="110" ry="70" fill="url(#nebulaGradient1)" opacity="0.6" transform="rotate(-25 70 60)"/>
  <ellipse cx="230" cy="240" rx="130" ry="80" fill="url(#nebulaGradient2)" opacity="0.5" transform="rotate(35 230 240)"/>
  <ellipse cx="150" cy="150" rx="160" ry="110" fill="url(#nebulaGradient1)" opacity="0.15" transform="rotate(15 150 150)"/>

  <g id="stars" fill-opacity="0.9">
    <use href="#starSymbol" x="20" y="30" fill="white" transform="scale(0.3)" filter="url(#starGlow)"/>
    <use href="#starSymbol" x="50" y="60" fill="#FFFFE0" transform="scale(0.4)" filter="url(#starGlow)"/>
    <use href="#starSymbol" x="90" y="20" fill="white" transform="scale(0.25)"/>
    <use href="#starSymbol" x="120" y="90" fill="#FFFFE0" transform="scale(0.35)" filter="url(#starGlow)"/>
    <use href="#starSymbol" x="150" y="30" fill="white" transform="scale(0.3)"/>
    <use href="#starSymbol" x="180" y="110" fill="#FFFFE0" transform="scale(0.2)"/>
    <use href="#starSymbol" x="210" y="50" fill="white" transform="scale(0.45)" filter="url(#starGlow)"/>
    <use href="#starSymbol" x="250" y="80" fill="#FFFFE0" transform="scale(0.3)"/>
    <use href="#starSymbol" x="280" y="40" fill="white" transform="scale(0.38)" filter="url(#starGlow)"/>
    <use href="#starSymbol" x="10" y="150" fill="#FFFFE0" transform="scale(0.28)"/>
    <use href="#starSymbol" x="40" y="200" fill="white" transform="scale(0.33)" filter="url(#starGlow)"/>
    <use href="#starSymbol" x="70" y="250" fill="#FFFFE0" transform="scale(0.4)" />
    <use href="#starSymbol" x="100" y="280" fill="white" transform="scale(0.25)" filter="url(#starGlow)"/>
    <use href="#starSymbol" x="130" y="210" fill="#FFFFE0" transform="scale(0.35)"/>
    <use href="#starSymbol" x="160" y="260" fill="white" transform="scale(0.3)" filter="url(#starGlow)"/>
    <use href="#starSymbol" x="190" y="180" fill="#FFFFE0" transform="scale(0.22)"/>
    <use href="#starSymbol" x="220" y="290" fill="white" transform="scale(0.42)" filter="url(#starGlow)"/>
    <use href="#starSymbol" x="260" y="200" fill="#FFFFE0" transform="scale(0.3)"/>
    <use href="#starSymbol" x="290" y="240" fill="white" transform="scale(0.37)" filter="url(#starGlow)"/>
    <use href="#starSymbol" x="60" y="120" fill="white" transform="scale(0.18)"/>
    <use href="#starSymbol" x="200" y="140" fill="#FFFFE0" transform="scale(0.28)" filter="url(#starGlow)"/>
    <use href="#starSymbol" x="30" y="270" fill="#FFFACD" transform="scale(0.32)"/>
    <use href="#starSymbol" x="270" y="150" fill="#FFFACD" transform="scale(0.4) rotate(15 270 150)" filter="url(#starGlow)"/>
  </g>

  <g id="octopus" transform="translate(150, 180)">
    <mask id="octopusHeadMask">
        <ellipse cx="0" cy="-30" rx="45" ry="50" fill="white"/>
    </mask>
    <ellipse cx="0" cy="-30" rx="45" ry="50" fill="url(#octopusSkinGradient)" />
    <rect x="-45" y="-80" width="90" height="100" fill="url(#octopusPattern)" mask="url(#octopusHeadMask)"/>

    <g id="eyes" transform="translate(0, -40)">
        <ellipse cx="-15" cy="0" rx="12" ry="15" fill="url(#octopusEyeGradient)"/>
        <circle cx="-15" cy="0" r="6" fill="#330022"/>
        <circle cx="-14" cy="-2" r="2.5" fill="white" fill-opacity="0.8"/>
        <ellipse cx="15" cy="0" rx="12" ry="15" fill="url(#octopusEyeGradient)"/>
        <circle cx="15" cy="0" r="6" fill="#330022"/>
        <circle cx="16" cy="-2" r="2.5" fill="white" fill-opacity="0.8"/>
    </g>

    <g id="tentaclesAndSuckers">
      <!-- Suckers are groups associated with each tentacle path -->
      <!-- Back tentacles, less detail on suckers as they are further back -->
      <path d="M 0 0 Q -30 -10 -50 -40 C -55 -55 -58 -70 -60 -90" stroke="url(#octopusSkinGradient)" stroke-width="12" fill="none" stroke-linecap="round"/>
      <path d="M 0 0 Q 30 -10 50 -40 C 55 -55 58 -70 60 -90" stroke="url(#octopusSkinGradient)" stroke-width="12" fill="none" stroke-linecap="round"/>

      <path id="tentacle1" d="M -10 5 C -30 20 -50 40 -60 60 Q -65 70 -60 75" stroke="url(#octopusSkinGradient)" stroke-width="15" fill="none" stroke-linecap="round"/>
      <g id="suckers_tentacle1" fill="#E1BEE7" opacity="0.8">
          <ellipse cx="-30" cy="28" rx="3.5" ry="2.5" transform="rotate(20 -30 28)"/> <ellipse cx="-45" cy="45" rx="4" ry="3" transform="rotate(10 -45 45)"/> <ellipse cx="-58" cy="62" rx="4.5" ry="3.5"/>
      </g>
      <path id="tentacle2" d="M -20 -5 C -50 -10 -80 -30 -90 -60 Q -95 -75 -85 -85" stroke="url(#octopusSkinGradient)" stroke-width="14" fill="none" stroke-linecap="round"/>
      <g id="suckers_tentacle2" fill="#E1BEE7" opacity="0.8">
          <ellipse cx="-55" cy="-15" rx="3" ry="2" transform="rotate(-10 -55 -15)"/> <ellipse cx="-75" cy="-35" rx="3.5" ry="2.5" transform="rotate(-20 -75 -35)"/> <ellipse cx="-88" cy="-65" rx="4" ry="3" transform="rotate(-25 -88 -65)"/>
      </g>
      <path id="tentacle3" d="M -15 -25 C -40 -50 -50 -90 -40 -120 Q -35 -135 -25 -130" stroke="url(#octopusSkinGradient)" stroke-width="13" fill="none" stroke-linecap="round"/>
      <g id="suckers_tentacle3" fill="#E1BEE7" opacity="0.8">
          <ellipse cx="-35" cy="-60" rx="2.5" ry="2" transform="rotate(-30 -35 -60)"/> <ellipse cx="-45" cy="-95" rx="3" ry="2.5" transform="rotate(-40 -45 -95)"/> <ellipse cx="-30" cy="-125" rx="3.5" ry="3" transform="rotate(-45 -30 -125)"/>
      </g>
      <path id="tentacle4" d="M 0 -35 C 0 -60 10 -95 15 -115 Q 20 -125 15 -125" stroke="url(#octopusSkinGradient)" stroke-width="13" fill="none" stroke-linecap="round"/>
      <g id="suckers_tentacle4" fill="#E1BEE7" opacity="0.8">
          <ellipse cx="5" cy="-70" rx="2.5" ry="2"/> <ellipse cx="12" cy="-100" rx="3" ry="2.5"/> <ellipse cx="16" cy="-118" rx="3.5" ry="3"/>
      </g>
      <path id="tentacle5" d="M 15 -25 C 40 -50 50 -90 40 -120 Q 35 -135 25 -130" stroke="url(#octopusSkinGradient)" stroke-width="14" fill="none" stroke-linecap="round"/>
      <g id="suckers_tentacle5" fill="#E1BEE7" opacity="0.8">
          <ellipse cx="35" cy="-60" rx="3" ry="2.5" transform="rotate(30 35 -60)"/> <ellipse cx="45" cy="-95" rx="3.5" ry="3" transform="rotate(40 45 -95)"/> <ellipse cx="28" cy="-122" rx="4" ry="3.5" transform="rotate(45 28 -122)"/>
      </g>
      <path id="tentacle6" d="M 20 -5 C 50 -10 80 -30 90 -60 Q 95 -75 85 -85" stroke="url(#octopusSkinGradient)" stroke-width="15" fill="none" stroke-linecap="round"/>
      <g id="suckers_tentacle6" fill="#E1BEE7" opacity="0.8">
          <ellipse cx="55" cy="-15" rx="3.5" ry="3" transform="rotate(10 55 -15)"/> <ellipse cx="75" cy="-35" rx="4" ry="3.5" transform="rotate(20 75 -35)"/> <ellipse cx="88" cy="-65" rx="4.5" ry="3.5" transform="rotate(25 88 -65)"/>
      </g>
      <path id="tentacle7" d="M 10 5 C 30 20 50 40 60 60 Q 65 70 60 75" stroke="url(#octopusSkinGradient)" stroke-width="14" fill="none" stroke-linecap="round"/>
      <g id="suckers_tentacle7" fill="#E1BEE7" opacity="0.8">
          <ellipse cx="30" cy="28" rx="3" ry="2.5" transform="rotate(-20 30 28)"/> <ellipse cx="45" cy="45" rx="3.5" ry="3" transform="rotate(-10 45 45)"/> <ellipse cx="58" cy="62" rx="4" ry="3.5"/>
      </g>
      <path id="tentacle8" d="M 0 10 C 10 30 0 50 -15 65 Q -25 75 -20 70" stroke="url(#octopusSkinGradient)" stroke-width="12" fill="none" stroke-linecap="round"/>
      <g id="suckers_tentacle8" fill="#E1BEE7" opacity="0.8">
          <ellipse cx="5" cy="25" rx="2.5" ry="2" transform="rotate(10 5 25)"/> <ellipse cx="-5" cy="50" rx="3" ry="2.5" transform="rotate(-5 -5 50)"/> <ellipse cx="-18" cy="68" rx="3.5" ry="3" transform="rotate(-15 -18 68)"/>
      </g>
    </g>
  </g>

  <g id="planet_fire" transform="translate(90, 255)" filter="url(#fieryGlow)">
    <circle cx="0" cy="0" r="18" fill="url(#planetFireGradient)"/>
    <path d="M -10 -5 Q 0 5 10 -5 M -5 5 Q 5 15 12 8 M -12 10 Q -5 0 0 10" stroke="#B22222" stroke-width="1.5" fill="none" opacity="0.7"/>
  </g>
  <g id="planet_ice" transform="translate(50, 70)">
    <circle cx="0" cy="0" r="15" fill="url(#planetIceGradient)"/>
    <path d="M -10 0 A 10 5 0 0 1 10 0 M -12 5 A 12 6 0 0 1 12 5" fill="white" opacity="0.35"/>
    <circle cx="-5" cy="-5" r="2.5" fill="white" opacity="0.5"/> <circle cx="6" cy="3" r="2" fill="white" opacity="0.4"/>
  </g>
  <g id="planet_earth" transform="translate(125, 20)" filter="url(#planetAtmosphereGlow)">
    <circle cx="0" cy="0" r="20" fill="url(#planetEarthGradient)"/>
    <path d="M -15 0 Q -5 -10 0 0 T 15 0 M -12 5 Q -2 -8 5 3 T 15 -2" stroke="white" stroke-width="2.5" fill="none" opacity="0.65" stroke-linecap="round"/>
    <path d="M -10 8 Q 0 0 10 8 M -8 -8 Q 0 -15 8 -8" stroke="white" stroke-width="2" fill="none" opacity="0.55" stroke-linecap="round"/>
  </g>
  <g id="planet_rocky" transform="translate(165, 55)">
    <circle cx="0" cy="0" r="12" fill="url(#planetRockyGradient)"/>
    <circle cx="-3" cy="-2" r="2.5" fill="#616161" opacity="0.7"/> <circle cx="4" cy="3" r="1.8" fill="#616161" opacity="0.7"/>
    <circle cx="0" cy="5" r="3" fill="#616161" opacity="0.7"/> <circle cx="5" cy="-4" r="1.5" fill="#616161" opacity="0.6"/>
  </g>
  <g id="planet_saturn" transform="translate(175, 50)">
    <ellipse cx="0" cy="0" rx="24" ry="11" fill="url(#planetSaturnRingGradient)" transform="rotate(-20)"/>
    <circle cx="0" cy="0" r="16" fill="url(#planetSaturnBodyGradient)"/>
  </g>
  <g id="planet_gasgiant" transform="translate(250, 80)">
    <circle cx="0" cy="0" r="25" fill="url(#planetGasGiantGradient)"/>
    <path d="M -25 2 Q 0 -3 25 2 M -23 -8 Q 0 -13 23 -8 M -20 10 Q 0 16 20 10 M -18 -18 Q 0 -22 18 -18" stroke="#F5E8DD" stroke-width="4" fill="none" opacity="0.8" stroke-linecap="round"/>
    <path d="M -22 5 Q 0 0 22 5" stroke="#873600" stroke-width="3.5" fill="none" opacity="0.7" stroke-linecap="round"/>
    <ellipse cx="10" cy="-5" rx="6" ry="4" fill="#C0392B" opacity="0.9"/>
  </g>
  <g id="planet_purple" transform="translate(210, 255)">
    <circle cx="0" cy="0" r="10" fill="url(#planetPurpleDwarfGradient)"/>
    <circle cx="0" cy="0" r="11" fill="url(#planetPurpleDwarfGradient)" opacity="0.25" filter="url(#starGlow)"/>
  </g>
</svg>
SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="planetGradient1" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#ff6347;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#ff4500;stop-opacity:1"/>
    </radialGradient>
    <radialGradient id="planetGradient2" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#1e90ff;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#4682b4;stop-opacity:1"/>
    </radialGradient>
    <radialGradient id="planetGradient3" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#adff2f;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#7fff00;stop-opacity:1"/>
    </radialGradient>
    <radialGradient id="octopusGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#ff69b4;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#db7093;stop-opacity:1"/>
    </radialGradient>
    <pattern id="starPattern" patternUnits="userSpaceOnUse" width="6" height="6">
      <circle cx="3" cy="3" r="1.5" fill="#ffff00"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="black"/>
  <g filter="url(#f1)">
    <circle cx="150" cy="150" r="150" fill="url(#starPattern)"/>
  </g>
  
  <g transform="translate(150, 150)">
    <path d="M-30 20 C-50 80, -50 100, -30 120 C-10 140, 10 140, 30 120 C50 100, 50 80, 30 20 C20 -20, -20 -20, -30 20" fill="url(#octopusGradient)" />
    <ellipse cx="-30" cy="20" rx="5" ry="10" fill="white" />
    <ellipse cx="30" cy="20" rx="5" ry="10" fill="white" />
    
    <ellipse cx="-40" cy="-40" rx="5" ry="5" fill="white" />
    <ellipse cx="40" cy="-40" rx="5" ry="5" fill="white" />
    
    <circle cx="-60" cy="60" r="15" fill="url(#planetGradient1)" />
    <circle cx="60" cy="-60" r="10" fill="url(#planetGradient2)" />
    <circle cx="-80" cy="-80" r="12" fill="url(#planetGradient3)" />
    
    <g>
      <circle cx="-60" cy="60" r="15" fill="url(#planetGradient1)" />
      <circle cx="60" cy="-60" r="10" fill="url(#planetGradient2)" />
      <circle cx="-80" cy="-80" r="12" fill="url(#planetGradient3)" />
    </g>
  </g>
  <text x="150" y="280" text-anchor="middle" fill="white" font-family="Arial" font-size="16">Octopus Juggling Planets</text>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Gemini 2.5 Pro Preview 05-06 Player 1

Judge's Analysis

    Player 1's submission is more detailed, creative, and adheres to the prompt better by depicting a recognizable octopus juggling planets in a deep space setting.

    The vibrant colors, expressive octopus design, and atmospheric background add to its visual appeal.

    Player 2's submission is minimalistic and lacks the representation of an octopus, making it less aligned with the prompt and less visually engaging.

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
72
Player 2
14
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
20
Player 2
8
Ellipses

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

Player 1
33
Player 2
4
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
17
Player 2
1
Groups

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

Player 1
19
Player 2
3

Visual Effects Metrics

Gradients

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

Player 1
13
Player 2
4
Patterns

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

Player 1
1
Player 2
1
Filters

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

Player 1
3
Player 2
Masks

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

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

The number of elements with stroke attributes in the SVG.

Player 1
15
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
39
Player 2
3

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

Complexity Metrics

Path Commands

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

Player 1
71
Player 2
5
Max Group Nesting

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

Player 1
2
Player 2
1
Defs Elements

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

Player 1
18
Player 2
5
Use Elements

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

Player 1
23
Player 2

Text Metrics

Text Elements

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

Player 1
Player 2
1

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