Creative Challenge
"Frog with a top hat riding a unicycle on a rainbow tightrope"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Sky background with animated gradient -->
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="300">
<stop offset="0%" stop-color="#87CEEB" />
<stop offset="100%" stop-color="#4682B4" />
</linearGradient>
<linearGradient id="rainbow" x1="0" y1="0" x2="300" y2="0">
<stop offset="0%" stop-color="#FF0000" />
<stop offset="14.28%" stop-color="#FF7F00" />
<stop offset="28.56%" stop-color="#FFFF00" />
<stop offset="42.84%" stop-color="#00FF00" />
<stop offset="57.12%" stop-color="#00FFFF" />
<stop offset="71.4%" stop-color="#4B0082" />
<stop offset="85.68%" stop-color="#8F00FF" />
<stop offset="100%" stop-color="#FF0000" />
</linearGradient>
<linearGradient id="hatGradient" x1="0" y1="0" x2="0" y2="100">
<stop offset="0%" stop-color="#1A1A1A" />
<stop offset="100%" stop-color="#2A2A2A" />
</linearGradient>
<circle id="wheel" cx="150" cy="150" r="50" fill="none" stroke="#666" stroke-width="2"/>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Rainbow tightrope -->
<rect x="20" y="220" width="260" height="4" fill="url(#rainbow)" />
<!-- Unicycle -->
<circle cx="150" cy="220" r="30" fill="none" stroke="#666" stroke-width="2" />
<circle cx="150" cy="220" r="25" fill="#silver" />
<path d="M140,220 L160,220 L150,210 Z" fill="#333" />
<path d="M140,220 L160,220 L150,230 Z" fill="#333" />
<!-- Frog -->
<path d="M130,180 C140,160 170,160 180,180 C170,200 140,200 130,180" fill="url(#hatGradient)" />
<circle cx="135" cy="175" r="8" fill="#fff" />
<circle cx="135" cy="175" r="4" fill="#000" />
<circle cx="165" cy="175" r="8" fill="#fff" />
<circle cx="165" cy="175" r="4" fill="#000" />
<path d="M150,180 C145,185 155,185 150,190" fill="#000" />
<ellipse cx="150" cy="200" rx="20" ry="10" fill="#90EE90" />
<path d="M140,200 L150,210 L160,200" fill="#90EE90" />
<path d="M140,200 L140,220 L160,220 L160,200" fill="#90EE90" />
<path d="M145,215 L155,215 L155,220 L145,220" fill="#90EE90" />
<path d="M145,218 L155,218" stroke="#000" stroke-width="1" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background Gradient Sky -->
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="300">
<stop offset="0%" stop-color="#a1c4fd"/>
<stop offset="100%" stop-color="#c2e9fb"/>
</linearGradient>
<linearGradient id="rainbowGradient" x1="0" y1="150" x2="300" y2="150" gradientUnits="userSpaceOnUse">
<stop offset="0%" stop-color="#FF0000"/>
<stop offset="16.6%" stop-color="#FF7F00"/>
<stop offset="33.3%" stop-color="#FFFF00"/>
<stop offset="50%" stop-color="#00FF00"/>
<stop offset="66.6%" stop-color="#0000FF"/>
<stop offset="83.3%" stop-color="#4B0082"/>
<stop offset="100%" stop-color="#8B00FF"/>
</linearGradient>
<radialGradient id="hatGradient" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#333"/>
<stop offset="100%" stop-color="#000"/>
</radialGradient>
<pattern id="wheelPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="5" cy="5" r="3" fill="#555" />
</pattern>
</defs>
<!-- Sky Background -->
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Rainbow Tightrope -->
<path d="M50,150 Q150,100 250,150" stroke="url(#rainbowGradient)" stroke-width="8" fill="none" />
<!-- Unicycle -->
<g transform="translate(150, 140)">
<!-- Wheel -->
<circle cx="0" cy="0" r="20" fill="url(#wheelPattern)" stroke="#333" stroke-width="2"/>
<!-- Spokes -->
<line x1="0" y1="0" x2="0" y2="-20" stroke="#333" stroke-width="1"/>
<line x1="0" y1="0" x2="17.3" y2="10" stroke="#333" stroke-width="1"/>
<line x1="0" y1="0" x2="-17.3" y2="10" stroke="#333" stroke-width="1"/>
<!-- Frame -->
<line x1="0" y1="0" x2="0" y2="30" stroke="#555" stroke-width="4"/>
<line x1="0" y1="30" x2="15" y2="50" stroke="#555" stroke-width="4"/>
<line x1="0" y1="30" x2="-15" y2="50" stroke="#555" stroke-width="4"/>
<!-- Pedals -->
<circle cx="0" cy="30" r="3" fill="#222"/>
</g>
<!-- Frog Body -->
<g transform="translate(150, 130)">
<!-- Body -->
<ellipse cx="0" cy="0" rx="15" ry="10" fill="green" />
<!-- Eyes -->
<circle cx="-5" cy="-5" r="3" fill="white" />
<circle cx="5" cy="-5" r="3" fill="white" />
<circle cx="-5" cy="-5" r="1" fill="black" />
<circle cx="5" cy="-5" r="1" fill="black" />
<!-- Mouth -->
<path d="M-5,2 Q0,5 5,2" stroke="black" stroke-width="1" fill="none" />
<!-- Top Hat -->
<g transform="translate(0,-10)">
<rect x="-8" y="-15" width="16" height="8" fill="url(#hatGradient)" stroke="#000" stroke-width="1"/>
<rect x="-5" y="-23" width="10" height="8" fill="url(#hatGradient)" stroke="#000" stroke-width="1"/>
<line x1="-5" y1="-15" x2="5" y2="-15" stroke="#000" stroke-width="1"/>
</g>
</g>
<!-- Shadows and Highlights -->
<ellipse cx="150" cy="155" rx="40" ry="5" fill="rgba(0,0,0,0.2)" />
<!-- Decorative Elements -->
<g>
<!-- Stars -->
<polygon points="280,20 282,25 287,25 283,29 285,34 280,31 275,34 277,29 273,25 278,25" fill="#FFD700" />
<polygon points="20,80 22,85 27,85 23,89 25,94 20,91 15,94 17,89 13,85 18,85" fill="#FFD700" />
<!-- Fireflies -->
<circle cx="60" cy="60" r="2" fill="#fff" opacity="0.7">
<animate attributeName="opacity" values="0.7;1;0.7" dur="1.5s" repeatCount="indefinite" />
</circle>
<circle cx="240" cy="230" r="2" fill="#fff" opacity="0.7">
<animate attributeName="opacity" values="0.7;1;0.7" dur="1s" repeatCount="indefinite" />
</circle>
</g>
</svg>
Judge's Analysis
Player 2's submission is more creative and adheres closely to the prompt by incorporating all elements: a frog, top hat, unicycle, and rainbow tightrope.
The composition is visually appealing with a colorful rainbow and starry background, adding a whimsical touch.
Player 1's image lacks some elements and is less visually dynamic, making Player 2's artwork the stronger choice.
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 flying cat wearing a UFO as a hat, hovering above candy mountains"
"Umbrella growing from a teacup"
"A neon jellyfish orbiting a giant silver apple under a starry sky"
"Flying fish with balloon wings over a cityscape"
"Astronaut penguin juggling planets in space"
"Surreal clock with melting numbers and flying teacup"