Creative Challenge
"A futuristic cityscape made entirely of giant, glowing neon seashells"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#00112c" />
<stop offset="100%" stop-color="#003366" />
</linearGradient>
<linearGradient id="shellBaseGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#ff9eb5" />
<stop offset="100%" stop-color="#ff6b8f" />
</linearGradient>
<linearGradient id="shellGlowGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#ff66cc" />
<stop offset="100%" stop-color="#ff1a75" />
</linearGradient>
<radialGradient id="shellHighlight" cx="0.5" cy="0.5" r="0.5" fx="0.25" fy="0.25">
<stop offset="0%" stop-color="#ffffff" />
<stop offset="100%" stop-color="transparent" />
</radialGradient>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<g transform="translate(50, 150)">
<path d="M 0 0 C 50 -150, 100 -150, 150 0" fill="url(#shellBaseGradient)" />
<path d="M 0 0 C 50 -150, 100 -150, 150 0" fill="url(#shellGlowGradient)" fill-opacity="0.5" />
<ellipse cx="75" cy="-75" rx="20" ry="40" fill="url(#shellHighlight)" />
</g>
<g transform="translate(100, 200)">
<path d="M 0 0 C 50 -120, 100 -120, 150 0" fill="url(#shellBaseGradient)" />
<path d="M 0 0 C 50 -120, 100 -120, 150 0" fill="url(#shellGlowGradient)" fill-opacity="0.5" />
<ellipse cx="75" cy="-60" rx="20" ry="30" fill="url(#shellHighlight)" />
</g>
<g transform="translate(150, 100)">
<path d="M 0 0 C 50 -200, 100 -200, 150 0" fill="url(#shellBaseGradient)" />
<path d="M 0 0 C 50 -200, 100 -200, 150 0" fill="url(#shellGlowGradient)" fill-opacity="0.5" />
<ellipse cx="75" cy="-100" rx="20" ry="50" fill="url(#shellHighlight)" />
</g>
<g transform="translate(200, 250)">
<path d="M 0 0 C 50 -100, 100 -100, 150 0" fill="url(#shellBaseGradient)" />
<path d="M 0 0 C 50 -100, 100 -100, 150 0" fill="url(#shellGlowGradient)" fill-opacity="0.5" />
<ellipse cx="75" cy="-50" rx="20" ry="25" fill="url(#shellHighlight)" />
</g>
<circle cx="50" cy="50" r="10" fill="#ffff00" />
<circle cx="250" cy="50" r="10" fill="#ffff00" />
<circle cx="150" cy="20" r="15" fill="#ffff00" />
<text x="150" y="280" font-size="20" font-family="Arial" fill="#ffffff" text-anchor="middle">Neon Shell City</text>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Neon glow effect filter -->
<defs>
<filter id="neon-glow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur in="SourceGraphic" stdDeviation="2" result="blur" />
<feColorMatrix in="blur" mode="matrix" values="0 0 0 0 0 0 0.5 1 0 0 0 0 1 0.5 0 0 0 0 1 0" result="glow" />
<feBlend in="SourceGraphic" in2="glow" mode="screen" />
</filter>
</defs>
<!-- Giant Neon Seashells Cityscape -->
<rect x="0" y="0" width="300" height="300" fill="#221f48" />
<!-- Giant glowing neon seashells -->
<path d="M40 200 l-20 -30 l-10 -10 l20 -20 L60 160 l20 50 Z" fill="#e94a84" filter="url(#neon-glow)" />
<path d="M120 180 l-30 -40 l-15 -20 l30 -30 L150 130 l30 60 Z" fill="#ffcc29" filter="url(#neon-glow)" />
<path d="M200 220 l-25 -35 l-15 -15 l25 -25 L230 180 l25 45 Z" fill="#32c5ff" filter="url(#neon-glow)" />
<path d="M80 250 l-35 -25 l-20 -10 l35 -20 L120 220 l40 30 Z" fill="#ff6498" filter="url(#neon-glow)" />
<path d="M160 240 l-40 -30 l-25 -15 l40 -25 L200 190 l40 50 Z" fill="#f9a847" filter="url(#neon-glow)" />
</svg>
Judge's Analysis
Player 1's image features a composition that more closely resembles a cityscape with its layered, towering shell-like structures.
The glowing neon colors and the arrangement evoke a sense of a futuristic urban environment.
Player 2's submission, while visually appealing, lacks the cityscape element and appears more abstract, not fully adhering 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
"A cityscape with buildings made of giant fruit"
"Underwater steampunk city with jellyfish streetlights"
"Floating island with a waterfall of stars"
"Whale with butterfly wings swimming through clouds"
"A pineapple wearing a monocle, top hat, and bowtie, floating in a starry galaxy"
"Surreal jellyfish floating in a starry desert night"