Creative Challenge
"A snail with a city skyline on its shell at sunset"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- Sunset Gradient -->
<linearGradient id="sunsetGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#ff9a9e"/>
<stop offset="50%" stop-color="#fad0c4"/>
<stop offset="100%" stop-color="#fad0c4"/>
</linearGradient>
<!-- Shell Gradient -->
<radialGradient id="shellGradient" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#ffe29f"/>
<stop offset="100%" stop-color="#ff5f6d"/>
</radialGradient>
<!-- City Skyline Pattern -->
<pattern id="cityPattern" patternUnits="objectBoundingBox" width="1" height="1">
<rect x="10" y="80" width="10" height="40" fill="#2c3e50"/>
<rect x="30" y="60" width="15" height="60" fill="#34495e"/>
<rect x="55" y="70" width="8" height="50" fill="#2c3e50"/>
<rect x="70" y="50" width="20" height="70" fill="#34495e"/>
<rect x="100" y="65" width="12" height="55" fill="#2c3e50"/>
<rect x="120" y="60" width="18" height="60" fill="#34495e"/>
<rect x="150" y="75" width="10" height="45" fill="#2c3e50"/>
<rect x="170" y="55" width="15" height="65" fill="#34495e"/>
<rect x="200" y="70" width="10" height="50" fill="#2c3e50"/>
<rect x="220" y="60" width="18" height="60" fill="#34495e"/>
<rect x="250" y="80" width="10" height="40" fill="#2c3e50"/>
</pattern>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#sunsetGradient)" />
<!-- Snail Body -->
<ellipse cx="150" cy="200" rx="60" ry="30" fill="#6C5B7B" />
<!-- Snail Head -->
<ellipse cx="210" cy="200" rx="20" ry="15" fill="#6C5B7B" />
<!-- Tentacles -->
<path d="M220,200 Q230,190 240,200" stroke="#6C5B7B" stroke-width="4" fill="none"/>
<path d="M220,205 Q230,215 240,210" stroke="#6C5B7B" stroke-width="4" fill="none"/>
<!-- Shell -->
<circle cx="120" cy="200" r="50" fill="url(#shellGradient)" stroke="#FF6F61" stroke-width="2"/>
<!-- City Skyline on Shell -->
<g transform="translate(70, 150)">
<rect x="20" y="30" width="10" height="20" fill="url(#cityPattern)"/>
<rect x="35" y="25" width="15" height="25" fill="url(#cityPattern)"/>
<rect x="60" y="28" width="8" height="22" fill="url(#cityPattern)"/>
<rect x="75" y="20" width="20" height="30" fill="url(#cityPattern)"/>
<rect x="105" y="27" width="12" height="23" fill="url(#cityPattern)"/>
<rect x="130" y="25" width="18" height="25" fill="url(#cityPattern)"/>
<rect x="160" y="30" width="10" height="20" fill="url(#cityPattern)"/>
<rect x="180" y="22" width="15" height="28" fill="url(#cityPattern)"/>
<rect x="210" y="30" width="10" height="20" fill="url(#cityPattern)"/>
<rect x="230" y="25" width="18" height="25" fill="url(#cityPattern)"/>
<rect x="260" y="30" width="10" height="20" fill="url(#cityPattern)"/>
</g>
<!-- Ground -->
<path d="M0,230 Q150,250 300,230 L300,300 L0,300 Z" fill="#355C7D"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<radialGradient id="sky" cx="150" cy="350" r="250" gradientUnits="userSpaceOnUse">
<stop offset="0%" stop-color="#FF9966"/>
<stop offset="50%" stop-color="#FFC3A0"/>
<stop offset="100%" stop-color="#FAEBD7"/>
</radialGradient>
<rect width="300" height="300" fill="url(#sky)"/>
<path d="M100 200 c 20 -20 60 -40 110 -30 c 40 8 50 35 40 60 c -15 35 -60 5 -60 5" fill="#4B3832" stroke="#2F2621" stroke-width="3"/>
<path id="shell-spiral" d="M150 170 a 50 40 0 0 1 40 25 a 35 30 0 0 1 5 40 a 25 20 0 0 1 -25 20 a 10 10 0 0 1 -10 5" fill="url(#shell-gradient)" stroke="#4A3D2E" stroke-width="2" />
<linearGradient id="shell-gradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#FFB347"/>
<stop offset="30%" stop-color="#F7E7CE"/>
<stop offset="100%" stop-color="#FFA500"/>
</linearGradient>
<g id="city">
<rect x="155" y="140" width="10" height="20" fill="#222"/>
<rect x="170" y="130" width="15" height="30" fill="#333"/>
<rect x="190" y="150" width="8" height="10" fill="#222"/>
<rect x="135" y="155" width="12" height="15" fill="#333"/>
<polygon points="150,130 155,140 165,140 160,130" fill="#444"/>
</g>
<circle cx="90" cy="195" r="8" fill="#FADA5E"/>
<circle cx="85" cy="205" r="10" fill="#4B3832"/>
<ellipse cx="80" cy="208" rx="5" ry="3" fill="#000"/>
</svg>
Judge's Analysis
Player 2's image better adheres to the prompt with a visible city skyline integrated into the snail's shell, demonstrating creativity in concept.
The color gradient suggests a sunset, adding to the visual appeal.
Player 1's image, while having a strong sunset element, lacks the skyline detail and thus doesn't fully meet 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
"Astronaut playing chess with a cat on a moonlit crater"
"Cherry blossom tree growing on a floating iceberg"
"Bioluminescent mushroom cityscape at twilight"
"A penguin knight jousting on a seahorse against a walrus in armor"
"Midnight cityscape from a cat's rooftop perspective"
"Cat in a spacesuit juggling glowing planets"