Creative Challenge
"An umbrella made of clouds, raining colorful candy drops"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="cloudGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:white"/>
<stop offset="100%" style="stop-color:#e0e6ff"/>
</radialGradient>
<filter id="cloudFilter">
<feGaussianBlur stdDeviation="3"/>
</filter>
</defs>
<!-- Handle -->
<path d="M150 120 L150 280" stroke="#8B4513" stroke-width="8" fill="none"/>
<!-- Cloud Umbrella -->
<g transform="translate(150,120)">
<path d="M-100,0 Q-80,-60 0,-60 Q80,-60 100,0 Q80,20 60,0 Q40,20 20,0 Q0,20 -20,0 Q-40,20 -60,0 Q-80,20 -100,0"
fill="url(#cloudGrad)" filter="url(#cloudFilter)"/>
</g>
<!-- Candy Drops -->
<g>
<circle cx="100" cy="200" r="8" fill="#FF69B4">
<animate attributeName="cy" from="150" to="300" dur="2s" repeatCount="indefinite"/>
</circle>
<circle cx="130" cy="180" r="8" fill="#FFD700">
<animate attributeName="cy" from="130" to="300" dur="1.8s" repeatCount="indefinite"/>
</circle>
<circle cx="160" cy="220" r="8" fill="#98FB98">
<animate attributeName="cy" from="170" to="300" dur="2.2s" repeatCount="indefinite"/>
</circle>
<circle cx="190" cy="160" r="8" fill="#87CEEB">
<animate attributeName="cy" from="140" to="300" dur="1.9s" repeatCount="indefinite"/>
</circle>
<path d="M90,190 L110,210 M90,210 L110,190" stroke="#FF69B4" stroke-width="3">
<animate attributeName="cy" from="150" to="300" dur="2s" repeatCount="indefinite"/>
</path>
<path d="M150,170 L170,190 M150,190 L170,170" stroke="#FFD700" stroke-width="3">
<animate attributeName="cy" from="130" to="300" dur="1.7s" repeatCount="indefinite"/>
</path>
<path d="M180,200 L200,220 M180,220 L200,200" stroke="#98FB98" stroke-width="3">
<animate attributeName="cy" from="160" to="300" dur="2.1s" repeatCount="indefinite"/>
</path>
</g>
<!-- Additional Cloud Details -->
<circle cx="50" cy="120" r="20" fill="url(#cloudGrad)" filter="url(#cloudFilter)"/>
<circle cx="250" cy="120" r="25" fill="url(#cloudGrad)" filter="url(#cloudFilter)"/>
<!-- Sparkles -->
<g fill="white">
<circle cx="80" cy="100" r="2">
<animate attributeName="opacity" values="0;1;0" dur="1.5s" repeatCount="indefinite"/>
</circle>
<circle cx="220" cy="90" r="2">
<animate attributeName="opacity" values="0;1;0" dur="1.3s" repeatCount="indefinite"/>
</circle>
<circle cx="150" cy="70" r="2">
<animate attributeName="opacity" values="0;1;0" dur="1.7s" repeatCount="indefinite"/>
</circle>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="cloudGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:rgb(255,255,255);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(200,200,255);stop-opacity:1" />
</radialGradient>
<linearGradient id="rainbowCandy" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#ff7979;stop-opacity:1" />
<stop offset="20%" style="stop-color:#ffbe76;stop-opacity:1" />
<stop offset="40%" style="stop-color:#f9ca24;stop-opacity:1" />
<stop offset="60%" style="stop-color:#badc58;stop-opacity:1" />
<stop offset="80%" style="stop-color:#7ed6df;stop-opacity:1" />
<stop offset="100%" style="stop-color:#e056fd;stop-opacity:1" />
</linearGradient>
<pattern id="candyPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="2" style="fill:url(#rainbowCandy);" />
</pattern>
</defs>
<!-- Umbrella made of clouds -->
<g id="cloudUmbrella">
<ellipse cx="150" cy="80" rx="60" ry="30" fill="url(#cloudGradient)" />
<circle cx="120" cy="70" r="20" fill="url(#cloudGradient)" />
<circle cx="180" cy="70" r="25" fill="url(#cloudGradient)" />
<!-- Umbrella handle -->
<rect x="145" y="80" width="10" height="130" fill="#8a7f8d" />
<path d="M150 210 q20 -20 40 0" fill="none" stroke="#8a7f8d" stroke-width="10" />
</g>
<!-- Colorful candy drops -->
<g id="candyDrops" fill="url(#rainbowCandy)">
<circle cx="80" cy="180" r="5" />
<circle cx="120" cy="220" r="7" />
<circle cx="160" cy="200" r="6" />
<circle cx="200" cy="240" r="5" />
<circle cx="240" cy="180" r="8" />
<circle cx="100" cy="260" r="5" />
<circle cx="140" cy="240" r="7" />
<circle cx="180" cy="260" r="6" />
<circle cx="220" cy="220" r="5" />
<circle cx="260" cy="200" r="8" />
</g>
</svg>
Judge's Analysis
Player 1's image effectively captures the concept with a clear cloud-shaped umbrella and colorful candy drops, showcasing creativity and adherence to the prompt.
The colors are vibrant and the composition is balanced, enhancing its visual appeal.
Player 2's image, while creative, lacks clarity in the candy drop depiction and has a less cohesive design.
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
"Stilt-walking robot in a dessert cafe"
"Tree with clockwork gears for foliage against a full moon"
"Juggling octopus wearing neon roller skates"
"Whale painting a starry night sky with its tail"
"Floating enchanted cactus with lunar eyes in a starlit desert"
"Clock made of melting pancakes with syrup hands against a pink sunrise"