Creative Challenge
"Neon jellyfish dancing in a thunderstorm"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="glow">
<feGaussianBlur stdDeviation="2" result="glow"/>
<feGlow glowColor="currentColor" glowOpacity="0.5"/>
</filter>
<pattern id="lightning" x="0" y="0" width="10" height="10">
<path d="M0 0 L5 5 L10 0" stroke="white" stroke-width="1" fill="none"/>
</pattern>
</defs>
<rect width="300" height="300" fill="#0f0f1f"/>
<g transform="translate(150,150)">
<!-- Jellyfish Body -->
<path d="M0 0 Q40-40 80 0 Q40 40 0 0"
fill="none" stroke="#66ccff" stroke-width="4"
stroke-linejoin="round" stroke-linecap="round">
<animate attributeName="stroke-dasharray" from="0 40" to="40 0" dur="2s" repeatCount="indefinite"/>
</path>
<!-- Tentacles -->
<g>
<path d="M0 0 L0-80" stroke="#66ccff" stroke-width="2" opacity="0.7"/>
<path d="M20 0 L20-70" stroke="#66ccff" stroke-width="2" opacity="0.7"/>
<path d="M-20 0 L-20-70" stroke="#66ccff" stroke-width="2" opacity="0.7"/>
<path d="M10 0 L10-60" stroke="#66ccff" stroke-width="2" opacity="0.7"/>
<path d="M-10 0 L-10-60" stroke="#66ccff" stroke-width="2" opacity="0.7"/>
</g>
<!-- Lightning Bolts -->
<g transform="translate(-100, -100)">
<path d="M0 0 L100 100 L200 0"
stroke="#f0f" stroke-width="4" stroke-linecap="round"
stroke-dasharray="10,5" filter="url(#glow)"/>
<path d="M50 50 L150 100 L250 50"
stroke="#f0f" stroke-width="4" stroke-linecap="round"
stroke-dasharray="10,5" filter="url(#glow)"/>
</g>
<!-- Rain Drops -->
<g opacity="0.5">
<circle cx="50" cy="-50" r="2" fill="#123" filter="url(#glow)"/>
<circle cx="70" cy="-60" r="3" fill="#123" filter="url(#glow)"/>
<circle cx="90" cy="-70" r="2" fill="#123" filter="url(#glow)"/>
<circle cx="30" cy="-40" r="3" fill="#123" filter="url(#glow)"/>
</g>
<!-- Jellyfish Glow -->
<circle cx="0" cy="0" r="60" fill="none" stroke="#66ccff" stroke-width="2" filter="url(#glow)"/>
<!-- Dance trail -->
<path d="M0 0 C50-50 100-100 150-50"
stroke="#66ccff" stroke-width="4" opacity="0.3" filter="url(#glow)"/>
</g>
<!-- Storm clouds -->
<g transform="translate(0,200)">
<path d="M50 0 Q100-50 150 0 Q200 50 250 0"
fill="#1f1f3f" stroke="#2f2f4f" stroke-width="2"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="stormGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#0f0c29" />
<stop offset="1" stop-color="#302b63" />
</linearGradient>
<linearGradient id="neonGradient" x1="0" y1="0" x2="1" y2="0">
<stop offset="0" stop-color="#ff7e5f" />
<stop offset="1" stop-color="#feb47b" />
</linearGradient>
<pattern id="lightning" patternUnits="userSpaceOnUse" width="100" height="100">
<path d="M10 10 Q30 30 50 10 T100 10 M10 90 Q30 70 50 90 T100 90" stroke="white" stroke-width="2" fill="none" />
</pattern>
</defs>
<rect width="100%" height="100%" fill="url(#stormGradient)" />
<g transform="translate(150 150)">
<circle cx="0" cy="0" r="100" fill="url(#neonGradient)" opacity="0.8" />
<g transform="rotate(45)">
<circle cx="-50" cy="-50" r="15" fill="url(#neonGradient)" />
<circle cx="50" cy="50" r="15" fill="url(#neonGradient)" />
</g>
<g transform="rotate(135)">
<circle cx="-50" cy="-50" r="15" fill="url(#neonGradient)" />
<circle cx="50" cy="50" r="15" fill="url(#neonGradient)" />
</g>
<g transform="rotate(225)">
<circle cx="-50" cy="-50" r="15" fill="url(#neonGradient)" />
<circle cx="50" cy="50" r="15" fill="url(#neonGradient)" />
</g>
<g transform="rotate(315)">
<circle cx="-50" cy="-50" r="15" fill="url(#neonGradient)" />
<circle cx="50" cy="50" r="15" fill="url(#neonGradient)" />
</g>
</g>
<g transform="translate(50 50)">
<circle cx="0" cy="0" r="30" fill="url(#lightning)" opacity="0.7" />
</g>
<g transform="translate(250 50)">
<circle cx="0" cy="0" r="30" fill="url(#lightning)" opacity="0.7" />
</g>
<g transform="translate(50 250)">
<circle cx="0" cy="0" r="30" fill="url(#lightning)" opacity="0.7" />
</g>
<g transform="translate(250 250)">
<circle cx="0" cy="0" r="30" fill="url(#lightning)" opacity="0.7" />
</g>
</svg>
Judge's Analysis
Player 1's submission captures the concept of 'neon jellyfish dancing in a thunderstorm' more effectively with its use of vibrant neon colors and abstract forms that evoke the fluidity of jellyfish.
The composition includes elements that suggest movement and energy, fitting the theme of a thunderstorm, whereas Player 2's image lacks the dynamic qualities and thematic connection 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
"Dancing eggplant wearing a disco ball helmet"
"Snail in a speedboat race, scarf fluttering"
"A snail with a cityscape on its shell at sunset"
"Floating clockwork jellyfish in a starry nebula"
"Dancing toaster with a top hat, releasing colorful balloons"
"Astronaut with an umbrella on a raining moon"