Creative Challenge
"A snail racing a rocket on a rainbow road."
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background Sky with Gradient -->
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#87CEFA"/>
<stop offset="100%" stop-color="#E0FFFF"/>
</linearGradient>
<!-- Rainbow Gradient -->
<linearGradient id="rainbowGradient" x1="0" y1="0" x2="1" y2="0">
<stop offset="0%" stop-color="#FF4E00"/>
<stop offset="16.66%" stop-color="#FFCC00"/>
<stop offset="33.33%" stop-color="#4CAF50"/>
<stop offset="50%" stop-color="#2196F3"/>
<stop offset="66.66%" stop-color="#8E44AD"/>
<stop offset="83.33%" stop-color="#FF3B69"/>
<stop offset="100%" stop-color="#FF4E00"/>
</linearGradient>
<!-- Rocket Flame -->
<radialGradient id="flameGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#FFDD00"/>
<stop offset="100%" stop-color="#FF5733"/>
</radialGradient>
</defs>
<!-- Sky -->
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Rainbow Road -->
<ellipse cx="150" cy="250" rx="130" ry="20" fill="none" stroke="url(#rainbowGradient)" stroke-width="20" />
<!-- Snail Shell -->
<circle cx="80" cy="200" r="30" fill="#8B4513" stroke="#654321" stroke-width="4"/>
<!-- Snail Body -->
<ellipse cx="80" cy="210" rx="40" ry="15" fill="#A0522D"/>
<!-- Snail Head -->
<circle cx="130" cy="210" r="12" fill="#D2691E" stroke="#8B4513" stroke-width="2"/>
<!-- Snail Eyes -->
<circle cx="123" cy="203" r="2" fill="#000"/>
<circle cx="137" cy="203" r="2" fill="#000"/>
<!-- Rocket Body -->
<polygon points="190,150 230,130 210,160 150,160" fill="#C0C0C0" stroke="#999" stroke-width="2"/>
<!-- Rocket Nose -->
<polygon points="150,130 160,100 180,130" fill="#FF3B69" stroke="#CC2F4A" stroke-width="1"/>
<!-- Rocket Window -->
<circle cx="200" cy="140" r="6" fill="#0DABEF" stroke="#0066CC" stroke-width="1"/>
<!-- Rocket Fins -->
<polygon points="210,160 220,170 200,170" fill="#FFDC00"/>
<polygon points="180,170 160,170 190,180" fill="#FFDC00"/>
<!-- Rocket Flame (Propulsion) -->
<ellipse cx="210" cy="180" rx="6" ry="12" fill="url(#flameGradient)" opacity="0.8"/>
<path d="M210,185 Q212,195 204,195 Q210,200 210,210" fill="none" stroke="orange" stroke-width="3" opacity="0.7"/>
<!-- Artistic Cloud Elements for Atmosphere -->
<circle cx="50" cy="50" r="15" fill="#FFFFFF" opacity="0.5"/>
<circle cx="80" cy="75" r="20" fill="#FFFFFF" opacity="0.3"/>
<circle cx="220" cy="60" r="10" fill="#FFFFFF" opacity="0.4"/>
<circle cx="260" cy="80" r="15" fill="#FFFFFF" opacity="0.3"/>
<circle cx="180" cy="40" r="12" fill="#FFFFFF" opacity="0.2"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Rainbow Road -->
<defs>
<linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#ff0000"/>
<stop offset="20%" stop-color="#f48c06"/>
<stop offset="40%" stop-color="#ffdf00"/>
<stop offset="60%" stop-color="#008000"/>
<stop offset="80%" stop-color="#0000ff"/>
<stop offset="100%" stop-color="#800080"/>
</linearGradient>
</defs>
<rect x="0" y="0" width="300" height="300" fill="url(#rainbow)"/>
<!-- Rocket -->
<path d="M100 200 L150 100 L200 200 L175 200 L150 150 L125 200 Z" fill="#a9a9a9"/>
<circle cx="150" cy="185" r="15" fill="#d3d3d3"/>
<circle cx="150" cy="200" r="5" fill="#20b2aa"/>
<!-- Snail -->
<circle cx="50" cy="250" r="20" fill="#8b4513"/>
<circle cx="45" cy="245" r="3" fill="#000"/>
<circle cx="55" cy="245" r="3" fill="#000"/>
<path d="M40 250 Q50 220 60 250" fill="none" stroke="#000" stroke-width="2"/>
</svg>
Judge's Analysis
Player 1's submission effectively captures the theme with a clear depiction of both a snail and a rocket on a rainbow road.
The composition is dynamic, with a sense of motion and playful elements such as the colorful background and stylized rocket.
Player 2's submission, while visually bold with its vibrant rainbow gradient, lacks clarity in representing the snail and rocket racing concept, making Player 1's image more aligned with the prompt and visually engaging.
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
"Rocket-powered snail racing against a cheetah on a colorful desert track."
"An astronaut planting a flag on a giant floating slice of pizza in space."
"A giraffe riding a unicycle on a rainbow under a moonlit sky."
"An astronaut roasting marshmallows over a tiny campfire on the moon."