Creative Challenge
"A jellyfish wearing a top hat, floating over a cityscape at night"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Night sky background with glowing effect -->
<defs>
<radialGradient id="nightSky" cx="150" cy="150" r="150" fx="150" fy="150">
<stop offset="0" style="stop-color:#1a1a4f;stop-opacity:1" />
<stop offset="1" style="stop-color:#0a0a2a;stop-opacity:1" />
</radialGradient>
<linearGradient id="jellyGlow" x1="0" y1="0" x2="1" y2="1">
<stop offset="0" style="stop-color:#ffffff;stop-opacity:0.8" />
<stop offset="1" style="stop-color:#ffffff;stop-opacity:0" />
</linearGradient>
<path id="tentaclePath" d="M150 100 Q200 50 250 100 Q300 150 250 200 Q200 150 150 100" />
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#nightSky)" />
<!-- Cityscape -->
<g transform="translate(0,200)">
<!-- Buildings -->
<rect x="50" y="0" width="40" height="150" fill="#333" />
<rect x="100" y="0" width="40" height="180" fill="#333" />
<rect x="150" y="0" width="40" height="160" fill="#333" />
<rect x="200" y="0" width="40" height="170" fill="#333" />
<rect x="250" y="0" width="40" height="190" fill="#333" />
<!-- Windows -->
<rect x="55" y="20" width="30" height="10" fill="#666" />
<rect x="105" y="30" width="30" height="10" fill="#666" />
<rect x="155" y="25" width="30" height="10" fill="#666" />
<rect x="255" y="35" width="30" height="10" fill="#666" />
</g>
<!-- Jellyfish -->
<g transform="translate(150,100)">
<!-- Jellyfish body -->
<circle r="50" fill="rgba(255,255,255,0.3)" stroke="#4d4dff" stroke-width="2" />
<circle r="40" fill="url(#jellyGlow)" stroke="#4d4dff" stroke-width="1" />
<!-- Tentacles -->
<use href="#tentaclePath" stroke="#4d4dff" stroke-width="2" fill="none" />
<path d="M0 50 Q-50 0 -50 -50 Q0 -100 50 -100" stroke="#4d4dff" stroke-width="2" fill="none" />
<!-- Top hat -->
<ellipse cx="0" cy="-120" rx="15" ry="10" fill="#000" />
<rect x="-20" y="-130" width="40" height="20" fill="#666" />
</g>
<!-- Sparkles -->
<g id="sparkles" transform="translate(150,100)">
<circle cx="0" cy="0" r="2" stroke="#fff" stroke-width="1" fill="none">
<radialGradient id="sparkleGrad" cx="0" cy="0" r="2" fx="0" fy="0">
<stop offset="0" style="stop-color:#fff;stop-opacity:1" />
<stop offset="1" style="stop-color:#fff;stop-opacity:0" />
</radialGradient>
<animate attributeName="opacity" from="1" to="0" dur="2s" repeatCount="indefinite" />
</circle>
<!-- Add more sparkles by duplicating the above circle with different positions -->
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- Night sky gradient -->
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#0d1b2a" />
<stop offset="100%" stop-color="#1b263b" />
</linearGradient>
<!-- Jellyfish body gradient -->
<radialGradient id="jellyGradient" cx="50%" cy="30%" r="60%">
<stop offset="0%" stop-color="#f48c06" />
<stop offset="100%" stop-color="#d00000" />
</radialGradient>
<!-- Top hat gradient -->
<linearGradient id="hatGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#3a3a3a" />
<stop offset="100%" stop-color="#1c1c1c" />
</linearGradient>
<!-- City light pattern -->
<pattern id="cityLight" patternUnits="userSpaceOnUse" width="4" height="4">
<circle cx="2" cy="2" r="1" fill="#ffd700" />
</pattern>
<!-- Wave pattern for jellyfish tentacles -->
<pattern id="tentaclePattern" patternUnits="objectBoundingBox" width="10" height="10" patternTransform="scale(0.1)">
<path d="M0,5 Q5,0 10,5 T20,5" stroke="#f48c06" fill="none" stroke-width="0.5"/>
</pattern>
</defs>
<!-- Background: Night sky -->
<rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />
<!-- Cityscape at night -->
<g id="cityscape">
<!-- Buildings -->
<rect x="10" y="180" width="30" height="120" fill="#2e2e2e" />
<rect x="50" y="160" width="25" height="140" fill="#3e3e3e" />
<rect x="80" y="190" width="35" height="110" fill="#2a2a2a" />
<rect x="120" y="170" width="40" height="130" fill="#3a3a3a" />
<rect x="170" y="150" width="30" height="150" fill="#2e2e2e" />
<rect x="210" y="180" width="35" height="120" fill="#3e3e3e" />
<rect x="250" y="160" width="25" height="140" fill="#2a2a2a" />
<!-- Windows -->
<g id="windows">
<rect x="15" y="190" width="5" height="5" fill="url(#cityLight)" />
<rect x="25" y="190" width="5" height="5" fill="url(#cityLight)" />
<rect x="15" y="200" width="5" height="5" fill="url(#cityLight)" />
<rect x="55" y="170" width="4" height="4" fill="url(#cityLight)" />
<rect x="62" y="170" width="4" height="4" fill="url(#cityLight)" />
<rect x="55" y="177" width="4" height="4" fill="url(#cityLight)" />
<rect x="85" y="200" width="5" height="5" fill="url(#cityLight)" />
<rect x="150" y="180" width="5" height="5" fill="url(#cityLight)" />
<rect x="175" y="160" width="4" height="4" fill="url(#cityLight)" />
<rect x="215" y="190" width="5" height="5" fill="url(#cityLight)" />
<rect x="255" y="170" width="4" height="4" fill="url(#cityLight)" />
<!-- Additional random windows -->
<rect x="45" y="190" width="4" height="4" fill="url(#cityLight)" />
<rect x="95" y="210" width="5" height="5" fill="url(#cityLight)" />
<rect x="130" y="190" width="5" height="5" fill="url(#cityLight)" />
<rect x="185" y="180" width="5" height="5" fill="url(#cityLight)" />
<rect x="235" y="185" width="4" height="4" fill="url(#cityLight)" />
</g>
</g>
<!-- Jellyfish -->
<g id="jellyfish" transform="translate(150,90)">
<!-- Jellyfish bell -->
<path d="M0,0 C-30,20 -30,60 0,80 C30,60 30,20 0,0 Z" fill="url(#jellyGradient)" stroke="#a10000" stroke-width="1" />
<!-- Tentacles -->
<g id="tentacles" stroke="#f48c06" stroke-width="2" fill="none">
<path d="M-10,75 C-20,100 -10,130 0,140" />
<path d="M0,75 C-5,100 5,120 10,140" />
<path d="M10,75 C15,95 25,115 20,140" />
<path d="M-20,75 C-25,100 -15,130 -5,140" />
</g>
<!-- Top hat -->
<g id="topHat" transform="translate(-20,-30)">
<rect x="0" y="0" width="40" height="10" fill="url(#hatGradient)" />
<rect x="8" y="-20" width="24" height="20" fill="url(#hatGradient)" />
<rect x="5" y="-5" width="30" height="3" fill="#ffd700" opacity="0.7" />
</g>
<!-- Eye (a whimsical touch) -->
<circle cx="-5" cy="20" r="2" fill="#000" />
<circle cx="5" cy="20" r="2" fill="#000" />
</g>
<!-- Optional: Floating bubbles to enhance the magical atmosphere -->
<g id="bubbles">
<circle cx="60" cy="50" r="3" fill="#ffffff" opacity="0.5"/>
<circle cx="240" cy="70" r="4" fill="#ffffff" opacity="0.4"/>
<circle cx="130" cy="30" r="2" fill="#ffffff" opacity="0.6"/>
<circle cx="180" cy="60" r="3" fill="#ffffff" opacity="0.5"/>
<circle cx="90" cy="80" r="2.5" fill="#ffffff" opacity="0.6"/>
</g>
</svg>
Judge's Analysis
Player 2's submission better adheres to the prompt by clearly depicting a jellyfish with a top hat floating over a cityscape at night.
The image is technically sound with a clear cityscape and night sky, and the jellyfish has a distinctive appearance.
Player 1's submission lacks clarity in representing the jellyfish and the cityscape is less defined, making Player 2's image more visually appealing and on-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
"A teacup balancing on one wheel of a unicycle"
"Cat floating in a teacup hot air balloon"
"Fish riding bicycles under a swirling, starry sky"
"Umbrella with wings flying over a city skyline"
"A neon butterfly with circuit board wings in a digital garden"
"Rainbow octopus juggling planets under a starry night sky"