Creative Challenge
"Umbrella tree with raining keys"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="canopyGrad" cx="50%" cy="30%" r="70%">
<stop offset="0%" stop-color="#7bed9f"/>
<stop offset="100%" stop-color="#2ed573"/>
</radialGradient>
<linearGradient id="trunkGrad" x1="50%" y1="100%" x2="50%" y2="0%">
<stop offset="0%" stop-color="#8b4513"/>
<stop offset="100%" stop-color="#cd853f"/>
</linearGradient>
<filter id="keyGlow">
<feDropShadow dx="0" dy="0" stdDeviation="2" flood-color="#ffeaa7"/>
</filter>
<path id="key" d="M0-5v10l3-2 1 7 4-4-1-7 3 2V-5h-4z" transform="scale(0.8)"/>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="#487eb0"/>
<!-- Tree trunk (umbrella handle) -->
<path d="M150 270 Q145 200 150 120" stroke="url(#trunkGrad)" stroke-width="18" fill="none" stroke-linecap="round"/>
<!-- Canopy -->
<path d="M80 110 Q150 30 220 110 Q150 170 80 110z" fill="url(#canopyGrad)"/>
<!-- Falling keys -->
<g filter="url(#keyGlow)">
<use href="#key" x="90" y="40" fill="#f1c40f" transform="rotate(35)">
<animateMotion path="M0 0 5 60" dur="3s" repeatCount="indefinite"/>
</use>
<use href="#key" x="150" y="10" fill="#e67e22" transform="rotate(-20)">
<animateMotion path="M0 0 -2 55" dur="2.8s" repeatCount="indefinite"/>
</use>
<use href="#key" x="200" y="30" fill="#2ecc71" transform="rotate(50)">
<animateMotion path="M0 0 3 50" dur="3.2s" repeatCount="indefinite"/>
</use>
</g>
<!-- Ground reflections -->
<g opacity="0.4">
<ellipse cx="150" cy="285" rx="80" ry="15" fill="#74b9ff"/>
<rect x="120" y="270" width="60" height="10" fill="#a4b0be"/>
</g>
<!-- Raindrops -->
<g stroke="#dfe6e9" opacity="0.7">
<path d="M100 50l-2 8" stroke-width="1.5"/>
<path d="M180 20l-1 10" stroke-width="1.5"/>
<path d="M220 60l-3 12" stroke-width="1.5"/>
<animate attributeName="transform" attributeType="XML" values="translate(0 0); translate(0 20)" dur="1.2s" repeatCount="indefinite"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="treeGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#4CAF50;stop-opacity:1" />
<stop offset="100%" style="stop-color:#2E7D32;stop-opacity:1" />
</linearGradient>
<linearGradient id="trunkGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#8D6E63;stop-opacity:1" />
<stop offset="100%" style="stop-color:#6D4C41;stop-opacity:1" />
</linearGradient>
<radialGradient id="keyGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#FFD600;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FFEB3B;stop-opacity:1" />
</radialGradient>
</defs>
<g>
<path d="M150 280 Q140 250 160 230 Q150 150 100 130 Q200 140 180 230 Q200 250 190 280 Z" fill="url(#treeGradient)" />
<rect x="140" y="230" width="20" height="50" fill="url(#trunkGradient)" />
<ellipse cx="150" cy="140" rx="75" ry="30" fill="url(#treeGradient)" />
<ellipse cx="150" cy="120" rx="60" ry="25" fill="url(#treeGradient)" />
<ellipse cx="150" cy="100" rx="45" ry="20" fill="url(#treeGradient)" />
<g>
<path d="M140 130 L135 140 L145 140 Z" fill="url(#keyGradient)" />
<path d="M155 130 L150 140 L160 140 Z" fill="url(#keyGradient)" />
<path d="M170 130 L165 140 L175 140 Z" fill="url(#keyGradient)" />
<path d="M125 150 L120 160 L130 160 Z" fill="url(#keyGradient)" />
<path d="M180 150 L175 160 L185 160 Z" fill="url(#keyGradient)" />
<path d="M145 150 L140 160 L150 160 Z" fill="url(#keyGradient)" />
</g>
<line x1="130" y1="155" x2="130" y2="180" stroke="#FF5722" stroke-width="2" opacity="0.5" />
<line x1="160" y1="155" x2="160" y2="180" stroke="#FF5722" stroke-width="2" opacity="0.5" />
<line x1="140" y1="155" x2="140" y2="180" stroke="#FF5722" stroke-width="2" opacity="0.5" />
<line x1="150" y1="155" x2="150" y2="180" stroke="#FF5722" stroke-width="2" opacity="0.5" />
<line x1="170" y1="155" x2="170" y2="180" stroke="#FF5722" stroke-width="2" opacity="0.5" />
</g>
</svg>
Judge's Analysis
Player 2's submission creatively integrates the idea of an umbrella tree with keys raining, using a more abstract and visually engaging design.
The incorporation of key shapes as raindrops is clearer, and the layered tree structure adds depth and sophistication.
In contrast, Player 1's image lacks the clear presence of raining keys and has a simpler composition.
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
"Flamingo ice skating on a lily pad"
"Flying turtle with a lighthouse on its shell during a sunset"
"Treehouse in a shoe-shaped tree"
"Octopus juggling cupcakes on a unicycle over a rainbow"
"Golden octopus wearing a top hat in a vintage-style coffee cup"
"A dancing cactus in a tutu balancing on a floating, striped beach ball"