Creative Challenge
"A jellyfish spaceship hovering above a city skyline at twilight"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background with gradient twilight sky -->
<rect width="300" height="300" fill="url(#twilightGradient)"/>
<defs>
<linearGradient id="twilightGradient" x1="0" y1="0" x2="0" y2="300">
<stop offset="0%" style="stop-color:#1a0f3c;stop-opacity:1" />
<stop offset="100%" style="stop-color:#4a1010;stop-opacity:1" />
</linearGradient>
<linearGradient id="jellyGlow" x1="0" y1="0" x2="0" y2="100%"
colors="white" spreadMethod="pad">
<stop offset="0" style="stop-color:rgba(255,255,255,0.9);stop-opacity:1"/>
<stop offset="1" style="stop-color:rgba(255,255,255,0.3);stop-opacity:1"/>
</linearGradient>
<pattern id="cityWindows" x="0" y="0" width="10" height="10"
patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="2" height="2" fill="#4a5140"/>
</pattern>
</defs>
<!-- City skyline -->
<path d="M50 220 L60 250 L70 220 L80 250 L90 220 L100 240 L110 220 L120 240"
fill="none" stroke="#4a5140" stroke-width="4"/>
<path d="M150 200 L160 240 L170 200 L180 240 L190 200 L200 240"
fill="none" stroke="#4a5140" stroke-width="4"/>
<path d="M250 210 L260 250 L270 210 L280 250 L290 210"
fill="none" stroke="#4a5140" stroke-width="4"/>
<!-- Building details -->
<rect x="50" y="180" width="40" height="60" fill="#2d2a32"/>
<rect x="150" y="160" width="40" height="80" fill="#2d2a32"/>
<rect x="250" y="170" width="40" height="70" fill="#2d2a32"/>
<!-- Jellyfish spaceship -->
<ellipse cx="150" cy="120" rx="60" ry="40" fill="rgba(255,255,255,0.1)"
stroke="url(#jellyGlow)" stroke-width="2"/>
<path d="M150 120 Q200 100 250 120 Q280 140 220 160 Q200 180 150 160"
fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="2"/>
<!-- Tentacles -->
<path d="M150 160 Q180 140 200 160" fill="none"
stroke="rgba(255,255,255,0.3)" stroke-width="2" stroke-dasharray="5,5"/>
<path d="M150 160 Q170 180 180 160" fill="none"
stroke="rgba(255,255,255,0.3)" stroke-width="2" stroke-dasharray="5,5"/>
<path d="M150 160 Q160 200 150 220" fill="none"
stroke="rgba(255,255,255,0.3)" stroke-width="2" stroke-dasharray="5,5"/>
<!-- Cockpit and structure -->
<circle cx="150" cy="100" r="10" fill="rgba(255,255,255,0.8)"/>
<circle cx="150" cy="110" r="5" fill="rgba(255,255,255,0.8)"/>
<!-- Engine effects -->
<circle cx="150" cy="130" r="8" fill="rgba(255,255,255,0.5)"/>
<circle cx="150" cy="140" r="12" fill="rgba(255,255,255,0.3)"/>
<circle cx="150" cy="150" r="15" fill="rgba(255,255,255,0.2)"/>
<!-- Lighting effects -->
<circle cx="150" cy="120" r="50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="4"/>
<circle cx="150" cy="120" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="3"/>
<!-- Spotlight beams -->
<circle cx="200" cy="240" r="20" fill="rgba(255,255,255,0.3)" opacity="0.5" blur="5px"/>
<circle cx="180" cy="260" r="15" fill="rgba(255,255,255,0.3)" opacity="0.5" blur="5px"/>
<circle cx="220" cy="260" r="15" fill="rgba(255,255,255,0.3)" opacity="0.5" blur="5px"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<radialGradient id="sky" cx="150" cy="300" r="300" fx="150" fy="150">
<stop offset="0%" stop-color="#191970"/>
<stop offset="50%" stop-color="#4682B4"/>
<stop offset="100%" stop-color="#9370DB"/>
</radialGradient>
<rect width="300" height="300" fill="url(#sky)"/>
<path d="M10 280h280v-30l-5 -10l-10 -15l-20 -25l-30 -15l-20 -5H70l-15 5l-20 25z" fill="#121212"/>
<g fill="#FFD700">
<rect x="30" y="250" width="10" height="20"/>
<rect x="60" y="245" width="15" height="25"/>
<rect x="90" y="260" width="8" height="10"/>
<rect x="120" y="240" width="20" height="30"/>
<rect x="160" y="255" width="12" height="15"/>
<rect x="190" y="248" width="25" height="22"/>
<rect x="230" y="260" width="10" height="10"/>
<rect x="260" y="245" width="15" height="25"/>
</g>
<radialGradient id="jellyfishBody" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#00FFFF" stop-opacity="0.8"/>
<stop offset="80%" stop-color="#B0E0E6" stop-opacity="0.5"/>
<stop offset="100%" stop-color="#FFFFFF" stop-opacity="0"/>
</radialGradient>
<ellipse cx="150" cy="100" rx="60" ry="40" fill="url(#jellyfishBody)"/>
<g transform="translate(150,140)">
<path d="M 0,0 C 15,20 15,-20 0,0 C -15,20 -15,-20 0,0" stroke="#ADD8E6" stroke-width="2" fill="none"/>
<animateTransform attributeName="transform" type="rotate" from="0 0 0" to="360 0 0" dur="10s" repeatCount="indefinite" />
</g>
<g transform="translate(150,160)" fill="#ADD8E6">
<circle cx="-20" cy="0" r="3" />
<circle cx="0" cy="0" r="2" />
<circle cx="20" cy="0" r="3" />
<animateTransform attributeName="transform" type="translate" values="0 0; 0 -10; 0 0" dur="5s" repeatCount="indefinite" />
</g>
<ellipse cx="130" cy="90" rx="5" ry="8" fill="#FF4500" opacity="0.7"/>
<ellipse cx="170" cy="90" rx="5" ry="8" fill="#FF4500" opacity="0.7"/>
<ellipse cx="150" cy="110" rx="8" ry="5" fill="#FF4500" opacity="0.7"/>
</svg>
Judge's Analysis
Player 2's image captures the essence of a jellyfish spaceship with clear and vibrant colors, presenting a more defined city skyline.
The use of contrasting colors enhances visual appeal, and the twilight ambiance is better portrayed.
Player 1's submission is creative but lacks clarity and definition in the depiction of both the jellyfish and the city skyline.
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
"Rainbow-colored octopus painting the ocean with its tentacles"
"Wombats in top hats playing miniature violins under a glowing full moon"
"A cyberpunk octopus playing a violin"
"Alien ballerina gliding on a rainbow ringed Saturn"
"Octopus in a tuxedo juggling teacups over a coral ballet stage"
"Chameleon juggling colorful planets in space"