Creative Challenge
"An upside-down tree growing into the sky with roots turning into clouds."
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<!-- Sky gradient -->
<linearGradient id="skyGrad" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#1e3c72"/>
<stop offset="100%" stop-color="#2a5298"/>
</linearGradient>
<!-- Cloud soft gradient -->
<radialGradient id="cloudGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ffffff" stop-opacity="0.9"/>
<stop offset="100%" stop-color="#e0e7f1" stop-opacity="0.7"/>
</radialGradient>
<!-- Trunk texture -->
<linearGradient id="woodGrad" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#6b4226"/>
<stop offset="100%" stop-color="#3b2418"/>
</linearGradient>
<!-- Leaf gradient -->
<radialGradient id="leafGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#a8e063"/>
<stop offset="100%" stop-color="#56ab2f"/>
</radialGradient>
<!-- Soft shadow for clouds -->
<filter id="cloudBlur" x="-20%" y="-20%" width="140%" height="140%">
<feGaussianBlur in="SourceGraphic" stdDeviation="4"/>
</filter>
</defs>
<!-- Sky background -->
<rect width="300" height="300" fill="url(#skyGrad)"/>
<!-- Upside-down roots as clouds at top -->
<g filter="url(#cloudBlur)">
<path d="M20,60 c40,-30 80,10 120,-20 c50,-35 90,15 130,-10 c20,15 10,50 -20,60 -30,10 -50,-20 -80,5 -25,20 -60,0 -90,15 -25,10 -50,-15 -60,-30Z"
fill="url(#cloudGrad)"/>
<path d="M50,90 c30,-25 70,5 100,-15 c40,-25 75,10 115,-5 c15,10 5,30 -15,35 -25,5 -40,-15 -65,3 -20,15 -50,-5 -75,10 -20,10 -40,-10 -50,-20Z"
fill="url(#cloudGrad)"/>
</g>
<!-- Trunk growing downward -->
<path d="M150,60
c-5,50 -10,100 -12,150
c2,5 3,8 12,8
c9,0 10,-3 12,-8
c-2,-50 -7,-100 -12,-150Z"
fill="url(#woodGrad)"/>
<!-- Branches and leaves at bottom -->
<g>
<!-- Branch structure -->
<path d="M150,260
c-30,-30 -50,-70 -55,-110
c20,15 40,30 55,55
M150,260
c30,-30 50,-70 55,-110
c-20,15 -40,30 -55,55"
stroke="#3b2418" stroke-width="4" fill="none" stroke-linecap="round"/>
<!-- Leaves clusters -->
<circle cx="95" cy="170" r="15" fill="url(#leafGrad)"/>
<circle cx="120" cy="150" r="12" fill="url(#leafGrad)"/>
<circle cx="140" cy="175" r="18" fill="url(#leafGrad)"/>
<circle cx="160" cy="155" r="14" fill="url(#leafGrad)"/>
<circle cx="190" cy="180" r="20" fill="url(#leafGrad)"/>
<circle cx="180" cy="200" r="16" fill="url(#leafGrad)"/>
<circle cx="130" cy="200" r="14" fill="url(#leafGrad)"/>
<circle cx="170" cy="230" r="18" fill="url(#leafGrad)"/>
<circle cx="110" cy="230" r="16" fill="url(#leafGrad)"/>
</g>
<!-- Subtle stars around -->
<g fill="#fff" opacity="0.3">
<circle cx="30" cy="30" r="1.5"/>
<circle cx="60" cy="25" r="1"/>
<circle cx="250" cy="40" r="1.2"/>
<circle cx="280" cy="70" r="1.4"/>
<circle cx="220" cy="90" r="1"/>
<circle cx="180" cy="20" r="1.3"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Sky background with gradient -->
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#1a4377;stop-opacity:1" />
<stop offset="100%" style="stop-color:#0d47a1;stop-opacity:1" />
</linearGradient>
<!-- Trunk texture -->
<linearGradient id="trunkGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#4a3728;stop-opacity:1" />
<stop offset="100%" style="stop-color:#2f231a;stop-opacity:1" />
</linearGradient>
<!-- Leaf/cloud colors -->
<linearGradient id="leafGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#e8f5e9;stop-opacity:1" />
<stop offset="100%" style="stop-color:#b3efb5;stop-opacity:1" />
</linearGradient>
<!-- Root texture -->
<linearGradient id="rootGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#4a3728;stop-opacity:1" />
<stop offset="100%" style="stop-color:#9e9e9e;stop-opacity:1" />
</linearGradient>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#skyGradient)"/>
<!-- Tree trunk -->
<rect x="140" y="50" width="20" height="60" rx="10" fill="url(#trunkGradient)"/>
<!-- Tree branches/roots -->
<path d="M150,50 Q170,70 160,100 L180,130 Q190,150 170,180 Q150,180 130,150 L120,130 Q110,110 130,70 Q150,50 150,50" fill="url(#rootGradient)"/>
<!-- Cloud-leaves -->
<circle cx="150" cy="280" r="60" fill="url(#leafGradient)" opacity="0.8"/>
<circle cx="100" cy="260" r="30" fill="url(#leafGradient)" opacity="0.6"/>
<circle cx="200" cy="240" r="40" fill="url(#leafGradient)" opacity="0.6"/>
<circle cx="150" cy="300" r="20" fill="url(#leafGradient)" opacity="0.4"/>
<!-- Ground roots -->
<path d="M150,50 Q140,60 130,70 Q120,80 140,90 Q130,100 140,110" stroke="#9e9e9e" stroke-width="2" fill="none"/>
<path d="M150,50 Q160,60 170,70 Q180,80 160,90 Q170,100 150,110" stroke="#9e9e9e" stroke-width="2" fill="none"/>
<!-- Stars -->
<circle cx="50" cy="20" r="1" fill="white"/>
<circle cx="80" cy="30" r="1" fill="white"/>
<circle cx="110" cy="25" r="1" fill="white"/>
<circle cx="130" cy="35" r="1" fill="white"/>
<circle cx="160" cy="22" r="1" fill="white"/>
<circle cx="190" cy="28" r="1" fill="white"/>
<circle cx="220" cy="32" r="1" fill="white"/>
<circle cx="240" cy="25" r="1" fill="white"/>
<circle cx="270" cy="30" r="1" fill="white"/>
</svg>
Judge's Analysis
Player 1's image better represents the prompt with a clear depiction of an upside-down tree, including a trunk, branches, and green foliage that transitions into clouds.
The composition is more defined and visually appealing compared to Player 2’s submission, which lacks clear tree-like elements and has a more abstract interpretation of the concept.
Player 1 demonstrates stronger adherence to the prompt and technical clarity.
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
"Moonlit tree with glowing lanterns hanging from its branches."
"A snail racing a cheetah on a rainbow road."
"An owl wearing a spacesuit landing on a cheese moon."
"An astronaut pouring tea on the moon with zero-gravity tea drops floating around."