Creative Challenge
"Rainbow zebra juggling ice-cream cones"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Sky background with gradient -->
<defs>
<linearGradient id="sky" x1="0" y1="0" x2="0" y2="300" gradientUnits="userSpaceOnUse">
<stop stop-color="#87CEEB" offset="0"/>
<stop stop-color="#4682B4" offset="1"/>
</linearGradient>
<!-- Rainbow gradient for zebra -->
<linearGradient id="rainbow" x1="0" y1="0" x2="100%" y2="0" gradientUnits="objectBoundingBox">
<stop stop-color="#FF0000" offset="0"/>
<stop stop-color="#FFA500" offset="0.1667"/>
<stop stop-color="#FFFF00" offset="0.3333"/>
<stop stop-color="#008000" offset="0.5"/>
<stop stop-color="#0000FF" offset="0.6667"/>
<stop stop-color="#9400D3" offset="1"/>
</linearGradient>
<!-- Ground gradient -->
<linearGradient id="ground" x1="0" y1="0" x2="0" y2="100%" gradientUnits="objectBoundingBox">
<stop stop-color="#8B4513" offset="0"/>
<stop stop-color="#4A2A04" offset="1"/>
</linearGradient>
<!-- Ice cream cone path -->
<path id="cone" d="M50,0 L25,100 L75,100 L50,0Z"/>
<!-- Star shape for decoration -->
<path id="star" d="M50,0 L61,35 L98,35 L68,57 L81,91 L50,70 L19,91 L32,57 L2,35 L39,35 L50,0Z"/>
</defs>
<!-- Background elements -->
<rect width="300" height="300" fill="url(#sky)"/>
<rect x="0" y="200" width="300" height="100" fill="url(#ground)"/>
<!-- Juggling circle with motion lines -->
<circle cx="150" cy="150" r="80" stroke="#FFFFFF" stroke-width="2" fill="none"/>
<!-- Zebra body -->
<clipPath id="zebra-clip">
<path d="M100,100 L200,100 L250,150 L150,200 L50,150 L0,100 Z"/>
</clipPath>
<g clip-path="url(#zebra-clip)">
<rect x="0" y="0" width="300" height="300" fill="url(#rainbow)"/>
</g>
<!-- Zebra head -->
<path d="M120,80 L180,80 L200,100 L160,120 L120,80" fill="url(#rainbow)"/>
<circle cx="150" cy="90" r="8" fill="black"/>
<circle cx="140" cy="90" r="6" fill="white"/>
<circle cx="160" cy="90" r="6" fill="white"/>
<!-- Legs -->
<path d="M120,180 L130,200" stroke="black" stroke-width="4"/>
<path d="M170,180 L180,200" stroke="black" stroke-width="4"/>
<path d="M140,220 L150,240" stroke="black" stroke-width="4"/>
<path d="M160,220 L170,240" stroke="black" stroke-width="4"/>
<!-- Ice cream cones -->
<g transform="rotate(30 150 150)">
<use href="#cone" fill="#FFB6C1" transform="translate(120 100)"/>
<circle cx="125" cy="95" r="15" fill="#FFB6C1"/>
<path d="M120 110 Q125 105 130 110" fill="#FFB6C1"/>
</g>
<g transform="rotate(90 150 150)">
<use href="#cone" fill="#FFA500" transform="translate(150 80)"/>
<circle cx="155" cy="85" r="15" fill="#FFA500"/>
<path d="M150 95 Q155 90 160 95" fill="#FFA500"/>
</g>
<g transform="rotate(-30 150 150)">
<use href="#cone" fill="#FFD700" transform="translate(180 100)"/>
<circle cx="185" cy="95" r="15" fill="#FFD700"/>
<path d="M180 110 Q185 105 190 110" fill="#FFD700"/>
</g>
<!-- Decorative stars -->
<use href="#star" fill="gold" transform="translate(50 50) rotate(10)"/>
<use href="#star" fill="gold" transform="translate(250 50) rotate(-10)"/>
<use href="#star" fill="gold" transform="translate(150 250) rotate(180)"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="rainbow" gradientTransform="rotate(90)">
<stop offset="0%" stop-color="#ff0000"/>
<stop offset="17%" stop-color="#ff8800"/>
<stop offset="33%" stop-color="#ffff00"/>
<stop offset="50%" stop-color="#00ff00"/>
<stop offset="67%" stop-color="#0088ff"/>
<stop offset="83%" stop-color="#0000ff"/>
<stop offset="100%" stop-color="#8800ff"/>
</linearGradient>
<pattern id="stripes" patternUnits="userSpaceOnUse" width="10" height="10" patternTransform="rotate(45)">
<rect width="5" height="10" fill="url(#rainbow)"/>
<rect x="5" width="5" height="10" fill="white"/>
</pattern>
</defs>
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="#f0f8ff"/>
<!-- Zebra body -->
<path d="M100,200 C80,180 70,160 80,140 C90,120 120,110 150,110 C180,110 210,120 220,140 C230,160 220,180 200,200 Z" fill="url(#stripes)"/>
<!-- Head -->
<path d="M70,140 C60,120 70,100 90,90 C110,80 130,85 140,100 C150,115 140,130 130,140 Z" fill="url(#stripes)"/>
<!-- Mane -->
<path d="M90,90 C100,70 120,60 140,70 Q160,80 150,100" fill="#ff69b4" stroke="none"/>
<!-- Eyes -->
<circle cx="85" cy="105" r="5" fill="black"/>
<circle cx="83" cy="103" r="2" fill="white"/>
<!-- Ice cream cones in motion -->
<g transform="rotate(-20,160,120)">
<path d="M160,120 L150,150 L170,150 Z" fill="#deb887"/>
<circle cx="160" cy="120" r="15" fill="#ff69b4"/>
</g>
<g transform="rotate(20,200,150)">
<path d="M200,150 L190,180 L210,180 Z" fill="#deb887"/>
<circle cx="200" cy="150" r="15" fill="#87ceeb"/>
</g>
<g transform="rotate(-10,140,160)">
<path d="M140,160 L130,190 L150,190 Z" fill="#deb887"/>
<circle cx="140" cy="160" r="15" fill="#90ee90"/>
</g>
<!-- Motion lines -->
<path d="M150,130 Q170,140 160,150" stroke="#888" fill="none" stroke-dasharray="2,2"/>
<path d="M180,140 Q200,150 190,160" stroke="#888" fill="none" stroke-dasharray="2,2"/>
<path d="M130,150 Q150,160 140,170" stroke="#888" fill="none" stroke-dasharray="2,2"/>
<!-- Legs -->
<path d="M120,200 L110,240" stroke="url(#stripes)" stroke-width="15" stroke-linecap="round"/>
<path d="M180,200 L190,240" stroke="url(#stripes)" stroke-width="15" stroke-linecap="round"/>
</svg>
Judge's Analysis
Player 2's image captures the concept of a 'rainbow zebra juggling ice-cream cones' more explicitly and creatively.
The zebra is clearly depicted with a colorful pattern and is visibly juggling ice-cream cones, fulfilling the prompt effectively.
Player 1's abstract design, although colorful and dynamic, does not clearly represent the prompt elements, making Player 2's submission more successful overall.
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
"Surreal cactus with birdhouses as branches and birds wearing tiny hats"
"Cat wearing a pirate hat rowing a leaf boat on a pond"
"A giraffe in a spacesuit floating next to a red umbrella in the cosmos"
"An octopus DJ spinning vinyl under the sea, rays of colorful light emanating from speakers"
"Surreal sun wearing sunglasses, playing hopscotch on a rainbow"
"Rainbow flamingo wearing astronaut helmet on a lime green unicycle"