Creative Challenge
"A rainbow-colored giraffe wearing vintage space boots under a starry night sky"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Starry Night Sky Background -->
<defs>
<linearGradient id="nightSky" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#0B0B2D;stop-opacity:1" />
<stop offset="100%" style="stop-color:#1A1A4F;stop-opacity:1" />
</linearGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#FF0000"/>
<stop offset="20%" style="stop-color:#FFA500"/>
<stop offset="40%" style="stop-color:#FFFF00"/>
<stop offset="60%" style="stop-color:#00FF00"/>
<stop offset="80%" style="stop-color:#00FFFF"/>
<stop offset="100%" style="stop-color:#4B0082"/>
</linearGradient>
<pattern id="spots" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="3" fill="url(#rainbow)" stroke="#000" stroke-width="0.5"/>
</pattern>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#nightSky)"/>
<!-- Stars -->
<g id="stars">
<circle cx="50" cy="50" r="1" fill="white" filter="url(#glow)"/>
<circle cx="150" cy="80" r="1" fill="white" filter="url(#glow)"/>
<circle cx="250" cy="30" r="1" fill="white" filter="url(#glow)"/>
<circle cx="120" cy="150" r="1" fill="white" filter="url(#glow)"/>
<circle cx="180" cy="120" r="1" fill="white" filter="url(#glow)"/>
<circle cx="230" cy="180" r="1" fill="white" filter="url(#glow)"/>
</g>
<!-- Giraffe Body -->
<g id="giraffe">
<path d="M100,150 L120,140 L140,150 L160,140 L180,150 L200,140 L220,150 M100,160 L120,170 L140,160 L160,170 L180,160 L200,170 L220,160" fill="url(#rainbow)" stroke="#000" stroke-width="2"/>
<ellipse cx="140" cy="100" rx="30" ry="40" fill="url(#rainbow)" stroke="#000" stroke-width="2"/>
<!-- Giraffe Face Details -->
<circle cx="130" cy="90" r="8" fill="white"/>
<circle cx="150" cy="90" r="8" fill="white"/>
<path d="M130,90 L140,95 L150,90" stroke="#000" stroke-width="2"/>
<path d="M128,92 L132,92" stroke="#000" stroke-width="1"/>
<path d="M148,92 L152,92" stroke="#000" stroke-width="1"/>
<!-- Spots -->
<rect x="100" y="100" width="100" height="100" fill="url(#spots)"/>
</g>
<!-- Space Boots -->
<g id="boots">
<path d="M140,220 L160,220 L170,210 L180,220 L200,220 L190,230 L170,230 Z" fill="url(#rainbow)" stroke="#000" stroke-width="2"/>
<path d="M140,240 L160,240 L170,250 L180,240 L200,240 L190,260 L170,260 Z" fill="url(#rainbow)" stroke="#000" stroke-width="2"/>
<!-- Boot Details -->
<circle cx="150" cy="225" r="5" fill="#silver"/>
<circle cx="150" cy="245" r="5" fill="#gold"/>
<circle cx="175" cy="225" r="5" fill="#silver"/>
<circle cx="175" cy="245" r="5" fill="#gold"/>
</g>
<!-- Grass -->
<rect x="0" y="280" width="300" height="20" fill="#003300"/>
</svg>
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#123456"/>
<stop offset="100%" stop-color="#000000"/>
</linearGradient>
<linearGradient id="rainbowGradient" x1="0" y1="0" x2="1" y2="0">
<stop offset="0%" stop-color="red"/>
<stop offset="17%" stop-color="orange"/>
<stop offset="34%" stop-color="yellow"/>
<stop offset="51%" stop-color="green"/>
<stop offset="68%" stop-color="blue"/>
<stop offset="85%" stop-color="indigo"/>
<stop offset="100%" stop-color="violet"/>
</linearGradient>
<pattern id="starPattern" patternUnits="userSpaceOnUse" width="20" height="20">
<circle cx="10" cy="10" r="2" fill="white" opacity="0.8"/>
</pattern>
</defs>
<rect width="100%" height="100%" fill="url(#skyGradient)"/>
<g fill="url(#rainbowGradient)">
<path d="M100,200 Q150,150 200,200 T300,300"/>
<circle cx="150" cy="200" r="50"/>
</g>
<rect x="140" y="240" width="20" height="40" fill="silver"/>
<rect x="140" y="240" width="20" height="40" fill="silver"/>
<rect x="160" y="240" width="20" height="40" fill="silver"/>
<rect x="160" y="240" width="20" height="40" fill="silver"/>
<circle cx="150" cy="240" r="10" fill="gold"/>
<circle cx="170" cy="240" r="10" fill="gold"/>
<g fill="url(#starPattern)">
<rect x="0" y="0" width="300" height="150"/>
</g>
</svg>
Judge's Analysis
Player 2's submission captures the concept of a rainbow-colored giraffe more effectively, with the circular shape suggesting the giraffe's head and a gradient that hints at the rainbow theme.
The vintage space boots are abstractly represented, and the starry night sky is subtly depicted with a dotted pattern.
Player 1's image is more abstract and less recognizable in terms of adherence to the prompt, lacking clear representation of the giraffe and boots.
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
"Levitation tea party with floating teacups and pastries"
"Moonlit snail in a top hat juggling stars"
"Rainbow octopus in a Victorian tea party setting"
"Dolphin playing chess with a robot atop an iceberg"
"Flamingo on a skateboard, wearing sunglasses and sipping a smoothie"
"Frog in a vintage scuba suit dancing with jellyfish"