Creative Challenge
"Frog in a tuxedo, gracefully playing a grand piano underwater"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Underwater background -->
<rect x="0" y="0" width="300" height="300" fill="#2196F3" />
<!-- Water bubbles -->
<circle cx="30" cy="50" r="5" fill="#FFFFFF" />
<circle cx="60" cy="80" r="8" fill="#FFFFFF" />
<circle cx="100" cy="40" r="6" fill="#FFFFFF" />
<circle cx="120" cy="90" r="4" fill="#FFFFFF" />
<circle cx="150" cy="60" r="7" fill="#FFFFFF" />
<!-- Piano body -->
<rect x="50" y="150" width="200" height="100" fill="#424242" />
<!-- Piano keys -->
<rect x="50" y="150" width="200" height="20" fill="#FFFFFF" />
<!-- black keys -->
<rect x="80" y="150" width="20" height="50" fill="#000000" />
<rect x="140" y="150" width="20" height="50" fill="#000000" />
<rect x="200" y="150" width="20" height="50" fill="#000000" />
<rect x="260" y="150" width="20" height="50" fill="#000000" />
<!-- Frog body -->
<ellipse cx="150" cy="225" rx="30" ry="50" fill="#4CAF50" />
<!-- Frog eyes -->
<circle cx="135" cy="210" r="5" fill="#FFFFFF" />
<circle cx="165" cy="210" r="5" fill="#FFFFFF" />
<circle cx="135" cy="210" r="2" fill="#000000" />
<circle cx="165" cy="210" r="2" fill="#000000" />
<!-- Frog tuxedo -->
<path d="M135 240 L120 260 L150 260 Z" fill="#212121" />
<path d="M165 240 L180 260 L150 260 Z" fill="#212121" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<radialGradient id="waterGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color: #4f9de8; stop-opacity: 1;" />
<stop offset="100%" style="stop-color: #005f99; stop-opacity: 1;" />
</radialGradient>
<linearGradient id="frogGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color: #88cc88; stop-opacity: 1;" />
<stop offset="100%" style="stop-color: #306d36; stop-opacity: 1;" />
</linearGradient>
<linearGradient id="pianoGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color: #3e3e3e; stop-opacity: 1;" />
<stop offset="100%" style="stop-color: #1a1a1a; stop-opacity: 1;" />
</linearGradient>
<pattern id="bubbles" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="5" fill="rgba(255,255,255,0.6)" />
<circle cx="20" cy="20" r="3" fill="rgba(255,255,255,0.4)" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#waterGradient)" />
<rect width="300" height="300" fill="url(#bubbles)" />
<g transform="translate(70, 50)">
<!-- Frog -->
<ellipse cx="50" cy="90" rx="30" ry="40" fill="url(#frogGradient)" />
<circle cx="35" cy="70" r="5" fill="#fff" />
<circle cx="65" cy="70" r="5" fill="#fff" />
<circle cx="35" cy="70" r="2" fill="#000" />
<circle cx="65" cy="70" r="2" fill="#000" />
<path d="M20 110 C40 100, 60 100, 80 110 Q65 120, 50 120 Q35 120, 20 110" fill="#306d36" />
<!-- Tuxedo -->
<path d="M40 90 L60 90 L65 120 L35 120 Z" fill="#222" />
<path d="M50 90 Q50 85, 45 82 Q50 85, 55 82" stroke="#fff" stroke-width="1" fill="none" />
</g>
<!-- Piano -->
<g transform="translate(150, 125)">
<rect x="-30" y="90" width="120" height="10" fill="url(#pianoGradient)" />
<ellipse cx="30" cy="90" rx="80" ry="40" fill="url(#pianoGradient)" />
<rect x="-30" y="110" width="120" height="10" fill="url(#pianoGradient)" />
<line x1="-20" y1="90" x2="80" y2="90" stroke="#fff" stroke-width="1" />
<line x1="0" y1="50" x2="60" y2="50" stroke="#fff" stroke-width="2" />
</g>
</svg>
Judge's Analysis
Player 2's submission better captures the concept of a frog in a tuxedo playing a grand piano underwater.
The use of polka dots effectively suggests a submerged environment, and the frog's expression adds character.
In contrast, Player 1's image lacks clear representation of a piano and the underwater setting is less distinct.
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
"Mushroom castle under water with a crown-wearing jellyfish king"
"Flying penguin with rainbow wings over a technicolor iceberg"
"Surrealist bird wearing a raincoat in a thunderstorm"
"Frog astronaut playing guitar on a lily pad in space"
"Frog playing piano under a starry sky"
"Giraffe in a spacesuit floating through a starry sky"