Creative Challenge
"Treehouse village in a giant mushroom forest at sunset."
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Define gradients for sunset and mushroom caps -->
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#ff9a9e"/>
<stop offset="100%" stop-color="#fad0c4"/>
</linearGradient>
<linearGradient id="mushroomCapGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#ff6f61"/>
<stop offset="100%" stop-color="#d95550"/>
</linearGradient>
<linearGradient id="treeTrunkGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#8b5a2b"/>
<stop offset="100%" stop-color="#4e2b1f"/>
</linearGradient>
<radialGradient id="windowGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#ffffaa"/>
<stop offset="100%" stop-color="#ffd700"/>
</radialGradient>
</defs>
<!-- Sky background -->
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Sun setting behind mushrooms -->
<circle cx="150" cy="80" r="50" fill="#ffd700" opacity="0.5"/>
<!-- Large mushroom trees -->
<!-- Mushroom 1 -->
<g id="mushroom1" transform="translate(60,150)">
<!-- Cap -->
<ellipse cx="0" cy="0" rx="50" ry="30" fill="url(#mushroomCapGradient)" stroke="#d0453f" stroke-width="2"/>
<!-- Stem -->
<rect x="-10" y="30" width="20" height="60" fill="url(#treeTrunkGradient)" rx="5"/>
<!-- Windows (treehouses) -->
<circle cx="0" cy="40" r="8" fill="url(#windowGradient)" stroke="#aa8800" stroke-width="1"/>
</g>
<!-- Mushroom 2 -->
<g id="mushroom2" transform="translate(210,140)">
<ellipse cx="0" cy="0" rx="40" ry="20" fill="url(#mushroomCapGradient)" stroke="#d0453f" stroke-width="2"/>
<rect x="-8" y="20" width="16" height="40" fill="url(#treeTrunkGradient)" rx="4"/>
<circle cx="0" cy="30" r="6" fill="url(#windowGradient)" stroke="#aa8800" stroke-width="1"/>
</g>
<!-- Smaller mushrooms -->
<g id="smallMushroom1" transform="translate(110,220)">
<ellipse cx="0" cy="0" rx="20" ry="10" fill="url(#mushroomCapGradient)" stroke="#d0453f" stroke-width="1"/>
<rect x="-4" y="10" width="8" height="20" fill="url(#treeTrunkGradient)" rx="2"/>
<circle cx="0" cy="15" r="3" fill="url(#windowGradient)" stroke="#aa8800" stroke-width="0.5"/>
</g>
<g id="smallMushroom2" transform="translate(240,200)">
<ellipse cx="0" cy="0" rx="18" ry="9" fill="url(#mushroomCapGradient)" stroke="#d0453f" stroke-width="1"/>
<rect x="-3" y="9" width="6" height="18" fill="url(#treeTrunkGradient)" rx="2"/>
<circle cx="0" cy="13" r="2.5" fill="url(#windowGradient)" stroke="#aa8800" stroke-width="0.5"/>
</g>
<!-- Treehouses in mushroom caps -->
<!-- On mushroom 1 -->
<g transform="translate(60,150)">
<circle cx="0" cy="-20" r="5" fill="#9be7ff" stroke="#5599aa" stroke-width="0.5"/>
<!-- Rope ladder leading up to treehouse -->
<line x1="0" y1="-15" x2="0" y2="-30" stroke="#7b4f3d" stroke-width="1" stroke-dasharray="2,2"/>
<rect x="-3" y="-30" width="6" height="3" fill="#736b58"/>
</g>
<!-- On mushroom 2 -->
<g transform="translate(210,140)">
<circle cx="0" cy="-15" r="4" fill="#f3d17a" stroke="#8b6f3b" stroke-width="0.5"/>
<line x1="0" y1="-12" x2="0" y2="-25" stroke="#7b4f3d" stroke-width="1" stroke-dasharray="2,2"/>
<rect x="-2.5" y="-25" width="5" height="2.5" fill="#735b4f"/>
</g>
<!-- Pathways connecting mushroom houses (dashed lines) -->
<line x1="60" y1="150" x2="210" y2="140" stroke="#dda0dd" stroke-width="1.5" stroke-dasharray="4,2"/>
<line x1="60" y1="150" x2="110" y2="220" stroke="#dda0dd" stroke-width="1.5" stroke-dasharray="4,2"/>
<line x1="210" y1="140" x2="240" y2="200" stroke="#dda0dd" stroke-width="1.5" stroke-dasharray="4,2"/>
<!-- Additional foliage in the background -->
<circle cx="50" cy="250" r="20" fill="#66bb66" opacity="0.4"/>
<circle cx="250" cy="240" r="30" fill="#66cc66" opacity="0.4"/>
<circle cx="80" cy="260" r="15" fill="#55aa55" opacity="0.3"/>
<circle cx="220" cy="260" r="10" fill="#77cc77" opacity="0.3"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<radialGradient id="skyGrad" cx="50%" cy="30%" r="80%">
<stop offset="0%" stop-color="#ffcc80"/>
<stop offset="50%" stop-color="#ff8a65"/>
<stop offset="100%" stop-color="#6a1b9a"/>
</radialGradient>
<linearGradient id="capGrad" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#e91e63"/>
<stop offset="100%" stop-color="#ad1457"/>
</linearGradient>
<pattern id="woodPattern" width="10" height="10" patternUnits="userSpaceOnUse" patternTransform="rotate(45)">
<rect width="10" height="10" fill="#8d6e63"/>
<path d="M0,0 L10,10 M10,0 L0,10" stroke="#795548" stroke-width="1"/>
</pattern>
<filter id="glow" x="-20%" y="-20%" width="140%" height="140%">
<feGaussianBlur stdDeviation="3" result="blur"/>
<feMerge>
<feMergeNode in="blur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Sky -->
<rect width="300" height="300" fill="url(#skyGrad)"/>
<!-- Giant Mushrooms -->
<g id="mushroom" transform="translate(150,200)">
<ellipse cx="0" cy="0" rx="120" ry="40" fill="url(#capGrad)"/>
<ellipse cx="0" cy="-10" rx="120" ry="40" fill="url(#capGrad)" opacity="0.9"/>
<path d="M-100,0 Q0,80 100,0 Z" fill="#fff" opacity="0.1"/>
<rect x="-20" y="0" width="40" height="100" fill="url(#woodPattern)"/>
<!-- Spots -->
<circle cx="-60" cy="-20" r="12" fill="#fff" opacity="0.8"/>
<circle cx="20" cy="-30" r="8" fill="#fff" opacity="0.8"/>
<circle cx="70" cy="-15" r="15" fill="#fff" opacity="0.8"/>
</g>
<!-- Smaller Mushrooms with Treehouses -->
<g filter="url(#glow)">
<!-- Left cluster -->
<g transform="translate(60,240)">
<ellipse cx="0" cy="0" rx="50" ry="20" fill="url(#capGrad)"/>
<rect x="-10" y="0" width="20" height="60" fill="url(#woodPattern)"/>
<polygon points="0,10 15,40 -15,40" fill="#6d4c41"/>
<rect x="-5" y="20" width="10" height="10" fill="#ffe082"/>
</g>
<!-- Right cluster -->
<g transform="translate(240,260) scale(0.8)">
<ellipse cx="0" cy="0" rx="40" ry="15" fill="url(#capGrad)"/>
<rect x="-8" y="0" width="16" height="50" fill="url(#woodPattern)"/>
<polygon points="0,8 12,32 -12,32" fill="#6d4c41"/>
<rect x="-4" y="18" width="8" height="8" fill="#ffe082"/>
</g>
</g>
<!-- Rope Bridge -->
<path d="M80,230 C140,180 160,180 220,230" stroke="#8d6e63" stroke-width="3" fill="none"/>
<path d="M80,235 C140,185 160,185 220,235" stroke="#8d6e63" stroke-width="3" fill="none"/>
<g stroke="#6d4c41" stroke-width="2">
<line x1="110" y1="211" x2="110" y2="226"/>
<line x1="140" y1="205" x2="140" y2="221"/>
<line x1="170" y1="200" x2="170" y2="217"/>
<line x1="200" y1="206" x2="200" y2="224"/>
</g>
<!-- Glowing windows on giant mushroom house -->
<circle cx="150" cy="150" r="12" fill="#ffe082" filter="url(#glow)"/>
<rect x="135" y="170" width="30" height="20" fill="#ffe082" opacity="0.9" filter="url(#glow)"/>
<!-- Foreground detail: grass tufts -->
<g fill="#66bb6a">
<path d="M10,280 q5,-20 10,0 z"/>
<path d="M30,290 q5,-15 10,0 z"/>
<path d="M260,280 q5,-18 10,0 z"/>
<path d="M280,295 q5,-12 10,0 z"/>
</g>
</svg>
Judge's Analysis
Player 2's image demonstrates stronger creativity and visual appeal with a vibrant sunset gradient and detailed mushroom village scene.
The structures and bridges show a higher level of technical execution and adherence to the prompt compared to Player 1's simpler and less immersive depiction.
Player 2's composition feels more dynamic and engaging.
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 snail racing a comet in outer space."
"An octopus wearing a top hat, playing a violin under the moonlight."
"Half-sunken pirate ship caught in a glowing bioluminescent whirlpool at night."
"A snail racing against a rocket on a checkered finish line."