Creative Challenge
"Moonlit jellyfish flying through a desert sky"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="moonGlow" cx="70%" cy="30%" r="70%">
<stop offset="0%" stop-color="#ffffff"/>
<stop offset="100%" stop-color="#c4c4ff"/>
</radialGradient>
<linearGradient id="skyGrad" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#1a1a3a"/>
<stop offset="100%" stop-color="#4a3c2e"/>
</linearGradient>
<filter id="blur">
<feGaussianBlur stdDeviation="1"/>
</filter>
</defs>
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="url(#skyGrad)"/>
<!-- Stars -->
<g fill="#ffffff">
<circle cx="50" cy="40" r="1"/>
<circle cx="150" cy="30" r="1.5"/>
<circle cx="250" cy="50" r="1"/>
<circle cx="80" cy="70" r="1"/>
<circle cx="200" cy="90" r="1.5"/>
<circle cx="280" cy="120" r="1"/>
</g>
<!-- Moon -->
<circle cx="240" cy="60" r="30" fill="url(#moonGlow)"/>
<!-- Desert dunes -->
<path d="M0,220 Q75,180 150,220 T300,220 L300,300 L0,300 Z" fill="#897660"/>
<path d="M0,240 Q100,200 200,240 T300,240 L300,300 L0,300 Z" fill="#695c4a"/>
<!-- Jellyfish -->
<g transform="translate(150,150)">
<path d="M-30,-20 Q0,-40 30,-20 Q40,0 30,20 Q0,30 -30,20 Q-40,0 -30,-20"
fill="#9e7bb5" opacity="0.8"/>
<g fill="none" stroke="#c4a8d3" stroke-width="2" opacity="0.6">
<path d="M-20,20 Q-25,40 -30,60" filter="url(#blur)"/>
<path d="M-10,20 Q-12,45 -15,65" filter="url(#blur)"/>
<path d="M0,20 Q0,45 0,70" filter="url(#blur)"/>
<path d="M10,20 Q12,45 15,65" filter="url(#blur)"/>
<path d="M20,20 Q25,40 30,60" filter="url(#blur)"/>
</g>
<circle cx="0" cy="0" r="15" fill="#ffffff" opacity="0.3"/>
</g>
<!-- Additional smaller jellyfish -->
<g transform="translate(80,100) scale(0.6)">
<path d="M-30,-20 Q0,-40 30,-20 Q40,0 30,20 Q0,30 -30,20 Q-40,0 -30,-20"
fill="#9e7bb5" opacity="0.6"/>
<g fill="none" stroke="#c4a8d3" stroke-width="2" opacity="0.4">
<path d="M-20,20 Q-25,40 -30,60" filter="url(#blur)"/>
<path d="M0,20 Q0,45 0,70" filter="url(#blur)"/>
<path d="M20,20 Q25,40 30,60" filter="url(#blur)"/>
</g>
</g>
<!-- Moonlight beams -->
<g opacity="0.1" fill="#ffffff">
<path d="M220,80 L200,300 L240,300 Z"/>
<path d="M260,80 L280,300 L320,300 Z"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="moonlight" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#C0C0FF" />
<stop offset="100%" stop-color="#FFFFFF" />
</linearGradient>
<radialGradient id="jellyGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#87CEEB" />
<stop offset="100%" stop-color="#1E90FF" />
</radialGradient>
<pattern id="desertPattern" patternUnits="userSpaceOnUse" width="300" height="300">
<image href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAIAAADHno0hAAAAJ0lEQVRIDbXBAQEAAAABIP3/1d08qgAAAAAAAAAAAAAAAAAAAAAAAAAAME1PQUAAAAAAABgUgAAAAB1415EAAAAAAAABAH8wduu9AAAAABJRU5ErkJggg==" width="300" height="300"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#desertPattern)" />
<ellipse cx="150" cy="70" rx="40" ry="20" fill="url(#moonlight)" />
<path d="M150 70 Q130 100 110 130 Q130 120 150 150 Q170 120 190 130 Q170 100 150 70"
fill="url(#jellyGradient)" stroke="#00BFFF" stroke-width="2" filter="url(#glow)" />
<circle cx="150" cy="70" r="30" fill="url(#moonlight)" />
<path d="M150 70 C140 80 120 85 130 100 C140 95 160 95 150 70" fill="none" stroke="#00BFFF" stroke-width="3" />
<path d="M110 130 Q100 145 90 140 Q85 130 110 130"
fill="#00BFFF" />
<path d="M190 130 Q200 145 210 140 Q215 130 190 130"
fill="#00BFFF" />
<text x="20" y="290" font-family="Arial" font-size="14" fill="#FFD700">Moonlit Jellyfish Flying Through a Desert Sky</text>
</svg>
Judge's Analysis
Player 1's image effectively captures the theme with a clear depiction of jellyfish floating in a desert sky under a moonlit backdrop.
The composition is balanced, and the color palette complements the night setting.
In contrast, Player 2's image lacks clarity and does not visually represent the theme as effectively.
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 single raccoon juggling ancient, glowing runes in a moonlit forest"
"Polar bear on a tropical beach, sipping coconut drink under a palm tree"
"Flamingo wearing roller skates on a rainbow path"
"Ballerina balancing on a tightrope above a cityscape during a vibrant sunset"
"A disco ball moon over a city of dancing skyscrapers"
"Lemon-shaped hot air balloon over a surreal purple ocean"