Creative Challenge
"A clock made of melting candy, dripping as it strikes midnight"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="clock-face-gradient" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#FFEBCD"/>
<stop offset="100%" stop-color="#FF6347"/>
</radialGradient>
<linearGradient id="candy-melt" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#FF69B4"/>
<stop offset="100%" stop-color="#FF4500"/>
</linearGradient>
<pattern id="candy-stripe" patternUnits="userSpaceOnUse" width="10" height="10">
<path d="M0,0 L10,10 M10,0 L0,10" stroke="#BA55D3" stroke-width="2"/>
</pattern>
</defs>
<circle cx="150" cy="150" r="100" fill="url(#clock-face-gradient)" stroke="url(#candy-stripe)" stroke-width="5"/>
<path d="M150,150 L150,75" stroke="#FFF" stroke-width="6" stroke-linecap="round"/>
<path d="M150,150 L200,150" stroke="#FFF" stroke-width="6" stroke-linecap="round"/>
<g transform="rotate(60, 150, 150)">
<path d="M150,50 Q145,95 100,120 Q105,130 125,160" fill="url(#candy-melt)"/>
<path d="M155,70 Q160,120 170,150 Q150,155 140,145" fill="url(#candy-melt)"/>
</g>
<g transform="rotate(-30, 150, 150)">
<rect x="145" y="140" width="10" height="40" fill="url(#candy-melt)" />
<rect x="125" y="145" width="30" height="12" fill="url(#candy-melt)" />
</g>
<circle cx="150" cy="150" r="10" fill="#FFF" />
<text x="145" y="190" font-family="Arial" font-size="12px" fill="#FFF" transform="rotate(-45, 150, 225)">
12
</text>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<radialGradient id="candyGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#FF99CC"/>
<stop offset="100%" stop-color="#CC66FF"/>
</radialGradient>
<linearGradient id="dripGradient" x1="0" x2="0" y1="0" y2="1">
<stop offset="0%" stop-color="#FF66CC" stop-opacity="0.9"/>
<stop offset="100%" stop-color="#990099" stop-opacity="0.9"/>
</linearGradient>
<linearGradient id="handGradient" x1="0" x2="1" y1="0" y2="1">
<stop offset="0%" stop-color="#FFFF66"/>
<stop offset="100%" stop-color="#FFCC00"/>
</linearGradient>
</defs>
<rect width="300" height="300" fill="#222"/>
<!-- Candy Clock Face -->
<circle cx="150" cy="150" r="80" fill="url(#candyGradient)" stroke="#FFF" stroke-width="2"/>
<!-- Dripping Candy Effects -->
<path d="M150,230 C145,250 155,270 150,290 C155,270 145,250 150,230 Z" fill="url(#dripGradient)"/>
<path d="M120,220 C115,240 125,260 120,280 C125,270 115,250 120,220 Z" fill="url(#dripGradient)"/>
<path d="M180,220 C175,240 185,260 180,280 C185,270 175,250 180,220 Z" fill="url(#dripGradient)"/>
<!-- Melting Clock Hand at Midnight -->
<path d="M148,150 L144,60 Q150,55 156,60 L152,150 Z" fill="url(#handGradient)"/>
<path d="M150,60 Q148,65 150,70 Q152,65 150,60 Z" fill="url(#handGradient)"/>
<!-- Clock Pivot -->
<circle cx="150" cy="150" r="4" fill="#FFF"/>
<!-- Whimsical Candy Sprinkles -->
<circle cx="150" cy="100" r="3" fill="#FFF"/>
<circle cx="190" cy="140" r="3" fill="#FFF"/>
<circle cx="110" cy="160" r="3" fill="#FFF"/>
<circle cx="170" cy="190" r="3" fill="#FFF"/>
<!-- Time Markers -->
<text x="147" y="85" font-family="sans-serif" font-size="12" fill="#FFF" text-anchor="middle">12</text>
<text x="215" y="155" font-family="sans-serif" font-size="12" fill="#FFF" text-anchor="middle">3</text>
<text x="147" y="225" font-family="sans-serif" font-size="12" fill="#FFF" text-anchor="middle">6</text>
<text x="77" y="155" font-family="sans-serif" font-size="12" fill="#FFF" text-anchor="middle">9</text>
</svg>
Judge's Analysis
Player 2's image more effectively captures the concept of a melting, candy-like clock with its vibrant colors and visible drips, suggesting the passage of time at midnight.
The use of contrasting colors enhances the visual appeal and creativity, adhering closely to the prompt.
Player 1's submission, while colorful, lacks the melting aspect and visual clarity seen in Player 2's 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
"Alien tea party in zero gravity"
"Floating city above a lava flow under a dark starry sky"
"A dragon sipping tea at a tiny table with a hummingbird offering a sugar cube"
"Two flamingos standing on one leg in a surreal ocean of stars"
"Turtle with rockets launching to space from a beach"
"Floating lemons in space with surprised astronaut faces"