Creative Challenge
"Surreal sun wearing sunglasses, playing hopscotch on a rainbow"
<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300" viewBox="0 0 300 300">
<title>Surreal Sun on Rainbow Hopscotch</title>
<!-- Background with gradient -->
<rect width="300" height="300" fill="url(#backgroundGradient)" />
<!-- Rainbow path -->
<path id="rainbowPath" d="M50,200 C150,200 250,200 300,300 C250,400 150,400 50,300 C50,250 150,200 250,200">
<animate attributeName="d" from="M50,200 C150,200 250,200 300,300 C250,400 150,400 50,300 C50,250 150,200 250,200" to="M50,200 C150,200 250,200 300,300 C250,400 150,400 50,300 C50,250 150,200 250,200" dur="10s" repeatCount="indefinite" />
</path>
<!-- Rainbow squares -->
<rect x="50" y="200" width="50" height="50" fill="#FF0000" />
<rect x="100" y="200" width="50" height="50" fill="#FFA500" />
<rect x="150" y="200" width="50" height="50" fill="#FFFF00" />
<rect x="200" y="200" width="50" height="50" fill="#008000" />
<rect x="250" y="200" width="50" height="50" fill="#0000FF" />
<rect x="300" y="200" width="50" height="50" fill="#4B0082" />
<!-- Sun with sunglasses -->
<g transform="translate(150, 150)">
<!-- Sunglasses frame -->
<path d="M-50,0 Q 0,-25 50,0 Q 25,-25 -25,-25 Q -50,0 -50, -25 Q -25,-50 25,-50 Q 50,-25 50,0" fill="#333" stroke="#000" stroke-width="2" />
<!-- Sunglasses lens gradient -->
<ellipse cx="0" cy="-25" rx="25" ry="15" fill="url(#lensGradient)" stroke="#666" stroke-width="1" />
<ellipse cx="0" cy="-25" rx="25" ry="15" fill="url(#lensGradient)" stroke="#666" stroke-width="1" />
<!-- Sun rays -->
<g transform="rotate(45)">
<path d="M0,0 L50,50" stroke="#FFD700" stroke-width="4" />
<path d="M0,0 L-50,-50" stroke="#FFD700" stroke-width="4" />
<path d="M0,0 L-50,50" stroke="#FFD700" stroke-width="4" />
<path d="M0,0 L50,-50" stroke="#FFD700" stroke-width="4" />
<path d="M0,0 L0,50" stroke="#FFD700" stroke-width="4" />
<path d="M0,0 L0,-50" stroke="#FFD700" stroke-width="4" />
<path d="M0,0 L50,0" stroke="#FFD700" stroke-width="4" />
<path d="M0,0 L-50,0" stroke="#FFD700" stroke-width="4" />
</g>
</g>
<!-- Gradient definitions -->
<defs>
<linearGradient id="backgroundGradient" x1="0" y1="0" x2="300" y2="300" gradientUnits="userSpaceOnUse">
<stop offset="0%" color="#87CEEB" />
<stop offset="100%" color="#4B0082" />
</linearGradient>
<radialGradient id="lensGradient" cx="0" cy="-25" rx="25" ry="15" fx="0" fy="-25" gradientUnits="userSpaceOnUse">
<stop offset="0%" color="#FFFFFF" />
<stop offset="100%" color="#AAAAAA" />
</radialGradient>
</defs>
<!-- Stars -->
<g transform="translate(150,150) rotate(45)">
<path d="M0,0 L50,50 L100,0 L50,50 L50,-50 L0,0 Z" fill="white" opacity="0.5" />
<path d="M0,0 L-50,50 L-100,0 L-50,-50 L0,0 Z" fill="white" opacity="0.5" />
<path d="M0,0 L50,-50 L100,0 L50,-50 L0,0 Z" fill="white" opacity="0.5" />
<path d="M0,0 L-50,-50 L-100,0 L-50,50 L0,0 Z" fill="white" opacity="0.5" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="sunGlow" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:yellow"/>
<stop offset="100%" style="stop-color:orange"/>
</radialGradient>
<linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#ff0000"/>
<stop offset="16.6%" style="stop-color:#ff8800"/>
<stop offset="33.2%" style="stop-color:#ffff00"/>
<stop offset="49.8%" style="stop-color:#00ff00"/>
<stop offset="66.4%" style="stop-color:#0000ff"/>
<stop offset="83%" style="stop-color:#4b0082"/>
<stop offset="100%" style="stop-color:#8f00ff"/>
</linearGradient>
</defs>
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="#87CEEB"/>
<!-- Rainbow Hopscotch -->
<path d="M50,250 Q150,100 250,250" stroke="url(#rainbow)" stroke-width="20" fill="none"/>
<!-- Hopscotch squares -->
<rect x="80" y="200" width="30" height="30" fill="white" opacity="0.5" transform="rotate(-15)"/>
<rect x="140" y="160" width="30" height="30" fill="white" opacity="0.5" transform="rotate(-5)"/>
<rect x="190" y="180" width="30" height="30" fill="white" opacity="0.5" transform="rotate(10)"/>
<!-- Sun Body -->
<circle cx="150" cy="120" r="50" fill="url(#sunGlow)">
<animate attributeName="r" values="50;52;50" dur="2s" repeatCount="indefinite"/>
</circle>
<!-- Sun Rays -->
<g transform="translate(150,120)">
<g transform="rotate(0)">
<line x1="60" y1="0" x2="80" y2="0" stroke="orange" stroke-width="4">
<animate attributeName="x2" values="80;85;80" dur="1s" repeatCount="indefinite"/>
</line>
</g>
<g transform="rotate(45)"><line x1="60" y1="0" x2="80" y2="0" stroke="orange" stroke-width="4"/></g>
<g transform="rotate(90)"><line x1="60" y1="0" x2="80" y2="0" stroke="orange" stroke-width="4"/></g>
<g transform="rotate(135)"><line x1="60" y1="0" x2="80" y2="0" stroke="orange" stroke-width="4"/></g>
<g transform="rotate(180)"><line x1="60" y1="0" x2="80" y2="0" stroke="orange" stroke-width="4"/></g>
<g transform="rotate(225)"><line x1="60" y1="0" x2="80" y2="0" stroke="orange" stroke-width="4"/></g>
<g transform="rotate(270)"><line x1="60" y1="0" x2="80" y2="0" stroke="orange" stroke-width="4"/></g>
<g transform="rotate(315)"><line x1="60" y1="0" x2="80" y2="0" stroke="orange" stroke-width="4"/></g>
</g>
<!-- Sunglasses -->
<path d="M120,110 h60" stroke="black" stroke-width="5"/>
<circle cx="130" cy="120" r="15" fill="black"/>
<circle cx="170" cy="120" r="15" fill="black"/>
<!-- Legs -->
<line x1="140" y1="170" x2="130" y2="190" stroke="orange" stroke-width="4">
<animate attributeName="x2" values="130;135;130" dur="0.5s" repeatCount="indefinite"/>
</line>
<line x1="160" y1="170" x2="170" y2="190" stroke="orange" stroke-width="4">
<animate attributeName="x2" values="170;165;170" dur="0.5s" repeatCount="indefinite"/>
</line>
<!-- Clouds -->
<path d="M50,60 q20,-20 40,0 t40,0 t40,0" fill="white" opacity="0.8"/>
<path d="M200,80 q20,-20 40,0 t40,0" fill="white" opacity="0.8"/>
</svg>
Judge's Analysis
Player 2's image is more visually appealing and creative, with a clear depiction of a sun wearing sunglasses playing hopscotch on a rainbow.
The use of color and the addition of clouds enhance the surreal aspect, making it more aligned with the prompt.
Player 1's image, while abstract, lacks the clarity and compositional strength needed to effectively convey the concept.
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
"Surreal cactus with birdhouses as branches and birds wearing tiny hats"
"Rainbow zebra juggling ice-cream cones"
"Cat wearing a pirate hat rowing a leaf boat on a pond"
"A giraffe in a spacesuit floating next to a red umbrella in the cosmos"
"An octopus DJ spinning vinyl under the sea, rays of colorful light emanating from speakers"
"Rainbow flamingo wearing astronaut helmet on a lime green unicycle"