Creative Challenge
"A cloud wearing sunglasses and a fedora sipping lemonade"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Definitions for gradients and patterns -->
<defs>
<linearGradient id="cloudGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#ffffff;stop-opacity:1" />
<stop offset="100%" style="stop-color:#f0f0f0;stop-opacity:1" />
</linearGradient>
<linearGradient id="hatGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#444444;stop-opacity:1" />
<stop offset="100%" style="stop-color:#222222;stop-opacity:1" />
</linearGradient>
<linearGradient id="glassGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#ffeb3b;stop-opacity:1" />
<stop offset="100%" style="stop-color:#fdd835;stop-opacity:1" />
</linearGradient>
<linearGradient id="sunglassGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#555555;stop-opacity:0.8" />
<stop offset="100%" style="stop-color:#222222;stop-opacity:0.8" />
</linearGradient>
<radialGradient id="lemonGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#fff176;stop-opacity:1" />
<stop offset="100%" style="stop-color:#f9a825;stop-opacity:1" />
</radialGradient>
</defs>
<!-- Cloud -->
<g id="cloud" transform="translate(75,80)">
<ellipse cx="75" cy="60" rx="50" ry="30" fill="url(#cloudGradient)" />
<ellipse cx="50" cy="60" rx="40" ry="25" fill="url(#cloudGradient)" />
<ellipse cx="100" cy="60" rx="40" ry="25" fill="url(#cloudGradient)" />
<ellipse cx="75" cy="50" rx="45" ry="25" fill="url(#cloudGradient)" />
</g>
<!-- Fedora Hat -->
<g id="hat" transform="translate(75,30)">
<path d="M75,0
C50,0 25,20 25,35
C25,40 30,45 35,45
L115,45
C120,45 125,40 125,35
C125,20 100,0 75,0 Z"
fill="url(#hatGradient)" />
<ellipse cx="75" cy="45" rx="50" ry="5" fill="#333333" />
</g>
<!-- Sunglasses -->
<g id="sunglasses" transform="translate(75,80)">
<ellipse cx="55" cy="55" rx="10" ry="6" fill="url(#sunglassGradient)" stroke="#000" stroke-width="1" />
<ellipse cx="95" cy="55" rx="10" ry="6" fill="url(#sunglassGradient)" stroke="#000" stroke-width="1" />
<line x1="65" y1="55" x2="85" y2="55" stroke="#000" stroke-width="2" />
</g>
<!-- Lemonade Glass -->
<g id="glass" transform="translate(110,120)">
<path d="M0,0
L20,0
L25,80
L-25,80
L-20,0
Z"
fill="none" stroke="#555" stroke-width="2" />
<rect x="-15" y="0" width="30" height="80" fill="url(#glassGradient)" opacity="0.8" />
<!-- Straw -->
<rect x="10" y="10" width="4" height="60" fill="#ff4081" transform="rotate(20,10,10)" />
<!-- Lemon slice -->
<circle cx="0" cy="70" r="8" fill="url(#lemonGradient)" stroke="#fbc02d" stroke-width="2" />
<line x1="-2" y1="70" x2="2" y2="70" stroke="#f57f17" stroke-width="1" />
<line x1="0" y1="68" x2="0" y2="72" stroke="#f57f17" stroke-width="1" />
</g>
<!-- Lemonade Straw -->
<g id="straw" transform="translate(75,80)">
<line x1="0" y1="0" x2="30" y2="-40" stroke="#ff4081" stroke-width="3" stroke-linecap="round" />
<circle cx="30" cy="-40" r="5" fill="#ff4081" />
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="#c2e0ff" />
<!-- Cloud -->
<circle cx="50" cy="80" r="30" fill="#ffffff" />
<circle cx="90" cy="70" r="40" fill="#ffffff" />
<circle cx="130" cy="80" r="30" fill="#ffffff" />
<circle cx="75" cy="120" r="25" fill="#ffffff" />
<circle cx="115" cy="120" r="25" fill="#ffffff" />
<!-- Sunglasses -->
<ellipse cx="90" cy="95" rx="23" ry="10" fill="#333333" />
<ellipse cx="110" cy="95" rx="23" ry="10" fill="#333333" />
<rect x="97" y="90" width="16" height="10" fill="#ffffff" />
<!-- Fedora -->
<ellipse cx="100" cy="70" rx="30" ry="15" fill="#333333" />
<rect x="70" y="40" width="60" height="30" fill="#333333" />
<!-- Lemonade -->
<path d="M165 170h-10v60l-20-20-10 10 30 30 30-30-10-10-20 20z" fill="#f9eb50" />
<path d="M144 170h52c5 0 5 10 0 10h-52c-5 0-5-10 0-10zM193 230h-86c-5 0-5-10 0-10h86c5 0 5 10 0 10z" fill="#f9eb50" />
<path d="M170 230v10h-10v10h20v-20z" fill="#ffce28" />
</svg>
Judge's Analysis
Player 2's image better captures the whimsical and playful nature of the prompt.
The cloud is clearly wearing sunglasses and a fedora, and the lemonade is prominently featured, creating a coherent and visually appealing composition.
Player 1's image, while creative, lacks clarity in depicting the elements together cohesively.
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
"An octopus juggling colorful, oversized dice under a disco ball"
"Dancing octopus wearing a top hat and monocle under a disco ball"
"Mystical mime juggling glowing, translucent jellyfish in neon moonlight"
"Clocktower sprouting giant sunflowers, clock hands as petals"
"A giraffe wearing 3D glasses watching a movie on a spaceship"
"Neon robot juggling glowing stars"