Creative Challenge
"A glowing owl in a neon cityscape at night"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<radialGradient id="glow" cx="0.5" cy="0.5" r="0.7" fx="0.5" fy="0.5">
<stop offset="0%" stop-color="#ff00ff" />
<stop offset="100%" stop-color="#00ffff" stop-opacity="0" />
</radialGradient>
<linearGradient id="cityGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#000033" />
<stop offset="50%" stop-color="#0d001a" />
<stop offset="100%" stop-color="#000033" />
</linearGradient>
<pattern id="gridPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<rect width="10" height="10" fill="#111122" />
<path d="M 0 0 L 10 10 M -1 10 L 10 -1" stroke="#222244" stroke-width="1" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#cityGradient)" />
<rect width="300" height="300" fill="url(#gridPattern)" opacity="0.3" />
<ellipse cx="150" cy="200" rx="50" ry="30" fill="#111122" />
<ellipse cx="150" cy="180" rx="40" ry="20" fill="#222244" />
<path d="M 130 170 Q 150 160 170 170 Q 150 180 130 170 Z" fill="#444466" />
<ellipse cx="140" cy="170" rx="5" ry="5" fill="#00ffff" />
<ellipse cx="160" cy="170" rx="5" ry="5" fill="#ff00ff" />
<circle cx="150" cy="190" r="10" fill="url(#glow)" opacity="0.8" />
<g transform="translate(100, 100)">
<path d="M 0 0 L 20 30 L 40 0 Z" fill="#ff00ff" />
<path d="M 20 30 L 20 50" stroke="#ff00ff" stroke-width="2" />
</g>
<g transform="translate(200, 100)">
<path d="M 0 0 L 20 30 L 40 0 Z" fill="#00ffff" />
<path d="M 20 30 L 20 50" stroke="#00ffff" stroke-width="2" />
</g>
<g transform="translate(150, 50)">
<circle cx="0" cy="0" r="10" fill="#ff00ff" />
<circle cx="20" cy="0" r="10" fill="#00ffff" />
<circle cx="40" cy="0" r="10" fill="#ff00ff" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="glowGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:rgb(255,255,150);stop-opacity:0.8" />
<stop offset="100%" style="stop-color:rgb(255,255,150);stop-opacity:0)" />
</radialGradient>
<linearGradient id="neonBuildings" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#0ff;stop-opacity:1" />
<stop offset="100%" style="stop-color:#f0f;stop-opacity:1" />
</linearGradient>
<pattern id="starPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="1" cy="1" r="1" fill="white" />
</pattern>
</defs>
<rect width="300" height="300" fill="url(#starPattern)" />
<rect x="30" y="160" width="40" height="140" fill="url(#neonBuildings)" />
<rect x="90" y="140" width="30" height="160" fill="url(#neonBuildings)" />
<rect x="140" y="180" width="50" height="120" fill="url(#neonBuildings)" />
<rect x="210" y="150" width="50" height="150" fill="url(#neonBuildings)" />
<ellipse cx="150" cy="80" rx="50" ry="60" fill="url(#glowGradient)" />
<ellipse cx="150" cy="80" rx="40" ry="50" fill="none" stroke="#ff0" stroke-width="3" />
<path d="M130 90 Q150 70, 170 90" fill="none" stroke="#fa0" stroke-width="3" />
<circle cx="140" cy="70" r="5" fill="#ff0" />
<circle cx="160" cy="70" r="5" fill="#ff0" />
<polygon points="135,85 150,100 165,85" fill="#fa0" />
<path d="M135 95 Q150 115, 165 95 T135 95" fill="#fa0" stroke="#fa0" stroke-width="1" />
<path d="M130 120 Q150 130, 170 120" fill="none" stroke="#f50" stroke-width="4" stroke-linecap="round" />
<path d="M130 125 Q150 135, 170 125" fill="none" stroke="#f50" stroke-width="3" stroke-linecap="round" />
<line x1="140" y1="140" x2="160" y2="140" stroke="#f50" stroke-width="6" stroke-linecap="round" />
</svg>
Judge's Analysis
Player 2's image successfully incorporates a glowing owl figure atop gradient city structures, effectively capturing the theme of a neon cityscape at night.
The use of vibrant colors and the owl's placement enhance the visual appeal and clarity of the concept.
Player 1's submission, while colorful, lacks discernible elements that clearly represent an owl or cityscape, making it less aligned with 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
"Squirrel DJ spinning acorn records"
"A floating island with clockwork trees under a starry night sky"
"An umbrella tree growing under a waterfall"
"Skeletal octopus plays a luminous xylophone under a bioluminescent sea"
"A giant cat knitting with skyscraper-sized yarn in a cityscape"
"Floating city on jellyfish islands, sunset sky"