Creative Challenge
"Bioluminescent jellyfish floating over a cityscape at dusk"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="skyGlow" cx="50%" cy="100%" r="100%">
<stop offset="0%" stop-color="#1a0b2e"/>
<stop offset="100%" stop-color="#0f0522"/>
</radialGradient>
<linearGradient id="jellyglow" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#7bf7ff" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#2e89ff" stop-opacity="0.2"/>
</linearGradient>
<filter id="blur">
<feGaussianBlur stdDeviation="2"/>
</filter>
</defs>
<!-- Sky background -->
<rect x="0" y="0" width="300" height="300" fill="url(#skyGlow)"/>
<!-- City buildings -->
<g fill="#0f1222">
<rect x="20" y="150" width="30" height="150"/>
<rect x="60" y="180" width="40" height="120"/>
<rect x="110" y="130" width="35" height="170"/>
<rect x="155" y="160" width="45" height="140"/>
<rect x="210" y="140" width="25" height="160"/>
<rect x="245" y="170" width="35" height="130"/>
</g>
<!-- Building windows -->
<g fill="#ffeb99" opacity="0.6">
<rect x="25" y="160" width="20" height="130" rx="2"/>
<rect x="65" y="190" width="30" height="100" rx="2"/>
<rect x="115" y="140" width="25" height="150" rx="2"/>
<rect x="160" y="170" width="35" height="120" rx="2"/>
<rect x="215" y="150" width="15" height="140" rx="2"/>
<rect x="250" y="180" width="25" height="110" rx="2"/>
</g>
<!-- Jellyfish body -->
<g transform="translate(150, 120)">
<path d="M0,0 Q-40,20 -40,60 Q-40,100 0,120 Q40,100 40,60 Q40,20 0,0"
fill="url(#jellyglow)" opacity="0.9"/>
<!-- Tentacles -->
<g stroke="#5ed8ff" stroke-width="2" fill="none" opacity="0.7">
<path d="M-30,60 Q-20,90 -35,120 Q-30,100 -25,130" filter="url(#blur)"/>
<path d="M-10,60 Q0,95 -15,125 Q-10,105 -5,135" filter="url(#blur)"/>
<path d="M10,60 Q20,90 5,120 Q10,100 15,130" filter="url(#blur)"/>
<path d="M30,60 Q40,95 25,125 Q30,105 35,135" filter="url(#blur)"/>
</g>
<!-- Bioluminescent spots -->
<g fill="#7bf7ff">
<circle cx="-20" cy="30" r="5" opacity="0.8"/>
<circle cx="20" cy="30" r="5" opacity="0.8"/>
<circle cx="0" cy="40" r="6" opacity="0.8"/>
<circle cx="-15" cy="50" r="4" opacity="0.8"/>
<circle cx="15" cy="50" r="4" opacity="0.8"/>
</g>
</g>
<!-- Glowing effects -->
<g fill="#7bf7ff" opacity="0.2" filter="url(#blur)">
<circle cx="150" cy="120" r="60"/>
<circle cx="150" cy="120" r="40"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="grad1" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" style="stop-color: #1e5799; stop-opacity:1" />
<stop offset="100%" style="stop-color: #000; stop-opacity:1" />
</linearGradient>
<radialGradient id="grad2" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color: #00ffbf; stop-opacity:1" />
<stop offset="100%" style="stop-color: #000; stop-opacity:1" />
</radialGradient>
<pattern id="cityPattern" patternUnits="userSpaceOnUse" width="100" height="100">
<rect x="0" y="0" width="100" height="100" fill="#222" />
<line x1="20" y1="0" x2="20" y2="100" stroke="#aaa" stroke-width="2" />
<line x1="40" y1="0" x2="40" y2="100" stroke="#aaa" stroke-width="2" />
<line x1="60" y1="0" x2="60" y2="100" stroke="#aaa" stroke-width="2" />
<line x1="80" y1="0" x2="80" y2="100" stroke="#aaa" stroke-width="2" />
<line x1="0" y1="20" x2="100" y2="20" stroke="#aaa" stroke-width="2" />
<line x1="0" y1="40" x2="100" y2="40" stroke="#aaa" stroke-width="2" />
<line x1="0" y1="60" x2="100" y2="60" stroke="#aaa" stroke-width="2" />
<line x1="0" y1="80" x2="100" y2="80" stroke="#aaa" stroke-width="2" />
</pattern>
</defs>
<rect x="0" y="0" width="300" height="300" fill="url(#grad1)" />
<g transform="translate(150, 150)">
<circle cx="0" cy="-100" r="30" fill="url(#grad2)" />
<path d="M-25,-100 Q-50,-120 -25,-140 T25,-100" fill="url(#grad2)" />
<path d="M-25,-100 Q-50,-80 -25,-60 T25,-100" fill="url(#grad2)" />
</g>
<rect x="0" y="200" width="300" height="100" fill="url(#cityPattern)" />
</svg>
Judge's Analysis
Player 1's submission effectively captures the concept of bioluminescent jellyfish over a cityscape with its use of glowing elements and a recognizable urban skyline.
The color contrast and overall composition are more dynamic, creating a visually appealing and imaginative scene.
Player 2's image lacks clarity in depicting the prompt's theme and appears less cohesive in integrating the jellyfish and cityscape elements.
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 wearing a space helmet juggling planets"
"Space garden in a teacup floating above a starry galaxy"
"Giraffe wearing a vintage diving helmet, standing in a teacup"
"Giraffe lounging in an armchair reading a tiny book"
"Surreal umbrella raining planets in a desert"
"Astronaut squirrel juggling planets"