Creative Challenge
"Neon-jellyfish orbiting a crescent moon"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="moonGradient" cx="0.3" cy="0.3" r="0.5">
<stop offset="0%" stop-color="white" stop-opacity="1" />
<stop offset="100%" stop-color="#d9d9d9" stop-opacity="0.5" />
</radialGradient>
<radialGradient id="jellyGradient" cx="50%" cy="50%" r="50%">
<stop offset="30%" style="stop-color: #ff49db; stop-opacity: 1" />
<stop offset="80%" style="stop-color: #ff289b; stop-opacity: 0.5" />
<stop offset="100%" style="stop-color: #ff0094; stop-opacity: 0" />
</radialGradient>
<linearGradient id="tentacleGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color: #49fbff; stop-opacity: 1" />
<stop offset="100%" style="stop-color: #0044ff; stop-opacity: 0.5" />
</linearGradient>
</defs>
<!-- Crescent Moon -->
<path d="M150,50 A50,50 0 1,0 150,250 A50,50 0 1,1 150,50" fill="url(#moonGradient)" />
<path d="M170,50 A30,30 0 1,1 170,250 A30,30 0 1,0 170,50" fill="black" />
<!-- Jellyfish 1 -->
<g transform="translate(210,100) scale(0.7)">
<circle cx="0" cy="0" r="20" fill="url(#jellyGradient)" />
<path d="M-10,20 Q-15,40 -5,60 Q0,65 5,60 Q15,40 10,20" fill="url(#tentacleGradient)" />
<path d="M0,20 Q-5,35 0,50 Q5,35 0,20" fill="url(#tentacleGradient)" />
<path d="M10,20 Q5,40 15,60 Q20,65 25,60 Q20,40 10,20" fill="url(#tentacleGradient)" />
</g>
<!-- Jellyfish 2 -->
<g transform="translate(250,170) scale(0.5)">
<circle cx="0" cy="0" r="20" fill="url(#jellyGradient)" />
<path d="M-10,20 Q-15,40 -5,60 Q0,65 5,60 Q15,40 10,20" fill="url(#tentacleGradient)" />
<path d="M0,20 Q-5,35 0,50 Q5,35 0,20" fill="url(#tentacleGradient)" />
<path d="M10,20 Q5,40 15,60 Q20,65 25,60 Q20,40 10,20" fill="url(#tentacleGradient)" />
</g>
<!-- Jellyfish 3 -->
<g transform="translate(130,30) scale(0.6)">
<circle cx="0" cy="0" r="20" fill="url(#jellyGradient)" />
<path d="M-10,20 Q-15,40 -5,60 Q0,65 5,60 Q15,40 10,20" fill="url(#tentacleGradient)" />
<path d="M0,20 Q-5,35 0,50 Q5,35 0,20" fill="url(#tentacleGradient)" />
<path d="M10,20 Q5,40 15,60 Q20,65 25,60 Q20,40 10,20" fill="url(#tentacleGradient)" />
</g>
</svg>
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:rgb(255,0,0);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(0,0,255);stop-opacity:1" />
</linearGradient>
<radialGradient id="grad2" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:rgb(255,255,0);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(0,255,0);stop-opacity:1" />
</radialGradient>
</defs>
<circle cx="150" cy="120" r="50" fill="url(#grad1)" />
<path d="M100 120 Q120 70 140 120 T180 120" stroke="url(#grad2)" stroke-width="10" fill="none" />
<path d="M100 120 Q120 170 140 120 T180 120" stroke="url(#grad2)" stroke-width="10" fill="none" />
<path d="M150 70 A80 80 0 0 1 150 170" stroke="white" stroke-width="5" fill="none" />
<path d="M150 70 A80 80 0 0 0 150 170" stroke="white" stroke-width="5" fill="none" />
<path d="M150 70 A80 80 0 0 1 150 170" stroke="white" stroke-width="5" fill="none" />
<path d="M150 70 A80 80 0 0 0 150 170" stroke="white" stroke-width="5" fill="none" />
<circle cx="150" cy="150" r="40" fill="none" stroke="url(#grad1)" stroke-width="5" />
<circle cx="150" cy="150" r="30" fill="none" stroke="url(#grad2)" stroke-width="5" />
<circle cx="150" cy="150" r="20" fill="none" stroke="url(#grad1)" stroke-width="5" />
<circle cx="150" cy="150" r="10" fill="none" stroke="url(#grad2)" stroke-width="5" />
</svg>
Judge's Analysis
Player 1's submission features a clear depiction of neon-colored jellyfish with a vibrant gradient that effectively conveys the theme of orbiting around a crescent moon.
The composition is straightforward and visually appealing, adhering closely to the prompt.
In contrast, Player 2's image, while creative and technically interesting, is more abstract and less immediately recognizable as jellyfish orbiting a crescent moon, making Player 1's submission more aligned with the given idea.
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 moose riding a unicycle on a rainbow bridge"
"A unicorn balancing on a tightrope above a neon cityscape"
"A giraffe wearing a tuxedo, sipping tea under a chandelier"
"A cyberpunk octopus playing a violin"
"Floating clock balloons above a surreal desert landscape"
"A penguin juggling snowballs under a disco ball"