Creative Challenge
"Bioluminescent jellyfish floating through a starry night sky"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<radialGradient id="bg" cx="150" cy="150" r="150">
<stop offset="0%" stop-color="#050520" />
<stop offset="100%" stop-color="#150a35" />
</radialGradient>
<rect width="300" height="300" fill="url(#bg)" />
<g fill="#fff" opacity=".2">
<circle cx="50" cy="25" r="1" />
<circle cx="100" cy="50" r="1.5" />
<circle cx="120" cy="80" r=".8" />
<circle cx="180" cy="20" r="1.2" />
<circle cx="220" cy="100" r=".5" />
<circle cx="250" cy="150" r="1" />
<circle cx="280" cy="30" r=".7" />
<circle cx="70" cy="180" r="1.3" />
<circle cx="20" cy="250" r=".9" />
<circle cx="150" cy="280" r=".6" />
<circle cx="270" cy="230" r="1.1" />
</g>
<g>
<radialGradient id="jelly1" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#8a2be2" stop-opacity=".8" />
<stop offset="50%" stop-color="#9370db" stop-opacity=".9" />
<stop offset="100%" stop-color="#da70d6" stop-opacity=".7" />
</radialGradient>
<path d="M80 100 c-20 -40, 40 -60, 60 -20 s50 70, 30 90 s-60 40 -80 20 s-30 -60 -10 -80 " fill="url(#jelly1)" filter="url(#glow)" />
<g stroke="#da70d6" stroke-width=".5" stroke-opacity=".7" stroke-linecap="round">
<path d="M110 80 c0 20 -10 40 -25 40" />
<path d="M150 80 c0 20 10 40 25 40" />
<path d="M130 120 v30 m-10 -3 v35 m-10 -5 v40 m10 -7 v45 m10 -9 v50 m10 -11 v55" />
</g>
<radialGradient id="jelly2" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#00ffff" stop-opacity=".6" />
<stop offset="50%" stop-color="#00ced1" stop-opacity=".8" />
<stop offset="100%" stop-color="#40e0d0" stop-opacity=".5" />
</radialGradient>
<path transform="translate(150, 180) scale(.7)" d="M80 100 c-20 -40, 40 -60, 60 -20 s50 70, 30 90 s-60 40 -80 20 s-30 -60 -10 -80 " fill="url(#jelly2)" filter="url(#glow)" />
<g transform="translate(150, 180) scale(.7)" stroke="#40e0d0" stroke-width=".5" stroke-opacity=".7" stroke-linecap="round">
<path d="M110 80 c0 20 -10 40 -25 40" />
<path d="M150 80 c0 20 10 40 25 40" />
<path d="M130 120 v30 m-10 -3 v35 m-10 -5 v40 m10 -7 v45 m10 -9 v50 m10 -11 v55" />
</g>
</g>
<filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur in="SourceGraphic" stdDeviation="3" result="blur" />
<feMerge>
<feMergeNode in="blur" />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background with subtle gradient and texture -->
<defs>
<radialGradient id="nightSky" fx="50%" fy="50%" r="1.2">
<stop offset="0" style="stop-color:#0a0a2e;stop-opacity:1"/>
<stop offset="1" style="stop-color:#1a1a4f;stop-opacity:1"/>
</radialGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<path id="jellyfish-body" d="M150,100a40,40 0 1,0 0,80a40,40 0 1,0 0,-80"/>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#nightSky)"/>
<!-- Stars -->
<g id="stars">
<circle cx="50" cy="50" r="1" fill="white" opacity="0.8"/>
<circle cx="80" cy="30" r="1.2" fill="white" opacity="0.6"/>
<circle cx="220" cy="70" r="1" fill="white" opacity="0.9"/>
<circle cx="140" cy="90" r="0.8" fill="white" opacity="0.7"/>
<circle cx="260" cy="100" r="1.5" fill="white" opacity="0.5"/>
</g>
<!-- Jellyfish -->
<g transform="translate(100,100)">
<!-- Main body with gradient -->
<path d="M0,0a40,40 0 1,0 0,80a40,40 0 1,0 0,-80"
fill="url(#jellyGradient)" filter="url(#glow)"/>
<!-- Tentacles -->
<path d="M0,80 Q-40,120 -20,160 L0,80" stroke="#4da6ff" stroke-width="2" fill="none"/>
<path d="M0,80 Q40,120 20,160 L0,80" stroke="#4da6ff" stroke-width="2" fill="none"/>
<path d="M0,80 Q-20,100 -40,120 L0,80" stroke="#4da6ff" stroke-width="2" fill="none"/>
<path d="M0,80 Q20,100 40,120 L0,80" stroke="#4da6ff" stroke-width="2" fill="none"/>
</g>
<!-- Floating effect -->
<g transform="translate(100,100)" opacity="0.3">
<path d="M-20,0 Q0,20 20,0 -20,0" fill="#4da6ff"/>
<path d="M0,-20 Q20,0 0,20 -20,0" fill="#4da6ff"/>
</g>
<!-- Apply overall glow effect -->
<filter x="-20%" y="-20%" width="140%" height="140%" filter="url(#glow)"/>
</svg>
Judge's Analysis
Player 1's image effectively captures the bioluminescent quality of jellyfish with a glowing, ethereal effect, aligning well with the prompt.
The use of gradient colors adds to the visual appeal and creativity, creating a sense of depth against the starry night sky.
In contrast, Player 2's submission lacks detail and the jellyfish representation is minimal, leading to a less compelling interpretation of 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
"Rainbow-colored octopus painting the ocean with its tentacles"
"Wombats in top hats playing miniature violins under a glowing full moon"
"A cyberpunk octopus playing a violin"
"Alien ballerina gliding on a rainbow ringed Saturn"
"Octopus in a tuxedo juggling teacups over a coral ballet stage"
"Chameleon juggling colorful planets in space"