Creative Challenge
"A neon jellyfish juggling glowing planets in a cosmic sea"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="bgGradient" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#000814" />
<stop offset="100%" stop-color="#001d3d" />
</radialGradient>
<radialGradient id="jellyGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ff00c1" />
<stop offset="100%" stop-color="#8a2be2" />
</radialGradient>
<radialGradient id="planetGradient1" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ffd700" />
<stop offset="100%" stop-color="#ff8c00" />
</radialGradient>
<radialGradient id="planetGradient2" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#00ffea" />
<stop offset="100%" stop-color="#008080" />
</radialGradient>
<radialGradient id="planetGradient3" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ff6f61" />
<stop offset="100%" stop-color="#c0392b" />
</radialGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="url(#bgGradient)" />
<!-- Stars -->
<g fill="white" opacity="0.8">
<circle cx="50" cy="50" r="1.5"/>
<circle cx="80" cy="120" r="1"/>
<circle cx="200" cy="60" r="1.2"/>
<circle cx="250" cy="200" r="1"/>
<circle cx="150" cy="250" r="1.3"/>
<circle cx="220" cy="30" r="0.8"/>
<circle cx="280" cy="150" r="1.1"/>
<circle cx="30" cy="220" r="0.9"/>
</g>
<!-- Jellyfish -->
<g transform="translate(150,150)" filter="url(#glow)">
<!-- Bell -->
<ellipse cx="0" cy="0" rx="40" ry="20" fill="url(#jellyGradient)" />
<!-- Tentacles -->
<path d="M-20,20 Q-25,60 -15,80" stroke="#ff00c1" stroke-width="2" fill="none" opacity="0.7"/>
<path d="M0,20 Q-5,55 5,75" stroke="#ff00c1" stroke-width="2" fill="none" opacity="0.7"/>
<path d="M20,20 Q25,60 15,80" stroke="#ff00c1" stroke-width="2" fill="none" opacity="0.7"/>
<!-- More tentacles with gradient -->
<path d="M-25,20 Q-30,65 -20,85" stroke="#8a2be2" stroke-width="1.5" fill="none" opacity="0.6"/>
<path d="M25,20 Q30,65 20,85" stroke="#8a2be2" stroke-width="1.5" fill="none" opacity="0.6"/>
</g>
<!-- Planets -->
<g filter="url(#glow)">
<!-- Planet 1 -->
<circle cx="70" cy="80" r="10" fill="url(#planetGradient1)" />
<!-- Planet 2 -->
<circle cx="200" cy="120" r="8" fill="url(#planetGradient2)" />
<!-- Planet 3 -->
<circle cx="120" cy="220" r="12" fill="url(#planetGradient3)" />
<!-- Planet 4 -->
<circle cx="240" cy="180" r="7" fill="url(#planetGradient1)" />
<!-- Planet 5 -->
<circle cx="180" cy="60" r="9" fill="url(#planetGradient2)" />
</g>
<!-- Orbits -->
<g stroke="rgba(255,255,255,0.3)" stroke-dasharray="4,2">
<ellipse cx="150" cy="150" rx="80" ry="50" fill="none"/>
<ellipse cx="150" cy="150" rx="100" ry="70" fill="none"/>
<ellipse cx="150" cy="150" rx="60" ry="40" fill="none"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<radialGradient id="cosmic-bg" cx="150" cy="150" r="150" fx="150" fy="150">
<stop offset="0%" stop-color="#0D0228"/>
<stop offset="50%" stop-color="#1B0A4A"/>
<stop offset="100%" stop-color="#241456"/>
</radialGradient>
<rect width="300" height="300" fill="url(#cosmic-bg)"/>
<g filter="url(#glow)">
<path d="M150,100 C120,60 180,60 150,100 C150,80 150,60 150,40" stroke="#8A2BE2" stroke-width="3" fill="none"/>
<ellipse cx="150" cy="100" rx="40" ry="20" fill="url(#jelly-gradient)" stroke="#9370DB" stroke-width="2"/>
<path d="M130,120 C130,130 140,140 150,140 C 160,140 170,130 170,120" fill="#DA70D6" stroke="#BA55D3" stroke-width="2"/>
<g transform="translate(110, 140)">
<circle cx="20" cy="0" r="10" fill="url(#planet1-gradient)">
<animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 20 0" to="360 20 0" dur="15s" repeatCount="indefinite"/>
</circle>
</g>
<g transform="translate(150, 150)">
<circle cx="0" cy="0" r="15" fill="url(#planet2-gradient)">
<animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 0 0" to="360 0 0" dur="10s" repeatCount="indefinite"/>
</circle>
</g>
<g transform="translate(190, 130)">
<circle cx="-10" cy="10" r="8" fill="url(#planet3-gradient)">
<animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 -10 10" to="360 -10 10" dur="7s" repeatCount="indefinite"/>
</circle>
</g>
</g>
<filter id="glow">
<feGaussianBlur stdDeviation="3" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<radialGradient id="jelly-gradient" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#EE82EE"/>
<stop offset="100%" stop-color="transparent"/>
</radialGradient>
<radialGradient id="planet1-gradient" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#FFA07A" />
<stop offset="100%" stop-color="orange" />
</radialGradient>
<radialGradient id="planet2-gradient" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#00FFFF" />
<stop offset="100%" stop-color="aqua" />
</radialGradient>
<radialGradient id="planet3-gradient" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#90EE90" />
<stop offset="100%" stop-color="lightgreen" />
</radialGradient>
</svg>
Judge's Analysis
Player 1's image captures the theme effectively by integrating the cosmic elements and glowing planets within a structured composition, with planets orbiting around a central neon jellyfish.
The use of vibrant colors and the celestial setting enhance the visual appeal and adherence to the prompt.
Player 2's submission, while creative, lacks the dynamic juggling aspect and compositional clarity seen in 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
"Astronaut playing chess with a cat on a moonlit crater"
"Cherry blossom tree growing on a floating iceberg"
"Bioluminescent mushroom cityscape at twilight"
"A penguin knight jousting on a seahorse against a walrus in armor"
"Midnight cityscape from a cat's rooftop perspective"
"Cat in a spacesuit juggling glowing planets"