Creative Challenge
"Jellyfish floating in space with a Saturn ring around one tentacle"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="url(#bg-grad)" />
<linearGradient id="bg-grad" x1="0" y1="0" x2="0" y2="300">
<stop offset="0" stop-color="#212121" />
<stop offset="1" stop-color="#343434" />
</linearGradient>
<!-- Jellyfish Body -->
<circle cx="150" cy="150" r="70" fill="url(#jelly-grad)" />
<radialGradient id="jelly-grad" cx="150" cy="150" r="70" fx="150" fy="150">
<stop offset="0" stop-color="#FFC67D" />
<stop offset="1" stop-color="#FF99CC" />
</radialGradient>
<!-- Tentacles -->
<path d="M 150 150 L 100 200 Q 80 220 60 240 L 40 260" stroke="url(#tent-grad)" stroke-width="5" fill="none" />
<path d="M 150 150 L 200 200 Q 220 220 240 240 L 260 260" stroke="url(#tent-grad)" stroke-width="5" fill="none" />
<linearGradient id="tent-grad" x1="0" y1="0" x2="0" y2="300">
<stop offset="0" stop-color="#FFC67D" />
<stop offset="1" stop-color="#FF99CC" />
</linearGradient>
<!-- Saturn Ring -->
<circle cx="140" cy="240" r="20" fill="none" stroke="#AAAAAA" stroke-width="2" />
<circle cx="140" cy="240" r="15" fill="none" stroke="#AAAAAA" stroke-width="2" />
<circle cx="140" cy="240" r="10" fill="none" stroke="#AAAAAA" stroke-width="2" />
<circle cx="140" cy="240" r="5" fill="none" stroke="#AAAAAA" stroke-width="2" />
<!-- Glowing Effect -->
<circle cx="150" cy="150" r="80" fill="url(#glow-grad)" opacity="0.5" />
<radialGradient id="glow-grad" cx="150" cy="150" r="80" fx="150" fy="150">
<stop offset="0" stop-color="#FFFFFF" />
<stop offset="1" stop-color="#FFC67D" />
</radialGradient>
<!-- Starfield -->
<circle cx="50" cy="50" r="2" fill="#FFFFFF" />
<circle cx="250" cy="250" r="2" fill="#FFFFFF" />
<circle cx="100" cy="200" r="2" fill="#FFFFFF" />
<circle cx="200" cy="100" r="2" fill="#FFFFFF" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="jellyglow" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ff69e4" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#9932cc" stop-opacity="0.2"/>
</radialGradient>
<radialGradient id="space" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#0d1033"/>
<stop offset="100%" stop-color="#000013"/>
</radialGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="3" result="blur"/>
<feComposite in="SourceGraphic" in2="blur" operator="over"/>
</filter>
</defs>
<!-- Space background -->
<rect x="0" y="0" width="300" height="300" fill="url(#space)"/>
<!-- Stars -->
<g fill="white">
<circle cx="50" cy="50" r="1"/>
<circle cx="150" cy="30" r="1.5"/>
<circle cx="250" cy="70" r="1"/>
<circle cx="80" cy="200" r="1.2"/>
<circle cx="220" cy="180" r="1"/>
<circle cx="180" cy="250" r="1.3"/>
</g>
<!-- Saturn ring -->
<g transform="translate(150,150) rotate(-20)">
<ellipse cx="0" cy="0" rx="80" ry="15" fill="none" stroke="rgba(255,215,0,0.6)" stroke-width="8"/>
<ellipse cx="0" cy="0" rx="80" ry="15" fill="none" stroke="rgba(218,165,32,0.4)" stroke-width="4"/>
</g>
<!-- Jellyfish body -->
<g transform="translate(150,120)">
<path d="M-40,-30 Q0,-60 40,-30 Q60,0 40,30 Q0,50 -40,30 Q-60,0 -40,-30"
fill="url(#jellyglow)" filter="url(#glow)"/>
<!-- Tentacles -->
<g stroke-width="3" filter="url(#glow)">
<path d="M-30,30 Q-20,80 -40,120" stroke="#ff69e4" fill="none"/>
<path d="M-10,35 Q0,90 -10,130" stroke="#da70d6" fill="none"/>
<path d="M10,35 Q20,100 30,140" stroke="#ff69e4" fill="none"/>
<path d="M30,30 Q40,85 50,125" stroke="#da70d6" fill="none"/>
</g>
</g>
<!-- Sparkles -->
<g fill="white" opacity="0.8">
<circle cx="120" cy="100" r="2">
<animate attributeName="opacity" values="0;1;0" dur="2s" repeatCount="indefinite"/>
</circle>
<circle cx="180" cy="140" r="2">
<animate attributeName="opacity" values="0;1;0" dur="1.5s" repeatCount="indefinite"/>
</circle>
<circle cx="150" cy="90" r="2">
<animate attributeName="opacity" values="0;1;0" dur="3s" repeatCount="indefinite"/>
</circle>
</g>
</svg>
Judge's Analysis
Player 2's submission excels in creativity and adherence to the prompt by clearly depicting a jellyfish with a Saturn-like ring around its tentacles, set against a cosmic backdrop.
The technical quality is high, with smooth gradients and effective use of color to convey a sense of space and bioluminescence.
In contrast, Player 1's image lacks clarity and detail in representing the theme, making Player 2's submission more visually appealing and thematically accurate.
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 snail with a cityscape of tiny buildings on its shell"
"Pirate cat on a unicycle juggling starfish"
"Dreamy cityscape inside a snow globe with a swirling galaxy background"
"Flying cactus in a top hat balancing on a unicycle with a desert sunset backdrop"
"Underwater circus with juggling octopus, tightrope starfish, and clownfish on unicycles"
"Meteor shower over a crystal desert"