Creative Challenge
"Jellyfish balloons floating above a steampunk cityscape"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Sky -->
<rect x="0" y="0" width="300" height="300" fill="#87ceeb" />
<linearGradient id="sun" x1="0" y1="1" x2="0" y2="0">
<stop offset="0" stop-color="#ffd700" />
<stop offset="1" stop-color="#ffff00" />
</linearGradient>
<circle cx="270" cy="30" r="30" fill="url(#sun)" />
<!-- Cityscape -->
<rect x="20" y="120" width="120" height="80" fill="#7a7a7a" rx="5" />
<rect x="150" y="150" width="80" height="100" fill="#999999" rx="5" />
<rect x="50" y="200" width="100" height="60" fill="#615f61" rx="5" />
<g transform="translate(180,180)">
<g id="balloon">
<ellipse cx="0" cy="0" rx="10" ry="20" fill="#ff69b4" />
<ellipse cx="0" cy="20" rx="5" ry="10" fill="#ff99cc" />
<line x1="0" y1="20" x2="0" y2="40" stroke="#333" />
<circle cx="0" cy="40" r="5" fill="#333" />
</g>
</g>
<!-- Jellyfish Balloons -->
<g id="balloons">
<use xlink:href="#balloon" transform="translate(100,50)" />
<use xlink:href="#balloon" transform="translate(150,80)" />
<use xlink:href="#balloon" transform="translate(50,120)" />
<use xlink:href="#balloon" transform="translate(200,150)" />
</g>
<!-- Steampunk Details -->
<g transform="translate(50,220)">
<circle cx="0" cy="0" r="5" fill="#8c7259" />
<line x1="0" y1="0" x2="20" y2="20" stroke="#373737" />
<line x1="0" y1="0" x2="-20" y2="20" stroke="#373737" />
</g>
<g transform="translate(150,250)">
<circle cx="0" cy="0" r="5" fill="#8c7259" />
<line x1="0" y1="0" x2="20" y2="20" stroke="#373737" />
<line x1="0" y1="0" x2="-20" y2="20" stroke="#373737" />
</g>
<!-- Clouds -->
<circle cx="50" cy="50" r="20" fill="#whitesmoke" opacity="0.7" />
<circle cx="150" cy="70" r="30" fill="#whitesmoke" opacity="0.7" />
<circle cx="250" cy="90" r="20" fill="#whitesmoke" opacity="0.7" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="skyGrad" cx="50%" cy="0%" r="100%">
<stop offset="0%" stop-color="#2c1858"/>
<stop offset="100%" stop-color="#0a0521"/>
</radialGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="2" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Sky background -->
<rect x="0" y="0" width="300" height="300" fill="url(#skyGrad)"/>
<!-- Steampunk city -->
<g fill="#2b2b2b">
<path d="M0,220 L50,180 L80,200 L100,160 L130,190 L160,150 L200,180 L240,140 L270,170 L300,150 L300,300 L0,300 Z"/>
</g>
<!-- Buildings detail -->
<g stroke="#463c2b" stroke-width="1" fill="#3d3d3d">
<rect x="40" y="200" width="30" height="80"/>
<rect x="90" y="180" width="40" height="100"/>
<rect x="150" y="190" width="35" height="90"/>
<rect x="200" y="170" width="45" height="110"/>
</g>
<!-- Windows -->
<g fill="#ffd700" opacity="0.6">
<g id="windows" transform="translate(45,210)">
<rect x="0" y="0" width="5" height="5"/>
<rect x="0" y="15" width="5" height="5"/>
<rect x="0" y="30" width="5" height="5"/>
<rect x="15" y="0" width="5" height="5"/>
<rect x="15" y="15" width="5" height="5"/>
<rect x="15" y="30" width="5" height="5"/>
</g>
<use href="#windows" x="55" y="-20"/>
<use href="#windows" x="115" y="-10"/>
<use href="#windows" x="165" y="-30"/>
</g>
<!-- Jellyfish balloons -->
<g filter="url(#glow)">
<g id="jellyfish" fill-opacity="0.7">
<ellipse cx="70" cy="100" rx="20" ry="25" fill="#ff69b4"/>
<path d="M50,100 Q70,150 70,160 Q70,150 90,100" fill="#ff69b4"/>
<path d="M55,120 Q70,160 70,170 M85,120 Q70,160 70,170" stroke="#ff69b4" fill="none"/>
</g>
<use href="#jellyfish" x="80" y="-30" transform="scale(0.8)"/>
<use href="#jellyfish" x="160" y="20" transform="scale(1.2)"/>
<g id="tentacles" stroke="#ff69b4" stroke-width="1" fill="none">
<path d="M70,125 Q75,145 70,160"/>
<path d="M75,125 Q85,145 80,160"/>
<path d="M65,125 Q60,145 65,160"/>
</g>
</g>
<!-- Steam and clouds -->
<g fill="#ffffff" fill-opacity="0.2">
<circle cx="120" cy="240" r="10"/>
<circle cx="180" cy="220" r="15"/>
<circle cx="220" cy="250" r="12"/>
</g>
<!-- Gears -->
<g fill="#8b4513" stroke="#daa520">
<circle cx="30" cy="250" r="8"/>
<circle cx="130" cy="270" r="10"/>
<circle cx="230" cy="260" r="12"/>
</g>
</svg>
Judge's Analysis
Player 2's submission effectively combines the elements of jellyfish balloons and a steampunk cityscape with a clear representation of both.
The glowing pink jellyfish balloons contrast well against the dark cityscape, enhancing visual appeal and creativity.
In contrast, Player 1's submission lacks clarity and cohesion, making it less effective in adhering to the prompt.
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 clockwork butterfly unveiling a hidden city on its left wing"
"Dancing cactus under a disco ball"
"Cat in a spacesuit playing chess with a ghost"
"A giraffe juggling planets under the ocean"
"A feathered dinosaur with a top hat, sipping tea in a Victorian-style parlor"
"Cat in a comet sipping tea through a straw"