Creative Challenge
"A chameleon wearing kaleidoscope-patterned glasses"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<pattern id="kaleidoscope" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<path d="M0,0 L10,10 L20,0 L10,20 Z" fill="#ff6b6b"/>
<path d="M0,0 L20,0 L10,10 Z" fill="#4ecdc4"/>
<path d="M0,0 L10,20 L0,20 Z" fill="#45b7d1"/>
</pattern>
<linearGradient id="bodyGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#a8e6cf"/>
<stop offset="50%" style="stop-color:#7fcd91"/>
<stop offset="100%" style="stop-color:#3d8c40"/>
</linearGradient>
</defs>
<!-- Body -->
<path d="M100,150 Q150,50 200,150 Q250,200 200,250 Q150,280 100,250 Q50,200 100,150"
fill="url(#bodyGradient)" stroke="#2d5a27" stroke-width="2"/>
<!-- Tail -->
<path d="M80,200 Q40,220 30,180 Q20,150 40,140 Q60,130 80,150"
fill="#7fcd91" stroke="#2d5a27" stroke-width="2"/>
<!-- Glasses frame -->
<path d="M120,130 Q150,120 180,130 Q190,130 190,140 Q190,150 180,150 Q150,140 120,150 Q110,150 110,140 Q110,130 120,130"
fill="#444" stroke="#222" stroke-width="2"/>
<!-- Glasses lenses -->
<circle cx="130" cy="140" r="15" fill="url(#kaleidoscope)" stroke="#444" stroke-width="2"/>
<circle cx="170" cy="140" r="15" fill="url(#kaleidoscope)" stroke="#444" stroke-width="2"/>
<!-- Eye -->
<circle cx="130" cy="140" r="8" fill="#000"/>
<circle cx="170" cy="140" r="8" fill="#000"/>
<circle cx="128" cy="138" r="3" fill="#fff"/>
<circle cx="168" cy="138" r="3" fill="#fff"/>
<!-- Front leg -->
<path d="M140,200 Q130,220 120,230" fill="none" stroke="#2d5a27" stroke-width="4"/>
<!-- Back leg -->
<path d="M170,200 Q180,220 190,230" fill="none" stroke="#2d5a27" stroke-width="4"/>
<!-- Details -->
<path d="M150,170 Q160,180 170,170" fill="none" stroke="#2d5a27" stroke-width="2"/>
<path d="M140,180 C150,185 160,185 170,180" fill="none" stroke="#2d5a27" stroke-width="1"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="kaleidoGradient1" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#FF0080"/>
<stop offset="33%" stop-color="#FFD700"/>
<stop offset="66%" stop-color="#00FFFF"/>
<stop offset="100%" stop-color="#FF0080"/>
</radialGradient>
<radialGradient id="kaleidoGradient2" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#00FFFF"/>
<stop offset="33%" stop-color="#FF0080"/>
<stop offset="66%" stop-color="#FFD700"/>
<stop offset="100%" stop-color="#00FFFF"/>
</radialGradient>
<pattern id="kaleidoPattern" width="40" height="40" patternUnits="userSpaceOnUse">
<circle cx="20" cy="20" r="15" fill="url(#kaleidoGradient1)"/>
<circle cx="40" cy="20" r="15" fill="url(#kaleidoGradient2)"/>
<circle cx="20" cy="40" r="15" fill="url(#kaleidoGradient2)"/>
<circle cx="0" cy="20" r="15" fill="url(#kaleidoGradient2)"/>
<circle cx="20" cy="0" r="15" fill="url(#kaleidoGradient2)"/>
</pattern>
</defs>
<ellipse cx="150" cy="200" rx="40" ry="20" fill="#90EE90" transform="rotate(-15 150 200)"/>
<ellipse cx="180" cy="170" rx="60" ry="30" fill="limegreen" transform="rotate(-10 180 170)"/>
<circle cx="160" cy="120" r="40" fill="#7CFC00"/>
<path d="M120 100 C 120 80, 180 80, 180 100" stroke="#4B0082" stroke-width="5" fill="transparent"/>
<circle cx="130" cy="110" r="15" fill="yellow"/>
<circle cx="170" cy="110" r="15" fill="orange"/>
<ellipse cx="125" cy="110" rx="10" ry="5" fill="black"/>
<ellipse cx="165" cy="110" rx="10" ry="5" fill="black"/>
<rect x="90" y="80" width="60" height="30" rx="15" ry="15" fill="url(#kaleidoPattern)"/>
<path d="M80 85 L60 75" stroke="#7CFC00" stroke-width="5" stroke-linecap="round"/>
<path d="M210 85 L230 75" stroke="#7CFC00" stroke-width="5" stroke-linecap="round"/>
<ellipse cx="150" cy="150" rx="5" ry="10" fill="white" transform="rotate(45 150 150)"/>
</svg>
Judge's Analysis
Player 2's submission is more visually striking and creative, with a vibrant kaleidoscope pattern on the glasses that stands out.
The design is more dynamic and better captures the essence of the prompt.
Player 1's image is simpler and lacks the intricate pattern detail that was key to the prompt.
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
"Floating garden on a giant turtle's shell under a colorful starry sky"
"Two-headed flamingo on a crescent moon"
"Floating teapot pouring stars into a moonlit lake"
"Fire-breathing dragon knitting a scarf"
"A giraffe in a spacesuit floating through a candy-colored nebula"
"Glow-in-the-dark jellyfish orchestra under a starry night sky"