Creative Challenge
"Dreamy cityscape inside a snow globe with a swirling galaxy background"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Swirling Galaxy Background -->
<defs>
<radialGradient id="galaxy" fx="50%" fy="50%">
<stop offset="0%" stop-color="#212121" stop-opacity="0.5"/>
<stop offset="50%" stop-color="#434343" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#656565" stop-opacity="1"/>
</radialGradient>
<pattern id="stars" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="1" fill="#FFFFFF" opacity="0.5"/>
</pattern>
</defs>
<rect x="0" y="0" width="300" height="300" fill="url(#galaxy)"/>
<rect x="0" y="0" width="300" height="300" fill="url(#stars)" opacity="0.5"/>
<!-- Snow Globe -->
<circle cx="150" cy="150" r="120" fill="#FFFFFF" opacity="0.8"/>
<circle cx="150" cy="150" r="110" fill="#F7F7F7" opacity="0.9"/>
<circle cx="150" cy="150" r="100" fill="#FFFFFF" opacity="1"/>
<!-- Dreamy Cityscape -->
<g transform="translate(150 150) scale(0.5)">
<rect x="-100" y="-50" width="200" height="100" fill="#F2C464" rx="10"/>
<rect x="-80" y="-30" width="160" height="60" fill="#FFC107" rx="10"/>
<rect x="-60" y="-10" width="120" height="20" fill="#FFA07A" rx="5"/>
<circle cx="0" cy="-20" r="10" fill="#FF69B4"/>
<circle cx="-20" cy="-30" r="10" fill="#FF69B4"/>
<circle cx="20" cy="-30" r="10" fill="#FF69B4"/>
<path d="M -50 -50 L 50 -50 L 50 -30 L -50 -30 Z" fill="#FFFFFF" opacity="0.5"/>
</g>
<!-- Snowflakes -->
<g transform="translate(150 150)">
<path d="M -10 -10 L 10 -10 L 10 10 L -10 10 Z" fill="#FFFFFF" opacity="0.5" transform="rotate(45)"/>
<path d="M -15 -15 L 15 -15 L 15 15 L -15 15 Z" fill="#FFFFFF" opacity="0.5" transform="rotate(90)"/>
<path d="M -20 -20 L 20 -20 L 20 20 L -20 20 Z" fill="#FFFFFF" opacity="0.5" transform="rotate(135)"/>
</g>
<!-- Glowing Effect -->
<filter id="glow">
<feGaussianBlur in="SourceGraphic" stdDeviation="5" result="blur"/>
<feMerge>
<feMergeNode in="blur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<use xlink:href="#galaxy" filter="url(#glow)"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="galaxyGrad" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#2c0046"/>
<stop offset="50%" stop-color="#1a0033"/>
<stop offset="100%" stop-color="#000019"/>
</radialGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="2" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Galaxy Background -->
<rect x="0" y="0" width="300" height="300" fill="url(#galaxyGrad)"/>
<!-- Stars -->
<g fill="#fff" filter="url(#glow)">
<circle cx="50" cy="40" r="1"/>
<circle cx="150" cy="30" r="1.5"/>
<circle cx="250" cy="60" r="1"/>
<circle cx="80" cy="90" r="1.2"/>
<circle cx="220" cy="120" r="1"/>
<circle cx="180" cy="70" r="1.3"/>
</g>
<!-- Snow Globe -->
<circle cx="150" cy="150" r="100" fill="rgba(255,255,255,0.1)" stroke="#a0a0ff" stroke-width="8"/>
<!-- City Buildings -->
<g transform="translate(90,100)">
<path d="M0,100 h30 v-60 h20 v-20 h15 v40 h25 v-50 h20 v30 h20 v60 h-130 z" fill="#2b2b45"/>
<rect x="10" y="60" width="5" height="5" fill="#ffff00"/>
<rect x="45" y="30" width="5" height="5" fill="#ffff00"/>
<rect x="85" y="70" width="5" height="5" fill="#ffff00"/>
<rect x="110" y="40" width="5" height="5" fill="#ffff00"/>
</g>
<!-- Snow -->
<g fill="white">
<circle cx="120" cy="130" r="2"/>
<circle cx="180" cy="160" r="2"/>
<circle cx="150" cy="190" r="2"/>
<circle cx="130" cy="170" r="2"/>
<circle cx="170" cy="140" r="2"/>
<circle cx="140" cy="150" r="2"/>
</g>
<!-- Globe Base -->
<path d="M110,250 Q150,270 190,250 Q170,290 130,290 Q110,270 110,250" fill="#4a4a6a"/>
<!-- Swirling Galaxy Elements -->
<path d="M20,100 Q150,-50 280,100" stroke="#6b4ba3" stroke-width="2" fill="none" opacity="0.3"/>
<path d="M40,200 Q150,350 260,200" stroke="#4b6ba3" stroke-width="2" fill="none" opacity="0.3"/>
</svg>
Judge's Analysis
Player 2's submission effectively captures the theme with a recognizable cityscape within a snow globe, set against a swirling galaxy background.
The composition is technically sound, with a pleasing color palette and clear depiction of the prompt.
Player 1's image is not visible, making Player 2 the clear winner by default.
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 snail with a cityscape of tiny buildings on its shell"
"Pirate cat on a unicycle juggling starfish"
"Flying cactus in a top hat balancing on a unicycle with a desert sunset backdrop"
"Underwater circus with juggling octopus, tightrope starfish, and clownfish on unicycles"
"Meteor shower over a crystal desert"
"A cactus wearing a raincoat under a rainbow"