Creative Challenge
"Peacock with clockwork feathers in a digital sunset"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="#64006F"/>
<linearGradient id="sunset" x1="1" y1="0" x2="0" y2="0">
<stop stop-color="#FF69B4" offset="0%"/>
<stop stop-color="#FFC107" offset="20%"/>
<stop stop-color="#F7DC6F" offset="40%"/>
<stop stop-color="#F2C464" offset="60%"/>
<stop stop-color="#FF9800" offset="80%"/>
<stop stop-color="#FF4200" offset="100%"/>
</linearGradient>
<rect x="0" y="100" width="300" height="200" fill="url(#sunset)"/>
<!-- Peacock Body -->
<ellipse cx="150" cy="200" rx="30" ry="50" fill="#008000"/>
<ellipse cx="150" cy="230" rx="20" ry="30" fill="#004900"/>
<circle cx="150" cy="210" r="10" fill="#000000"/>
<!-- Clockwork Feathers -->
<g transform="translate(130, 160)">
<path d="M 0 -20 L -10 0 L 10 0 Z" fill="url(#metal)" transform="rotate(0 0 0)"/>
<path d="M 0 -20 L -10 0 L 10 0 Z" fill="url(#metal)" transform="rotate(45 0 0)"/>
<path d="M 0 -20 L -10 0 L 10 0 Z" fill="url(#metal)" transform="rotate(90 0 0)"/>
<path d="M 0 -20 L -10 0 L 10 0 Z" fill="url(#metal)" transform="rotate(135 0 0)"/>
<path d="M 0 -20 L -10 0 L 10 0 Z" fill="url(#metal)" transform="rotate(180 0 0)"/>
</g>
<linearGradient id="metal" x1="0" y1="0" x2="1" y2="0">
<stop stop-color="#B1B1B1" offset="0%"/>
<stop stop-color="#959595" offset="20%"/>
<stop stop-color="#747474" offset="40%"/>
<stop stop-color="#626262" offset="60%"/>
<stop stop-color="#424242" offset="80%"/>
<stop stop-color="#333333" offset="100%"/>
</linearGradient>
<!-- Clockwork mechanisms -->
<circle cx="150" cy="160" r="5" fill="#FFD700"/>
<path d="M 150 170 L 155 160 L 150 150 Z" fill="#FFD700" transform="rotate(45 150 160)"/>
<path d="M 150 170 L 155 160 L 150 150 Z" fill="#FFD700" transform="rotate(135 150 160)"/>
<!-- Eyes and beak -->
<circle cx="140" cy="195" r="5" fill="#FFFFFF"/>
<circle cx="160" cy="195" r="5" fill="#FFFFFF"/>
<circle cx="140" cy="195" r="3" fill="#000000"/>
<circle cx="160" cy="195" r="3" fill="#000000"/>
<path d="M 150 220 L 155 210 L 150 200 Z" fill="#FF0000" transform="rotate(45 150 210)"/>
<!-- Shadow -->
<ellipse cx="150" cy="258" rx="40" ry="10" fill="#333333" opacity="0.3"/>
<!-- Foreground -->
<rect x="0" y="260" width="300" height="40" fill="#64006F" opacity="0.3"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="gearGrad">
<stop offset="0%" stop-color="#gold"/>
<stop offset="100%" stop-color="#brown"/>
</radialGradient>
<pattern id="clockwork" patternUnits="userSpaceOnUse" width="20" height="20">
<rect width="20" height="20" fill="#steelblue"/>
<path d="M10,10 L15,10 L15,15 L10,15 Z" fill="#gold"/>
</pattern>
<filter id="glow">
<feGaussianBlur stdDeviation="2" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="url(#sunsetGrad)"/>
<g transform="translate(150,150)">
<!-- Body -->
<circle cx="0" cy="0" r="20" fill="url(#bodyGrad)"/>
<!-- Tail feathers -->
<g transform="rotate(-45)">
<path d="M0,-40 Q20,-30 40,-40" fill="url(#featherGrad)" filter="url(#glow)"/>
<path d="M20,-30 Q40,-20 60,-30" fill="url(#featherGrad)" filter="url(#glow)"/>
<path d="M40,-20 Q60,-10 80,-20" fill="url(#featherGrad)" filter="url(#glow)"/>
</g>
<!-- Clockwork gears -->
<g transform="translate(0,50)">
<circle cx="0" cy="0" r="10" fill="url(#gearGrad)"/>
<circle cx="20" cy="0" r="10" fill="url(#gearGrad)"/>
<circle cx="40" cy="0" r="10" fill="url(#gearGrad)"/>
</g>
<!-- Eyes -->
<circle cx="-20" cy="20" r="5" fill="#gold"/>
<circle cx="20" cy="20" r="5" fill="#gold"/>
<!-- Digital details -->
<path d="M-30,-30 L30,-30 L30,30 L-30,30 Z" fill="none" stroke="#purple" stroke-width="2"/>
</g>
<linearGradient id="sunsetGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ff69b4"/>
<stop offset="50%" stop-color="#4b0082"/>
<stop offset="100%" stop-color="#000080"/>
</linearGradient>
<radialGradient id="bodyGrad">
<stop offset="0%" stop-color="#ff69b4"/>
<stop offset="100%" stop-color="#ff1493"/>
</radialGradient>
<linearGradient id="featherGrad">
<stop offset="0%" stop-color="#gold"/>
<stop offset="100%" stop-color="#brown"/>
</linearGradient>
</svg>
Judge's Analysis
Player 1's image more clearly depicts a peacock with a recognizable head and a suggestion of clockwork elements in the form of a metal-like structure.
The use of vibrant colors effectively suggests a digital sunset, adhering well to the prompt.
Player 2's image lacks clear representation of a peacock and the clockwork theme is not evident, making it less aligned with the given idea.
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 astronaut planting a marigold on the moon"
"A surreal clock melting over vibrant, geometric cityscape"
"Flamingo on a unicycle juggling oranges"
"A dragonfly with stained glass wings over a moonlit water lily"
"Bubblegum-blowing robots in a neon-lit arcade"
"Lamp post with a glowing jellyfish bulb"