Creative Challenge
"Floating jellyfish cities above a mirrored ocean"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="oceanGrad">
<stop offset="0%" stop-color="#1a5798"/>
<stop offset="100%" stop-color="#0d4475"/>
</radialGradient>
<pattern id="glow" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<rect width="20" height="20" fill="none" stroke="#87CEEB" stroke-width="1" opacity="0.5"/>
</pattern>
<linearGradient id="cityGrad1" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#66B3FF"/>
<stop offset="100%" stop-color="#93C5FD"/>
</linearGradient>
<linearGradient id="cityGrad2" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#6B8E2E"/>
<stop offset="100%" stop-color="#90EE90"/>
</linearGradient>
<linearGradient id="cityGrad3" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#87CEEB"/>
<stop offset="100%" stop-color="#9370DB"/>
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#oceanGrad)"/>
<g transform="translate(150,150)">
<g transform="rotate(-45)">
<rect width="300" height="300" fill="url(#oceanGrad)" opacity="0.3"/>
</g>
</g>
<g transform="translate(100,120)">
<g>
<path d="M0,0 L50,-20 L100,0 L50,20 L0,0" fill="url(#cityGrad1)" transform="rotate(30) scale(1.5)"/>
<circle cx="50" cy="0" r="20" fill="#66B3FF" opacity="0.5"/>
<rect x="30" y="-10" width="40" height="60" rx="20" fill="#66B3FF" opacity="0.8"/>
<circle cx="40" cy="-20" r="5" fill="#fff"/>
<circle cx="60" cy="-15" r="5" fill="#fff"/>
</g>
</g>
<g transform="translate(200,100)">
<g>
<path d="M0,0 L20,-30 L40,0 L20,30 L0,0" fill="url(#cityGrad2)" transform="rotate(45) scale(1.2)"/>
<circle cx="20" cy="0" r="15" fill="#90EE90" opacity="0.5"/>
<rect x="10" y="-10" width="30" height="50" rx="15" fill="#90EE90" opacity="0.8"/>
<circle cx="15" cy="-20" r="4" fill="#fff"/>
<circle cx="25" cy="-15" r="4" fill="#fff"/>
</g>
</g>
<g transform="translate(130,180)">
<g>
<path d="M0,0 L30,-20 L60,0 L30,20 L0,0" fill="url(#cityGrad3)" transform="rotate(-20) scale(1.4)"/>
<circle cx="30" cy="0" r="25" fill="#87CEEB" opacity="0.5"/>
<rect x="20" y="-10" width="40" height="60" rx="20" fill="#87CEEB" opacity="0.8"/>
<circle cx="25" cy="-20" r="6" fill="#fff"/>
<circle cx="35" cy="-15" r="6" fill="#fff"/>
</g>
</g>
<g transform="translate(250,250)">
<rect width="100" height="100" rx="50" fill="#1a5798" opacity="0.3"/>
</g>
<g transform="translate(50,250)">
<rect width="100" height="100" rx="50" fill="#1a5798" opacity="0.3"/>
</g>
<g transform="translate(150,200)">
<rect width="200" height="200" rx="100" fill="#1a5798" opacity="0.1"/>
</g>
<g transform="translate(100,100)">
<circle cx="0" cy="0" r="40" fill="none" stroke="#66B3FF" stroke-width="2" opacity="0.5"/>
</g>
<g transform="translate(200,80)">
<circle cx="0" cy="0" r="35" fill="none" stroke="#90EE90" stroke-width="2" opacity="0.5"/>
</g>
<g transform="translate(130,140)">
<circle cx="0" cy="0" r="30" fill="none" stroke="#87CEEB" stroke-width="2" opacity="0.5"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Sky background with gradient -->
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#1a0f3c;stop-opacity:1" />
<stop offset="100%" style="stop-color:#0a192f;stop-opacity:1" />
</linearGradient>
<!-- Jellyfish glow effect -->
<filter id="jellyGlow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<!-- Ocean ripple effect -->
<path id="oceanWave" d="M0,150 Q 150,130 300,150 Q 450,170 300,190 L300,300 L0,300 Z" fill="#1a2f38"/>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#skyGradient)"/>
<!-- Ocean surface with reflection -->
<rect x="0" y="150" width="300" height="150" fill="#1a2f38" opacity="0.8"/>
<circle cx="150" cy="200" r="100" fill="white" opacity="0.1" blur="10"/>
<!-- Floating Jellyfish City 1 -->
<g transform="translate(50,100)" filter="url(#jellyGlow)">
<ellipse cx="0" cy="0" rx="40" ry="30" fill="rgba(255,100,100,0.3)" stroke="#ff1a75" stroke-width="2"/>
<path d="M0,30 Q -20,-20 -40,0 Q -20,-40 0,-30 Q 20,-40 40,0 Q 20,20 0,30" fill="none" stroke="#ff1a75" stroke-width="2"/>
<!-- City inside jellyfish -->
<rect x="-15" y="-15" width="30" height="30" fill="#fff" opacity="0.6"/>
</g>
<!-- Floating Jellyfish City 2 -->
<g transform="translate(200,80)" filter="url(#jellyGlow)">
<ellipse cx="0" cy="0" rx="50" ry="40" fill="rgba(100,200,255,0.4)" stroke="#1a75ff" stroke-width="3"/>
<path d="M0,40 Q -30,-20 -50,0 Q -30,-50 0,-60 Q 30,-50 50,0 Q 30,30 0,40" fill="none" stroke="#1a75ff" stroke-width="3"/>
<!-- City inside jellyfish -->
<rect x="-20" y="-20" width="40" height="40" fill="#fff" opacity="0.6"/>
</g>
<!-- Stars -->
<g fill="white">
<circle cx="50" cy="50" r="1"/>
<circle cx="80" cy="60" r="1.5"/>
<circle cx="120" cy="40" r="1"/>
<circle cx="180" cy="50" r="1.2"/>
<circle cx="250" cy="30" r="1"/>
</g>
</svg>
Judge's Analysis
Player 2's submission effectively captures the idea of 'floating jellyfish cities above a mirrored ocean' through the use of distinct jellyfish-like forms with a clear reflection on the water below.
The image demonstrates strong adherence to the prompt with its visual representation of the mirrored ocean and glowing jellyfish structures, providing both creativity and visual appeal.
In contrast, Player 1's image is more abstract and less immediately recognizable in relation to 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
"Floating cat juggling stars in neon space"
"A city skyline made of fruit"
"Purple giraffe on roller skates juggling flaming torches"
"Rainbow umbrella floating above a sunflower field"
"Dancing cactus wearing sunglasses under a disco ball"
"Flying toaster-shaped clouds over a neon cityscape"