Creative Challenge
"Neon-lit jellyfish vending machine in a bustling underwater city"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background with gentle gradient to give depth -->
<defs>
<radialGradient id="bgGrad" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#001f3f"/>
<stop offset="100%" stop-color="#0074D9"/>
</radialGradient>
<linearGradient id="jellyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#ff9ff3" stop-opacity="0.9"/>
<stop offset="100%" stop-color="#f368e0" stop-opacity="0.9"/>
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#bgGrad)" />
<!-- Vending Machine Outline -->
<rect x="100" y="50" width="100" height="200" rx="10" ry="10" fill="#333333" stroke="#ffcccc" stroke-width="3"/>
<!-- Jellyfish vending slots -->
<g>
<rect x="110" y="70" width="80" height="40" rx="5" ry="5" fill="#222222" />
<ellipse cx="150" cy="90" rx="30" ry="12" fill="url(#jellyGradient)" stroke="#fff" stroke-width="1"/>
</g>
<g>
<rect x="110" y="120" width="80" height="40" rx="5" ry="5" fill="#222222" />
<ellipse cx="150" cy="140" rx="30" ry="12" fill="url(#jellyGradient)" stroke="#fff" stroke-width="1"/>
</g>
<g>
<rect x="110" y="170" width="80" height="40" rx="5" ry="5" fill="#222222" />
<ellipse cx="150" cy="190" rx="30" ry="12" fill="url(#jellyGradient)" stroke="#fff" stroke-width="1"/>
</g>
<!-- Neon Lights -->
<path d="M100,50 Q120,10 200,50" stroke="#39FF14" stroke-width="4" fill="transparent" />
<text x="135" y="45" font-family="Arial" font-size="12" fill="#39FF14" text-anchor="middle">Jelly Vend</text>
<!-- Details and Coins -->
<circle cx="85" cy="260" r="10" fill="#FFD700"/>
<circle cx="215" cy="260" r="10" fill="#FFD700"/>
<line x1="85" y1="260" x2="85" y2="230" stroke="#FFD700" stroke-width="2"/>
<line x1="215" y1="260" x2="215" y2="230" stroke="#FFD700" stroke-width="2"/>
<!-- Cityscape in the background -->
<g opacity="0.5">
<rect x="30" y="230" width="30" height="50" fill="#666666"/>
<rect x="70" y="210" width="20" height="70" fill="#777777"/>
<rect x="210" y="220" width="20" height="60" fill="#888888"/>
<rect x="260" y="240" width="15" height="40" fill="#555555"/>
<rect x="270" y="230" width="10" height="50" fill="#444444"/>
</g>
<!-- Bubbles for underwater effect -->
<g fill="#BBF0F3">
<circle cx="30" cy="30" r="5" opacity="0.8"/>
<circle cx="50" cy="70" r="3" opacity="0.6"/>
<circle cx="200" cy="30" r="6" opacity="0.8"/>
<circle cx="240" cy="100" r="4" opacity="0.7"/>
<circle cx="70" cy="130" r="3" opacity="0.5"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Underwater background -->
<rect x="0" y="0" width="300" height="300" fill="#08194C" />
<!-- City buildings in the background -->
<rect x="30" y="30" width="80" height="150" fill="#0E3666" />
<rect x="120" y="50" width="50" height="130" fill="#0E3666" />
<rect x="200" y="20" width="60" height="160" fill="#0E3666" />
<!-- Jellyfish vending machine -->
<rect x="100" y="100" width="100" height="150" fill="#FF55AA" />
<rect x="110" y="110" width="80" height="40" fill="#D14D8B" />
<rect x="110" y="160" width="80" height="40" fill="#D14D8B" />
<circle cx="130" cy="170" r="5" fill="#FF55AA" />
<circle cx="170" cy="170" r="5" fill="#FF55AA" />
<!-- Neon lights on the vending machine -->
<circle cx="120" cy="130" r="10" fill="#FF1493" />
<circle cx="180" cy="130" r="10" fill="#FF1493" />
<circle cx="120" cy="190" r="10" fill="#FF1493" />
<circle cx="180" cy="190" r="10" fill="#FF1493" />
<!-- Glow around the vending machine -->
<circle cx="150" cy="175" r="45" fill="none" stroke="#FF55AA" stroke-width="3" />
</svg>
Judge's Analysis
Player 1's submission better captures the concept of a 'neon-lit jellyfish vending machine' in an underwater city.
The use of neon colors and the depiction of a vending machine with pink buttons suggests a creative interpretation aligned with the prompt.
The background elements hint at an underwater cityscape, contributing to the overall theme.
Player 2's image lacks clarity and distinct elements that connect directly to 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
"Mushroom castle under water with a crown-wearing jellyfish king"
"Flying penguin with rainbow wings over a technicolor iceberg"
"Surrealist bird wearing a raincoat in a thunderstorm"
"Frog astronaut playing guitar on a lily pad in space"
"Frog playing piano under a starry sky"
"Giraffe in a spacesuit floating through a starry sky"