Creative Challenge
"An octopus juggling colorful planets under a starry sky."
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="skyGradient" cx="50%" cy="50%" r="70%">
<stop offset="0%" style="stop-color:#0B0B2A"/>
<stop offset="100%" style="stop-color:#000033"/>
</radialGradient>
<radialGradient id="planet1" cx="40%" cy="40%">
<stop offset="0%" style="stop-color:#FF6B6B"/>
<stop offset="100%" style="stop-color:#FF1717"/>
</radialGradient>
<radialGradient id="planet2" cx="40%" cy="40%">
<stop offset="0%" style="stop-color:#4ECDC4"/>
<stop offset="100%" style="stop-color:#2E9B94"/>
</radialGradient>
<radialGradient id="planet3" cx="40%" cy="40%">
<stop offset="0%" style="stop-color:#FFD93D"/>
<stop offset="100%" style="stop-color:#FF9F1C"/>
</radialGradient>
</defs>
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)"/>
<!-- Stars -->
<g id="stars">
<circle cx="50" cy="50" r="1" fill="white"/>
<circle cx="80" cy="30" r="1.5" fill="white"/>
<circle cx="150" cy="40" r="1" fill="white"/>
<circle cx="200" cy="60" r="1.2" fill="white"/>
<circle cx="250" cy="30" r="1" fill="white"/>
<circle cx="40" cy="100" r="1.3" fill="white"/>
<circle cx="220" cy="120" r="1" fill="white"/>
<circle cx="180" cy="150" r="1.5" fill="white"/>
<circle cx="260" cy="180" r="1" fill="white"/>
<circle cx="70" cy="200" r="1.2" fill="white"/>
</g>
<!-- Octopus -->
<g id="octopus" transform="translate(150,180)">
<path d="M0,0 Q-30,-20 -40,20 Q-20,40 0,30" fill="#6C4675" stroke="#523657" stroke-width="2"/>
<path d="M0,0 Q30,-20 40,20 Q20,40 0,30" fill="#6C4675" stroke="#523657" stroke-width="2"/>
<path d="M-10,0 Q-40,40 -30,80" fill="none" stroke="#6C4675" stroke-width="8" stroke-linecap="round"/>
<path d="M10,0 Q40,40 30,80" fill="none" stroke="#6C4675" stroke-width="8" stroke-linecap="round"/>
<path d="M-15,0 Q-60,20 -70,60" fill="none" stroke="#6C4675" stroke-width="8" stroke-linecap="round"/>
<path d="M15,0 Q60,20 70,60" fill="none" stroke="#6C4675" stroke-width="8" stroke-linecap="round"/>
<path d="M-5,0 Q-20,60 -10,100" fill="none" stroke="#6C4675" stroke-width="8" stroke-linecap="round"/>
<path d="M5,0 Q20,60 10,100" fill="none" stroke="#6C4675" stroke-width="8" stroke-linecap="round"/>
<circle cx="0" cy="0" r="25" fill="#8B5E9A"/>
<circle cx="-8" cy="-5" r="5" fill="white"/>
<circle cx="-6" cy="-5" r="2" fill="black"/>
</g>
<!-- Juggling Planets -->
<g id="planets">
<circle cx="100" cy="100" r="20" fill="url(#planet1)">
<animate attributeName="cx" values="100;150;200;100" dur="4s" repeatCount="indefinite"/>
<animate attributeName="cy" values="100;50;100;100" dur="4s" repeatCount="indefinite"/>
</circle>
<circle cx="200" cy="100" r="15" fill="url(#planet2)">
<animate attributeName="cx" values="200;150;100;200" dur="4s" repeatCount="indefinite"/>
<animate attributeName="cy" values="100;150;100;100" dur="4s" repeatCount="indefinite"/>
</circle>
<circle cx="150" cy="50" r="18" fill="url(#planet3)">
<animate attributeName="cx" values="150;100;150;150" dur="4s" repeatCount="indefinite"/>
<animate attributeName="cy" values="50;100;50;50" dur="4s" repeatCount="indefinite"/>
</circle>
</g>
<!-- Planet Rings and Details -->
<g id="planetDetails">
<ellipse cx="100" cy="100" rx="25" ry="5" fill="none" stroke="#FF8A8A" stroke-width="1">
<animate attributeName="cx" values="100;150;200;100" dur="4s" repeatCount="indefinite"/>
<animate attributeName="cy" values="100;50;100;100" dur="4s" repeatCount="indefinite"/>
</ellipse>
<path d="M185,100 Q200,95 215,100" stroke="#4ECDC4" stroke-width="2" fill="none">
<animate attributeName="d" values="M185,100 Q200,95 215,100;M135,150 Q150,145 165,150;M85,100 Q100,95 115,100;M185,100 Q200,95 215,100" dur="4s" repeatCount="indefinite"/>
</path>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background: Starry sky with gradient -->
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#0b3d91"/>
<stop offset="100%" stop-color="#000000"/>
</linearGradient>
<!-- Gradient for planets -->
<radialGradient id="planetGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#fff"/>
<stop offset="100%" stop-color="#a0d8ef"/>
</radialGradient>
<radialGradient id="planetGradient2" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ffe377"/>
<stop offset="100%" stop-color="#f7a240"/>
</radialGradient>
<radialGradient id="planetGradient3" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#d76caca"/>
<stop offset="100%" stop-color="#8e2f80"/>
</radialGradient>
<!-- Pattern for star sparkle -->
<pattern id="starPattern" x="0" y="0" width="4" height="4" patternUnits="userSpaceOnUse">
<circle cx="2" cy="2" r="0.5" fill="white" opacity="0.8"/>
</pattern>
</defs>
<!-- Background Sky -->
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Twinkling stars -->
<g fill="white" opacity="0.8" stroke="white" stroke-opacity="0.3">
<circle cx="20" cy="30" r="1.2" fill="white"/>
<circle cx="50" cy="80" r="0.8" fill="white"/>
<circle cx="100" cy="20" r="1" fill="white"/>
<circle cx="150" cy="150" r="1.5" fill="white"/>
<circle cx="200" cy="50" r="1" fill="white"/>
<circle cx="250" cy="100" r="0.7" fill="white"/>
<circle cx="70" cy="200" r="1.3" fill="white"/>
<circle cx="220" cy="180" r="0.9" fill="white"/>
<circle cx="280" cy="70" r="0.5" fill="white"/>
<circle cx="35" cy="250" r="1" fill="white"/>
</g>
<!-- Celestial planets being juggled -->
<circle cx="70" cy="90" r="15" fill="url(#planetGradient)" stroke="white" stroke-width="1"/>
<circle cx="240" cy="70" r="20" fill="url(#planetGradient2)" stroke="white" stroke-width="1"/>
<circle cx="150" cy="50" r="12" fill="url(#planetGradient3)" stroke="white" stroke-width="1"/>
<!-- Octopus main body -->
<g id="octopus" fill="#874c4b" stroke="#451f1f" stroke-width="0.5">
<!-- Main head -->
<ellipse cx="150" cy="200" rx="40" ry="50" fill="#874c4b" stroke="#451f1f"/>
<!-- Eyes -->
<circle cx="135" cy="185" r="3" fill="white"/>
<circle cx="165" cy="185" r="3" fill="white"/>
<circle cx="135" cy="185" r="1.5" fill="#000"/>
<circle cx="165" cy="185" r="1.5" fill="#000"/>
<!-- Tentacles -->
<g id="tentacles">
<!-- Left side tentacles -->
<path d="M110,220 Q85,240 95,265" stroke="#874c4b" stroke-width="6" fill="none" stroke-linecap="round"/>
<path d="M125,225 Q100,245 110,270" stroke="#874c4b" stroke-width="5" fill="none" stroke-linecap="round"/>
<path d="M140,220 Q120,240 125,265" stroke="#874c4b" stroke-width="6" fill="none" stroke-linecap="round"/>
<!-- Right side tentacles -->
<path d="M190,220 Q215,240 205,265" stroke="#874c4b" stroke-width="6" fill="none" stroke-linecap="round"/>
<path d="M175,225 Q200,245 190,270" stroke="#874c4b" stroke-width="5" fill="none" stroke-linecap="round"/>
<path d="M160,220 Q180,240 175,265" stroke="#874c4b" stroke-width="6" fill="none" stroke-linecap="round"/>
<!-- Bottom tentacles (more dynamic) -->
<path d="M125,250 Q130,280 140,250" stroke="#874c4b" stroke-width="6" fill="none" stroke-linecap="round"/>
<path d="M170,250 Q165,280 155,250" stroke="#874c4b" stroke-width="6" fill="none" stroke-linecap="round"/>
</g>
</g>
<!-- Juggling planets in motion (dynamic effect) -->
<!-- Orbiting positions simulate motion -->
<circle cx="70" cy="90" r="15" fill="url(#planetGradient)" stroke="white" stroke-width="1"/>
<circle cx="240" cy="70" r="20" fill="url(#planetGradient2)" stroke="white" stroke-width="1"/>
<circle cx="150" cy="50" r="12" fill="url(#planetGradient3)" stroke="white" stroke-width="1"/>
<!-- Motion trails to suggest juggling -->
<path d="M70,90 Q80,70 90,90" stroke="#ffd700" stroke-width="1" opacity="0.5"/>
<path d="M240,70 Q230,50 220,70" stroke="#adff2f" stroke-width="1" opacity="0.5"/>
<path d="M150,50 Q160,30 170,50" stroke="#87cefa" stroke-width="1" opacity="0.5"/>
<!-- Optional: faint a glowing aura around octopus -->
<ellipse cx="150" cy="200" rx="60" ry="70" fill="none" stroke="#4b2e1d" stroke-width="1" opacity="0.2"/>
</svg>
Judge's Analysis
Player 1's submission demonstrates better adherence to the prompt with a clear depiction of an octopus juggling colorful planets under a starry sky.
The planets are vibrant and distinct, and the octopus is well-integrated into the scene.
While Player 2's submission is creative, the planets lack vibrancy and the overall composition feels less polished compared to Player 1'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
The total number of shape elements (rect, circle, ellipse, line, polygon, polyline, path) in the SVG.
The number of rectangle elements (rect) in the SVG.
The number of circle elements (circle) in the SVG.
The number of ellipse elements (ellipse) in the SVG.
The number of line elements (line) in the SVG.
The number of polygon elements (polygon) in the SVG.
The number of path elements (path) in the SVG.
The number of group elements (g) in the SVG.
Visual Effects Metrics
The number of gradient definitions (linearGradient, radialGradient) in the SVG.
The number of pattern definitions (pattern) in the SVG.
The number of filter definitions (filter) in the SVG.
The number of mask definitions (mask) in the SVG.
The number of clipping path definitions (clipPath) in the SVG.
The number of elements with opacity attributes in the SVG.
The number of elements with stroke attributes in the SVG.
Colors Metrics
The number of unique colors used in the SVG.
Interactivity Metrics
The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.
The number of elements with transform attributes in the SVG.
Complexity Metrics
The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.
The maximum nesting level of group elements (g) in the SVG.
The number of elements defined within the defs element in the SVG.
The number of use elements (use) in the SVG.
Text Metrics
The number of text elements (text) in the SVG.
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
"A melting clock perched on a mushroom under a starlit sky."
"An octopus juggling planets under a starry sky."
"A dragon blowing bubbles instead of fire."
"A snail racing against a cheetah across a winding rainbow road."