Creative Challenge
"Surreal: A melting clock draped over a tree branch with a galaxy swirling inside"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Tree Branch -->
<path d="M100,50 Q150,40 200,50 Q250,60 300,70 Q290,80 280,90 T280,110"
fill="none" stroke="#4a2c1f" stroke-width="8" stroke-linecap="round"/>
<!-- Melting Clock -->
<g transform="translate(150,100)">
<!-- Clock Face -->
<circle cx="0" cy="0" r="60" fill="none" stroke="#ffd700" stroke-width="4"/>
<!-- Melting Effect -->
<path d="M0,60 Q-30,80 -50,100 L-50,120 Q-30,140 0,160 L30,160 Q50,140 100,100 L100,80 Q150,60 100,0 Z"
fill="linear-gradient(45deg, #ff8c00, #ffa500, #ffd700)"/>
<!-- Clock Hands -->
<path d="M0,0 L0,-40" stroke="#ffd700" stroke-width="3"/>
<path d="M0,0 L50,-30" stroke="#ffd700" stroke-width="2"/>
<!-- Galaxy Swirl -->
<g transform="translate(-20,0)">
<circle cx="0" cy="0" r="40" fill="radial-gradient(circle at 30% 30%, #1a1a6f, #2a1a8f, #3a0080)"/>
<path d="M0,0 Q20,30 40,40 Q60,40 80,30 Q60,20 40,0 Z"
stroke="#fff" stroke-width="2" fill="none" opacity="0.7"/>
<circle cx="30" cy="20" r="5" fill="#fff"/>
<circle cx="50" cy="40" r="3" fill="#b0b0ff"/>
<circle cx="25" cy="35" r="4" fill="#4a708b"/>
</g>
</g>
<!-- Tree Leaves -->
<ellipse cx="220" cy="70" rx="20" ry="15" fill="linear-gradient(45deg, #2d5a27, #3a6f34, #4a8a41)"/>
<ellipse cx="280" cy="90" rx="15" ry="10" fill="linear-gradient(45deg, #2d5a27, #3a6f34, #4a8a41)"/>
<ellipse cx="240" cy="110" rx="10" ry="8" fill="linear-gradient(45deg, #2d5a27, #3a6f34, #4a8a41)"/>
<!-- Abstract Elements -->
<path d="M50,250 Q100,280 150,250 Q200,220 250,250 Q220,280 250,300"
fill="linear-gradient(45deg, #ff8c00, #ffa500, #ffd700)" opacity="0.5"/>
<circle cx="150" cy="150" r="50" fill="none" stroke="#4a708b" stroke-width="2" opacity="0.3"/>
<circle cx="150" cy="150" r="30" fill="none" stroke="#4a708b" stroke-width="2" opacity="0.3"/>
<!-- Trunk -->
<rect x="20" y="200" width="260" height="80" fill="linear-gradient(90deg, #452b1f, #663300)"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- Background Gradient -->
<radialGradient id="bgGradient" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#0d1b2a" />
<stop offset="100%" stop-color="#1b263b" />
</radialGradient>
<!-- Galaxy Gradient -->
<radialGradient id="galaxyGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ffffff" />
<stop offset="10%" stop-color="#f0a6ca" />
<stop offset="20%" stop-color="#a6e1fa" />
<stop offset="40%" stop-color="#a6c8fa" />
<stop offset="60%" stop-color="#f0a6ca" />
<stop offset="100%" stop-color="#ffffff" />
</radialGradient>
<!-- Clock Body Gradient -->
<linearGradient id="clockGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#ffcc00" />
<stop offset="100%" stop-color="#ff9900" />
</linearGradient>
<!-- Drip Gradient -->
<linearGradient id="dripGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#ff9900" />
<stop offset="100%" stop-color="#cc7a00" />
</linearGradient>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#bgGradient)" />
<!-- Tree Branch -->
<path d="M50,220 Q150,120 250,220" stroke="#8B4513" stroke-width="8" fill="none" />
<!-- Melting Clock Body -->
<ellipse cx="150" cy="150" rx="60" ry="40" fill="url(#clockGradient)" />
<!-- Galaxy Inside Clock -->
<circle cx="150" cy="150" r="35" fill="url(#galaxyGradient)" />
<!-- Clock Drips -->
<path d="M110,175 Q100,200 120,210 Q140,220 130,245" fill="url(#dripGradient)" />
<path d="M190,175 Q200,200 180,210 Q160,220 170,245" fill="url(#dripGradient)" />
<!-- Galaxy Swirls -->
<g transform="rotate(-30,150,150)">
<path d="M150,150 m0,-35 a35,35 0 1,1 0,70 a35,35 0 1,1 0,-70" stroke="rgba(255,255,255,0.3)" stroke-width="1" fill="none" />
<path d="M150,150 m0,-35 a35,35 0 1,0 0,70 a35,35 0 1,0 0,-70" stroke="rgba(255,255,255,0.3)" stroke-width="1" fill="none" />
</g>
</svg>
Judge's Analysis
Failed to determine a winner: API connection error: Send failure: Connection was reset
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
"A flying cat wearing a UFO as a hat, hovering above candy mountains"
"Umbrella growing from a teacup"
"A neon jellyfish orbiting a giant silver apple under a starry sky"
"Flying fish with balloon wings over a cityscape"
"Astronaut penguin juggling planets in space"
"Surreal clock with melting numbers and flying teacup"