Creative Challenge
"A giraffe riding a skateboard under a crescent moon."
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#1a237e"/>
<stop offset="100%" stop-color="#0d47a1"/>
</linearGradient>
<radialGradient id="moonGradient" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#ffffcc"/>
<stop offset="100%" stop-color="#ffcc66"/>
</radialGradient>
<linearGradient id="skateGradient" x1="0" y1="0" x2="1" y2="0">
<stop offset="0%" stop-color="#f48fb1"/>
<stop offset="100%" stop-color="#f06292"/>
</linearGradient>
<mask id="moonMask">
<rect width="300" height="300" fill="black"/>
<circle cx="200" cy="80" r="30" fill="white"/>
<circle cx="210" cy="80" r="30" fill="black"/>
</mask>
</defs>
<rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)"/>
<circle cx="200" cy="80" r="30" fill="url(#moonGradient)" mask="url(#moonMask)"/>
<g id="skateboard">
<rect x="90" y="210" width="120" height="20" rx="10" fill="url(#skateGradient)" stroke="#424242" stroke-width="2"/>
<circle cx="110" cy="232" r="8" fill="#424242"/>
<circle cx="190" cy="232" r="8" fill="#424242"/>
<circle cx="110" cy="232" r="3" fill="#9e9e9e"/>
<circle cx="190" cy="232" r="3" fill="#9e9e9e"/>
</g>
<g id="giraffe">
<!-- Tail -->
<path d="M170,210 C175,215 180,220 175,225" stroke="#8D6E63" stroke-width="2" fill="none"/>
<!-- Body -->
<ellipse cx="150" cy="210" rx="20" ry="10" fill="#FFC107" stroke="#8D6E63" stroke-width="1"/>
<!-- Legs -->
<rect x="135" y="220" width="4" height="20" fill="#FFC107" stroke="#8D6E63" stroke-width="0.5"/>
<rect x="161" y="220" width="4" height="20" fill="#FFC107" stroke="#8D6E63" stroke-width="0.5"/>
<rect x="145" y="220" width="4" height="20" fill="#FFC107" stroke="#8D6E63" stroke-width="0.5"/>
<rect x="155" y="220" width="4" height="20" fill="#FFC107" stroke="#8D6E63" stroke-width="0.5"/>
<!-- Neck -->
<rect x="145" y="130" width="10" height="80" fill="#FFC107" rx="5" stroke="#8D6E63" stroke-width="1"/>
<!-- Head -->
<circle cx="150" cy="120" r="10" fill="#FFC107" stroke="#8D6E63" stroke-width="1"/>
<!-- Ears -->
<polygon points="144,115 138,105 148,110" fill="#FFC107" stroke="#8D6E63" stroke-width="0.5"/>
<polygon points="156,115 162,105 152,110" fill="#FFC107" stroke="#8D6E63" stroke-width="0.5"/>
<!-- Ossicones -->
<ellipse cx="146" cy="112" rx="1.5" ry="4" fill="#8D6E63"/>
<ellipse cx="154" cy="112" rx="1.5" ry="4" fill="#8D6E63"/>
<!-- Spot on Head -->
<circle cx="150" cy="123" r="1" fill="#8D6E63"/>
<!-- Spots on Neck -->
<circle cx="150" cy="160" r="1.5" fill="#8D6E63"/>
<circle cx="147" cy="175" r="1.5" fill="#8D6E63"/>
<circle cx="153" cy="170" r="1.5" fill="#8D6E63"/>
<!-- Spots on Body -->
<circle cx="145" cy="205" r="2.5" fill="#8D6E63"/>
<circle cx="155" cy="215" r="2.5" fill="#8D6E63"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="skyGrad" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#1a237e"/>
<stop offset="100%" stop-color="#0d47a1"/>
</linearGradient>
<radialGradient id="moonGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#fff9c4"/>
<stop offset="100%" stop-color="#fdd835"/>
</radialGradient>
<pattern id="spotPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="3" fill="#6d4c41"/>
<circle cx="15" cy="15" r="4" fill="#6d4c41"/>
</pattern>
</defs>
<!-- Sky -->
<rect width="300" height="300" fill="url(#skyGrad)"/>
<!-- Stars -->
<g fill="#fff" opacity="0.6">
<circle cx="30" cy="40" r="1.5"/>
<circle cx="80" cy="70" r="1.2"/>
<circle cx="200" cy="30" r="1.8"/>
<circle cx="250" cy="90" r="1.3"/>
<circle cx="150" cy="120" r="1.4"/>
<circle cx="60" cy="150" r="1.2"/>
</g>
<!-- Crescent Moon -->
<g transform="translate(230,50)">
<circle cx="0" cy="0" r="30" fill="url(#moonGrad)"/>
<circle cx="10" cy="0" r="30" fill="url(#skyGrad)"/>
</g>
<!-- Skateboard -->
<g transform="translate(50,230) scale(1.2,1)">
<rect x="0" y="0" width="120" height="15" rx="7" ry="7" fill="#ffab00"/>
<circle cx="15" cy="15" r="8" fill="#37474f"/>
<circle cx="105" cy="15" r="8" fill="#37474f"/>
<circle cx="15" cy="15" r="4" fill="#90a4ae"/>
<circle cx="105" cy="15" r="4" fill="#90a4ae"/>
</g>
<!-- Giraffe -->
<g transform="translate(80,100) scale(0.8)">
<!-- Body -->
<ellipse cx="100" cy="140" rx="40" ry="60" fill="#ffeb3b" stroke="#fbc02d" stroke-width="2"/>
<!-- Spots -->
<ellipse cx="80" cy="120" rx="10" ry="14" fill="url(#spotPattern)"/>
<ellipse cx="110" cy="150" rx="12" ry="8" fill="url(#spotPattern)"/>
<ellipse cx="120" cy="110" rx="8" ry="12" fill="url(#spotPattern)"/>
<ellipse cx="90" cy="160" rx="14" ry="10" fill="url(#spotPattern)"/>
<!-- Neck -->
<rect x="95" y="40" width="20" height="100" fill="#ffeb3b" stroke="#fbc02d" stroke-width="2"/>
<ellipse cx="105" cy="80" rx="8" ry="6" fill="url(#spotPattern)"/>
<ellipse cx="115" cy="110" rx="6" ry="8" fill="url(#spotPattern)"/>
<!-- Head -->
<path d="M105,20 c-15,0 -25,20 -15,30 c10,10 30,5 35,-10 c5,-15 -5,-20 -20,-20" fill="#ffeb3b" stroke="#fbc02d" stroke-width="2"/>
<!-- Eyes -->
<circle cx="100" cy="30" r="3" fill="#37474f"/>
<circle cx="112" cy="30" r="3" fill="#37474f"/>
<!-- Horns -->
<line x1="95" y1="15" x2="95" y2="5" stroke="#6d4c41" stroke-width="3" stroke-linecap="round"/>
<line x1="115" y1="15" x2="115" y2="5" stroke="#6d4c41" stroke-width="3" stroke-linecap="round"/>
<!-- Legs -->
<g stroke="#fbc02d" stroke-width="4" stroke-linecap="round">
<line x1="80" y1="200" x2="75" y2="250"/>
<line x1="110" y1="200" x2="105" y2="250"/>
<line x1="90" y1="200" x2="85" y2="250"/>
<line x1="120" y1="200" x2="115" y2="250"/>
</g>
</g>
</svg>
Judge's Analysis
Player 2's submission has better compositional strength and visual appeal, with the addition of stars creating a more dynamic and atmospheric night scene.
The giraffe is more proportionate and recognizable, while the skateboard and crescent moon are clearly integrated into the design.
Player 1's submission, while creative, appears less refined in execution and lacks the cohesive detail seen in Player 2's work.
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 floating teacup pouring galaxies into an oversized spoon."
"A flying turtle carrying a tiny city on its shell through a starry night sky."
"An alien watering plants on the moon under a glowing Earth."