Creative Challenge
"Frog in a suit riding a unicycle on 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:red"/>
<stop offset="16.6%" style="stop-color:orange"/>
<stop offset="33.3%" style="stop-color:yellow"/>
<stop offset="50%" style="stop-color:green"/>
<stop offset="66.6%" style="stop-color:blue"/>
<stop offset="83.3%" style="stop-color:indigo"/>
<stop offset="100%" style="stop-color:violet"/>
</linearGradient>
<radialGradient id="frogSkin">
<stop offset="0%" stop-color="#90EE90"/>
<stop offset="100%" stop-color="#228B22"/>
</radialGradient>
</defs>
<!-- Rainbow Path -->
<path d="M50,200 Q150,100 250,200" stroke="url(#rainbow)" stroke-width="20" fill="none"/>
<!-- Unicycle -->
<circle cx="150" cy="200" r="20" fill="none" stroke="#333" stroke-width="3"/>
<line x1="150" y1="180" x2="150" y2="140" stroke="#333" stroke-width="3"/>
<circle cx="150" cy="200" r="3" fill="#333"/>
<!-- Frog Body -->
<ellipse cx="150" cy="130" rx="25" ry="30" fill="url(#frogSkin)"/>
<!-- Suit -->
<path d="M130,120 v30 h40 v-30" fill="#1a1a1a"/>
<rect x="145" y="120" width="10" height="30" fill="white"/>
<circle cx="150" cy="125" r="2" fill="gold"/> <!-- Tie Pin -->
<!-- Eyes -->
<circle cx="140" cy="110" r="8" fill="white"/>
<circle cx="160" cy="110" r="8" fill="white"/>
<circle cx="140" cy="110" r="4" fill="black"/>
<circle cx="160" cy="110" r="4" fill="black"/>
<!-- Hands -->
<circle cx="125" cy="140" r="8" fill="url(#frogSkin)"/>
<circle cx="175" cy="140" r="8" fill="url(#frogSkin)"/>
<!-- Bow Tie -->
<path d="M145,120 l5,-5 l5,5 l-5,5 z" fill="red"/>
<!-- Legs -->
<path d="M135,160 Q130,180 150,180" fill="none" stroke="url(#frogSkin)" stroke-width="5"/>
<path d="M165,160 Q170,180 150,180" fill="none" stroke="url(#frogSkin)" stroke-width="5"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Definitions for gradients and patterns -->
<defs>
<linearGradient id="rainbowGradient" x1="0%" y1="100%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#FF0000;stop-opacity:1" />
<stop offset="17%" style="stop-color:#FF7F00;stop-opacity:1" />
<stop offset="34%" style="stop-color:#FFFF00;stop-opacity:1" />
<stop offset="51%" style="stop-color:#00FF00;stop-opacity:1" />
<stop offset="68%" style="stop-color:#0000FF;stop-opacity:1" />
<stop offset="85%" style="stop-color:#4B0082;stop-opacity:1" />
<stop offset="100%" style="stop-color:#8F00FF;stop-opacity:1" />
</linearGradient>
<radialGradient id="frogGradient" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" style="stop-color:#6AA84F;stop-opacity:1" />
<stop offset="100%" style="stop-color:#38761D;stop-opacity:1" />
</radialGradient>
<linearGradient id="suitGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#333333;stop-opacity:1" />
<stop offset="100%" style="stop-color:#555555;stop-opacity:1" />
</linearGradient>
<linearGradient id="wheelGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#555555;stop-opacity:1" />
<stop offset="100%" style="stop-color:#222222;stop-opacity:1" />
</linearGradient>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="#E0F7FA" />
<!-- Rainbow -->
<g transform="translate(150, 250)">
<path d="M0,0 a150,150 0 0,1 0,-200" fill="none" stroke="url(#rainbowGradient)" stroke-width="20" />
<path d="M0,0 a130,130 0 0,1 0,-170" fill="none" stroke="url(#rainbowGradient)" stroke-width="15" />
<path d="M0,0 a110,110 0 0,1 0,-140" fill="none" stroke="url(#rainbowGradient)" stroke-width="10" />
</g>
<!-- Unicycle Wheel -->
<circle cx="150" cy="200" r="40" fill="url(#wheelGradient)" stroke="#000" stroke-width="2" />
<line x1="150" y1="200" x2="170" y2="180" stroke="#000" stroke-width="2" />
<line x1="150" y1="200" x2="130" y2="180" stroke="#000" stroke-width="2" />
<circle cx="150" cy="200" r="5" fill="#000" />
<!-- Unicycle Frame -->
<line x1="150" y1="200" x2="150" y2="150" stroke="#555" stroke-width="4" />
<path d="M150,150 L170,160" stroke="#555" stroke-width="4" />
<path d="M150,150 L130,160" stroke="#555" stroke-width="4" />
<!-- Frog Body -->
<g transform="translate(150,150)">
<!-- Legs -->
<ellipse cx="-10" cy="30" rx="6" ry="12" fill="url(#frogGradient)" />
<ellipse cx="10" cy="30" rx="6" ry="12" fill="url(#frogGradient)" />
<!-- Body -->
<circle cx="0" cy="0" r="20" fill="url(#frogGradient)" stroke="#000" stroke-width="2" />
<!-- Eyes -->
<circle cx="-7" cy="-5" r="5" fill="#fff" />
<circle cx="7" cy="-5" r="5" fill="#fff" />
<circle cx="-7" cy="-5" r="2" fill="#000" />
<circle cx="7" cy="-5" r="2" fill="#000" />
<!-- Suit -->
<rect x="-15" y="5" width="30" height="20" fill="url(#suitGradient)" stroke="#000" stroke-width="1" />
<line x1="0" y1="5" x2="0" y2="25" stroke="#000" stroke-width="1" />
<!-- Tie -->
<polygon points="0,25 5,35 -5,35" fill="#FF0000" />
</g>
<!-- Unicycle Pedal -->
<line x1="150" y1="200" x2="160" y2="210" stroke="#555" stroke-width="4" />
<circle cx="160" cy="210" r="3" fill="#555" />
<!-- Shadow -->
<ellipse cx="150" cy="240" rx="50" ry="5" fill="rgba(0,0,0,0.1)" />
</svg>
Judge's Analysis
Player 1's submission features a clear depiction of a frog in a suit riding a unicycle on a rainbow, fulfilling the prompt effectively.
The use of bright colors and a simple design enhances the whimsical theme.
In comparison, Player 2's composition is less clear in its representation of a unicycle and the rainbow element, making Player 1's submission more aligned with 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
"A dragon made of clouds floating above a calm sea"
"Swirling ice cream cone galaxy, stars as sprinkles"
"An octopus juggling planets under a disco ball"
"Penguins at a disco dance-off with mirrored sunglasses"
"Octopus conducting a symphony of glowing fish under a moonlit sea"
"Bioluminescent jellyfish skydiving over a city at night"