Creative Challenge
"Sky-high jellyfish floating above a busy cityscape"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background Gradient for sky -->
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" style="stop-color:rgb(20,110,230);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(150,200,255);stop-opacity:1" />
</linearGradient>
<!-- Jellyfish Body Gradient -->
<radialGradient id="jellyGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:rgb(255,100,150);stop-opacity:0.9" />
<stop offset="100%" style="stop-color:rgb(255,50,100);stop-opacity:0.6" />
</radialGradient>
<!-- Tentacle Pattern -->
<linearGradient id="tentacleGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" style="stop-color:rgb(255,50,100);stop-opacity:0.8" />
<stop offset="100%" style="stop-color:rgb(255,200,200);stop-opacity:0.1" />
</linearGradient>
</defs>
<!-- Sky -->
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Cityscape -->
<g transform="translate(0, 180)">
<rect x="10" y="30" width="40" height="90" fill="steelblue"></rect>
<rect x="80" y="10" width="60" height="110" fill="navy"></rect>
<rect x="180" y="50" width="50" height="70" fill="midnightblue"></rect>
<rect x="250" y="40" width="30" height="80" fill="darkslateblue"></rect>
<!-- Windows -->
<g fill="lightyellow">
<rect x="15" y="35" width="8" height="8"></rect>
<rect x="25" y="35" width="8" height="8"></rect>
<rect x="35" y="35" width="8" height="8"></rect>
<rect x="15" y="50" width="8" height="8"></rect>
<rect x="25" y="50" width="8" height="8"></rect>
<rect x="195" y="55" width="5" height="5"></rect>
<rect x="205" y="55" width="5" height="5"></rect>
<rect x="215" y="55" width="5" height="5"></rect>
<rect x="225" y="55" width="5" height="5"></rect>
</g>
</g>
<!-- Jellyfish -->
<g transform="translate(100, 30)">
<ellipse cx="50" cy="50" rx="40" ry="30" fill="url(#jellyGradient)" />
<!-- Tentacles -->
<path d="M50,80 C40,90 30,110 20,140" stroke="url(#tentacleGradient)" stroke-width="2" fill="none" />
<path d="M50,80 C45,95 40,115 30,150" stroke="url(#tentacleGradient)" stroke-width="2" fill="none" />
<path d="M50,80 C55,90 60,110 70,140" stroke="url(#tentacleGradient)" stroke-width="2" fill="none" />
<path d="M50,80 C60,95 65,115 75,150" stroke="url(#tentacleGradient)" stroke-width="2" fill="none" />
</g>
<!-- Smaller Jellyfish -->
<g transform="translate(200, 70)">
<ellipse cx="30" cy="30" rx="20" ry="15" fill="url(#jellyGradient)" />
<path d="M30,50 C25,60 20,80 10,110" stroke="url(#tentacleGradient)" stroke-width="1.5" fill="none" />
<path d="M30,50 C35,65 40,85 50,120" stroke="url(#tentacleGradient)" stroke-width="1.5" fill="none" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- Gradient for the jellyfish bell -->
<radialGradient id="jellyfishGradient" cx="50%" cy="30%" r="50%">
<stop offset="0%" stop-color="#ff66cc"/>
<stop offset="50%" stop-color="#ff99cc"/>
<stop offset="100%" stop-color="#ffccff"/>
</radialGradient>
<!-- Gradient for the cityscape windows -->
<linearGradient id="windowGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#ffff99"/>
<stop offset="100%" stop-color="#ffcc00"/>
</linearGradient>
<!-- Pattern for tentacles effect -->
<pattern id="tentaclePattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<path d="M0,0 L10,10" stroke="#ff99cc" stroke-width="1"/>
</pattern>
</defs>
<!-- Background: Twilight Sky -->
<rect width="300" height="300" fill="url(#jellyfishGradient)" opacity="0.3"/>
<rect width="300" height="300" fill="linear-gradient(to bottom, #001f3f, #330066)" style="opacity:0.8"/>
<linearGradient id="skyGradient" gradientTransform="rotate(90)">
<stop offset="0%" stop-color="#330066"/>
<stop offset="100%" stop-color="#001f3f"/>
</linearGradient>
<rect width="300" height="300" fill="url(#skyGradient)" fill-opacity="0.5"/>
<!-- Busy Cityscape at the bottom -->
<g id="cityscape">
<rect x="0" y="230" width="300" height="70" fill="#222" />
<!-- Buildings -->
<g fill="#444">
<rect x="10" y="200" width="20" height="30"/>
<rect x="40" y="190" width="25" height="40"/>
<rect x="75" y="210" width="15" height="20"/>
<rect x="100" y="180" width="30" height="50"/>
<rect x="135" y="205" width="20" height="25"/>
<rect x="165" y="195" width="25" height="35"/>
<rect x="200" y="210" width="20" height="20"/>
<rect x="230" y="185" width="30" height="45"/>
<rect x="270" y="200" width="15" height="30"/>
</g>
<!-- Windows -->
<g fill="url(#windowGradient)">
<rect x="12" y="205" width="4" height="4"/>
<rect x="46" y="195" width="4" height="4"/>
<rect x="79" y="210" width="3" height="3"/>
<rect x="102" y="185" width="5" height="5"/>
<rect x="137" y="210" width="4" height="4"/>
<rect x="168" y="200" width="4" height="4"/>
<rect x="203" y="215" width="4" height="4"/>
<rect x="232" y="190" width="5" height="5"/>
<rect x="273" y="205" width="3" height="3"/>
<!-- Duplicate windows for depth -->
<rect x="18" y="213" width="4" height="4"/>
<rect x="52" y="203" width="4" height="4"/>
<rect x="85" y="218" width="3" height="3"/>
<rect x="108" y="193" width="5" height="5"/>
<rect x="143" y="218" width="4" height="4"/>
<rect x="174" y="208" width="4" height="4"/>
<rect x="209" y="223" width="4" height="4"/>
<rect x="238" y="198" width="5" height="5"/>
<rect x="279" y="213" width="3" height="3"/>
</g>
</g>
<!-- Sky-high Jellyfish -->
<g id="jellyfish">
<!-- Bell of the jellyfish -->
<path d="M150,70
C130,50 110,80 110,100
C110,130 150,140 150,140
C150,140 190,130 190,100
C190,80 170,50 150,70Z" fill="url(#jellyfishGradient)" stroke="#ff66cc" stroke-width="2"/>
<!-- Tentacles -->
<g fill="none" stroke="#ff99cc" stroke-width="1.5">
<path d="M140,130 C130,160 120,200 130,230" />
<path d="M150,135 C150,165 140,205 145,240" />
<path d="M160,130 C170,160 180,195 175,230" />
<path d="M135,125 C130,155 125,190 130,220" />
<path d="M165,125 C170,155 175,190 170,220" />
</g>
<!-- Add some decorative tentacle patterns -->
<g fill="url(#tentaclePattern)">
<circle cx="140" cy="145" r="1.5"/>
<circle cx="150" cy="150" r="1.5"/>
<circle cx="160" cy="145" r="1.5"/>
<circle cx="145" cy="160" r="1.2"/>
<circle cx="155" cy="160" r="1.2"/>
</g>
</g>
<!-- Floating clouds to add atmosphere -->
<g fill="#ffffff" opacity="0.3">
<ellipse cx="80" cy="60" rx="20" ry="8"/>
<ellipse cx="100" cy="60" rx="25" ry="10"/>
<ellipse cx="90" cy="50" rx="15" ry="7"/>
<ellipse cx="220" cy="80" rx="20" ry="8"/>
<ellipse cx="240" cy="80" rx="25" ry="10"/>
<ellipse cx="230" cy="70" rx="15" ry="7"/>
</g>
</svg>
Judge's Analysis
Player 2's image captures the concept of 'sky-high jellyfish' with a more dynamic and visually appealing night cityscape backdrop.
The use of lighting and color contrast enhances the ethereal quality of the jellyfish against the city, adhering well to the prompt.
In comparison, Player 1's image, while technically sound, lacks the same level of creativity and atmospheric depth.
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
"Giraffe in a UFO knitting a rainbow scarf"
"A clock face made of melting candles"
"A giraffe with a fishbowl head, swimming in a jellybean sea"
"Giraffe on roller skates juggling flaming pizzas under a disco ball"
"Three-eyed cat juggling planets in a void"
"Flying teapot pouring stars onto a sleeping city"