Creative Challenge
"A snail wearing a top hat, sliding down a rainbow"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="shellGradient">
<stop offset="0%" stop-color="#FFD700"/>
<stop offset="100%" stop-color="#FFA500"/>
</linearGradient>
<linearGradient id="hatGradient">
<stop offset="0%" stop-color="#000000"/>
<stop offset="100%" stop-color="#2F2F2F"/>
</linearGradient>
<radialGradient id="rainbowGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#FF0000"/>
<stop offset="14.28%" stop-color="#FF7F00"/>
<stop offset="28.56%" stop-color="#FFFF00"/>
<stop offset="42.84%" stop-color="#00FF00"/>
<stop offset="57.12%" stop-color="#0000FF"/>
<stop offset="71.4%" stop-color="#7F00FF"/>
<stop offset="85.68%" stop-color="#FF007F"/>
<stop offset="100%" stop-color="#FF0000"/>
</radialGradient>
</defs>
<g transform="translate(150,150)">
<g transform="rotate(-30)">
<!-- Rainbow -->
<path d="M-100-100 Q 0 0 100 100 Q 200 200 300 300"
stroke="none" fill="url(#rainbowGradient)" opacity="0.8"/>
<!-- Snail Body -->
<rect x="-20" y="-50" width="40" height="30" rx="15"
fill="#4B8740" transform="rotate(-30)"/>
<circle cx="-15" cy="-45" r="8" fill="#4B8740"/>
<circle cx="15" cy="-45" r="8" fill="#4B8740"/>
<!-- Shell -->
<path d="M0-60 Q 20-30 0 0 Q -20-30 0-60"
fill="url(#shellGradient)" stroke="#FFD700" stroke-width="2"/>
<!-- Hat -->
<rect x="-10" y="-70" width="20" height="30" rx="5"
fill="url(#hatGradient)"/>
<rect x="-15" y="-70" width="30" height="5" rx="2"
fill="#000000"/>
</g>
<!-- Motion Lines -->
<path d="M-50-50 Q 0-25 50-50" stroke="#4B8740" stroke-width="2" opacity="0.5"/>
<path d="M-40-60 Q 0-30 40-60" stroke="#4B8740" stroke-width="2" opacity="0.3"/>
<!-- Background -->
<rect width="300" height="300" rx="0"
fill="url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="linearGradient(x1:0% y1:0%,x2:100% y2:100%,from:#87CEEB,to:#E0FFFF)"/></svg>')"/>
<!-- Grass -->
<rect y="150" width="300" height="150" rx="0"
fill="url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="linearGradient(x1:0% y1:0%,x2:100% y2:100%,from:#3C8E3C,to:#6B9341)"/></svg>')"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="snailBodyGradient" cx="50%" cy="50%" r="50%" fx="40%" fy="60%">
<stop offset="0%" stop-color="#FFD700" />
<stop offset="50%" stop-color="#FFA500" />
<stop offset="100%" stop-color="#FF8C00" />
</radialGradient>
<linearGradient id="rainbowGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#FF0000" />
<stop offset="14.3%" stop-color="#FF7F00" />
<stop offset="28.6%" stop-color="#FFFF00" />
<stop offset="42.9%" stop-color="#00FF00" />
<stop offset="57.1%" stop-color="#0000FF" />
<stop offset="71.4%" stop-color="#4B0082" />
<stop offset="85.7%" stop-color="#9400D3" />
<stop offset="100%" stop-color="#FF00FF" />
</linearGradient>
<pattern id="topHatPattern" width="10" height="10" patternUnits="userSpaceOnUse">
<rect width="10" height="10" fill="#000" />
<circle cx="5" cy="5" r="2" fill="#FFF" />
</pattern>
</defs>
<path id="rainbow" d="M 30 180 C 80 80, 220 80, 270 180" stroke="url(#rainbowGradient)" stroke-width="20" fill="transparent" />
<path id="snailBody" d="M 150 150 C 130 130, 170 110, 180 130 C 190 170, 140 190, 150 150" fill="url(#snailBodyGradient)" />
<ellipse cx="130" cy="120" rx="15" ry="10" fill="#FFD700" transform="rotate(-20 130 120)" />
<ellipse cx="110" cy="110" rx="10" ry="7" fill="#FFD700" transform="rotate(-30 110 110)" />
<rect x="140" y="100" width="30" height="25" fill="url(#topHatPattern)" stroke="#000" />
<rect x="135" y="95" width="40" height="5" fill="#000" />
<ellipse cx="150" cy="180" rx="5" ry="8" fill="#A0522D" />
<ellipse cx="170" cy="175" rx="5" ry="8" fill="#A0522D" />
</svg>
Judge's Analysis
Player 2's image creatively uses color and form to depict a snail sliding down a rainbow, clearly adhering to the prompt.
The inclusion of a top hat adds to the whimsical nature of the scene.
The technical quality is strong with smooth color transitions and a coherent composition, making it visually appealing.
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
"Intergalactic snail race on a rainbow road"
"Flamingo on roller skates juggling pineapples"
"Dinosaur in a Tea Cup"
"Whale ballroom: whales in elegant attire dancing gracefully on ocean currents"
"Crane lifting a giant surreal watermelon above a silhouetted skyline"
"A chameleon on a disco ball, reflecting rainbow light"