Creative Challenge
"Neon jellyfish dance under a disco ball in the deep sea"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Deep sea background -->
<rect width="300" height="300" fill="#00264D" />
<!-- Disco Ball -->
<circle cx="150" cy="150" r="80" fill="gray" />
<circle cx="95" cy="95" r="10" fill="white" />
<circle cx="120" cy="50" r="12" fill="white" />
<circle cx="180" cy="50" r="12" fill="white" />
<circle cx="205" cy="95" r="10" fill="white" />
<!-- Neon jellyfish -->
<g>
<!-- Jellyfish body -->
<circle cx="150" cy="230" r="20" fill="purple" />
<ellipse cx="150" cy="250" rx="25" ry="10" fill="purple" />
<!-- Jellyfish tentacles -->
<circle cx="135" cy="265" r="3" fill="#FF00FF" />
<circle cx="150" cy="270" r="3" fill="#FF00FF" />
<circle cx="165" cy="265" r="3" fill="#FF00FF" />
<!-- Glow effect -->
<filter id="glow" x="-30%" y="-30%" width="160%" height="160%">
<feGaussianBlur in="SourceGraphic" stdDeviation="4" result="glow" />
<feBlend in="SourceGraphic" in2="glow" mode="screen" />
</filter>
<circle cx="150" cy="230" r="30" fill="none" stroke="#FF00FF" stroke-width="2" filter="url(#glow)" />
<ellipse cx="150" cy="250" rx="35" ry="15" fill="none" stroke="#FF00FF" stroke-width="2" filter="url(#glow)" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="discoGrad">
<stop offset="0%" stop-color="#00f3ff"/>
<stop offset="33%" stop-color="#ff00ff"/>
<stop offset="66%" stop-color="#ffff00"/>
<stop offset="100%" stop-color="#00ff99"/>
</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(#discoGrad)"/>
<g transform="translate(150,150)">
<circle r="40" fill="#00ffff" filter="url(#glow)"/>
<circle r="35" fill="#ff00ff" filter="url(#glow)"/>
<circle r="30" fill="#ffff00" filter="url(#glow)"/>
<circle r="25" fill="#00ff99" filter="url(#glow)"/>
</g>
<g transform="translate(100,100)">
<path d="M0,0 Q50,-50 100,0 Q50,50 0,0" fill="#ff00de" opacity="0.8"/>
<path d="M0,0 Q-50,-50 -100,0 Q-50,50 0,0" fill="#00ffff" opacity="0.8"/>
<path d="M0,0 Q0,-100 100,-100" fill="#ff00de" opacity="0.8"/>
<path d="M0,0 Q0,-100 -100,-100" fill="#00ffff" opacity="0.8"/>
</g>
<g transform="translate(200,120)">
<path d="M0,0 Q50,-50 100,0 Q50,50 0,0" fill="#ff00de" opacity="0.8"/>
<path d="M0,0 Q-50,-50 -100,0 Q-50,50 0,0" fill="#00ffff" opacity="0.8"/>
<path d="M0,0 Q0,-100 100,-100" fill="#ff00de" opacity="0.8"/>
<path d="M0,0 Q0,-100 -100,-100" fill="#00ffff" opacity="0.8"/>
</g>
<g transform="translate(150,200)">
<circle r="15" fill="#ff00ff" filter="url(#glow)"/>
<circle r="10" fill="#ffff00" filter="url(#glow)"/>
<circle r="5" fill="#00ffff" filter="url(#glow)"/>
</g>
<g transform="translate(100,150)">
<circle r="15" fill="#ff00ff" filter="url(#glow)"/>
<circle r="10" fill="#ffff00" filter="url(#glow)"/>
<circle r="5" fill="#00ffff" filter="url(#glow)"/>
</g>
<g transform="translate(200,170)">
<circle r="15" fill="#ff00ff" filter="url(#glow)"/>
<circle r="10" fill="#ffff00" filter="url(#glow)"/>
<circle r="5" fill="#00ffff" filter="url(#glow)"/>
</g>
<g transform="translate(50,180)">
<circle r="15" fill="#ff00ff" filter="url(#glow)"/>
<circle r="10" fill="#ffff00" filter="url(#glow)"/>
<circle r="5" fill="#00ffff" filter="url(#glow)"/>
</g>
</svg>
Judge's Analysis
Player 2's submission captures the vibrant and dynamic essence of neon jellyfish dancing under a disco ball more effectively through the use of bright, overlapping colors and abstract shapes.
The composition feels lively and visually engaging, adhering closely to the prompt.
In contrast, Player 1's image lacks the same level of creative execution and visual energy, making it less compelling overall.
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
"An umbrella blooming with colorful flowers in the rain"
"Rainbow koi in a cosmic tea cup"
"Floating city on a single, enormous cloud"
"Bioluminescent jellyfish spiraling around a neon-lit diver"
"Floating jellyfish wearing top hats in a cosmic sea"
"A hot air balloon shaped like a giant acorn floating over a bamboo forest"