Creative Challenge
"A clock with melting rainbow numbers"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Clock outline -->
<circle cx="150" cy="150" r="120" fill="#f7f7f7" stroke="#333" stroke-width="2"/>
<!-- Rainbow gradient -->
<defs>
<linearGradient id="rainbow" x1="100%" y1="0" x2="0" y2="100%">
<stop offset="0%" stop-color="#FF0000"/>
<stop offset="20%" stop-color="#FFA500"/>
<stop offset="40%" stop-color="#FFFF00"/>
<stop offset="60%" stop-color="#008000"/>
<stop offset="80%" stop-color="#0000FF"/>
<stop offset="100%" stop-color="#800080"/>
</linearGradient>
</defs>
<!-- Melting rainbow numbers -->
<text x="60" y="170" font-family="Arial" font-size="65" fill="url(#rainbow)" transform="rotate(15 60,170)">12</text>
<text x="200" y="170" font-family="Arial" font-size="65" fill="url(#rainbow)" transform="rotate(-15 200,170)">6</text>
<text x="150" y="70" font-family="Arial" font-size="65" fill="url(#rainbow)" transform="rotate(-30 150,70)">3</text>
<text x="150" y="260" font-family="Arial" font-size="65" fill="url(#rainbow)" transform="rotate(30 150,260)">9</text>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="#f2f2f2" rx="20" />
<!-- Clock Face -->
<circle cx="150" cy="150" r="120" fill="none" stroke="#ddd" stroke-width="10" />
<circle cx="150" cy="150" r="110" fill="none" stroke="#ccc" stroke-width="5" />
<!-- Melting Numbers -->
<g transform="rotate(-90 150 150)">
<text x="150" y="30" font-size="60" font-family="Arial" fill="#ff69b4" font-weight="bold">12</text>
<text x="150" y="70" font-size="50" font-family="Arial" fill="#ffa07a" font-weight="bold">1</text>
<text x="150" y="110" font-size="40" font-family="Arial" fill="#ffff00" font-weight="bold">2</text>
<text x="150" y="150" font-size="30" font-family="Arial" fill="#32cd32" font-weight="bold">3</text>
<text x="150" y="190" font-size="40" font-family="Arial" fill="#0000ff" font-weight="bold">4</text>
<text x="150" y="230" font-size="50" font-family="Arial" fill="#7a288a" font-weight="bold">5</text>
<text x="150" y="270" font-size="60" font-family="Arial" fill="#ff69b4" font-weight="bold">6</text>
</g>
<!-- Melting Effect -->
<g transform="rotate(-90 150 150)">
<path d="M150 30 C150 30 140 40 130 50 L120 60 L110 50 C110 50 120 40 130 30 Z" fill="#ff69b4" opacity="0.8" />
<path d="M150 70 C150 70 140 80 130 90 L120 100 L110 90 C110 90 120 80 130 70 Z" fill="#ffa07a" opacity="0.8" />
<path d="M150 110 C150 110 140 120 130 130 L120 140 L110 130 C110 130 120 120 130 110 Z" fill="#ffff00" opacity="0.8" />
<path d="M150 150 C150 150 140 160 130 170 L120 180 L110 170 C110 170 120 160 130 150 Z" fill="#32cd32" opacity="0.8" />
<path d="M150 190 C150 190 140 200 130 210 L120 220 L110 210 C110 210 120 200 130 190 Z" fill="#0000ff" opacity="0.8" />
<path d="M150 230 C150 230 140 240 130 250 L120 260 L110 250 C110 250 120 240 130 230 Z" fill="#7a288a" opacity="0.8" />
<path d="M150 270 C150 270 140 280 130 290 L120 300 L110 290 C110 290 120 280 130 270 Z" fill="#ff69b4" opacity="0.8" />
</g>
<!-- Hour and Minute Hands -->
<line x1="150" y1="150" x2="150" y2="100" stroke="#333" stroke-width="5" />
<line x1="150" y1="150" x2="180" y2="130" stroke="#333" stroke-width="3" />
<!-- Center Circle -->
<circle cx="150" cy="150" r="10" fill="#333" />
</svg>
Judge's Analysis
Player 2's submission exhibits greater creativity and adherence to the prompt with the melting effect clearly depicted across a range of rainbow-colored numbers.
The technical quality and composition are more dynamic and visually engaging, with a consistent and imaginative approach.
Player 1's design, while colorful, lacks the melting effect and overall creativity seen in Player 2's work.
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
"An octopus riding a unicycle on a rainbow"
"Glowing jellyfish in a sunset sky"
"Juggling octopus under starry sky"
"Socks hanging like holiday stockings on a giant cactus"
"Melting clock dripping over a sunflower"
"A mythical creature juggling planets under a neon night sky"