Creative Challenge
"Octopus juggling planets under a starry sky"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="sky" cx="50%" cy="50%" r="80%">
<stop offset="0%" stop-color="#0B012A"/>
<stop offset="100%" stop-color="#1B0849"/>
</radialGradient>
<radialGradient id="planet1" cx="30%" cy="30%" r="70%">
<stop offset="0%" stop-color="#FF6B6B"/>
<stop offset="100%" stop-color="#FF1717"/>
</radialGradient>
<radialGradient id="planet2" cx="40%" cy="40%" r="60%">
<stop offset="0%" stop-color="#4FACFE"/>
<stop offset="100%" stop-color="#00F2FE"/>
</radialGradient>
<radialGradient id="planet3" cx="45%" cy="45%" r="55%">
<stop offset="0%" stop-color="#FFD26F"/>
<stop offset="100%" stop-color="#FFB000"/>
</radialGradient>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#sky)"/>
<!-- Stars -->
<g id="stars">
<circle cx="50" cy="40" r="1" fill="white" opacity="0.8"/>
<circle cx="80" cy="60" r="1.5" fill="white" opacity="0.7"/>
<circle cx="150" cy="30" r="1" fill="white" opacity="0.9"/>
<circle cx="200" cy="50" r="1.2" fill="white" opacity="0.8"/>
<circle cx="250" cy="70" r="1" fill="white" opacity="0.7"/>
<circle cx="30" cy="100" r="1.3" fill="white" opacity="0.8"/>
<circle cx="280" cy="120" r="1" fill="white" opacity="0.9"/>
<circle cx="120" cy="20" r="1.4" fill="white" opacity="0.7"/>
</g>
<!-- Octopus -->
<g transform="translate(150,180)">
<!-- Body -->
<path d="M0,0 Q-30,-20 -20,-50 Q-10,-80 0,-70 Q10,-80 20,-50 Q30,-20 0,0"
fill="#9B6B9E"/>
<!-- Eyes -->
<circle cx="-10" cy="-40" r="5" fill="white"/>
<circle cx="10" cy="-40" r="5" fill="white"/>
<circle cx="-10" cy="-40" r="2" fill="black"/>
<circle cx="10" cy="-40" r="2" fill="black"/>
<!-- Tentacles -->
<path d="M-15,0 Q-40,20 -60,10 Q-80,0 -70,30" fill="none" stroke="#9B6B9E" stroke-width="8"/>
<path d="M-5,0 Q-20,40 -30,50 Q-40,60 -20,70" fill="none" stroke="#9B6B9E" stroke-width="8"/>
<path d="M5,0 Q20,40 30,50 Q40,60 20,70" fill="none" stroke="#9B6B9E" stroke-width="8"/>
<path d="M15,0 Q40,20 60,10 Q80,0 70,30" fill="none" stroke="#9B6B9E" stroke-width="8"/>
</g>
<!-- Planets -->
<circle cx="100" cy="100" r="20" fill="url(#planet1)">
<animate attributeName="cy" values="100;90;100" dur="2s" repeatCount="indefinite"/>
</circle>
<circle cx="150" cy="80" r="15" fill="url(#planet2)">
<animate attributeName="cy" values="80;100;80" dur="1.8s" repeatCount="indefinite"/>
</circle>
<circle cx="200" cy="110" r="18" fill="url(#planet3)">
<animate attributeName="cy" values="110;95;110" dur="2.2s" repeatCount="indefinite"/>
</circle>
<!-- Planet rings -->
<ellipse cx="200" cy="110" rx="25" ry="8" fill="none" stroke="#FFB000" stroke-width="2" transform="rotate(-15,200,110)">
<animate attributeName="cy" values="110;95;110" dur="2.2s" repeatCount="indefinite"/>
</ellipse>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background - Starry Sky -->
<rect x="0" y="0" width="300" height="300" fill="#050A30" />
<circle cx="150" cy="150" r="120" fill="url(#grad1)" />
<circle cx="100" cy="50" r="2" fill="#FFF" />
<circle cx="200" cy="100" r="2" fill="#FFF" />
<circle cx="50" cy="150" r="2" fill="#FFF" />
<circle cx="250" cy="200" r="2" fill="#FFF" />
<circle cx="150" cy="25" r="2" fill="#FFF" />
<circle cx="50" cy="75" r="2" fill="#FFF" />
<circle cx="200" cy="125" r="2" fill="#FFF" />
<circle cx="75" cy="175" r="2" fill="#FFF" />
<circle cx="225" cy="225" r="2" fill="#FFF" />
<!-- Octopus Body -->
<circle cx="150" cy="150" r="40" fill="#6348FF" />
<!-- Eyes -->
<circle cx="130" cy="130" r="5" fill="#FFF" />
<circle cx="170" cy="130" r="5" fill="#FFF" />
<!-- Tentacles -->
<path d="M120,160 Q100,200 110,230" fill="#6348FF" />
<path d="M140,160 Q160,200 150,230" fill="#6348FF" />
<path d="M160,160 Q120,190 190,230" fill="#6348FF" />
<path d="M180,160 Q140,180 220,230" fill="#6348FF" />
<!-- Planets -->
<circle cx="50" cy="50" r="15" fill="#F48A1B" />
<circle cx="200" cy="50" r="20" fill="#C73E1D" />
<circle cx="110" cy="190" r="18" fill="#FFEF6C" />
<circle cx="250" cy="220" r="25" fill="#15C4DD" />
<!-- Gradients -->
<defs>
<radialGradient id="grad1" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#050A30;stop-opacity:0" />
<stop offset="100%" style="stop-color:#0F3081;stop-opacity:1" />
</radialGradient>
</defs>
</svg>
Judge's Analysis
Player 2's submission demonstrates a more dynamic composition with planets orbiting around the octopus, creating a sense of motion and engagement.
The use of gradient and color contrast adds depth and visual interest.
Player 1's submission is more static and simplistic, lacking the same level of depth and creativity.
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
"Dancing cactus with maracas under a disco ball"
"Frog in a tuxedo playing a tiny trumpet under a starry sky"
"Giraffe with a fishbowl necktie"
"A giraffe peeking through a keyhole into a treasure-filled room"
"Lemon-shaped UFO over a desert cactus"
"Bioluminescent jellyfish floating in a forest"