Creative Challenge
"Flamingo playing accordion at midnight under a disco ball"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background -->
<rect width="300" height="300" fill="#0C1446" />
<!-- Disco Ball -->
<circle cx="150" cy="80" r="60" fill="silver" />
<circle cx="150" cy="80" r="50" fill="gray" />
<circle cx="150" cy="80" r="40" fill="lightgray" />
<!-- Reflections on Disco Ball -->
<circle cx="120" cy="70" r="5" fill="white" opacity="0.2" />
<circle cx="180" cy="90" r="5" fill="white" opacity="0.3" />
<!-- Flamingo Body -->
<ellipse cx="150" cy="200" rx="30" ry="60" fill="#FF9595" />
<!-- Flamingo Head -->
<circle cx="150" cy="160" r="20" fill="#FF9595" />
<path d="M130 160 Q140 140 150 160 Q160 140 170 160" fill="#FF9595" />
<!-- Flamingo Legs -->
<line x1="140" y1="210" x2="130" y2="250" stroke="#FF9595" stroke-width="5" />
<line x1="160" y1="210" x2="170" y2="250" stroke="#FF9595" stroke-width="5" />
<!-- Accordion Body -->
<rect x="120" y="200" width="60" height="80" fill="#FFD700" />
<!-- Accordion Keys -->
<rect x="130" y="210" width="10" height="60" fill="#FFF" />
<rect x="150" y="210" width="10" height="60" fill="#FFF" />
<rect x="170" y="210" width="10" height="60" fill="#FFF" />
<!-- Accordion Straps -->
<path d="M120 240 Q135 260 150 240 Q165 260 180 240" fill="none" stroke="#8B4513" stroke-width="2" />
<path d="M120 250 Q135 270 150 250 Q165 270 180 250" fill="none" stroke="#8B4513" stroke-width="2" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background Gradient -->
<defs>
<linearGradient id="nightGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#0a0a23"/>
<stop offset="100%" stop-color="#1a1a40"/>
</linearGradient>
<radialGradient id="discoGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ffffff" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#cccccc" stop-opacity="0.2"/>
</radialGradient>
<pattern id="starPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="1" cy="1" r="1" fill="#ffffff" />
</pattern>
<linearGradient id="flamingoGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#ff6f61"/>
<stop offset="100%" stop-color="#ff4c4c"/>
</linearGradient>
<linearGradient id="accordionGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#333333"/>
<stop offset="100%" stop-color="#666666"/>
</linearGradient>
</defs>
<!-- Night Sky with Stars -->
<rect width="300" height="300" fill="url(#nightGradient)" />
<rect width="300" height="300" fill="url(#starPattern)" opacity="0.2" />
<!-- Disco Ball -->
<g transform="translate(150, 50)">
<circle cx="0" cy="0" r="30" fill="url(#discoGradient)" stroke="#ffffff" stroke-width="2"/>
<g stroke="#ffffff" stroke-width="1" opacity="0.5">
<line x1="0" y1="-30" x2="0" y2="30" />
<line x1="-30" y1="0" x2="30" y2="0" />
<line x1="-21.21" y1="-21.21" x2="21.21" y2="21.21" />
<line x1="-21.21" y1="21.21" x2="21.21" y2="-21.21" />
</g>
<!-- Hanging chain -->
<line x1="0" y1="30" x2="0" y2="70" stroke="#cccccc" stroke-width="2"/>
<line x1="0" y1="70" x2="-10" y2="90" stroke="#cccccc" stroke-width="2"/>
<line x1="0" y1="70" x2="10" y2="90" stroke="#cccccc" stroke-width="2"/>
</g>
<!-- Flamingo -->
<g transform="translate(150, 180)">
<!-- Body -->
<ellipse cx="0" cy="0" rx="20" ry="30" fill="url(#flamingoGradient)" />
<!-- Neck and head -->
<path d="M0, -15 C-10,-25 -10,-35 0,-40" fill="url(#flamingoGradient)" />
<circle cx="0" cy="-40" r="5" fill="#ffffff" />
<circle cx="1" cy="-41" r="2" fill="#000000" />
<!-- Legs -->
<line x1="-5" y1="30" x2="-5" y2="50" stroke="#ff6f61" stroke-width="3"/>
<line x1="5" y1="30" x2="5" y2="50" stroke="#ff6f61" stroke-width="3"/>
<!-- Accordion -->
<rect x="-25" y="-10" width="50" height="20" fill="url(#accordionGradient)" stroke="#000000" stroke-width="1"/>
<line x1="-25" y1="0" x2="25" y2="0" stroke="#000000" stroke-width="1"/>
<circle cx="-10" cy="0" r="2" fill="#ffcc00"/>
<circle cx="10" cy="0" r="2" fill="#ffcc00"/>
<!-- Wings -->
<path d="M-20,0 Q-30,10 -20,20" fill="none" stroke="#ff6f61" stroke-width="2"/>
<path d="M20,0 Q30,10 20,20" fill="none" stroke="#ff6f61" stroke-width="2"/>
</g>
<!-- Moon -->
<circle cx="250" cy="50" r="20" fill="#f0e68c" opacity="0.5"/>
<path d="M260,50 a20,20 0 1,0 10,0 a18,18 0 1,1 0,0" fill="#f0e68c" opacity="0.3"/>
<!-- Floor -->
<ellipse cx="150" cy="260" rx="100" ry="10" fill="#2e2e2e" />
<!-- Light reflections from Disco Ball -->
<g stroke="#ffffff" stroke-width="0.5" opacity="0.3">
<line x1="150" y1="50" x2="50" y2="150" />
<line x1="150" y1="50" x2="250" y2="150" />
<line x1="150" y1="50" x2="150" y2="250" />
</g>
</svg>
Judge's Analysis
Player 2's submission captures the whimsical concept more effectively, with a clear depiction of a flamingo playing an accordion under a disco ball.
The composition is dynamic, and the use of a starry night background enhances the midnight setting.
Player 1's image, while abstract, lacks clarity and does not convey the prompt as effectively.
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
"An octopus juggling colorful, oversized dice under a disco ball"
"Dancing octopus wearing a top hat and monocle under a disco ball"
"Mystical mime juggling glowing, translucent jellyfish in neon moonlight"
"Clocktower sprouting giant sunflowers, clock hands as petals"
"A cloud wearing sunglasses and a fedora sipping lemonade"
"A giraffe wearing 3D glasses watching a movie on a spaceship"