Creative Challenge
"Lemon riding a skateboard under a rainbow"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:rgb(255,0,0)"/>
<stop offset="16.6%" style="stop-color:rgb(255,127,0)"/>
<stop offset="33.3%" style="stop-color:rgb(255,255,0)"/>
<stop offset="50%" style="stop-color:rgb(0,255,0)"/>
<stop offset="66.6%" style="stop-color:rgb(0,0,255)"/>
<stop offset="83.3%" style="stop-color:rgb(75,0,130)"/>
<stop offset="100%" style="stop-color:rgb(148,0,211)"/>
</linearGradient>
<radialGradient id="lemonGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#fff060"/>
<stop offset="100%" style="stop-color:#ffd000"/>
</radialGradient>
</defs>
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="#87CEEB"/>
<!-- Rainbow -->
<path d="M-50 180 Q150 50 350 180" stroke="url(#rainbow)" stroke-width="20" fill="none"/>
<!-- Ground -->
<rect x="0" y="220" width="300" height="80" fill="#90EE90"/>
<!-- Skateboard -->
<rect x="120" y="200" width="80" height="15" rx="5" fill="#4A4A4A"/>
<circle cx="135" cy="215" r="8" fill="#2F2F2F"/>
<circle cx="185" cy="215" r="8" fill="#2F2F2F"/>
<!-- Lemon Body -->
<ellipse cx="160" cy="180" rx="30" ry="25" fill="url(#lemonGrad)"/>
<path d="M160 155 Q180 180 160 205 Q140 180 160 155" fill="#FFE5B4"/>
<!-- Lemon Details -->
<path d="M145 170 Q160 185 175 170" fill="none" stroke="#FFB90F" stroke-width="2"/>
<path d="M145 190 Q160 175 175 190" fill="none" stroke="#FFB90F" stroke-width="2"/>
<!-- Cool Shades -->
<path d="M145 170 H175" stroke="black" stroke-width="3"/>
<rect x="145" y="170" width="12" height="8" rx="2" fill="#000"/>
<rect x="163" y="170" width="12" height="8" rx="2" fill="#000"/>
<!-- Motion Lines -->
<line x1="100" y1="190" x2="80" y2="190" stroke="#666" stroke-width="2"/>
<line x1="95" y1="185" x2="75" y2="185" stroke="#666" stroke-width="2"/>
<line x1="95" y1="195" x2="75" y2="195" stroke="#666" stroke-width="2"/>
<!-- Little Clouds -->
<circle cx="50" cy="80" r="15" fill="white"/>
<circle cx="65" cy="80" r="12" fill="white"/>
<circle cx="40" cy="80" r="10" fill="white"/>
<circle cx="250" cy="60" r="15" fill="white"/>
<circle cx="265" cy="60" r="12" fill="white"/>
<circle cx="240" cy="60" r="10" fill="white"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="rainbow" x1="0" x2="1" y1="0" y2="0">
<stop offset="0%" stop-color="#FF0000"/>
<stop offset="16.67%" stop-color="#FF7F00"/>
<stop offset="33.33%" stop-color="#FFFF00"/>
<stop offset="50%" stop-color="#00FF00"/>
<stop offset="66.67%" stop-color="#0000FF"/>
<stop offset="83.33%" stop-color="#4B0082"/>
<stop offset="100%" stop-color="#9400D3"/>
</linearGradient>
<radialGradient id="lemonGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#FFEB3B"/>
<stop offset="100%" stop-color="#F9A825"/>
</radialGradient>
</defs>
<rect width="300" height="300" fill="#87CEEB"/>
<path d="M50 200 Q150 50 250 200" fill="none" stroke="url(#rainbow)" stroke-width="10"/>
<circle cx="150" cy="210" r="30" fill="url(#lemonGradient)" stroke="#F9A825" stroke-width="3"/>
<ellipse cx="150" cy="190" rx="20" ry="10" fill="#F9A825"/>
<ellipse cx="140" cy="185" rx="3" ry="6" fill="#000000"/>
<ellipse cx="160" cy="185" rx="3" ry="6" fill="#000000"/>
<path d="M120 230 L180 230 L180 240 L120 240 Z" fill="#8B4513"/>
<circle cx="130" cy="240" r="10" fill="#FFD700"/>
<circle cx="170" cy="240" r="10" fill="#FFD700"/>
<line x1="150" y1="210" x2="150" y2="230" stroke="#F9A825" stroke-width="3"/>
</svg>
Judge's Analysis
Player 1's image effectively captures the prompt with a whimsical lemon character wearing sunglasses, adding personality and creativity.
The inclusion of a vibrant rainbow and dynamic motion lines enhances visual appeal and adheres closely to the theme.
In contrast, Player 2's image is simpler and lacks the same level of detail and engagement.
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
"Melting clock on a floating cloud over a desert. Time drips like raindrops"
"Winged piano on a cloud, playing itself as music notes float away"
"Clock face as a pizza with melting cheese and pepperoni numbers"
"Cosmic octopus juggling planets in a starry sky"
"Surreal cityscape made of floating fruit islands"
"A cactus wearing a tiny sombrero under a starry night sky"