Creative Challenge
"A giraffe wearing a top hat, juggling planets in a starry sky"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background: Starry Sky -->
<rect width="300" height="300" fill="black" />
<circle cx="150" cy="150" r="2" fill="white" />
<circle cx="100" cy="200" r="1.5" fill="white" />
<circle cx="200" cy="50" r="2.5" fill="white" />
<!-- Giraffe Body -->
<ellipse cx="150" cy="200" rx="50" ry="80" fill="#FFD700" />
<!-- Giraffe Spots -->
<circle cx="120" cy="170" r="10" fill="#8B4513" />
<circle cx="180" cy="160" r="8" fill="#8B4513" />
<!-- Giraffe Head -->
<circle cx="150" cy="120" r="30" fill="#FFD700" />
<!-- Giraffe Eye -->
<circle cx="140" cy="110" r="3" fill="black" />
<!-- Giraffe Ears -->
<path d="M135,100 L135,80 Q145,75 155,80 L155,100 Z" fill="#FFD700" />
<!-- Giraffe Neck -->
<path d="M150,160 L150,200" stroke="#FFD700" stroke-width="15" />
<!-- Top Hat -->
<rect x="125" y="70" width="50" height="20" fill="black" />
<polygon points="120,70 180,70 150,30" fill="black" />
<!-- Planets for Juggling -->
<circle cx="50" cy="50" r="8" fill="#6495ED">
<animate attributeName="cy" dur="1s" values="50;120;50" repeatCount="indefinite" />
</circle>
<circle cx="100" cy="50" r="10" fill="#FFD700">
<animate attributeName="cy" dur="0.9s" values="50;120;50" repeatCount="indefinite" />
</circle>
<circle cx="200" cy="50" r="12" fill="#800080">
<animate attributeName="cy" dur="1.2s" values="50;120;50" repeatCount="indefinite" />
</circle>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Definitions for reusable elements -->
<defs>
<!-- Starry background gradient -->
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#0a0a2a" />
<stop offset="50%" stop-color="#1a1a5a" />
<stop offset="100%" stop-color="#2a0a3a" />
</linearGradient>
<!-- Star pattern -->
<pattern id="starPattern" width="100" height="100" patternUnits="userSpaceOnUse">
<circle cx="10" cy="10" r="0.8" fill="white" opacity="0.8" />
<circle cx="25" cy="30" r="0.6" fill="white" opacity="0.7" />
<circle cx="40" cy="15" r="1" fill="white" opacity="0.9" />
<circle cx="55" cy="45" r="0.7" fill="white" opacity="0.8" />
<circle cx="70" cy="25" r="0.5" fill="white" opacity="0.6" />
<circle cx="85" cy="50" r="0.9" fill="white" opacity="0.9" />
<circle cx="15" cy="65" r="0.7" fill="white" opacity="0.7" />
<circle cx="35" cy="80" r="0.6" fill="white" opacity="0.6" />
<circle cx="50" cy="60" r="1.2" fill="white" opacity="1" />
<circle cx="75" cy="75" r="0.8" fill="white" opacity="0.8" />
<circle cx="90" cy="90" r="0.5" fill="white" opacity="0.5" />
</pattern>
<!-- Giraffe pattern -->
<pattern id="giraffePattern" width="30" height="30" patternUnits="userSpaceOnUse">
<rect width="30" height="30" fill="#f9d77c" />
<path d="M5,5 L15,15 L25,5 L15,15 L25,25 L15,15 L5,25 L15,15 Z" fill="#c89932" />
</pattern>
<!-- Planet textures -->
<radialGradient id="planet1Gradient" cx="50%" cy="50%" r="50%" fx="25%" fy="25%">
<stop offset="0%" stop-color="#ff6b6b" />
<stop offset="100%" stop-color="#d32f2f" />
</radialGradient>
<radialGradient id="planet2Gradient" cx="50%" cy="50%" r="50%" fx="25%" fy="25%">
<stop offset="0%" stop-color="#4fc3f7" />
<stop offset="100%" stop-color="#0288d1" />
</radialGradient>
<radialGradient id="planet3Gradient" cx="50%" cy="50%" r="50%" fx="25%" fy="25%">
<stop offset="0%" stop-color="#aed581" />
<stop offset="100%" stop-color="#689f38" />
</radialGradient>
<radialGradient id="planet4Gradient" cx="50%" cy="50%" r="50%" fx="25%" fy="25%">
<stop offset="0%" stop-color="#ffee58" />
<stop offset="100%" stop-color="#fbc02d" />
</radialGradient>
<!-- Galaxy swirl -->
<radialGradient id="galaxyGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ba68c8" stop-opacity="0.7" />
<stop offset="100%" stop-color="#ba68c8" stop-opacity="0" />
</radialGradient>
<!-- Top hat shine -->
<linearGradient id="hatShine" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#4d4d4d" />
<stop offset="50%" stop-color="#1a1a1a" />
<stop offset="100%" stop-color="#000000" />
</linearGradient>
<!-- Planet ring glow -->
<linearGradient id="ringGlow" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#ffd54f" stop-opacity="0" />
<stop offset="50%" stop-color="#ffd54f" stop-opacity="1" />
<stop offset="100%" stop-color="#ffd54f" stop-opacity="0" />
</linearGradient>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#skyGradient)" />
<rect width="300" height="300" fill="url(#starPattern)" />
<!-- Galaxy swirl -->
<ellipse cx="50" cy="230" rx="70" ry="30" fill="url(#galaxyGradient)" transform="rotate(-20, 50, 230)" />
<ellipse cx="250" cy="50" rx="60" ry="25" fill="url(#galaxyGradient)" transform="rotate(30, 250, 50)" />
<!-- Large special stars -->
<circle cx="30" cy="40" r="1.5" fill="white">
<animate attributeName="opacity" values="0.3;1;0.3" dur="3s" repeatCount="indefinite" />
</circle>
<circle cx="250" cy="70" r="1.8" fill="white">
<animate attributeName="opacity" values="0.5;1;0.5" dur="5s" repeatCount="indefinite" />
</circle>
<circle cx="120" cy="25" r="2" fill="white">
<animate attributeName="opacity" values="0.4;1;0.4" dur="4s" repeatCount="indefinite" />
</circle>
<circle cx="280" cy="200" r="1.7" fill="white">
<animate attributeName="opacity" values="0.6;1;0.6" dur="6s" repeatCount="indefinite" />
</circle>
<!-- Shooting star -->
<g>
<line x1="200" y1="30" x2="230" y2="60" stroke="white" stroke-width="1">
<animate attributeName="x1" values="200;190" dur="3s" repeatCount="indefinite" />
<animate attributeName="y1" values="30;20" dur="3s" repeatCount="indefinite" />
<animate attributeName="x2" values="230;220" dur="3s" repeatCount="indefinite" />
<animate attributeName="y2" values="60;50" dur="3s" repeatCount="indefinite" />
<animate attributeName="opacity" values="0;1;0" dur="3s" repeatCount="indefinite" />
</line>
</g>
<!-- Sparkles around planets -->
<circle cx="85" cy="80" r="1" fill="#ffcc00">
<animate attributeName="opacity" values="0;1;0" dur="2s" repeatCount="indefinite" />
<animate attributeName="cy" values="80;60;80" dur="2s" repeatCount="indefinite" />
</circle>
<circle cx="215" cy="90" r="1" fill="#ffcc00">
<animate attributeName="opacity" values="0;1;0" dur="1.5s" repeatCount="indefinite" />
<animate attributeName="cy" values="90;70;90" dur="1.5s" repeatCount="indefinite" />
</circle>
<circle cx="155" cy="140" r="1" fill="#ffcc00">
<animate attributeName="opacity" values="0;1;0" dur="2.2s" repeatCount="indefinite" />
<animate attributeName="cy" values="140;160;140" dur="2.2s" repeatCount="indefinite" />
</circle>
<!-- Planets being juggled -->
<!-- Planet 1: Red -->
<g>
<circle cx="90" cy="100" r="15" fill="url(#planet1Gradient)">
<animate attributeName="cy" values="100;80;100" dur="2s" repeatCount="indefinite" />
</circle>
<ellipse cx="90" cy="100" rx="18" ry="3" fill="#00000033" transform="translate(0,30)">
<animate attributeName="cy" values="130;110;130" dur="2s" repeatCount="indefinite" />
<animate attributeName="rx" values="18;10;18" dur="2s" repeatCount="indefinite" />
<animate attributeName="opacity" values="0.3;0.1;0.3" dur="2s" repeatCount="indefinite" />
</ellipse>
<!-- Rings -->
<ellipse cx="90" cy="100" rx="20" ry="5" fill="none" stroke="#ff9e80" stroke-width="1" transform="rotate(20,90,100)">
<animate attributeName="cy" values="100;80;100" dur="2s" repeatCount="indefinite" />
</ellipse>
<!-- Craters -->
<circle cx="85" cy="95" r="3" fill="#c62828" opacity="0.7">
<animate attributeName="cy" values="95;75;95" dur="2s" repeatCount="indefinite" />
</circle>
<circle cx="95" cy="105" r="2" fill="#c62828" opacity="0.7">
<animate attributeName="cy" values="105;85;105" dur="2s" repeatCount="indefinite" />
</circle>
</g>
<!-- Planet 2: Blue -->
<g>
<circle cx="150" cy="70" r="18" fill="url(#planet2Gradient)">
<animate attributeName="cy" values="70;90;70" dur="1.7s" repeatCount="indefinite" />
</circle>
<ellipse cx="150" cy="70" rx="20" ry="4" fill="#00000033" transform="translate(0,30)">
<animate attributeName="cy" values="100;120;100" dur="1.7s" repeatCount="indefinite" />
<animate attributeName="rx" values="20;15;20" dur="1.7s" repeatCount="indefinite" />
<animate attributeName="opacity" values="0.3;0.1;0.3" dur="1.7s" repeatCount="indefinite" />
</ellipse>
<!-- Cloud details -->
<g>
<path d="M140,63 Q145,58 150,63 T160,63" fill="white" opacity="0.5">
<animate attributeName="transform" values="translate(0,0);translate(0,20);translate(0,0)" dur="1.7s" repeatCount="indefinite" />
</path>
<path d="M142,73 Q147,68 152,73 T162,73" fill="white" opacity="0.5">
<animate attributeName="transform" values="translate(0,0);translate(0,20);translate(0,0)" dur="1.7s" repeatCount="indefinite" />
</path>
</g>
</g>
<!-- Planet 3: Green -->
<g>
<circle cx="210" cy="100" r="12" fill="url(#planet3Gradient)">
<animate attributeName="cy" values="100;80;100" dur="1.5s" repeatCount="indefinite" />
</circle>
<ellipse cx="210" cy="100" rx="15" ry="3" fill="#00000033" transform="translate(0,25)">
<animate attributeName="cy" values="125;105;125" dur="1.5s" repeatCount="indefinite" />
<animate attributeName="rx" values="15;8;15" dur="1.5s" repeatCount="indefinite" />
<animate attributeName="opacity" values="0.3;0.1;0.3" dur="1.5s" repeatCount="indefinite" />
</ellipse>
<!-- Land details -->
<path d="M205,95 Q210,97 215,95 T225,95" fill="#8bc34a" opacity="0.7" transform="translate(0,-5) scale(0.8)">
<animate attributeName="transform" values="translate(0,-5) scale(0.8);translate(0,-25) scale(0.8);translate(0,-5) scale(0.8)" dur="1.5s" repeatCount="indefinite" />
</path>
<path d="M200,105 Q205,107 210,105 T220,105" fill="#8bc34a" opacity="0.7" transform="translate(0,-5) scale(0.8)">
<animate attributeName="transform" values="translate(0,-5) scale(0.8);translate(0,-25) scale(0.8);translate(0,-5) scale(0.8)" dur="1.5s" repeatCount="indefinite" />
</path>
</g>
<!-- Planet 4: Yellow/Saturn-like -->
<g>
<circle cx="150" cy="120" r="10" fill="url(#planet4Gradient)">
<animate attributeName="cy" values="120;140;120" dur="2.2s" repeatCount="indefinite" />
</circle>
<ellipse cx="150" cy="120" rx="18" ry="2" fill="none" stroke="url(#ringGlow)" stroke-width="1.5" transform="rotate(20,150,120)">
<animate attributeName="cy" values="120;140;120" dur="2.2s" repeatCount="indefinite" />
</ellipse>
<ellipse cx="150" cy="120" rx="15" ry="3" fill="#00000033" transform="translate(0,20)">
<animate attributeName="cy" values="140;160;140" dur="2.2s" repeatCount="indefinite" />
<animate attributeName="rx" values="15;8;15" dur="2.2s" repeatCount="indefinite" />
<animate attributeName="opacity" values="0.3;0.1;0.3" dur="2.2s" repeatCount="indefinite" />
</ellipse>
</g>
<!-- Motion lines to indicate juggling -->
<path d="M110,130 Q130,70 150,130 Q170,70 190,130" fill="none" stroke="white" stroke-width="1" stroke-dasharray="2,3" opacity="0.6">
<animate attributeName="d" values="M110,130 Q130,70 150,130 Q170,70 190,130;M110,110 Q130,150 150,110 Q170,150 190,110;M110,130 Q130,70 150,130 Q170,70 190,130" dur="2s" repeatCount="indefinite" />
</path>
<!-- Giraffe body -->
<g transform="translate(150, 220) scale(0.9)">
<!-- Legs -->
<rect x="-30" y="20" width="10" height="60" fill="#f9d77c" rx="5" />
<rect x="20" y="20" width="10" height="60" fill="#f9d77c" rx="5" />
<!-- Body -->
<ellipse cx="0" cy="0" rx="30" ry="40" fill="url(#giraffePattern)" />
<!-- Neck -->
<path d="M0,-30 C-10,-60 -15,-90 -5,-130 C5,-170 5,-200 0,-220"
stroke="url(#giraffePattern)" stroke-width="15" fill="none" />
<!-- Giraffe spots on neck -->
<g transform="translate(0, -130)">
<path d="M-10,0 L-5,5 L0,0 L-5,-5 Z" fill="#c89932" />
</g>
<g transform="translate(-5, -170)">
<path d="M-10,0 L-5,5 L0,0 L-5,-5 Z" fill="#c89932" />
</g>
<g transform="translate(0, -200)">
<path d="M-10,0 L-5,5 L0,0 L-5,-5 Z" fill="#c89932" />
</g>
<!-- Head -->
<g transform="translate(0, -225)">
<!-- Basic head shape -->
<ellipse cx="0" cy="0" rx="12" ry="18" fill="#f9d77c" />
<!-- Giraffe spots on head -->
<path d="M-8,-5 L-3,0 L-8,5 L-13,0 Z" fill="#c89932" />
<path d="M8,-5 L13,0 L8,5 L3,0 Z" fill="#c89932" />
<!-- Ears -->
<ellipse cx="-10" cy="-5" rx="5" ry="7" fill="#f9d77c" transform="rotate(-20)" />
<ellipse cx="10" cy="-5" rx="5" ry="7" fill="#f9d77c" transform="rotate(20)" />
<!-- Eyes -->
<circle cx="-6" cy="0" r="2.5" fill="white" />
<circle cx="6" cy="0" r="2.5" fill="white" />
<circle cx="-6" cy="0" r="1.2" fill="black" />
<circle cx="6" cy="0" r="1.2" fill="black" />
<circle cx="-5.5" cy="-0.5" r="0.5" fill="white" />
<circle cx="6.5" cy="-0.5" r="0.5" fill="white" />
<!-- Mouth -->
<path d="M-5,10 C0,15 5,15 10,10" fill="none" stroke="#a67c29" stroke-width="1" />
<!-- Horns/ossicones -->
<path d="M-8,-15 L-12,-25" stroke="#a67c29" stroke-width="4" stroke-linecap="round" />
<path d="M8,-15 L12,-25" stroke="#a67c29" stroke-width="4" stroke-linecap="round" />
<!-- Top hat -->
<rect x="-15" y="-45" width="30" height="5" fill="#1a1a1a" rx="2" ry="2" />
<rect x="-12" y="-65" width="24" height="20" fill="url(#hatShine)" rx="2" ry="2" />
<rect x="-12" y="-47" width="24" height="4" fill="#cc0000" />
<!-- Hat shine -->
<path d="M-8,-58 L-2,-62 L4,-58" fill="none" stroke="#ffffff" stroke-width="0.5" opacity="0.7" />
</g>
</g>
<!-- Giraffe arm/front legs for juggling -->
<path d="M135,170 C130,155 125,145 120,160" stroke="#f9d77c" stroke-width="6" fill="none" stroke-linecap="round">
<animate attributeName="d" values="M135,170 C130,155 125,145 120,160;M135,170 C130,155 140,145 145,160;M135,170 C130,155 125,145 120,160" dur="2s" repeatCount="indefinite" />
</path>
<path d="M165,170 C170,155 175,145 180,160" stroke="#f9d77c" stroke-width="6" fill="none" stroke-linecap="round">
<animate attributeName="d" values="M165,170 C170,155 175,145 180,160;M165,170 C170,155 160,145 155,160;M165,170 C170,155 175,145 180,160" dur="2s" repeatCount="indefinite" />
</path>
<!-- Bow tie as an extra stylish detail -->
<path d="M150,190 L140,185 L140,195 Z" fill="#cc0000" />
<path d="M150,190 L160,185 L160,195 Z" fill="#cc0000" />
<circle cx="150" cy="190" r="2" fill="#990000" />
<!-- Comet -->
<g>
<ellipse cx="250" cy="150" rx="10" ry="3" fill="#88ccff" opacity="0.7" />
<path d="M250,150 L270,140" stroke="#88ccff" stroke-width="3" stroke-linecap="round" opacity="0.5" />
<circle cx="250" cy="150" r="5" fill="#aaddff" />
<animateTransform attributeName="transform" type="translate"
from="-50 50" to="350 -50"
begin="0s" dur="8s" repeatCount="indefinite" />
</g>
</svg>
Judge's Analysis
Player 2's image is more detailed and visually appealing, effectively capturing the whimsical concept of a giraffe juggling planets in a starry sky.
The technical execution is superior, with a clear depiction of both the giraffe and the planets.
In contrast, Player 1's image lacks detail and adherence to the prompt, making it less engaging.
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
"Skyscraper made of giant seashells under aurora borealis"
"A moonlit violin serenades a dancing galaxy, in impressionism"
"Floating library in a teacup sailing on a sea of honey under a moonlit sky"
"A flying teacup with wings, pouring stars into an ocean made of swirling galaxies"
"A giraffe wearing a suit, reading a newspaper, on a tiny unicycle"
"Melting clock dripping over a cactus in the desert"