Creative Challenge
"Frog with a monocle riding a unicycle on a tightrope under moonlight"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="moonGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#f5f5dc" />
<stop offset="100%" stop-color="#fffacd" />
</radialGradient>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#000033" />
<stop offset="100%" stop-color="#1a1a40" />
</linearGradient>
<pattern id="starPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="1" fill="#fff" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<rect width="300" height="300" fill="url(#starPattern)" opacity="0.6" />
<circle cx="250" cy="50" r="40" fill="url(#moonGradient)" />
<line x1="50" y1="200" x2="250" y2="200" stroke="#8B4513" stroke-width="5" stroke-linecap="round" />
<ellipse cx="150" cy="180" rx="60" ry="20" fill="#8B4513" opacity="0.5" />
<circle cx="150" cy="200" r="30" fill="#4CAF50" />
<circle cx="160" cy="190" r="5" fill="#000" />
<line x1="150" y1="230" x2="150" y2="250" stroke="#4CAF50" stroke-width="5" />
<line x1="150" y1="230" x2="130" y2="245" stroke="#4CAF50" stroke-width="5" />
<line x1="150" y1="230" x2="170" y2="245" stroke="#4CAF50" stroke-width="5" />
<circle cx="150" cy="170" r="10" fill="#fff" />
<circle cx="150" cy="170" r="5" fill="#000" />
<ellipse cx="160" cy="165" rx="2" ry="1" fill="#fff" />
<circle cx="150" cy="150" r="15" fill="#8B4513" />
<circle cx="150" cy="150" r="10" fill="#FFD700" />
<line x1="150" y1="150" x2="150" y2="130" stroke="#8B4513" stroke-width="3" />
<circle cx="150" cy="130" r="8" fill="#4CAF50" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="moonGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#FFF5D7" />
<stop offset="100%" stop-color="#BBB" />
</radialGradient>
<linearGradient id="nightSky" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#001" />
<stop offset="100%" stop-color="#113" />
</linearGradient>
<linearGradient id="frogGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#5DAE2A" />
<stop offset="100%" stop-color="#387D10" />
</linearGradient>
<pattern id="tireHatch" width="4" height="4" patternUnits="userSpaceOnUse">
<path d="M0,0 L4,4 M4,0 L0,4" stroke="#333" stroke-width="0.5"/>
</pattern>
</defs>
<!-- Night sky background -->
<rect x="0" y="0" width="300" height="300" fill="url(#nightSky)" />
<!-- Moon -->
<circle cx="250" cy="50" r="30" fill="url(#moonGradient)" />
<!-- Tightrope -->
<line x1="20" y1="150" x2="280" y2="150" stroke="#AAA" stroke-width="2" stroke-dasharray="5,5" />
<!-- Unicycle wheel -->
<g id="unicycle">
<circle cx="150" cy="150" r="15" fill="white" stroke="#333" stroke-width="2" />
<circle cx="150" cy="150" r="13" fill="url(#tireHatch)" />
<!-- Spokes -->
<line x1="150" y1="150" x2="150" y2="135" stroke="#333" stroke-width="1" />
<line x1="150" y1="150" x2="162" y2="143" stroke="#333" stroke-width="1" />
<line x1="150" y1="150" x2="162" y2="157" stroke="#333" stroke-width="1" />
<line x1="150" y1="150" x2="150" y2="165" stroke="#333" stroke-width="1" />
<line x1="150" y1="150" x2="138" y2="157" stroke="#333" stroke-width="1" />
<line x1="150" y1="150" x2="138" y2="143" stroke="#333" stroke-width="1" />
</g>
<!-- Frog body -->
<g id="frog" transform="translate(150,135)">
<!-- Body -->
<ellipse cx="0" cy="10" rx="12" ry="8" fill="url(#frogGradient)" stroke="#2B5E0E" stroke-width="1.5"/>
<!-- Head -->
<circle cx="0" cy="-5" r="8" fill="url(#frogGradient)" stroke="#2B5E0E" stroke-width="1.5"/>
<!-- Eye with monocle -->
<g id="monocle">
<!-- Monocle circle -->
<circle cx="4" cy="-8" r="3" fill="none" stroke="#DDD" stroke-width="1.2"/>
<!-- Handle -->
<path d="M6, -6 L10, -2" stroke="#DDD" stroke-width="1.2" fill="none"/>
<!-- Frog eye inside the monocle -->
<circle cx="4" cy="-8" r="1" fill="#000"/>
</g>
<!-- Legs -->
<path d="M -10,18 Q -12,25 -6,25" stroke="#2B5E0E" stroke-width="1.5" fill="none"/>
<path d="M 10,18 Q 12,25 6,25" stroke="#2B5E0E" stroke-width="1.5" fill="none"/>
<!-- Feet -->
<ellipse cx="-6" cy="26" rx="2" ry="1.2" fill="#2B5E0E"/>
<ellipse cx="6" cy="26" rx="2" ry="1.2" fill="#2B5E0E"/>
</g>
<!-- Position frog on the unicycle: transform group -->
<g transform="translate(0, -10)">
<!-- Unicycle wheel already defined at (150,150) -->
<use href="#unicycle" />
<!-- Frog placed above wheel: already defined relative to (150,135) -->
<use href="#frog" />
</g>
<!-- Supporting details: Stars -->
<g fill="#FFF">
<circle cx="40" cy="40" r="0.8"/>
<circle cx="70" cy="80" r="0.5"/>
<circle cx="90" cy="30" r="0.7"/>
<circle cx="120" cy="60" r="0.6"/>
<circle cx="200" cy="20" r="0.8"/>
<circle cx="260" cy="100" r="0.6"/>
<circle cx="230" cy="70" r="0.7"/>
<circle cx="50" cy="120" r="0.5"/>
<circle cx="280" cy="80" r="0.7"/>
</g>
</svg>
Judge's Analysis
Player 1's image creatively uses geometric shapes to depict a frog with a monocle riding a unicycle, with a clear sense of balance on a tightrope under a prominent moon.
The composition is visually engaging with a playful use of colors and patterns, effectively capturing the whimsical aspect of the prompt.
Player 2's image, while technically clean, lacks the same level of creativity and detail in illustrating the scene.
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
"Ballet-dancing flamingo in a rainforest with a top hat and cane"
"Octopus juggling lemons under a starry night sky"
"A giraffe with a rainbow-striped neck sipping tea in a galaxy"
"Dancing flamingos with top hats in a desert at sunset"
"Surreal clock made of swirling autumn leaves"
"Giraffe balancing teacups on its horns during a moonlit night in a desert"