Creative Challenge
"Floating city on a giant jellyfish above a coral reef"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="jellyfishGrad" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#6366f1;stop-opacity:0.8"/>
<stop offset="100%" style="stop-color:#8b5cf6;stop-opacity:0"/>
</linearGradient>
<linearGradient id="cityGrad" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#7c3aed;stop-opacity:0.8"/>
<stop offset="100%" style="stop-color:#8b5cf6;stop-opacity:0.8"/>
</linearGradient>
<pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="1" cy="1" r="0.5" fill="white"/>
</pattern>
</defs>
<!-- Jellyfish -->
<path d="M150,100 Q180,50 220,100 Q200,150 150,100" fill="url(#jellyfishGrad)" stroke="#6366f1" stroke-width="2"/>
<path d="M150,100 Q120,50 80,100 Q100,150 150,100" fill="url(#jellyfishGrad)" stroke="#6366f1" stroke-width="2"/>
<!-- City Structures -->
<g transform="translate(100,50)">
<rect width="100" height="80" fill="url(#cityGrad)" rx="10"/>
<rect x="40" y="20" width="20" height="40" fill="#c474e8" rx="5"/>
<rect x="70" y="30" width="20" height="30" fill="#c474e8" rx="5"/>
<path d="M0,80 Q50,50 100,80" fill="#8b5cf6" opacity="0.5"/>
</g>
<!-- Coral Reef -->
<g transform="translate(0,200)">
<path d="M0,0 Q50,-50 100,0 Q75,50 0,0" fill="#4895ef" opacity="0.6"/>
<path d="M100,0 Q150,-50 200,0 Q175,50 100,0" fill="#4895ef" opacity="0.6"/>
<rect x="50" y="50" width="100" height="50" fill="#74b9ff" rx="20"/>
</g>
<!-- Jellyfish Tentacles -->
<path d="M150,100 L150,200" stroke="#6366f1" stroke-width="4" opacity="0.6"/>
<path d="M120,100 L120,200" stroke="#6366f1" stroke-width="4" opacity="0.6"/>
<path d="M180,100 L180,200" stroke="#6366f1" stroke-width="4" opacity="0.6"/>
<!-- City Details -->
<g transform="translate(120,80)">
<rect width="60" height="40" fill="#7c3aed" rx="10"/>
<rect x="20" y="20" width="20" height="20" fill="#8b5cf6"/>
<rect x="50" y="20" width="20" height="20" fill="#8b5cf6"/>
</g>
<!-- Background -->
<rect width="300" height="300" fill="#1a1a2e"/>
<rect x="0" y="150" width="300" height="150" fill="url(#stars)"/>
<!-- Glowing Effects -->
<circle cx="150" cy="100" r="30" fill="none" stroke="#7c3aed" stroke-width="2" opacity="0.3">
<animate attributeName="r" from="30" to="40" dur="2s" repeatCount="indefinite"/>
</circle>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Coral Reef -->
<circle cx="150" cy="250" r="100" fill="#964B00"/>
<circle cx="120" cy="220" r="80" fill="#CD5C5C"/>
<circle cx="180" cy="210" r="70" fill="#FF6347"/>
<circle cx="220" cy="240" r="90" fill="#FF4500"/>
<!-- Jellyfish -->
<ellipse cx="150" cy="120" rx="80" ry="40" fill="#87CEEB"/>
<circle cx="120" cy="100" r="20" fill="#B0E0E6"/>
<circle cx="180" cy="100" r="20" fill="#B0E0E6"/>
<circle cx="140" cy="140" r="15" fill="#87CEEB"/>
<circle cx="160" cy="140" r="15" fill="#87CEEB"/>
<line x1="120" y1="100" x2="180" y2="100" stroke="#4682B4" stroke-width="2"/>
<line x1="140" y1="120" x2="160" y2="120" stroke="#4682B4" stroke-width="2"/>
<!-- City -->
<rect x="100" y="50" width="100" height="100" fill="#C0C0C0"/>
<rect x="110" y="60" width="10" height="10" fill="#FFD700"/>
<rect x="130" y="60" width="10" height="10" fill="#FFD700"/>
<rect x="150" y="60" width="10" height="10" fill="#FFD700"/>
<rect x="170" y="60" width="10" height="10" fill="#FFD700"/>
<rect x="110" y="80" width="10" height="10" fill="#FFD700"/>
<rect x="130" y="80" width="10" height="10" fill="#FFD700"/>
<rect x="150" y="80" width="10" height="10" fill="#FFD700"/>
<rect x="170" y="80" width="10" height="10" fill="#FFD700"/>
</svg>
Judge's Analysis
Player 2's image better captures the concept of a floating city on a giant jellyfish above a coral reef.
The image includes elements that resemble a city structure on a jellyfish-like form, achieving a closer adherence to the prompt.
The use of varied colors adds to the visual appeal and creativity, whereas Player 1's submission lacks distinct elements representing a city or jellyfish, making it less aligned with 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
"An umbrella blooming with colorful flowers in the rain"
"Neon jellyfish dance under a disco ball in the deep sea"
"Rainbow koi in a cosmic tea cup"
"Floating city on a single, enormous cloud"
"Bioluminescent jellyfish spiraling around a neon-lit diver"
"Floating jellyfish wearing top hats in a cosmic sea"