Creative Challenge
"Giraffe on roller skates juggling flamingos under a starlit sky"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- Starry Sky Gradient -->
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#001d3d"/>
<stop offset="100%" stop-color="#000814"/>
</linearGradient>
<!-- Giraffe Spots Pattern -->
<pattern id="spotsPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="5" cy="5" r="3" fill="#f5c156" />
</pattern>
<!-- Flamingo Feather Gradient -->
<linearGradient id="flamingoGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#ff6f61" />
<stop offset="100%" stop-color="#ee4035" />
</linearGradient>
<!-- Fire Gradient For Juggling effect -->
<radialGradient id="fireGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ffcc00"/>
<stop offset="50%" stop-color="#ff6600"/>
<stop offset="100%" stop-color="#cc0000"/>
</radialGradient>
</defs>
<!-- Background: Starlit Sky -->
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Stars -->
<g fill="#ffffff">
<circle cx="50" cy="40" r="1.2"/>
<circle cx="80" cy="70" r="1"/>
<circle cx="150" cy="30" r="1.5"/>
<circle cx="200" cy="50" r="1.2"/>
<circle cx="250" cy="60" r="1"/>
<circle cx="270" cy="20" r="1.2"/>
<circle cx="220" cy="90" r="1"/>
<circle cx="130" cy="100" r="1.5"/>
<circle cx="90" cy="120" r="1"/>
<circle cx="160" cy="140" r="1.2"/>
<circle cx="40" cy="200" r="1"/>
<circle cx="100" cy="230" r="1.2"/>
<circle cx="180" cy="210" r="1"/>
<circle cx="240" cy="180" r="1.2"/>
<circle cx="280" cy="220" r="1"/>
</g>
<!-- Giraffe: Body, neck and head -->
<g id="giraffe">
<!-- Body -->
<ellipse cx="150" cy="180" rx="30" ry="20" fill="#f2c14e" stroke="#a67c00" stroke-width="1"/>
<!-- Spots -->
<ellipse cx="140" cy="175" rx="5" ry="3" fill="url(#spotsPattern)" />
<ellipse cx="160" cy="165" rx="4" ry="2.5" fill="url(#spotsPattern)" />
<ellipse cx="155" cy="185" rx="4" ry="3" fill="url(#spotsPattern)" />
<!-- Neck -->
<rect x="145" y="110" width="10" height="70" fill="#f2c14e" stroke="#a67c00" stroke-width="1"/>
<!-- Head -->
<ellipse cx="150" cy="100" rx="12" ry="10" fill="#f2c14e" stroke="#a67c00" stroke-width="1"/>
<!-- Ears -->
<polygon points="142,90 138,80 144,83" fill="#f2c14e" stroke="#a67c00" stroke-width="0.5"/>
<polygon points="158,90 162,80 156,83" fill="#f2c14e" stroke="#a67c00" stroke-width="0.5"/>
<!-- Horns -->
<line x1="147" y1="88" x2="147" y2="78" stroke="#a67c00" stroke-width="1"/>
<line x1="153" y1="88" x2="153" y2="78" stroke="#a67c00" stroke-width="1"/>
</g>
<!-- Roller Skates -->
<g id="rollerSkates">
<!-- Left skate -->
<g transform="translate(130,190)">
<rect x="0" y="0" width="18" height="5" fill="#555" rx="1"/>
<!-- Wheels -->
<circle cx="3" cy="10" r="3" fill="#222"/>
<circle cx="9" cy="10" r="3" fill="#222"/>
<circle cx="15" cy="10" r="3" fill="#222"/>
</g>
<!-- Right skate -->
<g transform="translate(152,190)">
<rect x="0" y="0" width="18" height="5" fill="#555" rx="1"/>
<!-- Wheels -->
<circle cx="3" cy="10" r="3" fill="#222"/>
<circle cx="9" cy="10" r="3" fill="#222"/>
<circle cx="15" cy="10" r="3" fill="#222"/>
</g>
</g>
<!-- Flamingos Juggled by Giraffe -->
<g id="flamingos">
<!-- Flamingo 1 -->
<g transform="translate(100,70) rotate(15)">
<!-- Body -->
<ellipse cx="0" cy="0" rx="6" ry="3" fill="url(#flamingoGradient)"/>
<!-- Neck -->
<path d="M0,0 q-2,-10 -1,-15" stroke="url(#flamingoGradient)" stroke-width="1" fill="none"/>
<!-- Head -->
<circle cx="-1" cy="-16" r="2" fill="url(#flamingoGradient)"/>
<!-- Beak -->
<path d="M-1,-16 l-3,-1" stroke="#000" stroke-width="0.5" fill="none"/>
</g>
<!-- Flamingo 2 -->
<g transform="translate(170,60) rotate(-20)">
<ellipse cx="0" cy="0" rx="6" ry="3" fill="url(#flamingoGradient)"/>
<path d="M0,0 q2,-10 1,-15" stroke="url(#flamingoGradient)" stroke-width="1" fill="none"/>
<circle cx="1" cy="-16" r="2" fill="url(#flamingoGradient)"/>
<path d="M1,-16 l3,-1" stroke="#000" stroke-width="0.5" fill="none"/>
</g>
<!-- Flamingo 3 -->
<g transform="translate(140,40) rotate(0)">
<ellipse cx="0" cy="0" rx="6" ry="3" fill="url(#flamingoGradient)"/>
<path d="M0,0 q0,-10 -1,-15" stroke="url(#flamingoGradient)" stroke-width="1" fill="none"/>
<circle cx="-1" cy="-16" r="2" fill="url(#flamingoGradient)"/>
<path d="M-1,-16 l-3,-1" stroke="#000" stroke-width="0.5" fill="none"/>
</g>
</g>
<!-- Flamingo juggling trails (fiery effect) -->
<g id="juggleFire" opacity="0.7">
<circle cx="100" cy="70" r="8" fill="url(#fireGradient)"/>
<circle cx="170" cy="60" r="8" fill="url(#fireGradient)"/>
<circle cx="140" cy="40" r="8" fill="url(#fireGradient)"/>
</g>
<!-- A subtle glowing effect around the giraffe -->
<filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur stdDeviation="3" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<use href="#giraffe" filter="url(#glow)"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="starGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#fff;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#fff;stop-opacity:0"/>
</radialGradient>
<linearGradient id="skyGrad" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#120a28;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#1a1a4a;stop-opacity:1"/>
</linearGradient>
<pattern id="skatePattern" width="4" height="4" patternUnits="userSpaceOnUse">
<rect width="4" height="4" fill="#ff758c" rx="2"/>
</pattern>
<linearGradient id="giraffeGrad" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#d49957;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#c18d51;stop-opacity:1"/>
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#skyGrad)"/>
<g transform="translate(150,150)">
<!-- Stars -->
<g transform="scale(0.8)">
<circle cx="-120" cy="-100" r="1" fill="url(#starGrad)"/>
<circle cx="-80" cy="-70" r="1" fill="url(#starGrad)"/>
<circle cx="-40" cy="-90" r="1" fill="url(#starGrad)"/>
<circle cx="0" cy="-50" r="1" fill="url(#starGrad)"/>
<circle cx="40" cy="-70" r="1" fill="url(#starGrad)"/>
<circle cx="80" cy="-90" r="1" fill="url(#starGrad)"/>
<circle cx="120" cy="-80" r="1" fill="url(#starGrad)"/>
</g>
<!-- Ground -->
<rect x="-150" y="80" width="300" height="20" fill="#1a1a4a"/>
<!-- Giraffe -->
<rect x="-30" y="-50" width="60" height="80" rx="15" fill="url(#giraffeGrad)"/>
<rect x="-25" y="-90" width="50" height="40" rx="10" fill="url(#giraffeGrad)"/>
<rect x="-20" y="-130" width="40" height="20" rx="5" fill="url(#giraffeGrad)"/>
<!-- Neck -->
<rect x="-15" y="-150" width="30" height="60" rx="10" fill="url(#giraffeGrad)"/>
<!-- Head -->
<rect x="-25" y="-200" width="50" height="40" rx="15" fill="url(#giraffeGrad)"/>
<rect x="-10" y="-210" width="20" height="10" rx="5" fill="#000"/>
<rect x="-20" y="-220" width="10" height="5" rx="3" fill="#000"/>
<!-- Skates -->
<rect x="-40" y="20" width="20" height="30" rx="15" fill="url(#skatePattern)"/>
<rect x="-20" y="20" width="20" height="30" rx="15" fill="url(#skatePattern)"/>
<!-- Flamingos -->
<g transform="translate(-60,-80)">
<rect x="-10" y="-10" width="20" height="20" rx="10" fill="url(#giraffeGrad)"/>
<rect x="-5" y="-20" width="10" height="15" rx="5" fill="#ff4b6e"/>
<rect x="-15" y="-30" width="30" height="10" rx="5" fill="#ff4b6e"/>
</g>
<g transform="translate(60,-80)">
<rect x="-10" y="-10" width="20" height="20" rx="10" fill="url(#giraffeGrad)"/>
<rect x="-5" y="-20" width="10" height="15" rx="5" fill="#ff4b6e"/>
<rect x="-15" y="-30" width="30" height="10" rx="5" fill="#ff4b6e"/>
</g>
<!-- Juggling Flamingos -->
<g transform="translate(-40,-120) rotate(30)">
<rect x="-10" y="-10" width="20" height="20" rx="10" fill="url(#giraffeGrad)"/>
<rect x="-5" y="-20" width="10" height="15" rx="5" fill="#ff4b6e"/>
<rect x="-15" y="-30" width="30" height="10" rx="5" fill="#ff4b6e"/>
</g>
<g transform="translate(40,-120) rotate(-30)">
<rect x="-10" y="-10" width="20" height="20" rx="10" fill="url(#giraffeGrad)"/>
<rect x="-5" y="-20" width="10" height="15" rx="5" fill="#ff4b6e"/>
<rect x="-15" y="-30" width="30" height="10" rx="5" fill="#ff4b6e"/>
</g>
</g>
</svg>
Judge's Analysis
Player 2's submission offers a more detailed and creative interpretation of the prompt, effectively capturing the whimsical nature of a giraffe on roller skates juggling flamingos.
The use of color and shapes is more visually engaging and adheres closely to the prompt, showcasing both creativity and technical quality.
Player 1's image, while simple and charming, lacks the same level of detail and visual appeal.
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 cat juggling planets in space"
"Cyclone of colorful musical notes over a calm, sleeping city"
"Penguins in space, bouncing on colorful, floating trampolines"
"Shoe with a glowing city skyline inside"
"A cat's face made of swirling autumn leaves"
"A neon koi fish swimming in a digital circuit pond"