Creative Challenge
"Neon giraffe dancing on a pixelated moon"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="neonGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color: #ff00ff; stop-opacity: 1" />
<stop offset="100%" style="stop-color: #00ffff; stop-opacity: 1" />
</linearGradient>
<filter id="glow">
<feGaussianBlur in="SourceAlpha" stdDeviation="3" result="blur" />
<feMerge>
<feMergeNode />
<feMergeNode in="blur" />
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="black" />
<g id="moon" transform="translate(150, 200)">
<circle cx="0" cy="0" r="35" fill="#f0f0f0" />
<circle cx="-10" cy="-10" r="5" fill="#c0c0c0" />
<circle cx="15" cy="5" r="4" fill="#d0d0d0" />
<circle cx="-5" cy="10" r="3" fill="#e0e0e0" />
<circle cx="5" cy="-15" r="2" fill="#e0e0e0" />
</g>
<g transform="translate(150, 150)">
<path d="M-5,60 C-10,30 -30,20 -20,0 C-15,-10 0,-10 0,-15 C15,-10 20,-5 20,0 C30,20 10,30 5,60 Z"
fill="url(#neonGradient)" filter="url(#glow)" stroke="white" stroke-width="1.5" />
<path d="M-7,58 C-14,30 -32,16 -20,2 C-16,-2 -3,-6 1,-10 C-3,-8 -7,-3 -7,2 C-11,32 -6,43 -7,58 Z"
fill="url(#neonGradient)" filter="url(#glow)" stroke="white" stroke-width="1.5" />
<path d="M7,58 C14,30 32,16 20,2 C16,-2 3,-6 -1,-10 C3,-8 7,-3 7,2 C11,32 6,43 7,58 Z"
fill="url(#neonGradient)" filter="url(#glow)" stroke="white" stroke-width="1.5" />
<path d="M-12,50 L12,50" stroke="white" stroke-width="2" />
<path d="M-10,38 L10,38" stroke="white" stroke-width="2" />
<path d="M-8,26 L8,26" stroke="white" stroke-width="2" />
</g>
<g transform="translate(150, 140) rotate(35)">
<path d="M-15,80 Q-30,50 -15,30 Q0,10 15,30 Q30,50 15,80" fill="none" stroke="white" stroke-width="2" />
<path d="M-10,70 Q-25,40 -10,20 Q5,0 10,20 Q25,40 10,70" fill="none" stroke="white" stroke-width="2" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="neonGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#00f3ff;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ff00ff;stop-opacity:1" />
</linearGradient>
<linearGradient id="moonGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#666;stop-opacity:1" />
<stop offset="100%" style="stop-color:#444;stop-opacity:1" />
</linearGradient>
<pattern id="pixelPattern" width="10" height="10" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="10" height="10" fill="#333"/>
<rect x="5" y="5" width="5" height="5" fill="#555"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#moonGradient)"/>
<!-- Pixelated Moon -->
<rect x="100" y="100" width="100" height="100" rx="50" fill="url(#pixelPattern)"/>
<rect x="115" y="115" width="70" height="70" rx="35" fill="#222"/>
<!-- Giraffe Body -->
<path d="M150,150 Q160,140 170,150 Q180,160 190,150 Q200,140 210,150 L210,200 Q210,210 200,205 Q190,200 180,205 Q170,200 160,205 L160,150 Z" fill="url(#neonGradient)" stroke="#fff" strokeWidth="2"/>
<!-- Legs -->
<path d="M120,250 Q130,240 140,250 Q150,260 160,250" fill="url(#neonGradient)" stroke="#fff" strokeWidth="2"/>
<rect x="125" y="250" width="10" height="50" rx="5" fill="#00f3ff"/>
<!-- Neck -->
<path d="M190,150 Q200,130 210,150" fill="url(#neonGradient)" stroke="#fff" strokeWidth="2"/>
<!-- Head -->
<circle cx="220" cy="130" r="15" fill="url(#neonGradient)"/>
<circle cx="220" cy="130" r="5" fill="#fff"/>
<circle cx="220" cy="130" r="10" fill="url(#neonGradient)" opacity="0.5"/>
<!-- Eyes -->
<circle cx="215" cy="125" r="3" fill="#fff"/>
<circle cx="225" cy="125" r="3" fill="#fff"/>
<!-- Moon Craters -->
<circle cx="120" cy="120" r="5" fill="#666"/>
<circle cx="140" cy="130" r="5" fill="#666"/>
<circle cx="110" cy="140" r="5" fill="#666"/>
<!-- Dancing Elements -->
<path d="M150,180 Q160,170 170,180" stroke="#00f3ff" strokeWidth="4" fill="none"/>
<path d="M180,170 Q190,160 200,170" stroke="#ff00ff" strokeWidth="4" fill="none"/>
<circle cx="190" cy="175" r="10" fill="#00f3ff" opacity="0.3"/>
<!-- Stars -->
<circle cx="50" cy="50" r="2" fill="#fff"/>
<circle cx="250" cy="70" r="2" fill="#fff"/>
<circle cx="30" cy="200" r="2" fill="#fff"/>
</svg>
Judge's Analysis
Player 2's submission captures the prompt more effectively by using vibrant neon colors and a pixelated moon background, enhancing the theme.
The abstract shapes suggest a giraffe and its movement, fitting the concept of dancing.
In contrast, Player 1's image lacks clarity in representing the giraffe and moon, making it less visually appealing and connected to the prompt.
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
"Sneezing snail with a top hat"
"Rainbow snail trail on a moonlit lily pad"
"Lighthouse on a cliff guiding paper boats through a sky of stars"
"Melting clock dripping into a swirling teacup"
"Surreal tree growing through an ancient clock"
"Surreal clock melting over a tree branch"