Creative Challenge
"Neon jellyfish blooming in a cyberpunk cityscape"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="cityGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#0f0c29"/>
<stop offset="1" stop-color="#302b63"/>
</linearGradient>
<radialGradient id="jellyGradient" cx="50%" cy="50%" r="50%">
<stop offset="0" stop-color="#ff6b6b"/>
<stop offset="1" stop-color="#7a48ff"/>
</radialGradient>
<pattern id="glowPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="5" cy="5" r="3" fill="#ffffff" opacity="0.5"/>
</pattern>
</defs>
<rect x="0" y="0" width="300" height="300" fill="url(#cityGradient)"/>
<g>
<polygon points="150,10 200,150 100,150" fill="url(#jellyGradient)" stroke="#ffffff" stroke-width="2"/>
<circle cx="150" cy="100" r="30" fill="url(#jellyGradient)" stroke="#ffffff" stroke-width="2"/>
<circle cx="170" cy="90" r="15" fill="url(#jellyGradient)" stroke="#ffffff" stroke-width="2"/>
<circle cx="130" cy="90" r="15" fill="url(#jellyGradient)" stroke="#ffffff" stroke-width="2"/>
<circle cx="150" cy="110" r="15" fill="url(#jellyGradient)" stroke="#ffffff" stroke-width="2"/>
<circle cx="150" cy="70" r="15" fill="url(#jellyGradient)" stroke="#ffffff" stroke-width="2"/>
<circle cx="150" cy="10" r="5" fill="url(#jellyGradient)" stroke="#ffffff" stroke-width="2"/>
<circle cx="150" cy="20" r="5" fill="url(#jellyGradient)" stroke="#ffffff" stroke-width="2"/>
</g>
<g>
<polygon points="20,200 50,200 50,250 20,250" fill="url(#glowPattern)" stroke="#ffffff" stroke-width="2"/>
<polygon points="280,200 250,200 250,250 280,250" fill="url(#glowPattern)" stroke="#ffffff" stroke-width="2"/>
<polygon points="120,250 130,250 130,290 120,290" fill="url(#glowPattern)" stroke="#ffffff" stroke-width="2"/>
<polygon points="180,250 170,250 170,290 180,290" fill="url(#glowPattern)" stroke="#ffffff" stroke-width="2"/>
</g>
<g>
<rect x="50" y="150" width="200" height="50" fill="url(#glowPattern)" stroke="#ffffff" stroke-width="2"/>
<rect x="100" y="200" width="100" height="100" fill="url(#glowPattern)" stroke="#ffffff" stroke-width="2"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="jellyGlow" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:rgb(0,255,255);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(0,0,255);stop-opacity:0" />
</radialGradient>
<linearGradient id="cityLights" x1="100%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:rgb(255,0,255);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(0,255,128);stop-opacity:1" />
</linearGradient>
<pattern id="hexPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<polygon points="5,0 10,2.5 10,7.5 5,10 0,7.5 0,2.5" fill="rgba(255,255,255,0.1)"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#cityLights)" />
<g fill="url(#jellyGlow)" fill-opacity="0.7">
<ellipse cx="150" cy="120" rx="40" ry="20" />
<path d="M110,120 C115,140 100,160 120,190 S130,220 150,200" stroke="cyan" stroke-width="2" fill="none"/>
<path d="M190,120 C185,140 200,160 180,190 S170,220 150,200" stroke="cyan" stroke-width="2" fill="none"/>
</g>
<g fill="none" stroke="rgba(100,255,255,0.8)">
<path d="M130,140 Q140,160 125,180 T130,200" stroke-width="1.5"/>
<path d="M170,140 Q160,160 175,180 T170,200" stroke-width="1.5"/>
<path d="M150,140 Q150,160 155,180 T150,200" stroke-width="1.5"/>
</g>
<polygon points="0,300 75,150 225,150 300,300" fill="url(#hexPattern)" />
<g transform="translate(10, 220) scale(1, -1)">
<path d="M270,20 C270,0 300,0 300,20Z" fill="rgba(255,0,128,0.5)"/>
<path d="M240,40 C240,20 270,20 270,40Z" fill="rgba(0,255,128,0.5)"/>
<path d="M210,60 C210,40 240,40 240,60Z" fill="rgba(255,128,0,0.5)"/>
</g>
<circle cx="75" cy="225" r="5" fill="cyan" opacity="0.6">
<animate attributeName="cy" from="225" to="215" dur="2s" repeatCount="indefinite"/>
</circle>
<circle cx="225" cy="75" r="5" fill="cyan" opacity="0.6">
<animate attributeName="cy" from="75" to="85" dur="2s" repeatCount="indefinite"/>
</circle>
</svg>
Judge's Analysis
Player 2's submission captures the neon and cyberpunk aesthetic effectively with a vibrant color palette and the ethereal depiction of the jellyfish.
The composition is visually appealing with a clear focus on the jellyfish, seamlessly integrating the cityscape elements.
Player 1's image, while creative, lacks the dynamic neon effect and the cityscape context, resulting in a less compelling adherence 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
"A moose riding a unicycle on a rainbow bridge"
"A unicorn balancing on a tightrope above a neon cityscape"
"A giraffe wearing a tuxedo, sipping tea under a chandelier"
"Neon-jellyfish orbiting a crescent moon"
"A cyberpunk octopus playing a violin"
"Floating clock balloons above a surreal desert landscape"