Creative Challenge
"Floating umbrella-trees with glowing fruit under a starlit sky"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Starlit sky background -->
<rect width="300" height="300" fill="navy" />
<!-- Stars -->
<circle cx="30" cy="50" r="2" fill="white" />
<circle cx="80" cy="20" r="2" fill="white" />
<circle cx="150" cy="70" r="2" fill="white" />
<circle cx="200" cy="40" r="2" fill="white" />
<circle cx="260" cy="90" r="2" fill="white" />
<!-- Floating umbrella-trees -->
<g transform="translate(150, 200)">
<!-- Umbrella -->
<path fill="darkgreen" d="M0,0 C-20,-20 -40,-20 -60,0 C-30,-50 30,-50 60,0 Z" />
<!-- Tree trunk -->
<rect x="-10" y="0" width="20" height="70" fill="brown" />
<!-- Glowing fruit -->
<circle cx="-30" cy="-15" r="8" fill="yellow" opacity="0.8">
<animate attributeName="r" values="8;12;8" dur="2s" repeatCount="indefinite" />
<animate attributeName="opacity" values="0.8;1;0.8" dur="2s" repeatCount="indefinite" />
</circle>
<circle cx="30" cy="-10" r="6" fill="orange" opacity="0.7">
<animate attributeName="r" values="6;10;6" dur="1.5s" repeatCount="indefinite" />
<animate attributeName="opacity" values="0.7;1;0.7" dur="1.5s" repeatCount="indefinite" />
</circle>
<circle cx="0" cy="-40" r="10" fill="red" opacity="0.9">
<animate attributeName="r" values="10;15;10" dur="2.3s" repeatCount="indefinite" />
<animate attributeName="opacity" values="0.9;1;0.9" dur="2.3s" repeatCount="indefinite" />
</circle>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="starGlow" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:rgba(255, 255, 255, 0.8);" />
<stop offset="100%" style="stop-color:rgba(255, 255, 255, 0);" />
</radialGradient>
<radialGradient id="fruitGlow" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:rgba(255, 200, 0, 0.9);" />
<stop offset="100%" style="stop-color:rgba(255, 175, 0, 0);" />
</radialGradient>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:rgb(10, 20, 50);" />
<stop offset="100%" style="stop-color:rgb(2, 2, 30);" />
</linearGradient>
</defs>
<rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />
<g id="stars">
<circle cx="30" cy="50" r="2" fill="url(#starGlow)" />
<circle cx="120" cy="80" r="1.5" fill="url(#starGlow)" />
<circle cx="200" cy="20" r="2" fill="url(#starGlow)" />
<circle cx="250" cy="150" r="1.5" fill="url(#starGlow)" />
<circle cx="270" cy="30" r="1.5" fill="url(#starGlow)" />
<circle cx="60" cy="200" r="2" fill="url(#starGlow)" />
</g>
<g id="umbrellaTree1" transform="translate(65, 180)">
<path d="M0,0 C-30,-50 -50,-60 -100,-40 C-50,-80 -50,-120 0,-140
C50,-120 50,-80 100,-40 C50,-60 30,-50 0,0 Z" fill="lightgreen"/>
<circle cx="0" cy="-90" r="10" fill="url(#fruitGlow)" />
<circle cx="40" cy="-60" r="8" fill="url(#fruitGlow)" />
<circle cx="-40" cy="-60" r="8" fill="url(#fruitGlow)" />
<circle cx="0" cy="0" r="6" fill="saddlebrown" />
</g>
<g id="umbrellaTree2" transform="translate(205, 150)">
<path d="M0,0 C-20,-40 -30,-50 -80,-30 C-40,-60 -40,-100 0,-110
C40,-100 40,-60 80,-30 C40,-50 20,-40 0,0 Z" fill="darkgreen"/>
<circle cx="0" cy="-75" r="8" fill="url(#fruitGlow)" />
<circle cx="30" cy="-50" r="6" fill="url(#fruitGlow)" />
<circle cx="-30" cy="-50" r="6" fill="url(#fruitGlow)" />
<circle cx="0" cy="0" r="4" fill="saddlebrown" />
</g>
<g id="umbrellaTree3" transform="translate(150, 250)">
<path d="M0,0 C-15,-30 -25,-35 -60,-20 C-30,-45 -30,-70 0,-80
C30,-70 30,-45 60,-20 C30,-35 15,-30 0,0 Z" fill="forestgreen"/>
<circle cx="0" cy="-55" r="6" fill="url(#fruitGlow)" />
<circle cx="20" cy="-40" r="4.5" fill="url(#fruitGlow)" />
<circle cx="-20" cy="-40" r="4.5" fill="url(#fruitGlow)" />
<circle cx="0" cy="0" r="3" fill="saddlebrown" />
</g>
</svg>
Judge's Analysis
Player 2's submission creatively interprets the floating umbrella-trees with a more dynamic composition and includes multiple trees with glowing fruits under a subtle starlit sky, enhancing the ethereal concept.
The use of gradients and softer colors adds depth and visual appeal, aligning well with the prompt.
Player 1's image, while clear in its depiction, lacks the same level of creativity and complexity.
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
"Mushroom castle under water with a crown-wearing jellyfish king"
"Flying penguin with rainbow wings over a technicolor iceberg"
"Surrealist bird wearing a raincoat in a thunderstorm"
"Frog astronaut playing guitar on a lily pad in space"
"Frog playing piano under a starry sky"
"Giraffe in a spacesuit floating through a starry sky"