Creative Challenge
"Melting Salvador Dalí clock dripping over a digital tablet"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="#212121" rx="20" />
<!-- Digital Tablet -->
<rect x="100" y="150" width="100" height="50" fill="#333" rx="10" />
<rect x="105" y="155" width="90" height="40" fill="#444" rx="5" />
<rect x="110" y="160" width="80" height="30" fill="#555" rx="5" />
<rect x="115" y="165" width="70" height="20" fill="#666" rx="5" />
<!-- Melting Clock -->
<g transform="translate(150, 100)">
<!-- Clock Face -->
<circle cx="0" cy="0" r="40" fill="#FFF" />
<circle cx="0" cy="0" r="35" fill="#CCC" />
<circle cx="0" cy="0" r="30" fill="#FFF" />
<circle cx="0" cy="0" r="25" fill="#CCC" />
<!-- Melting Effect -->
<path d="M 0,0 C 10,10 20,20 30,30" fill="none" stroke="#FFF" stroke-width="5" />
<path d="M 0,0 C 10,-10 20,-20 30,-30" fill="none" stroke="#FFF" stroke-width="5" />
<path d="M 0,0 C -10,10 -20,20 -30,30" fill="none" stroke="#FFF" stroke-width="5" />
<path d="M 0,0 C -10,-10 -20,-20 -30,-30" fill="none" stroke="#FFF" stroke-width="5" />
<!-- Dripping Effect -->
<g transform="translate(0, 50)">
<circle cx="0" cy="0" r="5" fill="#FFF" />
<circle cx="0" cy="10" r="5" fill="#FFF" />
<circle cx="0" cy="20" r="5" fill="#FFF" />
<circle cx="0" cy="30" r="5" fill="#FFF" />
</g>
</g>
<!-- Shadows -->
<rect x="100" y="170" width="100" height="10" fill="#000" rx="5" opacity="0.5" />
<circle cx="150" cy="120" r="40" fill="#000" opacity="0.5" />
<!-- Highlights -->
<circle cx="150" cy="120" r="35" fill="#FFF" opacity="0.5" />
<rect x="105" y="155" width="90" height="5" fill="#FFF" rx="5" opacity="0.5" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background Gradient -->
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#4a228c" />
<stop offset="100%" stop-color="#db5461" />
</linearGradient>
<linearGradient id="clockGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#fcf7bb" />
<stop offset="100%" stop-color="#f9d56e" />
</linearGradient>
<linearGradient id="dripsGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#f8e9a1" />
<stop offset="100%" stop-color="#f76c5e" />
</linearGradient>
<filter id="blur" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur in="SourceGraphic" stdDeviation="2" />
</filter>
<filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
<feDropShadow dx="3" dy="3" stdDeviation="3" flood-color="#000" flood-opacity="0.5" />
</filter>
<pattern id="screenPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="10" height="10" fill="#1a1a1a" />
<rect x="0" y="0" width="9" height="9" fill="#2b2b2b" />
</pattern>
</defs>
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />
<!-- Surreal Landscape Elements -->
<path d="M0,220 Q75,180 150,220 T300,220 L300,300 L0,300 Z" fill="#f4a261" />
<path d="M0,230 Q75,200 150,230 T300,230 L300,300 L0,300 Z" fill="#e76f51" />
<!-- Digital Tablet -->
<rect x="60" y="160" width="180" height="120" rx="5" ry="5" fill="#1a1a1a" filter="url(#shadow)" />
<rect x="70" y="170" width="160" height="90" fill="url(#screenPattern)" />
<rect x="70" y="170" width="160" height="90" fill="#3a86ff" fill-opacity="0.1" />
<circle cx="150" cy="270" r="5" fill="#444" />
<!-- Melting Clock Base -->
<ellipse cx="140" cy="110" rx="60" ry="60" fill="url(#clockGradient)" filter="url(#shadow)" />
<!-- Clock Face Details -->
<circle cx="140" cy="110" r="55" fill="none" stroke="#e8871e" stroke-width="2" />
<circle cx="140" cy="110" r="5" fill="#333" />
<!-- Clock Numbers -->
<text x="138" y="65" font-family="serif" font-size="12" fill="#7e5920" text-anchor="middle">12</text>
<text x="185" y="113" font-family="serif" font-size="12" fill="#7e5920" text-anchor="middle">3</text>
<text x="140" y="160" font-family="serif" font-size="12" fill="#7e5920" text-anchor="middle">6</text>
<text x="95" y="113" font-family="serif" font-size="12" fill="#7e5920" text-anchor="middle">9</text>
<!-- Clock Hands -->
<line x1="140" y1="110" x2="140" y2="75" stroke="#333" stroke-width="2" />
<line x1="140" y1="110" x2="165" y2="120" stroke="#333" stroke-width="3" />
<!-- Melting Drips -->
<path d="M120,160 C100,190 90,220 100,240 S130,250 120,270 Q110,290 95,270 T70,220 Q50,180 90,170 Z" fill="url(#dripsGradient)" />
<path d="M160,155 C180,185 190,200 185,230 S165,250 175,270 Q185,290 195,270 T210,210 Q220,180 185,165 Z" fill="url(#dripsGradient)" />
<path d="M140,160 C145,190 150,220 140,240 S120,260 130,275 Q140,290 150,270 T170,230 Q180,200 150,170 Z" fill="url(#dripsGradient)" />
<!-- Small Dali Mustache Easter Egg -->
<path d="M120,195 C130,185 150,195 160,185 S180,195 190,185" fill="none" stroke="#333" stroke-width="1.5" />
<!-- Clock Face Distortion -->
<ellipse cx="165" cy="130" rx="20" ry="15" fill="url(#clockGradient)" filter="url(#blur)" />
<!-- Tablet Screen Content - Binary/Digital Elements -->
<text x="150" y="190" font-family="monospace" font-size="5" fill="#72efdd" text-anchor="middle">01001100 01100001 00100000</text>
<text x="150" y="200" font-family="monospace" font-size="5" fill="#72efdd" text-anchor="middle">01010000 01100101 01110010</text>
<text x="150" y="210" font-family="monospace" font-size="5" fill="#72efdd" text-anchor="middle">01110011 01101001 01110011</text>
<text x="150" y="220" font-family="monospace" font-size="5" fill="#72efdd" text-anchor="middle">01110100 01100101 01101110</text>
<text x="150" y="230" font-family="monospace" font-size="5" fill="#72efdd" text-anchor="middle">01100011 01101001 01100001</text>
<!-- Abstract Digital Elements -->
<circle cx="100" cy="200" r="3" fill="#f72585" />
<circle cx="200" cy="220" r="3" fill="#f72585" />
<circle cx="120" cy="240" r="3" fill="#f72585" />
<circle cx="170" cy="190" r="3" fill="#f72585" />
<!-- Tiny Ants - Dali Reference -->
<circle cx="185" cy="235" r="1" fill="#111" />
<circle cx="188" cy="237" r="1" fill="#111" />
<circle cx="191" cy="239" r="1" fill="#111" />
<circle cx="194" cy="241" r="1" fill="#111" />
<circle cx="197" cy="243" r="1" fill="#111" />
</svg>
Judge's Analysis
Player 2's submission more creatively interprets the prompt by integrating the Dalí-inspired melting clock with a digital tablet, visually incorporating elements of digital coding.
The use of colors and detail enhances the visual appeal and provides a clearer representation of the theme.
Player 1's image, while abstract, lacks the identifiable elements that adhere closely to the prompt.
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
"Bubblegum skyscraper in a desert"
"A cat juggling fish while riding a unicycle on a rainbow"
"Astronaut riding a giant koi fish through a star-filled cosmic pond"
"Triangular moon lighting a field of square sunflowers"
"Chameleon playing a tiny, neon-colored guitar on a dark branch"
"Galactic opera sung by cats in astronaut costumes"