Creative Challenge
"A jellyfish city skyline floating in a moonlit ocean"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="oceanGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#005f73;stop-opacity:1" />
<stop offset="100%" style="stop-color:#94d2bd;stop-opacity:1" />
</linearGradient>
<linearGradient id="moonGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#f9f2e7;stop-opacity:1" />
<stop offset="100%" style="stop-color:#f5e3b4;stop-opacity:1" />
</linearGradient>
<filter id="glow">
<feGaussianBlur in="SourceAlpha" stdDeviation="2" />
<feMerge>
<feMergeNode />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="url(#oceanGradient)" />
<circle cx="150" cy="70" r="40" fill="url(#moonGradient)" filter="url(#glow)" />
<g fill="#fff" filter="url(#glow)">
<path d="M120 200 Q150 150 180 200 T250 200 Q220 170 150 170 T60 200 Z" />
<ellipse cx="90" cy="130" rx="20" ry="10" fill="#2ca9b9" />
<ellipse cx="220" cy="150" rx="25" ry="12" fill="#2ca9b9" />
</g>
<g fill="url(#moonGradient)">
<path d="M150 180 C100 150 80 240 150 200 C220 240 200 150 150 180" />
<path d="M130 210 C140 180 160 180 170 210 C150 220 130 220 130 210" />
</g>
<g fill="#ffb703">
<path d="M240 230 Q230 220 220 230 T200 230 Q210 240 220 240 T240 230" />
<path d="M70 220 Q60 210 50 220 T30 220 Q40 230 50 230 T70 220" />
</g>
<g fill="#fb8500">
<path d="M150 220 Q160 230 170 220 T190 220 Q170 240 150 235 T150 220" />
<path d="M110 240 Q120 250 130 240 T150 240 Q130 250 110 245 T110 240" />
</g>
<g fill="rgba(255, 193, 7, 0.8)" filter="url(#glow)">
<path d="M170 180 C180 160 200 160 210 180 S220 200 210 210 C200 200 180 200 170 180" />
<path d="M100 170 C90 190 110 190 120 170 S100 150 100 170" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="moonGrad" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color: #f0f8ff; stop-opacity: 1" />
<stop offset="100%" style="stop-color: #b0c4de; stop-opacity: 0" />
</radialGradient>
<linearGradient id="oceanGrad" x1="0" y1="0" x2="0" y2="100%">
<stop offset="0%" style="stop-color: #00008b; stop-opacity: 1" />
<stop offset="100%" style="stop-color: #191970; stop-opacity: 1" />
</linearGradient>
<linearGradient id="jellyGrad" x1="0" x2="1" y1="0" y2="1">
<stop offset="0%" style="stop-color: #ff69b4; stop-opacity: 0.9" />
<stop offset="50%" style="stop-color: #ee82ee; stop-opacity: 0.6" />
<stop offset="100%" style="stop-color: #ba55d3; stop-opacity: 0.3" />
</linearGradient>
<filter id="blur" x="-10%" y="-10%" width="120%" height="120%">
<feGaussianBlur in="SourceGraphic" stdDeviation="3" />
</filter>
</defs>
<rect width="100%" height="100%" fill="url(#oceanGrad)" />
<circle cx="240" cy="60" r="40" fill="url(#moonGrad)" />
<path d="M150 215 Q130 195 110 215 T70 215 Q50 235 30 215 T0 215 L0 300 L300 300 L300 215 Q280 235 260 215 T230 215 Q210 195 190 215 T150 215 Z" fill="url(#jellyGrad)" />
<g filter="url(#blur)">
<rect x="40" y="130" width="20" height="80" fill="#8a2be2" />
<rect x="90" y="110" width="30" height="100" fill="#7f00ff" />
<rect x="140" y="150" width="20" height="60" fill="#8a2be2" />
<rect x="190" y="100" width="30" height="110" fill="#7f00ff" />
<rect x="240" y="140" width="20" height="70" fill="#8a2be2" />
</g>
<g>
<path d="M70 170 C80 180 70 220 90 210 C110 200 100 160 120 170" stroke="#ff4500" stroke-width="2" fill="none" />
<path d="M150 190 C160 200 150 230 170 220 C190 210 180 170 200 180" stroke="#ff4500" stroke-width="2" fill="none" />
</g>
</svg>
Judge's Analysis
Player 2's submission effectively combines elements of a city skyline with the fluid, organic shapes of a jellyfish, set against a moonlit ocean.
The use of color and gradient creates a cohesive and visually appealing composition that adheres well to the prompt.
In contrast, Player 1's submission lacks clarity in representing the concept and does not visually communicate 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
"Banjo-playing pineapple under a disco spotlight"
"A snail surfing a leaf on a rainbow wave"
"Bioluminescent jellyfish in a starry night sky"
"Cactus plays piano under a starry desert sky"
"Ice skate wearing flamingo juggling snowballs"
"A hamster astronaut planting a tiny flag on a giant cheese moon"