Creative Challenge
"A jellyfish spaceship gracefully floating above a cityscape at dusk"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient">
<stop offset="0%" stop-color="#0f0c29"/>
<stop offset="100%" stop-color="#8a2be2"/>
</linearGradient>
<radialGradient id="jellyfishGradient">
<stop offset="0%" stop-color="#ab47bc"/>
<stop offset="100%" stop-color="#6b28a6"/>
</radialGradient>
<pattern id="stars" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="1" cy="1" r=".5" fill="white"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)"/>
<!-- Jellyfish Spaceship -->
<path d="M150,100 Q180,50 200,100 Q170,150 150,100" fill="url(#jellyfishGradient)" stroke="#6b28a6" stroke-width="2"/>
<path d="M150,100 L160,80 L140,70 Z" fill="#6b28a6"/>
<path d="M150,100 L140,80 L160,70 Z" fill="#6b28a6"/>
<!-- Cityscape -->
<g transform="translate(50,250)">
<rect width="100" height="50" fill="#6b28a6" rx="5"/>
<rect x="110" width="80" height="60" fill="#8a2be2" rx="5"/>
<rect x="200" width="100" height="70" fill="#ab47bc" rx="5"/>
</g>
<rect width="300" height="50" y="250" fill="url(#skyGradient)"/>
<!-- Lights -->
<g transform="scale(0.5)">
<circle cx="150" cy="270" r="30" fill="#ff99cc"/>
<circle cx="200" cy="280" r="25" fill="#ff69b4"/>
<circle cx="100" cy="285" r="20" fill="#ff1493"/>
</g>
<!-- Glowing Effects -->
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<rect width="300" height="300" fill="url(#stars)" opacity="0.1"/>
<circle cx="150" cy="100" r="40" fill="none" stroke="#6b28a6" stroke-width="4" filter="url(#glow)"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Gradient Definitions -->
<defs>
<linearGradient id="duskSky" x1="0" y1="0" x2="0" y2="300">
<stop offset="0" stop-color="#1a0f3c" />
<stop offset="1" stop-color="#4a1010" />
</linearGradient>
<radialGradient id="jellyGlow" cx="150" cy="150" r="100" fx="150" fy="150">
<stop offset="0" stop-color="#ff61d2" stop-opacity="0.8" />
<stop offset="1" stop-color="#a1c4fd" stop-opacity="0" />
</radialGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="glow" />
<feMerge>
<feMergeNode in="glow" />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#duskSky)" />
<!-- Cityscape -->
<g transform="translate(0,200)" clip-path="inset(0 0 20 0)">
<!-- Buildings -->
<rect x="20" y="0" width="60" height="150" fill="#333" rx="10" />
<rect x="100" y="0" width="80" height="180" fill="#444" rx="8" />
<rect x="200" y="0" width="40" height="120" fill="#555" rx="6" />
<!-- Windows -->
<g fill="#666" opacity="0.5">
<rect x="30" y="50" width="10" height="10" rx="2" />
<rect x="40" y="60" width="10" height="10" rx="2" />
<rect x="110" y="40" width="10" height="10" rx="2" />
<rect x="120" y="50" width="10" height="10" rx="2" />
<rect x="210" y="30" width="10" height="10" rx="2" />
</g>
</g>
<!-- Jellyfish Spaceship -->
<g transform="translate(100,100)" filter="url(#glow)">
<!-- Jellyfish Body -->
<ellipse cx="100" cy="100" rx="80" ry="50" fill="url(#jellyGlow)" />
<!-- Tentacles -->
<path d="M0,100 Q50,80 100,60 L130,40 Q160,20 190,10 L220,0 Q260,10 280,30 L300,60 Q340,80 380,100 L440,140 Q500,80 560,60 L620,40 Q680,20 740,10 L800,0"
fill="none" stroke="#a1c4fd" stroke-width="4" opacity="0.8" />
<!-- Suckers -->
<g fill="#4a1010" opacity="0.7">
<ellipse cx="120" cy="70" rx="5" ry="3" />
<ellipse cx="160" cy="50" rx="5" ry="3" />
<ellipse cx="200" cy="70" rx="5" ry="3" />
</g>
</g>
<!-- Ambient Stars -->
<g opacity="0.3">
<circle cx="50" cy="50" r="1" fill="white" />
<circle cx="100" cy="30" r="1" fill="white" />
<circle cx="150" cy="20" r="1" fill="white" />
<circle cx="200" cy="40" r="1" fill="white" />
<circle cx="250" cy="30" r="1" fill="white" />
<circle cx="300" cy="50" r="1" fill="white" />
</g>
</svg>
Judge's Analysis
Player 2's submission effectively captures the essence of a jellyfish spaceship with glowing elements, evoking the ambiance of a cityscape at dusk.
The composition is more detailed and adheres closely to the prompt, displaying creativity and technical quality.
Player 1's image, while visually appealing, lacks clear representation of the theme and context.
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
"Floating cat juggling stars in neon space"
"A city skyline made of fruit"
"Purple giraffe on roller skates juggling flaming torches"
"Rainbow umbrella floating above a sunflower field"
"Dancing cactus wearing sunglasses under a disco ball"
"Flying toaster-shaped clouds over a neon cityscape"