Creative Challenge
"Snail race on a rainbow highway"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:red"/>
<stop offset="17%" style="stop-color:orange"/>
<stop offset="33%" style="stop-color:yellow"/>
<stop offset="50%" style="stop-color:green"/>
<stop offset="67%" style="stop-color:blue"/>
<stop offset="83%" style="stop-color:indigo"/>
<stop offset="100%" style="stop-color:violet"/>
</linearGradient>
<radialGradient id="shell1" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#ffaa00"/>
<stop offset="100%" style="stop-color:#cc7700"/>
</radialGradient>
<radialGradient id="shell2" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#ff44aa"/>
<stop offset="100%" style="stop-color:#cc2288"/>
</radialGradient>
</defs>
<!-- Rainbow Highway -->
<path d="M0,200 Q150,100 300,200" stroke="url(#rainbow)" stroke-width="40" fill="none"/>
<path d="M0,200 Q150,100 300,200" stroke="rgba(255,255,255,0.3)" stroke-width="35" fill="none"/>
<!-- Snail 1 -->
<g transform="translate(60,180) rotate(-20)">
<path d="M0,0 Q5,-5 10,0 Q15,5 20,0" fill="none" stroke="#ffaa00" stroke-width="3"/>
<circle cx="25" cy="0" r="12" fill="url(#shell1)"/>
<circle cx="8" cy="-2" r="4" fill="#ffaa00"/>
<circle cx="10" cy="-3" r="2" fill="black"/>
</g>
<!-- Snail 2 -->
<g transform="translate(200,160) rotate(-15)">
<path d="M0,0 Q5,-5 10,0 Q15,5 20,0" fill="none" stroke="#ff44aa" stroke-width="3"/>
<circle cx="25" cy="0" r="12" fill="url(#shell2)"/>
<circle cx="8" cy="-2" r="4" fill="#ff44aa"/>
<circle cx="10" cy="-3" r="2" fill="black"/>
</g>
<!-- Finish Line -->
<g transform="translate(260,180)">
<rect x="0" y="-30" width="5" height="60" fill="black"/>
<rect x="0" y="-30" width="5" height="10" fill="white"/>
<rect x="0" y="-10" width="5" height="10" fill="white"/>
<rect x="0" y="10" width="5" height="10" fill="white"/>
</g>
<!-- Speed Lines -->
<g stroke="#ffffff" stroke-width="2" opacity="0.5">
<line x1="40" y1="190" x2="60" y2="185"/>
<line x1="180" y1="170" x2="200" y2="165"/>
</g>
<!-- Sparkles -->
<g fill="#ffffff">
<circle cx="100" cy="150" r="2"/>
<circle cx="150" cy="140" r="2"/>
<circle cx="220" cy="150" r="2"/>
<circle cx="80" cy="170" r="2"/>
<circle cx="180" cy="130" r="2"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Rainbow Highway -->
<linearGradient id="rainbow" x1="0" x2="1" y1="0" y2="0">
<stop offset="0" stop-color="#FF69B4" />
<stop offset="0.2" stop-color="#FFC67D" />
<stop offset="0.4" stop-color="#F7DC6F" />
<stop offset="0.6" stop-color="#8BC34A" />
<stop offset="0.8" stop-color="#45B3FA" />
<stop offset="1" stop-color="#9C27B0" />
</linearGradient>
<rect x="50" y="100" width="200" height="50" fill="url(#rainbow)" rx="25" />
<!-- Snails -->
<symbol id="snail">
<circle cx="0" cy="0" r="10" fill="#FFFFFF" />
<circle cx="0" cy="-15" r="5" fill="#000000" />
<path d="M 0 -20 L -10 -25 L 10 -25 Z" fill="#000000" />
</symbol>
<!-- Snail 1 -->
<use xlink:href="#snail" x="70" y="125" transform="scale(0.8)" />
<circle cx="70" y="125" r="8" fill="#FFC107" />
<!-- Snail 2 -->
<use xlink:href="#snail" x="120" y="125" transform="scale(0.9)" />
<circle cx="120" y="125" r="9" fill="#8BC34A" />
<!-- Snail 3 -->
<use xlink:href="#snail" x="170" y="125" transform="scale(1)" />
<circle cx="170" y="125" r="10" fill="#45B3FA" />
<!-- Checkered Flag -->
<pattern id="checkered" width="10" height="10" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="5" height="5" fill="#FFFFFF" />
<rect x="5" y="5" width="5" height="5" fill="#FFFFFF" />
</pattern>
<rect x="250" y="120" width="20" height="20" fill="url(#checkered)" rx="2" />
<!-- Road Lines -->
<line x1="50" y1="120" x2="250" y2="120" stroke="#FFFFFF" stroke-width="2" stroke-dasharray="5,5" />
<line x1="50" y1="130" x2="250" y2="130" stroke="#FFFFFF" stroke-width="2" stroke-dasharray="5,5" />
<!-- Stars -->
<symbol id="star">
<path d="M 0 -10 L 5 -5 L 0 -0 L -5 -5 Z" fill="#FFFFFF" />
</symbol>
<use xlink:href="#star" x="150" y="80" transform="scale(0.5)" />
<use xlink:href="#star" x="220" y="60" transform="scale(0.7)" />
<use xlink:href="#star" x="280" y="40" transform="scale(0.9)" />
</svg>
Judge's Analysis
Player 1's image creatively depicts snails racing on a rainbow highway, effectively capturing the theme with vibrant colors and dynamic composition.
The use of a curved rainbow adds a sense of movement and excitement, enhancing the visual appeal.
Player 2's submission failed to load, making it impossible to compete with Player 1's complete and imaginative entry.
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 snail with a cityscape of tiny buildings on its shell"
"Pirate cat on a unicycle juggling starfish"
"Dreamy cityscape inside a snow globe with a swirling galaxy background"
"Flying cactus in a top hat balancing on a unicycle with a desert sunset backdrop"
"Underwater circus with juggling octopus, tightrope starfish, and clownfish on unicycles"
"Meteor shower over a crystal desert"