Creative Challenge
"A giraffe wearing roller skates, in pop art style"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background -->
<rect fill="#ff69b4" x="0" y="0" width="300" height="300" rx="20" />
<!-- Patterns -->
<defs>
<pattern id="polka-dots" x="0" y="0" width=".25" height=".25">
<circle cx=".125" cy=".125" r=".05" fill="#fff" />
</pattern>
<pattern id="stripes" x="0" y="0" width=".25" height=".25">
<rect x="0" y="0" width=".25" height=".05" fill="#eee" />
</pattern>
</defs>
<!-- Giraffe body -->
<rect fill="url(#polka-dots)" x="100" y="120" width="80" height="100" rx="10" />
<!-- Giraffe neck -->
<rect fill="#ffe680" x="150" y="60" width="20" height="100" rx="5" />
<!-- Giraffe head -->
<circle cx="160" cy="50" r="20" fill="#f8e231" />
<circle cx="170" cy="40" r="10" fill="#222" />
<circle cx="150" cy="40" r="10" fill="#222" />
<!-- Roller skates -->
<rect fill="url(#stripes)" x="80" y="220" width="60" height="20" rx="5" />
<rect fill="url(#stripes)" x="180" y="220" width="60" height="20" rx="5" />
<circle cx="110" cy="230" r="15" fill="#69f" />
<circle cx="210" cy="230" r="15" fill="#69f" />
<!-- Wheels -->
<circle cx="110" cy="250" r="20" fill="#f50" />
<circle cx="210" cy="250" r="20" fill="#f50" />
<!-- Legs -->
<rect fill="#ffe680" x="120" y="200" width="20" height="40" rx="5" />
<rect fill="#ffe680" x="180" y="200" width="20" height="40" rx="5" />
<!-- Tongue -->
<rect fill="#f00" x="170" cy="70" width="20" height="10" rx="5" />
<!-- Eyelashes -->
<path d="M 160 30 L 170 40" stroke="#222" stroke-width="2" />
<path d="M 160 50 L 170 60" stroke="#222" stroke-width="2" />
<path d="M 170 30 L 160 40" stroke="#222" stroke-width="2" />
<path d="M 170 50 L 160 60" stroke="#222" stroke-width="2" />
<!-- Style lines -->
<path d="M 100 140 L 180 140" stroke="#f50" stroke-width="4" />
<path d="M 100 160 L 180 160" stroke="#f50" stroke-width="4" />
<path d="M 100 180 L 180 180" stroke="#f50" stroke-width="4" />
<path d="M 100 140 L 90 150" stroke="#f50" stroke-width="4" />
<path d="M 100 160 L 90 170" stroke="#f50" stroke-width="4" />
<path d="M 100 180 L 90 190" stroke="#f50" stroke-width="4" />
<path d="M 180 140 L 190 150" stroke="#f50" stroke-width="4" />
<path d="M 180 160 L 190 170" stroke="#f50" stroke-width="4" />
<path d="M 180 180 L 190 190" stroke="#f50" stroke-width="4" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="bodyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#FFC937" />
<stop offset="100%" stop-color="#FF5F5F" />
</linearGradient>
<pattern id="spotsPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="3" fill="#6C3483" />
</pattern>
<linearGradient id="skateGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#3498DB" />
<stop offset="100%" stop-color="#2ECC71" />
</linearGradient>
</defs>
<rect width="300" height="300" fill="#EAE6CA" />
<path d="M150 80 Q140 40 110 70 Q100 110 130 140" fill="url(#bodyGradient)" stroke="black" stroke-width="4"/>
<circle cx="90" cy="70" r="14" fill="white" />
<circle cx="90" cy="70" r="8" fill="black" />
<path d="M200 100 C190 120, 210 140, 200 160" fill="url(#spotsPattern)" />
<path d="M130 140 Q120 180 140 220" fill="none" stroke="black" stroke-width="4"/>
<path d="M140 220 Q150 240 150 250 Q160 250 160 240 Q170 250 180 240" fill="none" stroke="black" stroke-width="4"/>
<g transform="translate(140 220)">
<ellipse rx="20" ry="8" fill="url(#skateGradient)" />
<circle cx="-10" cy="12" r="6" fill="#EC7063" />
<circle cx="0" cy="12" r="6" fill="#EC7063" />
<circle cx="10" cy="12" r="6" fill="#EC7063" />
</g>
<path d="M125 135 C135 145 115 150 130 160" fill="url(#bodyGradient)" stroke="black" stroke-width="3"/>
<text x="30" y="290" font-size="20" fill="#1B4F72" font-family="Arial" font-weight="bold">POP STYLE</text>
<path d="M195 140 Q205 160 190 180" fill="url(#spotsPattern)" />
</svg>
Judge's Analysis
Player 1's submission effectively captures the pop art style with bold colors and geometric shapes, clearly embodying the concept of a giraffe on roller skates.
The vibrant color palette and simplicity align well with pop art aesthetics, making it visually appealing.
Player 2's submission, while creative, is less clear in depicting a giraffe and lacks the boldness typical of pop art.
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
"Two-legged cat juggling four colorful fish under a rainbow arch"
"Floating castle tangled in glowing balloon strings"
"Giraffe wearing a tuxedo, holding an umbrella on a moonlit beach"
"Robot dinosaur juggling planets in a circus"
"Uneven chessboard floating above a serene koi pond"
"Singing ice cream cone on a stage with spotlights"