Creative Challenge
"Octopus juggling planets under a starlit sky."
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid meet">
<!-- Background Sky with Gradient -->
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#0d1b2a"/>
<stop offset="100%" stop-color="#1b263b"/>
</linearGradient>
<!-- Star Pattern -->
<pattern id="starPattern" width="4" height="4" patternUnits="userSpaceOnUse">
<circle cx="2" cy="2" r="0.5" fill="#ffffff" opacity="0.8"/>
</pattern>
<!-- Planet Gradients -->
<linearGradient id="planetGradient1" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#ff6f61"/>
<stop offset="100%" stop-color="#ffcc70"/>
</linearGradient>
<linearGradient id="planetGradient2" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#4facfe"/>
<stop offset="100%" stop-color="#00f2fe"/>
</linearGradient>
<linearGradient id="planetGradient3" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#7f7fd5"/>
<stop offset="100%" stop-color="#86a8e7"/>
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Stars -->
<rect width="300" height="300" fill="url(#starPattern)" opacity="0.6"/>
<!-- Underwater Octopus Body -->
<g id="octopus" transform="translate(150,170)">
<!-- Head -->
<ellipse cx="0" cy="0" rx="30" ry="20" fill="#ff6188" stroke="#ff385c" stroke-width="2"/>
<!-- Eyes -->
<circle cx="-10" cy="-2" r="3" fill="#fff"/>
<circle cx="-10" cy="-2" r="1.5" fill="#000"/>
<circle cx="10" cy="-2" r="3" fill="#fff"/>
<circle cx="10" cy="-2" r="1.5" fill="#000"/>
<!-- Tentacles -->
<g id="tentacles">
<!-- Tentacle 1 -->
<path d="M -20,10 C -25,20 -15,25 -20,35" fill="none" stroke="#ff385c" stroke-width="3" stroke-linecap="round"/>
<!-- Tentacle 2 -->
<path d="M -10,10 C -15,20 -5,25 -10,35" fill="none" stroke="#ff385c" stroke-width="3" stroke-linecap="round"/>
<!-- Tentacle 3 -->
<path d="M 0,10 C -5,20 5,25 0,35" fill="none" stroke="#ff385c" stroke-width="3" stroke-linecap="round"/>
<!-- Tentacle 4 -->
<path d="M 10,10 C 5,20 15,25 10,35" fill="none" stroke="#ff385c" stroke-width="3" stroke-linecap="round"/>
<!-- Tentacle 5 -->
<path d="M 20,10 C 15,20 25,25 20,35" fill="none" stroke="#ff385c" stroke-width="3" stroke-linecap="round"/>
</g>
</g>
<!-- Planets being juggled -->
<!-- Planet 1 -->
<circle cx="100" cy="80" r="15" fill="url(#planetGradient1)">
<animate attributeName="cx" values="100;200;100" dur="8s" repeatCount="indefinite"/>
<animate attributeName="cy" values="80;50;80" dur="8s" repeatCount="indefinite"/>
</circle>
<circle cx="200" cy="160" r="20" fill="url(#planetGradient2)">
<animate attributeName="cx" values="200;100;200" dur="10s" repeatCount="indefinite"/>
<animate attributeName="cy" values="160;130;160" dur="10s" repeatCount="indefinite"/>
</circle>
<circle cx="120" cy="220" r="12" fill="url(#planetGradient3)">
<animate attributeName="cx" values="120;180;120" dur="7s" repeatCount="indefinite"/>
<animate attributeName="cy" values="220;200;220" dur="7s" repeatCount="indefinite"/>
</circle>
<!-- Optional: Glowing effect around planets -->
<circle cx="100" cy="80" r="20" fill="none" stroke="#fff" stroke-opacity="0.2" stroke-width="3" opacity="0.8" filter="blur(2px)">
<animate attributeName="cx" values="100;200;100" dur="8s" repeatCount="indefinite"/>
<animate attributeName="cy" values="80;50;80" dur="8s" repeatCount="indefinite"/>
</circle>
<circle cx="200" cy="160" r="25" fill="none" stroke="#fff" stroke-opacity="0.2" stroke-width="3" opacity="0.8" filter="blur(2px)">
<animate attributeName="cx" values="200;100;200" dur="10s" repeatCount="indefinite"/>
<animate attributeName="cy" values="160;130;160" dur="10s" repeatCount="indefinite"/>
</circle>
<circle cx="120" cy="220" r="15" fill="none" stroke="#fff" stroke-opacity="0.2" stroke-width="3" opacity="0.8" filter="blur(2px)">
<animate attributeName="cx" values="120;180;120" dur="7s" repeatCount="indefinite"/>
<animate attributeName="cy" values="220;200;220" dur="7s" repeatCount="indefinite"/>
</circle>
<!-- Optional: Light rays or glow above octopus to suggest starlit sky -->
<g opacity="0.3" stroke="#ffffff" stroke-width="1">
<line x1="150" y1="20" x2="150" y2="50"/>
<line x1="130" y1="40" x2="170" y2="80"/>
<line x1="170" y1="40" x2="130" y2="80"/>
<line x1="200" y1="30" x2="250" y2="60"/>
<line x1="100" y1="30" x2="50" y2="60"/>
<line x1="150" y1="10" x2="150" y2="0"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background with radial gradient and stars -->
<defs>
<radialGradient id="nightSky" cx="150" cy="150" r="150" fx="150" fy="150">
<stop offset="0" stop-color="#0a0a2e" stop-opacity="1"/>
<stop offset="1" stop-color="#1a1a4f" stop-opacity="1"/>
</radialGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="url(#nightSky)"/>
<!-- Stars -->
<g id="stars">
<circle cx="50" cy="50" r="1" fill="white"/>
<circle cx="80" cy="30" r="1" fill="white"/>
<circle cx="120" cy="70" r="1" fill="white"/>
<!-- More stars (abbreviated for brevity) -->
</g>
<!-- Octopus body with gradient -->
<ellipse cx="150" cy="200" rx="40" ry="30" fill="url(#gradientOctopus)" transform="rotate(30)"/>
<!-- Octopus tentacles -->
<path d="M150,230 Q170,220 190,200" stroke="url(#gradientTentacle1)" stroke-width="8" fill="none"/>
<path d="M150,230 Q130,220 110,200" stroke="url(#gradientTentacle2)" stroke-width="8" fill="none"/>
<!-- More tentacles (abbreviated for brevity) -->
<!-- Planets -->
<g transform="translate(150,150)">
<circle cx="0" cy="-100" r="15" fill="url(#planetGradient1)" transform="rotate(30) scale(0.8)"/>
<circle cx="100" cy="-50" r="12" fill="url(#planetGradient2)" transform="rotate(-20)"/>
<circle cx="-80" cy="-30" r="10" fill="url(#planetGradient3)" transform="rotate(45)"/>
</g>
<!-- Glowing effects -->
<circle cx="150" cy="150" r="10" fill="white" opacity="0.3" filter="url(#glow)"/>
<circle cx="150" cy="150" r="5" fill="white" opacity="0.6" filter="url(#glow)"/>
<!-- Additional star details -->
<g transform="translate(150,150) rotate(45)">
<path d="M0,0 L10,10 L5,15 L-5,15 L-10,10 Z" fill="white" opacity="0.4"/>
<!-- More star paths (abbreviated for brevity) -->
</g>
</svg>
Judge's Analysis
Player 1's submission adheres more closely to the prompt, showcasing a recognizable octopus juggling planets under a starlit sky.
The use of color and elements is clear, and the design is visually engaging.
Player 2's entry is too abstract and doesn't strongly convey the idea of an octopus or juggling planets, making it less effective in fulfilling the prompt.
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 giraffe in a spacesuit floating near Saturn's rings."
"A snail wearing a rocket-powered helmet racing against a tortoise with jet boots."
"A tree growing upside down, its roots reaching for the sky."
"A mouse riding a unicycle on a tightrope over a cup of steaming tea."