Creative Challenge
"A disco ball moon over a city of dancing skyscrapers"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#0A2E76;stop-opacity:1" />
<stop offset="100%" style="stop-color:#1B4F72;stop-opacity:1" />
</linearGradient>
<radialGradient id="moonGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#FFFFFF;stop-opacity:1" />
<stop offset="100%" style="stop-color:#AAACDA;stop-opacity:0.6" />
</radialGradient>
<pattern id="discoPattern" patternUnits="userSpaceOnUse" width="12" height="12">
<rect width="12" height="12" fill="none" />
<circle cx="6" cy="6" r="5" fill="#FFA500" />
<circle cx="3" cy="3" r="2" fill="#FF00FF" />
<circle cx="9" cy="3" r="2" fill="#00FFFF" />
<circle cx="3" cy="9" r="2" fill="#FFFF00" />
<circle cx="9" cy="9" r="2" fill="#00FF00" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<circle cx="150" cy="70" r="40" fill="url(#moonGradient)" />
<circle cx="150" cy="70" r="38" fill="url(#discoPattern)" />
<g>
<rect x="50" y="180" width="20" height="100" fill="#3E4E55" />
<rect x="80" y="160" width="40" height="120" fill="#2D3B40" />
<rect x="130" y="150" width="60" height="130" fill="#4A8B8C" />
<rect x="200" y="120" width="50" height="160" fill="#B4C7E7" />
<rect x="250" y="170" width="20" height="110" fill="#A9B2BB" />
</g>
<circle cx="150" cy="250" r="50" fill="none" stroke="#FFD700" stroke-width="2" stroke-opacity="0.7" />
<line x1="150" y1="200" x2="150" y2="300" stroke="#FFD700" stroke-width="2" stroke-opacity="0.3" />
<line x1="250" y1="230" x2="150" y2="300" stroke="#FFD700" stroke-width="2" stroke-opacity="0.3" />
<line x1="50" y1="230" x2="150" y2="300" stroke="#FFD700" stroke-width="2" stroke-opacity="0.3" />
<text x="150" y="280" font-family="Verdana" font-size="10" fill="#FFD700" text-anchor="middle">Dancing Under the Moonlight</text>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="moonGlow" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#fff" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#ff00ff" stop-opacity="0.2"/>
</radialGradient>
<pattern id="discoPanels" width="10" height="10" patternUnits="userSpaceOnUse">
<rect width="5" height="5" fill="#silver" opacity="0.8"/>
<rect x="5" y="5" width="5" height="5" fill="#silver" opacity="0.8"/>
</pattern>
</defs>
<!-- Night sky background -->
<rect x="0" y="0" width="300" height="300" fill="#1a0033"/>
<!-- Disco ball moon -->
<circle cx="150" cy="80" r="40" fill="url(#discoPanels)"/>
<circle cx="150" cy="80" r="45" fill="none" stroke="url(#moonGlow)" stroke-width="5"/>
<!-- Light beams -->
<g opacity="0.3">
<path d="M110 80 L30 200" stroke="#ff00ff" stroke-width="2"/>
<path d="M190 80 L270 200" stroke="#00ffff" stroke-width="2"/>
<path d="M150 120 L150 250" stroke="#ffff00" stroke-width="2"/>
</g>
<!-- Dancing buildings -->
<g transform="translate(150,300)">
<rect x="-80" y="-200" width="30" height="180" fill="#4d4dff" transform="rotate(-10)"/>
<rect x="-30" y="-180" width="25" height="160" fill="#ff4d4d" transform="rotate(8)"/>
<rect x="10" y="-220" width="35" height="200" fill="#4dff4d" transform="rotate(-5)"/>
<rect x="60" y="-190" width="28" height="170" fill="#ffff4d" transform="rotate(12)"/>
</g>
<!-- Windows -->
<g fill="#ffff00" opacity="0.8">
<rect x="80" y="120" width="5" height="5" transform="rotate(-10 80 120)"/>
<rect x="90" y="140" width="5" height="5" transform="rotate(-10 90 140)"/>
<rect x="140" y="130" width="5" height="5" transform="rotate(8 140 130)"/>
<rect x="150" y="150" width="5" height="5" transform="rotate(8 150 150)"/>
<rect x="200" y="140" width="5" height="5" transform="rotate(-5 200 140)"/>
<rect x="210" y="160" width="5" height="5" transform="rotate(-5 210 160)"/>
</g>
<!-- Stars -->
<g fill="#fff">
<circle cx="50" cy="50" r="1"/>
<circle cx="250" cy="70" r="1"/>
<circle cx="80" cy="30" r="1"/>
<circle cx="220" cy="40" r="1"/>
<circle cx="180" cy="20" r="1"/>
</g>
</svg>
Judge's Analysis
Player 2's submission creatively interprets the prompt with a checkerboard disco ball and vibrant, tilted skyscrapers that effectively convey a sense of movement and dance.
The bold colors and dynamic composition enhance the visual appeal and align well with the theme.
In contrast, Player 1's image, while colorful, lacks the same level of dynamism and creative expression in depicting the dancing skyscrapers.
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 single raccoon juggling ancient, glowing runes in a moonlit forest"
"Polar bear on a tropical beach, sipping coconut drink under a palm tree"
"Flamingo wearing roller skates on a rainbow path"
"Ballerina balancing on a tightrope above a cityscape during a vibrant sunset"
"Lemon-shaped hot air balloon over a surreal purple ocean"
"Moonlit jellyfish flying through a desert sky"