Creative Challenge
"Rainbow octopus juggling planets in a geometric style"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="planet1" cx="50%" cy="50%" r="50%" fx="30%" fy="30%">
<stop offset="0%" style="stop-color:#FF6F61;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FF0000;stop-opacity:1" />
</radialGradient>
<radialGradient id="planet2" cx="50%" cy="50%" r="50%" fx="30%" fy="30%">
<stop offset="0%" style="stop-color:#6B5B95;stop-opacity:1" />
<stop offset="100%" style="stop-color:#2E294E;stop-opacity:1" />
</radialGradient>
<radialGradient id="planet3" cx="50%" cy="50%" r="50%" fx="30%" fy="30%">
<stop offset="0%" style="stop-color:#88B04B;stop-opacity:1" />
<stop offset="100%" style="stop-color:#4C7031;stop-opacity:1" />
</radialGradient>
<linearGradient id="octopusGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FF7F50;stop-opacity:1" />
<stop offset="25%" style="stop-color:#FFD700;stop-opacity:1" />
<stop offset="50%" style="stop-color:#00FF7F;stop-opacity:1" />
<stop offset="75%" style="stop-color:#00BFFF;stop-opacity:1" />
<stop offset="100%" style="stop-color:#8A2BE2;stop-opacity:1" />
</linearGradient>
</defs>
<rect width="300" height="300" fill="#0B3D91" />
<polygon points="150,100 100,200 200,200" fill="url(#planet1)" />
<circle cx="250" cy="100" r="30" fill="url(#planet2)" />
<ellipse cx="50" cy="100" rx="40" ry="20" fill="url(#planet3)" />
<path d="M150,200 C100,250 200,250 150,200 Z" fill="#FFD700" />
<path d="M150,200 C100,250 200,250 150,200 Z" fill="none" stroke="#FFD700" stroke-width="5" />
<path d="M150,200 Q100,150 150,100 T200,150" fill="none" stroke="#FFD700" stroke-width="5" />
<path d="M150,200 Q200,150 150,100 T100,150" fill="none" stroke="#FFD700" stroke-width="5" />
<circle cx="150" cy="150" r="50" fill="url(#octopusGradient)" />
<path d="M150,150 C100,100 200,100 150,150 Z" fill="none" stroke="#FFD700" stroke-width="5" />
<path d="M150,150 C100,200 200,200 150,150 Z" fill="none" stroke="#FFD700" stroke-width="5" />
<path d="M150,150 Q100,150 150,200 T200,150" fill="none" stroke="#FFD700" stroke-width="5" />
<path d="M150,150 Q200,150 150,200 T100,150" fill="none" stroke="#FFD700" stroke-width="5" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background with subtle geometric pattern -->
<rect width="300" height="300" fill="url(#bgGradient)" />
<defs>
<linearGradient id="bgGradient" x1="0" y1="0" x2="300" y2="300">
<stop offset="0" stop-color="#1a1a4f" />
<stop offset="1" stop-color="#16213e" />
</linearGradient>
<pattern id="geoPattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse">
<path d="M0 0 L100 100 M0 100 L100 0" stroke="#3d3d4f" stroke-width="2" fill="none" />
</pattern>
</defs>
<!-- Octopus body with rainbow gradient -->
<path d="M150 220 C170 220 190 200 180 180,
170 160 150 140 150 120,
130 140 120 160 120 180,
130 200 140 220 150 220"
fill="url(#octoGradient)" stroke="#fff" stroke-width="2" />
<defs>
<linearGradient id="octoGradient" x1="150" y1="120" x2="150" y2="220" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#ff3366" />
<stop offset="0.2" stop-color="#ff6b6b" />
<stop offset="0.4" stop-color="#ffd93d" />
<stop offset="0.6" stop-color="#38ff8f" />
<stop offset="0.8" stop-color="#36ffd5" />
<stop offset="1" stop-color="#1a4fff" />
</linearGradient>
</defs>
<!-- Octopus tentacles -->
<path d="M150 180 Q160 200 140 220" stroke="url(#tentacleGradient)" stroke-width="4" fill="none" />
<path d="M150 180 Q190 200 220 180" stroke="url(#tentacleGradient)" stroke-width="4" fill="none" />
<path d="M150 180 Q140 160 120 180" stroke="url(#tentacleGradient)" stroke-width="4" fill="none" />
<path d="M150 180 Q130 200 140 220" stroke="url(#tentacleGradient)" stroke-width="4" fill="none" />
<defs>
<linearGradient id="tentacleGradient" x1="0" y1="0" x2="1" y2="1" gradientUnits="objectBoundingBox">
<stop offset="0" stop-color="#ff3366" />
<stop offset="1" stop-color="#1a4fff" />
</linearGradient>
</defs>
<!-- Planets being juggled -->
<g transform="translate(150 150)">
<!-- Planet 1 -->
<circle cx="0" cy="-100" r="20" fill="url(#planet1)" />
<defs>
<linearGradient id="planet1" x1="-20" y1="-20" x2="20" y2="20" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#ffd93d" />
<stop offset="1" stop-color="#ff6b6b" />
</linearGradient>
</defs>
<circle cx="0" cy="-100" r="15" fill="#fff" opacity="0.8" />
<!-- Planet 2 -->
<circle cx="100" cy="0" r="25" fill="url(#planet2)" />
<defs>
<linearGradient id="planet2" x1="75" y1="-25" x2="125" y2="25" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#38ff8f" />
<stop offset="1" stop-color="#36ffd5" />
</linearGradient>
</defs>
<circle cx="100" cy="0" r="20" fill="#fff" opacity="0.8" />
<!-- Planet 3 -->
<circle cx="0" cy="100" r="30" fill="url(#planet3)" />
<defs>
<linearGradient id="planet3" x1="-30" y1="-30" x2="30" y2="30" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#1a4fff" />
<stop offset="1" stop-color="#16213e" />
</linearGradient>
</defs>
<circle cx="0" cy="100" r="25" fill="#fff" opacity="0.8" />
</g>
<!-- Motion lines -->
<path d="M100 50 Q150 100 200 50" stroke="#fff" stroke-width="2" fill="none" />
<path d="M200 50 Q150 100 100 50" stroke="#fff" stroke-width="2" fill="none" />
<path d="M150 250 Q200 200 150 150" stroke="#fff" stroke-width="2" fill="none" />
<path d="M150 150 Q100 200 150 250" stroke="#fff" stroke-width="2" fill="none" />
<!-- Eyes -->
<circle cx="140" cy="160" r="5" fill="#fff" />
<circle cx="160" cy="160" r="5" fill="#fff" />
<circle cx="140" cy="160" r="2" fill="#000" />
<circle cx="160" cy="160" r="2" fill="#000" />
</svg>
Judge's Analysis
Player 2's submission better captures the concept of a rainbow octopus juggling planets in a geometric style.
The octopus is clearly defined, with a vibrant color gradient and distinct geometric shapes, effectively conveying the prompt.
The inclusion of three planets and the overall harmonious composition enhances visual appeal 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
"Flamingo playing a saxophone under a giant mushroom"
"Cloud surfing cat with starry eyes above a candy cane forest"
"Floating cityscape on a giant tortoise shell"
"An owl wearing steampunk goggles, perched on a crescent moon"
"Flying cat in a tuxedo, holding an umbrella, soaring above giant cupcakes"
"Elon Musk as a cybernetic centaur exploring Mars"