Creative Challenge
"A neon jellyfish in a top hat gracefully balancing on a unicycle"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Neon glow effect filter -->
<defs>
<filter id="neonGlow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur in="SourceGraphic" stdDeviation="2" result="blur"/>
<feColorMatrix in="blur" type="matrix" values="0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 1 0"/>
<feBlend in="SourceGraphic" in2="blur" mode="screen"/>
</filter>
</defs>
<!-- Jellyfish body -->
<circle cx="150" cy="150" r="60" fill="#00A6ED" filter="url(#neonGlow)"/>
<!-- Jellyfish hat -->
<path d="M120,90 Q150,130 180,90 L150,50 Z" fill="#FFC300" filter="url(#neonGlow)"/>
<!-- Jellyfish eye -->
<circle cx="150" cy="140" r="3" fill="#fff"/>
<!-- Jellyfish tentacles -->
<path d="M100,160 C80,200 220,200 200,160 C170,200 130,200 100,160" fill="#00A6ED" filter="url(#neonGlow)"/>
<!-- Unicycle wheel -->
<circle cx="150" cy="200" r="25" fill="#000" stroke="#FFC300" stroke-width="4"/>
<!-- Unicycle pedals -->
<circle cx="140" cy="198" r="3" fill="#FFC300"/>
<circle cx="160" cy="198" r="3" fill="#FFC300"/>
<!-- Top hat ribbon -->
<rect x="140" y="45" width="20" height="5" fill="#000"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="jellyfishGrad">
<stop offset="0%" stop-color="#ff69b4"/>
<stop offset="100%" stop-color="#4169e1"/>
</radialGradient>
<linearGradient id="topHatGrad">
<stop offset="0%" stop-color="#000"/>
<stop offset="100%" stop-color="#333"/>
</linearGradient>
<linearGradient id="unicycleGrad">
<stop offset="0%" stop-color="#9400d3"/>
<stop offset="100%" stop-color="#ff69b4"/>
</linearGradient>
<pattern id="sparkles" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="1" fill="#fff"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#jellyfishGrad)"/>
<g transform="translate(150,150)">
<!-- Jellyfish Body -->
<circle r="40" fill="url(#jellyfishGrad)" stroke="#fff" stroke-width="2"/>
<!-- Tentacles -->
<path d="M-40,0 Q-30,20 -20,0 Q-10,-20 0,-40" fill="none" stroke="#ff69b4" stroke-width="3"/>
<path d="M40,0 Q30,20 20,0 Q10,-20 0,-40" fill="none" stroke="#4169e1" stroke-width="3"/>
<!-- Top Hat -->
<rect x="-20" y="-60" width="40" height="40" fill="url(#topHatGrad)" rx="5"/>
<rect x="-15" y="-45" width="30" height="5" fill="#fff"/>
<!-- Unicycle -->
<circle cx="0" cy="80" r="30" fill="url(#unicycleGrad)" stroke="#fff" stroke-width="2"/>
<line x1="-30" y1="80" x2="30" y2="80" stroke="#fff" stroke-width="3"/>
<rect x="-5" y="100" width="10" height="15" fill="#fff"/>
<!-- Shadow -->
<ellipse cx="0" cy="80" rx="20" ry="10" fill="#000" opacity="0.3"/>
</g>
<!-- Background Stars -->
<rect width="300" height="300" fill="url(#sparkles)" opacity="0.1"/>
</svg>
Judge's Analysis
Player 2's image more effectively captures the whimsical concept of a neon jellyfish in a top hat balancing on a unicycle.
The use of vibrant colors and the clear depiction of both the jellyfish and unicycle enhance the visual appeal and adherence to the prompt.
In contrast, Player 1's submission is less detailed and doesn't clearly convey the concept as effectively.
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
"An umbrella blooming with colorful flowers in the rain"
"Neon jellyfish dance under a disco ball in the deep sea"
"Rainbow koi in a cosmic tea cup"
"Floating city on a single, enormous cloud"
"Bioluminescent jellyfish spiraling around a neon-lit diver"
"Floating jellyfish wearing top hats in a cosmic sea"