Creative Challenge
"A clock made of clouds, time shown by shifting colors of a sunset"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="sunset" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#FF6F61">
<animate attributeName="stop-color" values="#FF6F61;#FF9966;#FF6F61" dur="10s" repeatCount="indefinite" />
</stop>
<stop offset="50%" stop-color="#FFD93D">
<animate attributeName="stop-color" values="#FFD93D;#FFB347;#FFD93D" dur="10s" repeatCount="indefinite" />
</stop>
<stop offset="100%" stop-color="#C70039">
<animate attributeName="stop-color" values="#C70039;#900C3F;#C70039" dur="10s" repeatCount="indefinite" />
</stop>
</linearGradient>
<radialGradient id="sunGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="white">
<animate attributeName="stop-color" values="white;#fffacd;white" dur="10s" repeatCount="indefinite"/>
</stop>
<stop offset="100%" stop-color="orange">
<animate attributeName="stop-color" values="orange;#ff8c00;orange" dur="10s" repeatCount="indefinite"/>
</stop>
</radialGradient>
<filter id="cloudShadow" x="-20%" y="-20%" width="140%" height="140%">
<feGaussianBlur in="SourceAlpha" stdDeviation="2" result="blur" />
<feOffset in="blur" dx="1" dy="1" result="offsetBlur" />
<feMerge>
<feMergeNode in="offsetBlur" />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
<g id="cloud" transform="translate(0,4)">
<circle cx="-10" cy="0" r="10" fill="white" opacity="0.9" filter="url(#cloudShadow)" />
<circle cx="0" cy="-8" r="10" fill="white" opacity="0.9" filter="url(#cloudShadow)" />
<circle cx="10" cy="0" r="10" fill="white" opacity="0.9" filter="url(#cloudShadow)" />
<ellipse cx="0" cy="2" rx="15" ry="8" fill="white" opacity="0.9" filter="url(#cloudShadow)" />
</g>
</defs>
<rect width="300" height="300" fill="url(#sunset)"/>
<use href="#cloud" transform="translate(150,50)"/>
<use href="#cloud" transform="translate(200,63.4)"/>
<use href="#cloud" transform="translate(236.6,100)"/>
<use href="#cloud" transform="translate(250,150)"/>
<use href="#cloud" transform="translate(236.6,200)"/>
<use href="#cloud" transform="translate(200,236.6)"/>
<use href="#cloud" transform="translate(150,250)"/>
<use href="#cloud" transform="translate(100,236.6)"/>
<use href="#cloud" transform="translate(63.4,200)"/>
<use href="#cloud" transform="translate(50,150)"/>
<use href="#cloud" transform="translate(63.4,100)"/>
<use href="#cloud" transform="translate(100,63.4)"/>
<line x1="150" y1="150" x2="150" y2="70" stroke="white" stroke-width="2" stroke-linecap="round">
<animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 150 150" to="360 150 150" dur="60s" repeatCount="indefinite"/>
</line>
<circle cx="150" cy="150" r="20" fill="url(#sunGradient)" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="sky" cx="150" cy="150" r="150">
<stop offset="0%" stop-color="#192a56"/>
<stop offset="50%" stop-color="#3498db"/>
<stop offset="100%" stop-color="#f6e58d"/>
</radialGradient>
<filter id="cloudFilter">
<feGaussianBlur in="SourceGraphic" stdDeviation="4" result="blur"/>
<feColorMatrix in="blur" type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 18 -7" result="cloud"/>
</filter>
</defs>
<circle cx="150" cy="150" r="150" fill="url(#sky)"/>
<g filter="url(#cloudFilter)">
<path d="M80 100 C 70 80, 100 60, 130 80 C 160 100, 180 80, 200 90 C 220 100, 240 70, 230 90" fill="#e74c3c" opacity="0.8"/>
<path d="M100 140 C 90 120, 120 100, 150 120 C 170 140, 180 120, 210 130 C 240 140, 250 100, 240 120" fill="#f39c12" opacity="0.8"/>
<path d="M130 180 C 120 160, 150 140, 180 160 C 200 180, 220 160, 240 170 C 260 180, 270 150, 260 170" fill="#f1c40f" opacity="0.7"/>
</g>
<circle cx="150" cy="150" r="40" fill="transparent" stroke="#fff" stroke-width="2" stroke-dasharray="5 5"/>
</svg>
Judge's Analysis
Player 1's submission effectively combines the elements of a clock and clouds, with a clear representation of time through the positioning of clouds around a central point.
The gradient background mimics the colors of a sunset, adhering closely to the prompt.
While Player 2's image is creative, it lacks the clarity and structure of a clock, making Player 1's image more successful in conveying the intended concept.
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 juggling flaming bowling pins underwater."
"Clockwork owl in a midnight mechanical forest"
"A giraffe wearing a diving suit exploring an underwater city"