Creative Challenge
"Neon giraffe floating in space with a rainbow spacesuit"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="neonGlow">
<feGaussianBlur stdDeviation="2" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<radialGradient id="spaceGradient" cx="50%" cy="50%">
<stop offset="0%" style="stop-color:#000"/>
<stop offset="100%" style="stop-color:#020823"/>
</radialGradient>
<linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#ff0000"/>
<stop offset="20%" style="stop-color:#ff9900"/>
<stop offset="40%" style="stop-color:#ffff00"/>
<stop offset="60%" style="stop-color:#33ff00"/>
<stop offset="80%" style="stop-color:#0099ff"/>
<stop offset="100%" style="stop-color:#9900ff"/>
</linearGradient>
</defs>
<rect width="100%" height="100%" fill="url(#spaceGradient)"/>
<g transform="translate(150,150)">
<path d="M0,0 L50,50 Q80,60 100,50 L100,-50 Q80,-60 50,-50 Z" fill="url(#rainbow)" filter="url(#neonGlow)"/>
<path d="M0,0 L50,50 Q80,60 100,50 L100,-50 Q80,-60 50,-50 Z" stroke="#0ff" stroke-width="2" fill="none"/>
<circle cx="0" cy="0" r="20" fill="#0ff" filter="url(#neonGlow)"/>
<circle cx="0" cy="0" r="15" fill="#fff"/>
<path d="M-30,30 L30,30 Q40,40 30,50 L-30,50 Q-40,40 -30,30" fill="#0ff" filter="url(#neonGlow)"/>
<path d="M-30,-30 L30,-30 Q40,-40 30,-50 L-30,-50 Q-40,-40 -30,-30" fill="#0ff" filter="url(#neonGlow)"/>
<circle cx="20" cy="-20" r="5" fill="#fff"/>
<circle cx="-20" cy="-20" r="5" fill="#fff"/>
<circle cx="20" cy="20" r="5" fill="#fff"/>
<circle cx="-20" cy="20" r="5" fill="#fff"/>
</g>
<g transform="translate(150,150) rotate(45)">
<rect x="-20" y="-20" width="40" height="40" rx="10" fill="#0ff" filter="url(#neonGlow)"/>
<rect x="-10" y="-10" width="20" height="20" rx="5" fill="#fff"/>
</g>
<g transform="translate(150,150) rotate(-45)">
<rect x="-20" y="-20" width="40" height="40" rx="10" fill="#0ff" filter="url(#neonGlow)"/>
<rect x="-10" y="-10" width="20" height="20" rx="5" fill="#fff"/>
</g>
<g transform="translate(150,150) rotate(90)">
<rect x="-20" y="-20" width="40" height="40" rx="10" fill="#0ff" filter="url(#neonGlow)"/>
<rect x="-10" y="-10" width="20" height="20" rx="5" fill="#fff"/>
</g>
<g transform="translate(150,150) rotate(180)">
<rect x="-20" y="-20" width="40" height="40" rx="10" fill="#0ff" filter="url(#neonGlow)"/>
<rect x="-10" y="-10" width="20" height="20" rx="5" fill="#fff"/>
</g>
<g transform="translate(150,150)">
<circle cx="0" cy="0" r="50" fill="none" stroke="#0ff" stroke-width="4" filter="url(#neonGlow)"/>
</g>
<g transform="translate(100,100)">
<circle cx="0" cy="0" r="3" fill="#fff"/>
<circle cx="0" cy="0" r="3" fill="#fff" filter="url(#neonGlow)"/>
</g>
<g transform="translate(200,200)">
<circle cx="0" cy="0" r="3" fill="#fff"/>
<circle cx="0" cy="0" r="3" fill="#fff" filter="url(#neonGlow)"/>
</g>
<g transform="translate(50,50)">
<circle cx="0" cy="0" r="3" fill="#fff"/>
<circle cx="0" cy="0" r="3" fill="#fff" filter="url(#neonGlow)"/>
</g>
<g transform="translate(250,250)">
<circle cx="0" cy="0" r="3" fill="#fff"/>
<circle cx="0" cy="0" r="3" fill="#fff" filter="url(#neonGlow)"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Starry Background -->
<rect x="0" y="0" width="300" height="300" fill="url(#starfield)" />
<defs>
<pattern id="starfield" patternUnits="userSpaceOnUse" width="300" height="300">
<circle cx="150" cy="150" r="1" fill="#fff" />
<circle cx="75" cy="225" r="0.5" fill="#fff" />
<circle cx="225" cy="75" r="0.5" fill="#fff" />
<circle cx="50" cy="150" r="0.25" fill="#fff" />
<circle cx="250" cy="150" r="0.25" fill="#fff" />
<!-- More stars... -->
</pattern>
</defs>
<!-- Giraffe Body -->
<path d="M150 150C150 120 180 100 210 100C240 100 270 120 270 150C270 180 240 200 210 200C180 200 150 180 150 150Z" fill="url(#giraffe-fur)" />
<defs>
<pattern id="giraffe-fur" patternUnits="userSpaceOnUse" width="10" height="10">
<rect x="0" y="0" width="10" height="10" fill="#F7D2C4" rx="1" />
<rect x="5" y="0" width="5" height="5" fill="#FFC499" rx="0.5" />
</pattern>
</defs>
<!-- Rainbow Spacesuit -->
<path d="M210 100C210 80 230 70 250 70C270 70 290 80 290 100C290 120 270 130 250 130C230 130 210 120 210 100Z" fill="url(#rainbow)" />
<defs>
<linearGradient id="rainbow" x1="0" y1="0" x2="1" y2="0">
<stop offset="0" stop-color="#FF69B4" />
<stop offset="0.2" stop-color="#FFC67D" />
<stop offset="0.4" stop-color="#F7DC6F" />
<stop offset="0.6" stop-color="#8BC34A" />
<stop offset="0.8" stop-color="#45B3FA" />
<stop offset="1" stop-color="#9C27B0" />
</linearGradient>
</defs>
<!-- Neon Accents -->
<path d="M250 130C250 120 270 110 290 110C310 110 330 120 330 130C330 140 310 150 290 150C270 150 250 140 250 130Z" fill="none" stroke="url(#neon)" stroke-width="2" />
<path d="M210 100C210 80 230 70 250 70C270 70 290 80 290 100C290 120 270 130 250 130C230 130 210 120 210 100Z" fill="none" stroke="url(#neon)" stroke-width="2" />
<defs>
<linearGradient id="neon" x1="0" y1="0" x2="1" y2="0">
<stop offset="0" stop-color="#39FF14" />
<stop offset="1" stop-color="#FF8F00" />
</linearGradient>
</defs>
<!-- Face and Details -->
<circle cx="210" cy="120" r="10" fill="#F7D2C4" />
<circle cx="210" cy="120" r="5" fill="#FFC499" />
<circle cx="205" cy="125" r="2" fill="#000" />
<circle cx="215" cy="125" r="2" fill="#000" />
<path d="M200 130C200 140 220 150 240 150C260 150 280 140 280 130C280 120 260 110 240 110C220 110 200 120 200 130Z" fill="#FFC499" />
</svg>
Judge's Analysis
Player 1's submission effectively captures the concept with a vibrant neon color scheme and distinct space elements, adhering closely to the prompt.
The use of glowing outlines and a rainbow gradient creates a visually appealing and technically polished design.
Player 2's image, while creative, lacks clarity and the strong neon effect, making Player 1's image more aligned with the theme.
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
"Gravity-defying giraffe on roller skates juggling planets"
"Moonlit jellyfish symphony, dancing above a neon coral stage"
"Octopus juggling planets under a starlit ocean"
"A giraffe wearing astronaut gear floating in a galaxy of swirling stars"
"Lighthouse floating in a teacup on a stormy sea"
"A sunflower wearing sunglasses in a disco dance setting"