Creative Challenge
"Cat surfing on a rainbow wave under a candy sky"
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Candy Sky Background -->
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" style="stop-color: #ff69b4; stop-opacity:1"/>
<stop offset="100%" style="stop-color: #33ccff; stop-opacity:1"/>
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)"/>
<!-- Rainbow Wave -->
<defs>
<linearGradient id="waveGradient" x1="0" y1="0" x2="1" y2="0">
<stop offset="0%" style="stop-color: #ff69b4; stop-opacity:1"/>
<stop offset="20%" style="stop-color: #ffcc00; stop-opacity:1"/>
<stop offset="40%" style="stop-color: #33cc33; stop-opacity:1"/>
<stop offset="60%" style="stop-color: #0099cc; stop-opacity:1"/>
<stop offset="80%" style="stop-color: #9933cc; stop-opacity:1"/>
<stop offset="100%" style="stop-color: #ff69b4; stop-opacity:1"/>
</linearGradient>
</defs>
<path d="M100 250 Q150 150 200 250 T300 250" fill="none" stroke="url(#waveGradient)" stroke-width="20"/>
<!-- Cat -->
<g transform="translate(150, 200)">
<circle cx="0" cy="0" r="15" fill="#f0e68c"/>
<circle cx="-20" cy="-15" r="5" fill="#000"/>
<circle cx="20" cy="-15" r="5" fill="#000"/>
<path d="M-20,10 C-10,10 -5,15 0,15 5,15 10,10 20,10" fill="#f0e68c"/>
<path d="M-25,20 Q-15,25 -10,20 T10,20" fill="#f0e68c"/>
<rect x="-10" y="10" width="20" height="5" fill="#000"/>
</g>
<!-- Candy Clouds -->
<circle cx="50" cy="50" r="25" fill="#ff69b4"/>
<circle cx="100" cy="75" r="25" fill="#ffcc00"/>
<circle cx="150" cy="50" r="25" fill="#33cc33"/>
<circle cx="200" cy="75" r="25" fill="#0099cc"/>
<circle cx="250" cy="50" r="25" fill="#9933cc"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="rainbowGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#FF0000" />
<stop offset="20%" stop-color="#FFA500" />
<stop offset="40%" stop-color="#FFFF00" />
<stop offset="60%" stop-color="#008000" />
<stop offset="80%" stop-color="#0000FF" />
<stop offset="100%" stop-color="#800080" />
</linearGradient>
<radialGradient id="candyGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#FF69B4" />
<stop offset="40%" stop-color="#FFC0CB" />
<stop offset="80%" stop-color="#FF99CC" />
<stop offset="100%" stop-color="#FFA07A" />
</radialGradient>
<pattern id="candyPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="10" height="10" fill="#FFC67D" />
<rect x="10" y="0" width="10" height="10" fill="#FF99CC" />
<rect x="0" y="10" width="10" height="10" fill="#FFA07A" />
<rect x="10" y="10" width="10" height="10" fill="#FFC0CB" />
</pattern>
</defs>
<rect x="0" y="0" width="300" height="300" fill="url(#candyGradient)" />
<path d="M150 250C150 250 200 250 250 200C250 200 250 150 200 150C200 150 150 150 150 200C150 200 100 200 50 150C50 150 0 150 0 200C0 200 0 250 50 250C50 250 100 250 150 250"
fill="none"
stroke="url(#rainbowGradient)"
stroke-width="10"
stroke-dasharray="10 5"
transform="translate(0 100)">
<animateTransform attributeName="transform" type="translate" from="0 100" to="0 -50" dur="4s" repeatCount="indefinite" />
</path>
<g transform="translate(150 150)">
<ellipse cx="0" cy="0" rx="30" ry="15" fill="#000" />
<ellipse cx="0" cy="0" rx="20" ry="10" fill="#fff" />
<circle cx="0" cy="30" r="10" fill="#000" />
<path d="M0 30C10 45 10 60 0 60C-10 60 -10 45 0 30" fill="#000" />
<line x1="0" y1="0" x2="30" y2="30" stroke="#000" stroke-width="2" />
<line x1="0" y1="0" x2="-30" y2="30" stroke="#000" stroke-width="2" />
</g>
</svg>
Judge's Analysis
Player 2's submission captures the whimsical theme more effectively with a vibrant, segmented rainbow wave and a pronounced, candy-colored sky.
The composition is visually appealing and adheres closely to the prompt.
In contrast, Player 1's image, while colorful, lacks clarity in representing the elements described in the prompt, particularly the cat surfing aspect.
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
"Parrot wearing a detective hat, solving a mystery at a jungle library"
"Cactus playing electric guitar under a disco ball"
"Fish with an umbrella in a desert storm"
"An ant riding a unicycle on a tightrope under a crescent moon"
"Floating octopus with hot air balloon hat over a cityscape"
"Octopus juggling flamingo-colored bowling pins in a stormy sea"