Creative Challenge
"Electric jellyfish playing a glowing violin in a cosmic sea"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="jellyfishGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color: #ff6b6b; stop-opacity:1" />
<stop offset="100%" style="stop-color: #f2f5ff; stop-opacity:1" />
</linearGradient>
<radialGradient id="cosmicGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color: #0096c7; stop-opacity:1" />
<stop offset="100%" style="stop-color: #006680; stop-opacity:1" />
</radialGradient>
</defs>
<rect width="100%" height="100%" fill="url(#cosmicGradient)" />
<g transform="translate(150, 150)">
<circle cx="0" cy="0" r="50" fill="url(#jellyfishGradient)" />
<path d="M 50,0 Q 70,20 70,50 Q 50,70 30,50 Q 70,20 50,0" fill="url(#jellyfishGradient)" />
<path d="M -50,0 Q -70,20 -70,50 Q -50,70 -30,50 Q -70,20 -50,0" fill="url(#jellyfishGradient)" />
<path d="M 0,-50 Q 20,-70 50,-70 Q 70,-50 50,-30 Q 20,-70 0,-50" fill="url(#jellyfishGradient)" />
<path d="M 0,50 Q -20,70 -50,70 Q -70,50 -50,30 Q -20,70 0,50" fill="url(#jellyfishGradient)" />
<circle cx="0" cy="0" r="2" fill="#ff6b6b" />
<line x1="0" y1="0" x2="0" y2="-60" stroke="#ff6b6b" stroke-width="2" />
<line x1="0" y1="-60" x2="15" y2="-60" stroke="#ff6b6b" stroke-width="2" />
<line x1="0" y1="-60" x2="-15" y2="-60" stroke="#ff6b6b" stroke-width="2" />
<circle cx="15" cy="-60" r="2" fill="#ff6b6b" />
<circle cx="-15" cy="-60" r="2" fill="#ff6b6b" />
<rect x="-5" y="-55" width="10" height="5" fill="#ff6b6b" />
</g>
<g transform="translate(150, 150)">
<circle cx="0" cy="0" r="2" fill="#ff6b6b" />
<path d="M 0 0 C 50 50, 100 100, 150 0" stroke="#ff6b6b" stroke-width="2" fill="none" />
<path d="M 0 0 C -50 50, -100 100, -150 0" stroke="#ff6b6b" stroke-width="2" fill="none" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background with cosmic gradient -->
<defs>
<linearGradient id="cosmicBg" x1="0" y1="0" x2="300" y2="300">
<stop offset="0" stop-color="#0a0a2e"/>
<stop offset="1" stop-color="#1a1a4f"/>
</linearGradient>
<!-- Jellyfish glow effect -->
<radialGradient id="jellyGlow" cx="150" cy="150" r="100" fx="150" fy="150">
<stop offset="0" stop-color="#ffffff" stop-opacity="0.8"/>
<stop offset="1" stop-color="#0066ff" stop-opacity="0"/>
</radialGradient>
<!-- Violin glow effect -->
<radialGradient id="violinGlow" cx="180" cy="120" r="50" fx="180" fy="120">
<stop offset="0" stop-color="#ff00ff" stop-opacity="0.8"/>
<stop offset="1" stop-color="#4a1010" stop-opacity="0"/>
</radialGradient>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#cosmicBg)"/>
<!-- Electric Jellyfish -->
<g transform="translate(150,150)">
<!-- Jellyfish body -->
<circle r="70" fill="url(#jellyGlow)" transform="rotate(45)"/>
<!-- Tentacles -->
<path d="M0,0 Q 50,-50 100,0 Q 120,-20 140,0 Q 100,20 0,0"
stroke="#00ffff" stroke-width="2" fill="none" opacity="0.8"/>
<path d="M0,0 Q -50,-40 -80,0 Q -40,40 0,0"
stroke="#00ffff" stroke-width="2" fill="none" opacity="0.8"/>
</g>
<!-- Glowing Violin -->
<g transform="translate(180,120)">
<!-- Violin body -->
<path d="M-30,40 Q 0,0 30,40 L 0,80 -30,40 Z"
fill="url(#violinGlow)" stroke="#4a1010" stroke-width="2"/>
<!-- Strings -->
<path d="M-30,40 L30,40" stroke="#ffffff" stroke-width="1"/>
<path d="M-20,60 L20,60" stroke="#ffffff" stroke-width="1"/>
<path d="M0,80 L0,40" stroke="#ffffff" stroke-width="1"/>
</g>
<!-- Bow -->
<path d="M150,100 Q 200,130 250,100" stroke="#ff00ff" stroke-width="2" opacity="0.8"/>
<!-- Lightning effects -->
<path d="M140,100 L160,90 L180,100 L200,90" stroke="#ffffff" stroke-width="1" opacity="0.6"/>
<path d="M170,110 L190,120 L210,110" stroke="#ffffff" stroke-width="1" opacity="0.6"/>
<!-- Cosmic sea elements -->
<g opacity="0.4">
<!-- Stars -->
<circle cx="50" cy="50" r="1" fill="#ffffff"/>
<circle cx="200" cy="250" r="1" fill="#ffffff"/>
<circle cx="80" cy="200" r="1" fill="#ffffff"/>
<circle cx="220" cy="80" r="1" fill="#ffffff"/>
<!-- Small planet -->
<circle cx="100" cy="100" r="20" fill="url(#cosmicBg)">
<animate attributeName="r" from="20" to="25" dur="2s" repeatCount="indefinite"/>
</circle>
</g>
</svg>
Judge's Analysis
Player 2's submission captures the essence of a cosmic sea with its dark background and abstract elements, suggesting a more ethereal and cosmic setting.
The use of glowing lines and shapes is more imaginative and aligns better with the idea of an 'electric jellyfish' playing a 'glowing violin'.
Player 1's image, while technically clean, lacks the dynamic and cosmic feel required by 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
"Levitation tea party with floating teacups and pastries"
"Moonlit snail in a top hat juggling stars"
"Rainbow octopus in a Victorian tea party setting"
"Dolphin playing chess with a robot atop an iceberg"
"Flamingo on a skateboard, wearing sunglasses and sipping a smoothie"
"Frog in a vintage scuba suit dancing with jellyfish"