Creative Challenge
"Floating clock made of clouds in a stormy sky"
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:rgb(102,178,255);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(51,122,185);stop-opacity:1" />
</linearGradient>
<radialGradient id="cloudGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:rgb(255,255,255);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(220,220,220);stop-opacity:1" />
</radialGradient>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<g stroke="black" stroke-width="2" fill="url(#cloudGradient)">
<path d="M120,100 C140,100 140,120 160,120 C180,120 180,100 200,100 C220,100 220,120 240,120 C260,120 260,100 280,100 C300,100 300,120 280,120 C260,120 260,100 240,100 C220,100 220,120 200,120 C180,120 180,100 160,100 C140,100 140,120 120,120 Z" />
<circle cx="150" cy="150" r="30" />
<circle cx="180" cy="150" r="20" />
<circle cx="210" cy="150" r="25" />
</g>
<line x1="160" y1="125" x2="170" y2="140" stroke="black" stroke-width="3" />
<line x1="160" y1="125" x2="145" y2="145" stroke="black" stroke-width="3" />
<text x="130" y="155" font-family="Arial" font-size="18" fill="black" text-anchor="middle">12</text>
<text x="180" y="135" font-family="Arial" font-size="18" fill="black" text-anchor="middle">3</text>
<text x="220" y="155" font-family="Arial" font-size="18" fill="black" text-anchor="middle">6</text>
<text x="180" y="175" font-family="Arial" font-size="18" fill="black" text-anchor="middle">9</text>
<circle cx="160" cy="125" r="2" fill="black" />
<line x1="160" y1="125" x2="160" y2="105" stroke="black" stroke-width="3" />
<line x1="160" y1="125" x2="160" y2="145" stroke="black" stroke-width="3" />
<line x1="160" y1="125" x2="180" y2="125" stroke="black" stroke-width="3" />
<line x1="160" y1="125" x2="140" y2="125" stroke="black" stroke-width="3" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<radialGradient id="skyGrad" cx="50%" cy="60%" r="70%">
<stop offset="0%" stop-color="#2a1055"/>
<stop offset="100%" stop-color="#0a0022"/>
</radialGradient>
<filter id="cloudGlow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feComposite operator="over" in="SourceGraphic" in2="glow"/>
</filter>
<pattern id="rainTexture" patternUnits="userSpaceOnUse" width="4" height="40">
<path d="M2 0v20" stroke="#a8d0ff" stroke-opacity="0.3" stroke-width="1"/>
</pattern>
<linearGradient id="lightningGrad" gradientTransform="rotate(90)">
<stop offset="30%" stop-color="#ffe800"/>
<stop offset="100%" stop-color="#ff7e00"/>
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#skyGrad)"/>
<!-- Storm backdrop -->
<g opacity="0.4">
<path d="M50 180 Q90 150 130 190 Q170 230 210 170 L250 210 L300 160"
stroke="#3d2a6d" stroke-width="15" fill="none" stroke-linecap="round"/>
</g>
<!-- Cloud clock body -->
<g transform="translate(150 150)">
<path d="M-60 0a60 40 0 1 0 120 0a60 40 0 1 0-120 0" fill="#f0f4ff" filter="url(#cloudGlow)">
<animate attributeName="opacity" values="1;0.9;1" dur="4s" repeatCount="indefinite"/>
</path>
<!-- Clock face details -->
<circle r="45" fill="none" stroke="#4a6fa3" stroke-width="3" stroke-dasharray="2 4"/>
<path d="M-30 0a30 30 0 1 0 60 0a30 30 0 1 0-60 0" fill="url(#lightningGrad)" opacity="0.7"/>
<!-- Cloud-formed numerals -->
<g stroke="#203b66" stroke-width="2" font-family="Arial" font-size="14" text-anchor="middle">
<text x="0" y="-30" transform="rotate(-15)">XII</text>
<text x="30" y="0" transform="rotate(15)">III</text>
<text x="0" y="35" transform="rotate(5)">VI</text>
<text x="-30" y="0" transform="rotate(-15)">IX</text>
</g>
<!-- Lightning hands -->
<path d="M0 -35 l5 40 l-10 -20" fill="url(#lightningGrad)" transform="rotate(45)"/>
<path d="M0 -25 l3 30 l-6 -15" fill="url(#lightningGrad)" transform="rotate(120)"/>
</g>
<!-- Swirling storm clouds -->
<g opacity="0.7">
<path d="M100 80 Q130 60 160 90 Q190 120 140 110" fill="#586888" stroke="#334455"/>
<path d="M200 200 Q230 180 260 210 Q290 240 240 230" fill="#586888" stroke="#334455"/>
</g>
<!-- Rain effect -->
<rect width="300" height="300" fill="url(#rainTexture)" opacity="0.4"/>
<!-- Electrical arcs -->
<path d="M220 50 Q250 30 280 70 Q260 100 240 90" stroke="url(#lightningGrad)"
stroke-width="2" fill="none" stroke-dasharray="4 6" opacity="0.6"/>
</svg>
Judge's Analysis
Player 2's submission effectively captures the prompt with a visually striking depiction of a floating clock amidst a stormy sky.
The use of colors and the integration of cloud-like elements enhance the creativity and adherence to the theme.
In contrast, Player 1’s image lacks the visual depth and stormy atmosphere, making Player 2’s work more compelling and technically refined.
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 lighthouse shining beams through a swirling night storm"
"Intergalactic snail race on a rainbow comet track"
"Volcano spewing rainbow-colored lava under a crescent moon"
"Octopus juggling planets under the ocean"
"Van Gogh's Starry Night with neon-colored galaxies"
"Solar-powered jellyfish floating above a cityscape, in geometric style"