Creative Challenge
"A clock made of melting candy, dripping onto a fluffy cloud below"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="candyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FF69B4;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FF1493;stop-opacity:1" />
</linearGradient>
<linearGradient id="cloudGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FFFFFF;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FFB3BA;stop-opacity:0.5" />
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#candyGradient)" rx="20" />
<!-- Fluffy Cloud -->
<path d="M150,200 Q220,180 250,160 Q280,140 220,120 Q160,140 100,160 Q80,180 150,200Z"
fill="url(#cloudGradient)" opacity="0.8" blur="5px" />
<!-- Melting Candy Clock -->
<g transform="translate(150,150)">
<!-- Candy Body -->
<circle r="60" fill="url(#candyGradient)" />
<!-- Drips -->
<path d="M0,60 Q-20,80 -40,100" stroke="#FF69B4" fill="none" stroke-width="4" />
<path d="M20,60 Q0,80 -20,100" stroke="#FF69B4" fill="none" stroke-width="4" />
<path d="M-10,60 Q-30,70 -40,80" stroke="#FF69B4" fill="none" stroke-width="4" />
<!-- Clock Hands -->
<rect x="-5" y="40" width="10" height="60" fill="white" rx="2" />
<rect x="40" y="-5" width="60" height="10" fill="white" rx="2" />
<!-- Center -->
<circle r="10" fill="url(#candyGradient)" />
</g>
<!-- Dripping Candy -->
<ellipse cx="150" cy="170" rx="8" ry="12" fill="url(#candyGradient)" blur="3px" />
<ellipse cx="120" cy="180" rx="6" ry="10" fill="url(#candyGradient)" blur="3px" />
<ellipse cx="180" cy="180" rx="6" ry="10" fill="url(#candyGradient)" blur="3px" />
<ellipse cx="150" cy="190" rx="5" ry="8" fill="url(#candyGradient)" blur="3px" />
<!-- Cloud Splatters -->
<path d="M200,240 Q220,250 200,260 Q180,250 200,240Z" fill="white" blur="3px" opacity="0.3" />
<path d="M100,240 Q120,250 100,260 Q80,250 100,240Z" fill="white" blur="3px" opacity="0.3" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Cloud -->
<circle cx="150" cy="250" r="100" fill="#fff" fill-opacity="0.8" />
<circle cx="150" cy="250" r="90" fill="#fff" fill-opacity="0.6" />
<circle cx="150" cy="250" r="80" fill="#fff" fill-opacity="0.4" />
<circle cx="150" cy="250" r="70" fill="#fff" fill-opacity="0.2" />
<!-- Clock -->
<g transform="translate(150, 150)">
<!-- Clock Face -->
<circle cx="0" cy="0" r="60" fill="#ffd7be" />
<circle cx="0" cy="0" r="50" fill="#fff" />
<circle cx="0" cy="0" r="40" fill="#ffd7be" />
<!-- Melting Candy -->
<path d="M 0 0 L -20 -40 Q -30 -60 -40 -60 L -60 -60 Q -70 -60 -80 -50 L -80 -40 Q -80 -30 -70 -20 L -60 -20 Q -50 -20 -40 -30 L -40 -40 Q -30 -40 -20 -30 Z" fill="#ff69b4" />
<path d="M 0 0 L 20 -40 Q 30 -60 40 -60 L 60 -60 Q 70 -60 80 -50 L 80 -40 Q 80 -30 70 -20 L 60 -20 Q 50 -20 40 -30 L 40 -40 Q 30 -40 20 -30 Z" fill="#ffb6c1" />
<path d="M -40 -60 L -30 -80 Q -20 -90 -10 -90 L 10 -90 Q 20 -90 30 -80 L 40 -60" fill="#ffd7be" />
<path d="M -60 -60 L -70 -80 Q -80 -90 -90 -90 L -90 -100 Q -90 -110 -80 -120 L -70 -120 Q -60 -120 -50 -110 L -50 -100" fill="#ff69b4" />
<path d="M 40 -60 L 50 -80 Q 60 -90 70 -90 L 80 -90 Q 90 -90 100 -80 L 110 -60" fill="#ffb6c1" />
<path d="M 60 -60 L 70 -80 Q 80 -90 90 -90 L 100 -90 Q 110 -90 120 -80 L 130 -60" fill="#ffd7be" />
<!-- Clock Hands -->
<line x1="0" y1="0" x2="-30" y2="-50" stroke="#333" stroke-width="4" />
<line x1="0" y1="0" x2="30" y2="-50" stroke="#333" stroke-width="2" />
</g>
<!-- Drips -->
<circle cx="120" cy="220" r="5" fill="#ff69b4" />
<circle cx="180" cy="230" r="5" fill="#ffb6c1" />
<circle cx="140" cy="240" r="5" fill="#ffd7be" />
<circle cx="160" cy="250" r="5" fill="#ff69b4" />
<circle cx="120" cy="260" r="5" fill="#ffb6c1" />
<circle cx="180" cy="270" r="5" fill="#ffd7be" />
</svg>
Judge's Analysis
Player 2's submission better captures the prompt with a clearer depiction of a clock face and the melting candy effect dripping onto a fluffy cloud shape.
The use of colors and shapes is more defined and visually distinct, enhancing the visual appeal and creativity.
Player 1's image, while interesting, lacks clarity in representing the concept of a clock and melting candy.
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 garden with giant, glowing dandelions"
"Ballet-dancing flamingos in rainbow tutus on a lily pad stage"
"Penguins playing jazz underwater"
"An astronaut watering a sunflower on the moon"
"Cat wearing a crown, lounging on a vintage radio"
"Electric jellyfish with neon sunglasses under a starry sky"