Creative Challenge
"A giraffe wearing a bow tie, juggling planets, in a minimalist style"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="giraffeGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#f5cba7"/>
<stop offset="100%" stop-color="#d2b48c"/>
</linearGradient>
<radialGradient id="bowTieGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ff4081"/>
<stop offset="100%" stop-color="#c51162"/>
</radialGradient>
<radialGradient id="planet1Gradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#42a5f5"/>
<stop offset="100%" stop-color="#1e88e5"/>
</radialGradient>
<radialGradient id="planet2Gradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#66bb6a"/>
<stop offset="100%" stop-color="#43a047"/>
</radialGradient>
<radialGradient id="planet3Gradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ffa726"/>
<stop offset="100%" stop-color="#fb8c00"/>
</radialGradient>
</defs>
<!-- Giraffe Body -->
<ellipse cx="150" cy="220" rx="50" ry="30" fill="url(#giraffeGradient)"/>
<!-- Giraffe Neck -->
<rect x="140" y="100" width="20" height="120" fill="url(#giraffeGradient)" rx="10"/>
<!-- Giraffe Head -->
<circle cx="150" cy="80" r="30" fill="url(#giraffeGradient)"/>
<!-- Ears -->
<path d="M135,70 L130,60 L140,65 Z" fill="url(#giraffeGradient)"/>
<path d="M165,70 L170,60 L160,65 Z" fill="url(#giraffeGradient)"/>
<!-- Bow Tie -->
<path d="M150,110 L140,120 L150,115 L160,120 Z" fill="url(#bowTieGradient)"/>
<!-- Planets -->
<circle cx="100" cy="50" r="15" fill="url(#planet1Gradient)" />
<circle cx="200" cy="40" r="10" fill="url(#planet2Gradient)" />
<circle cx="150" cy="20" r="20" fill="url(#planet3Gradient)" />
<!-- Juggling Arcs -->
<path d="M100,50 C120,60 180,60 200,40" stroke="#ccc" stroke-dasharray="4 2" fill="none"/>
<path d="M200,40 C180,50 120,50 100,50" stroke="#ccc" stroke-dasharray="4 2" fill="none"/>
<path d="M150,20 C160,30 140,30 150,20" stroke="#ccc" stroke-dasharray="4 2" fill="none"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="giraffe" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#F7D2C4" />
<stop offset="1" stop-color="#FFC499" />
</linearGradient>
<radialGradient id="bowtie" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0" stop-color="#8B0A1A" />
<stop offset="1" stop-color="#FF69B4" />
</radialGradient>
<pattern id="polka" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="2" fill="#FFFFFF" />
</pattern>
</defs>
<rect x="0" y="0" width="300" height="300" fill="#212121" rx="20" />
<g transform="translate(150 150)">
<circle cx="0" cy="-120" r="20" fill="url(#giraffe)" />
<circle cx="0" cy="-100" r="10" fill="#FFFFFF" />
<path d="M-20 -80 C-20 -80 -30 -60 -40 -60 L-40 -40 C-40 -40 -30 -20 -20 -20 Z" fill="url(#bowtie)" />
<path d="M20 -80 C20 -80 30 -60 40 -60 L40 -40 C40 -40 30 -20 20 -20 Z" fill="url(#bowtie)" />
<circle cx="-40" cy="-40" r="10" fill="url(#polka)" />
<circle cx="40" cy="-40" r="10" fill="url(#polka)" />
<g transform="rotate(45)">
<circle cx="-50" cy="0" r="20" fill="#87CEEB" />
<circle cx="0" cy="0" r="20" fill="#FFC107" />
<circle cx="50" cy="0" r="20" fill="#34C759" />
</g>
</g>
</svg>
Judge's Analysis
Player 1's submission effectively captures the minimalist style while clearly depicting a giraffe with a bow tie juggling planets.
The clean lines and simple forms adhere well to the prompt, and the use of color is balanced and visually appealing.
Player 2's submission, while creative, is less clear in representing a giraffe and the juggling concept, making Player 1's entry stronger overall.
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
"Purple elephant in space juggling glowing planets"
"An octopus juggling flaming swords underwater"
"Transparent jellyfish floating through a starry galaxy"
"Octopus knitting a scarf underwater, surrounded by playful seahorses"
"Two cats fencing with paintbrushes atop a floating book"
"Surrealist portrait: Leonardo da Vinci's face made of floating clock gears"