Creative Challenge
"Floating jellyfish city with neon lights"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="glowGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ff00ff" stop-opacity="1"/>
<stop offset="100%" stop-color="#8a2be2" stop-opacity="0"/>
</radialGradient>
<linearGradient id="tentacleGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#00ffff" />
<stop offset="100%" stop-color="#0000ff" />
</linearGradient>
<filter id="neonGlow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur stdDeviation="3" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="black" />
<!-- Jellyfish 1 -->
<g filter="url(#neonGlow)">
<ellipse cx="80" cy="80" rx="30" ry="20" fill="url(#glowGradient)" />
<path d="M70,100 Q75,130 80,100 T90,100" fill="none" stroke="url(#tentacleGradient)" stroke-width="2"/>
<path d="M80,100 Q85,135 90,100 T100,100" fill="none" stroke="url(#tentacleGradient)" stroke-width="2"/>
</g>
<!-- Jellyfish 2 -->
<g filter="url(#neonGlow)">
<ellipse cx="220" cy="60" rx="35" ry="25" fill="url(#glowGradient)" />
<path d="M210,90 Q215,130 220,90 T230,90" fill="none" stroke="url(#tentacleGradient)" stroke-width="2"/>
<path d="M220,90 Q225,135 230,90 T240,90" fill="none" stroke="url(#tentacleGradient)" stroke-width="2"/>
</g>
<!-- Jellyfish 3 -->
<g filter="url(#neonGlow)">
<ellipse cx="150" cy="200" rx="40" ry="30" fill="url(#glowGradient)" />
<path d="M140,230 Q145,270 150,230 T160,230" fill="none" stroke="url(#tentacleGradient)" stroke-width="2"/>
<path d="M150,230 Q155,275 160,230 T170,230" fill="none" stroke="url(#tentacleGradient)" stroke-width="2"/>
<path d="M150,230 Q150,280 150,230" fill="none" stroke="url(#tentacleGradient)" stroke-width="2"/>
</g>
<!-- Buildings as part of the city -->
<g filter="url(#neonGlow)">
<rect x="50" y="150" width="20" height="50" fill="#00ffea" />
<rect x="90" y="140" width="25" height="60" fill="#ff6ec7" />
<rect x="130" y="160" width="15" height="40" fill="#7fffd4" />
<rect x="170" y="130" width="30" height="70" fill="#ff1493" />
<rect x="220" y="155" width="20" height="45" fill="#00ced1" />
</g>
<!-- Neon lights -->
<g stroke="#ffffff" stroke-width="1" opacity="0.3">
<line x1="0" y1="0" x2="300" y2="300" />
<line x1="300" y1="0" x2="0" y2="300" />
<line x1="150" y1="0" x2="150" y2="300" />
<line x1="0" y1="150" x2="300" y2="150" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="jellyGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#ff6f61;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ff1a5e;stop-opacity:1" />
</radialGradient>
<linearGradient id="neonGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#00ffff;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ff00ff;stop-opacity:1" />
</linearGradient>
<pattern id="bubblePattern" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="5" cy="5" r="3" fill="#00ffff" />
</pattern>
</defs>
<rect width="300" height="300" fill="#001f3f" />
<ellipse cx="150" cy="100" rx="80" ry="60" fill="url(#jellyGradient)" />
<path d="M100,150 C110,120 190,120 200,150 C190,180 110,180 100,150 Z" fill="#ff1a5e" />
<path d="M100,150 C110,120 190,120 200,150 C190,180 110,180 100,150 Z" fill="url(#neonGradient)" opacity="0.6" />
<circle cx="150" cy="100" r="50" fill="#ffffff" opacity="0.1" />
<circle cx="150" cy="100" r="40" fill="#ffffff" opacity="0.2" />
<circle cx="150" cy="100" r="30" fill="#ffffff" opacity="0.3" />
<rect x="50" y="200" width="200" height="50" rx="20" ry="20" fill="#333333" />
<rect x="50" y="200" width="200" height="50" rx="20" ry="20" fill="url(#neonGradient)" opacity="0.5" />
<circle cx="150" cy="225" r="10" fill="#00ffff" />
<circle cx="100" cy="225" r="10" fill="#ff00ff" />
<circle cx="200" cy="225" r="10" fill="#00ffff" />
<rect x="60" y="220" width="180" height="10" fill="url(#bubblePattern)" />
</svg>
Judge's Analysis
Player 1's submission effectively captures the concept of a 'floating jellyfish city with neon lights' through the use of glowing elements and vertical structures that resemble buildings.
The neon colors are vibrant and convey a sense of a futuristic cityscape.
Player 2's design, while visually appealing, lacks the architectural elements and distinct jellyfish characteristics found in Player 1's image, 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
"Snail race on a candy rainbow road"
"Octopus juggling flaming swords in a shallow-water lagoon"
"Floating islands with waterfalls in space"
"A cactus wearing a top hat and monocle juggling three clocks"
"Melting clock draped over a neon pink cactus"
"Lemon astronaut exploring a citrus planet"