Creative Challenge
"A floating house tethered to a giant balloon over a surreal checkerboard landscape."
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="skyGrad" cx="50%" cy="0%" r="100%" fx="50%" fy="0%">
<stop offset="0%" stop-color="#ffe87c"/>
<stop offset="60%" stop-color="#ff7eb9"/>
<stop offset="100%" stop-color="#7bcfff"/>
</radialGradient>
<linearGradient id="wallGrad" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#ffe0a3"/>
<stop offset="100%" stop-color="#ffb347"/>
</linearGradient>
<linearGradient id="roofGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ff6f61"/>
<stop offset="100%" stop-color="#d7263d"/>
</linearGradient>
<radialGradient id="balloonGrad" cx="50%" cy="50%" r="50%" fx="45%" fy="45%">
<stop offset="0%" stop-color="#ffdd57"/>
<stop offset="50%" stop-color="#ff4b6e"/>
<stop offset="100%" stop-color="#7e57c2"/>
</radialGradient>
<pattern id="checker" width="40" height="40" patternUnits="userSpaceOnUse">
<rect width="20" height="20" fill="#ff66cc"/>
<rect x="20" y="20" width="20" height="20" fill="#ff66cc"/>
<rect x="20" y="0" width="20" height="20" fill="#6633ff"/>
<rect x="0" y="20" width="20" height="20" fill="#6633ff"/>
</pattern>
<filter id="shadow" x="-50%" y="-50%" width="200%" height="200%">
<feDropShadow dx="2" dy="4" stdDeviation="3" flood-color="#000" flood-opacity="0.5"/>
</filter>
</defs>
<!-- Sky -->
<rect width="300" height="300" fill="url(#skyGrad)"/>
<!-- Checkerboard ground -->
<polygon points="50,150 250,150 300,300 0,300" fill="url(#checker)"/>
<!-- Floating House -->
<g filter="url(#shadow)">
<rect x="120" y="160" width="60" height="40" fill="url(#wallGrad)" stroke="#333" stroke-width="1"/>
<polygon points="120,160 150,130 180,160" fill="url(#roofGrad)" stroke="#333" stroke-width="1"/>
<rect x="135" y="170" width="10" height="10" fill="#fff" stroke="#333" stroke-width="1"/>
<rect x="155" y="170" width="10" height="10" fill="#fff" stroke="#333" stroke-width="1"/>
</g>
<!-- Tether Rope -->
<path d="M150,130 C140,110 160,110 155,90 C150,70 160,70 150,120"
fill="none" stroke="#8b4513" stroke-width="2" stroke-linecap="round"/>
<!-- Giant Balloon -->
<ellipse cx="150" cy="60" rx="50" ry="60" fill="url(#balloonGrad)" stroke="#d7263d" stroke-width="2"/>
<ellipse cx="140" cy="50" rx="15" ry="8" fill="#fff" fill-opacity="0.7"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#87CEEB"/>
<stop offset="100%" stop-color="#483D8B"/>
</linearGradient>
<radialGradient id="balloonGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#FF5F6D" />
<stop offset="100%" stop-color="#FFC371" />
</radialGradient>
<linearGradient id="houseBodyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#FDEBD0"/>
<stop offset="100%" stop-color="#FAD7A0"/>
</linearGradient>
<linearGradient id="roofGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#3498DB"/>
<stop offset="100%" stop-color="#9B59B6"/>
</linearGradient>
<pattern id="checkerboard" width="60" height="60" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="30" height="30" fill="#9b59b6" />
<rect x="30" y="30" width="30" height="30" fill="#9b59b6" />
<rect x="30" y="0" width="30" height="30" fill="#f1c40f" />
<rect x="0" y="30" width="30" height="30" fill="#f1c40f" />
</pattern>
</defs>
<!-- Sky Background -->
<rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />
<!-- Surreal Checkerboard Landscape -->
<rect x="0" y="240" width="300" height="60" fill="url(#checkerboard)" />
<!-- Giant Balloon -->
<circle cx="150" cy="40" r="50" fill="url(#balloonGradient)" stroke="black" stroke-width="2" />
<!-- Subtle balloon highlight -->
<circle cx="130" cy="30" r="8" fill="white" opacity="0.5" />
<!-- Tether (Rope) -->
<path d="M150,90 Q150,125 150,160" stroke="saddlebrown" stroke-width="2" fill="none" stroke-dasharray="4,3" />
<!-- Floating House -->
<g id="house">
<!-- Roof -->
<polygon points="120,180 150,160 180,180" fill="url(#roofGradient)" stroke="black" stroke-width="1" />
<!-- House Body -->
<rect x="120" y="180" width="60" height="30" fill="url(#houseBodyGradient)" stroke="black" stroke-width="1" />
<!-- Windows -->
<rect x="132" y="190" width="12" height="12" fill="white" stroke="black" stroke-width="0.5" />
<rect x="156" y="190" width="12" height="12" fill="white" stroke="black" stroke-width="0.5" />
</g>
</svg>
Judge's Analysis
Player 1's submission demonstrates superior creativity and visual appeal with a vibrant gradient sky and a surreal checkerboard pattern that enhances the whimsical theme of the floating house.
The warm glow on the balloon adds depth, creating a more dynamic and engaging composition compared to Player 2's simpler approach.
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 wearing a crown juggling teacups underwater."
"An astronaut roasting marshmallows over a campfire on the Moon."
"A snail racing a rocket on a winding rainbow road."