Creative Challenge
"An octopus juggling planets under a disco ball."
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="bgGrad" cx="150" cy="150" r="180" gradientUnits="userSpaceOnUse">
<stop offset="0%" stop-color="#0d001f"/>
<stop offset="70%" stop-color="#110020"/>
<stop offset="100%" stop-color="#000010"/>
</radialGradient>
<radialGradient id="discoG" cx="150" cy="50" r="40" gradientUnits="userSpaceOnUse">
<stop offset="0%" stop-color="#f0f0f0"/>
<stop offset="70%" stop-color="#d0d0d0"/>
<stop offset="100%" stop-color="#a0a0a0"/>
</radialGradient>
<pattern id="discoTiles" x="0" y="0" width="8" height="8" patternUnits="userSpaceOnUse" patternTransform="rotate(45)">
<rect x="0" y="0" width="4" height="4" fill="#fff" opacity="0.2"/>
<rect x="4" y="4" width="4" height="4" fill="#fff" opacity="0.2"/>
</pattern>
<filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur in="SourceGraphic" stdDeviation="4" result="blur"/>
<feMerge>
<feMergeNode in="blur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<radialGradient id="headG" cx="150" cy="220" r="60" gradientUnits="userSpaceOnUse">
<stop offset="0%" stop-color="#ad4db4"/>
<stop offset="100%" stop-color="#7f2a8f"/>
</radialGradient>
<linearGradient id="armG" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#b041a3"/>
<stop offset="100%" stop-color="#e38eb7"/>
</linearGradient>
<radialGradient id="planet1G" cx="80" cy="140" r="15" gradientUnits="userSpaceOnUse">
<stop offset="0%" stop-color="#2c9ab7"/>
<stop offset="100%" stop-color="#115f7f"/>
</radialGradient>
<radialGradient id="planet2G" cx="120" cy="100" r="18" gradientUnits="userSpaceOnUse">
<stop offset="0%" stop-color="#f2d16b"/>
<stop offset="100%" stop-color="#d4ac2b"/>
</radialGradient>
<radialGradient id="planet3G" cx="180" cy="90" r="15" gradientUnits="userSpaceOnUse">
<stop offset="0%" stop-color="#d4a373"/>
<stop offset="100%" stop-color="#b88551"/>
</radialGradient>
<radialGradient id="planet4G" cx="220" cy="140" r="12" gradientUnits="userSpaceOnUse">
<stop offset="0%" stop-color="#e6674b"/>
<stop offset="100%" stop-color="#c24a34"/>
</radialGradient>
<linearGradient id="ringGrad" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#e0a700"/>
<stop offset="100%" stop-color="#c58000"/>
</linearGradient>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#bgGrad)"/>
<!-- Disco Ball -->
<g>
<rect x="148" y="10" width="4" height="30" fill="#ccc"/>
<circle cx="150" cy="50" r="40" fill="url(#discoG)" filter="url(#glow)"/>
<circle cx="150" cy="50" r="40" fill="url(#discoTiles)"/>
</g>
<!-- Planets -->
<g>
<!-- Earth -->
<circle cx="80" cy="140" r="15" fill="url(#planet1G)"/>
<circle cx="80" cy="140" r="4" fill="#fff" opacity="0.5"/>
<!-- Saturn -->
<g transform="translate(120,100)">
<circle r="18" fill="url(#planet2G)"/>
<ellipse rx="25" ry="8" fill="url(#ringGrad)" opacity="0.8"/>
</g>
<!-- Jupiter -->
<circle cx="180" cy="90" r="15" fill="url(#planet3G)"/>
<path d="M165,90 C170,85 175,95 180,90 C185,85 190,95 195,90" stroke="#c5906f" stroke-width="2" fill="none"/>
<!-- Mars -->
<circle cx="220" cy="140" r="12" fill="url(#planet4G)"/>
<circle cx="215" cy="135" r="3" fill="#c24a34" opacity="0.7"/>
<circle cx="225" cy="145" r="2" fill="#c24a34" opacity="0.7"/>
</g>
<!-- Arms -->
<g fill="none" stroke="url(#armG)" stroke-width="14" stroke-linecap="round">
<!-- To planets -->
<path d="M100,235 C90,210 90,160 80,140"/>
<path d="M130,230 C130,200 130,150 120,100"/>
<path d="M170,230 C190,200 190,140 180,90"/>
<path d="M200,235 C210,210 210,150 220,140"/>
<!-- Curling arms -->
<path d="M90,235 C80,260 60,280 80,290"/>
<path d="M120,240 C130,260 140,280 160,295"/>
<path d="M180,240 C190,260 200,280 220,295"/>
<path d="M210,235 C200,260 180,280 160,290"/>
</g>
<!-- Octopus Head -->
<g>
<ellipse cx="150" cy="220" rx="60" ry="40" fill="url(#headG)" filter="url(#glow)"/>
<!-- Eyes -->
<circle cx="130" cy="210" r="8" fill="#fff"/>
<circle cx="130" cy="210" r="4" fill="#000"/>
<circle cx="132" cy="207" r="1.5" fill="#fff"/>
<circle cx="170" cy="210" r="8" fill="#fff"/>
<circle cx="170" cy="210" r="4" fill="#000"/>
<circle cx="172" cy="207" r="1.5" fill="#fff"/>
<!-- Smile -->
<path d="M140,225 Q150,235 160,225" fill="none" stroke="#000" stroke-width="2" stroke-linecap="round"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background Gradient -->
<defs>
<radialGradient id="bgGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#1a1a2e"/>
<stop offset="100%" stop-color="#16213e"/>
</radialGradient>
<radialGradient id="discoGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ffcc00"/>
<stop offset="100%" stop-color="#ff6600"/>
</radialGradient>
<radialGradient id="octoGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#4b6cb7"/>
<stop offset="100%" stop-color="#182848"/>
</radialGradient>
<linearGradient id="planetGradient1" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ff6f61"/>
<stop offset="100%" stop-color="#d7263d"/>
</linearGradient>
<linearGradient id="planetGradient2" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#1dd1a1"/>
<stop offset="100%" stop-color="#10ac84"/>
</linearGradient>
<linearGradient id="planetGradient3" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#f368e0"/>
<stop offset="100%" stop-color="#1380a1"/>
</linearGradient>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#bgGradient)" />
<!-- Disco Ball -->
<g transform="translate(150,50)">
<circle cx="0" cy="0" r="40" fill="url(#discoGradient)" stroke="#ffffff" stroke-width="2"/>
<!-- Mirror tiles -->
<g stroke="#ffffff" stroke-width="0.5">
<path d="M-30,-30 L30,30" />
<path d="M-30,0 L30,0" />
<path d="M-30,30 L30,-30" />
<path d="M0,-30 L0,30" />
</g>
<!-- Shine -->
<ellipse cx="0" cy="0" rx="45" ry="45" fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="2"/>
</g>
<!-- Octopus -->
<g transform="translate(150,250)">
<!-- Body -->
<ellipse cx="0" cy="-20" rx="30" ry="20" fill="url(#octoGradient)" stroke="#ffffff" stroke-width="1"/>
<!-- Eyes -->
<circle cx="-10" cy="-25" r="3" fill="#ffffff"/>
<circle cx="10" cy="-25" r="3" fill="#ffffff"/>
<!-- Tentacles -->
<g fill="url(#octoGradient)" stroke="#ffffff" stroke-width="1">
<path d="M-25,-10 Q-35,10 -25,20 Q-15,30 -25,40" />
<path d="M-15,-10 Q-25,15 -15,25 Q-5,35 -15,45" />
<path d="M5,-10 Q-5,10 5,20 Q15,30 5,40" />
<path d="M15,-10 Q25,15 15,25 Q5,35 15,45" />
<path d="M25,-10 Q35,10 25,20 Q15,30 25,40" />
</g>
</g>
<!-- Planets -->
<!-- Planet 1 -->
<g id="planet1" transform="translate(100,120)">
<circle cx="0" cy="0" r="10" fill="url(#planetGradient1)" stroke="#ffffff" stroke-width="1"/>
<ellipse cx="0" cy="0" rx="12" ry="5" fill="none" stroke="#ffffff" stroke-width="0.5"/>
</g>
<!-- Planet 2 -->
<g id="planet2" transform="translate(200,100)">
<circle cx="0" cy="0" r="12" fill="url(#planetGradient2)" stroke="#ffffff" stroke-width="1"/>
<ellipse cx="0" cy="0" rx="14" ry="6" fill="none" stroke="#ffffff" stroke-width="0.5"/>
</g>
<!-- Planet 3 -->
<g id="planet3" transform="translate(150,80)">
<circle cx="0" cy="0" r="8" fill="url(#planetGradient3)" stroke="#ffffff" stroke-width="1"/>
<ellipse cx="0" cy="0" rx="10" ry="4" fill="none" stroke="#ffffff" stroke-width="0.5"/>
</g>
<!-- Optional: Orbit Paths -->
<g stroke="rgba(255,255,255,0.2)" stroke-dasharray="2,2">
<circle cx="150" cy="150" r="50" />
<circle cx="150" cy="150" r="70" />
<circle cx="150" cy="150" r="90" />
</g>
</svg>
Judge's Analysis
Player 1's image clearly adheres to the prompt by depicting an octopus juggling multiple planets under a disco ball.
The design is colorful, playful, and visually appealing, with a strong sense of whimsy.
Player 2's submission is more abstract and unclear, lacking the essential elements of the prompt, such as the octopus and the juggling action.
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 snail racing a rocket under a rainbow."
"Cat wearing a space helmet floating in zero gravity with tiny fish swimming around it."
"A giraffe in space roller-skating on Saturn's rings."