Creative Challenge
"A kaleidoscope of colors forming David Attenborough's face in a rainforest"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="#168d1f" />
<!-- Rainforest -->
<circle cx="150" cy="150" r="120" fill="#0b5821" />
<circle cx="100" cy="100" r="100" fill="#095825" />
<circle cx="200" cy="100" r="80" fill="#168d1f" />
<circle cx="80" cy="200" r="90" fill="#0f4a1d" />
<circle cx="220" cy="220" r="100" fill="#0b5821" />
<!-- David Attenborough's Face -->
<circle cx="150" cy="150" r="80" fill="#f7e6b9" />
<!-- Eyes -->
<circle cx="130" cy="130" r="12" fill="#231f20" />
<circle cx="170" cy="130" r="12" fill="#231f20" />
<!-- Eyebrows -->
<rect x="120" y="110" width="20" height="5" fill="#231f20" />
<rect x="160" y="110" width="20" height="5" fill="#231f20" />
<!-- Mouth -->
<path d="M130 160 Q150 180 170 160" fill="none" stroke="#231f20" stroke-width="2" />
<!-- Nose -->
<polygon points="150,155 145,170 155,170" fill="#dcbba6" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="url(#rainforest)" />
<!-- Rainforest pattern -->
<pattern id="rainforest" patternUnits="userSpaceOnUse" width="100" height="100">
<rect x="0" y="0" width="100" height="100" fill="#228B22" />
<circle cx="50" cy="50" r="20" fill="#32CD32" />
<circle cx="25" cy="75" r="10" fill="#008000" />
<circle cx="75" cy="75" r="10" fill="#008000" />
</pattern>
<!-- Face outline -->
<path d="M150,50 C150,50 120,70 120,100 L180,100 C180,100 180,70 150,50 Z" fill="none" stroke="#FFFFFF" stroke-width="5" />
<!-- Eye -->
<circle cx="130" cy="80" r="10" fill="#34A85A" />
<circle cx="170" cy="80" r="10" fill="#34A85A" />
<!-- Iris -->
<circle cx="130" cy="80" r="5" fill="#87CEEB" />
<circle cx="170" cy="80" r="5" fill="#87CEEB" />
<!-- Pupil -->
<circle cx="130" cy="80" r="2" fill="#000000" />
<circle cx="170" cy="80" r="2" fill="#000000" />
<!-- Nose -->
<path d="M150,110 C150,110 140,120 140,130 L160,130 C160,130 160,120 150,110 Z" fill="#FFC080" />
<!-- Mouth -->
<path d="M140,140 C140,140 150,150 160,140 L140,140 Z" fill="#FFC080" />
<!-- Kaleidoscope fragments -->
<rect x="50" y="50" width="20" height="20" fill="#FF69B4" rx="5" transform="rotate(45 70 70)" />
<rect x="70" y="70" width="20" height="20" fill="#33CC33" rx="5" transform="rotate(90 90 90)" />
<rect x="90" y="90" width="20" height="20" fill="#66CCCC" rx="5" transform="rotate(135 110 110)" />
<rect x="110" y="110" width="20" height="20" fill="#FF99CC" rx="5" transform="rotate(180 130 130)" />
<rect x="130" y="130" width="20" height="20" fill="#0099CC" rx="5" transform="rotate(225 150 150)" />
<rect x="150" y="150" width="20" height="20" fill="#CC6699" rx="5" transform="rotate(270 170 170)" />
<rect x="170" y="170" width="20" height="20" fill="#33CCCC" rx="5" transform="rotate(315 190 190)" />
<!-- Gradient for face -->
<linearGradient id="face-gradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#FFFFFF" stop-opacity="0.5" />
<stop offset="1" stop-color="#FFFFFF" stop-opacity="0" />
</linearGradient>
<!-- Face fill -->
<path d="M150,50 C150,50 120,70 120,100 L180,100 C180,100 180,70 150,50 Z" fill="url(#face-gradient)" />
</svg>
Judge's Analysis
Player 2's submission is more aligned with the prompt, creatively integrating a kaleidoscope of colors into a rainforest theme, while abstractly nodding to a face.
The use of geometric shapes and varied colors adds depth and interest, capturing the idea of a vibrant rainforest.
Player 1's image, while simple and clean, lacks the complexity and color diversity suggested by 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
"An octopus riding a unicycle on a rainbow"
"Glowing jellyfish in a sunset sky"
"Juggling octopus under starry sky"
"Socks hanging like holiday stockings on a giant cactus"
"Melting clock dripping over a sunflower"
"A mythical creature juggling planets under a neon night sky"