Creative Challenge
"A jellyfish wearing a top hat floating through a nebula"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="nebulaGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#0B3D91"/>
<stop offset="50%" stop-color="#8B008B"/>
<stop offset="100%" stop-color="#FFD700"/>
</radialGradient>
<linearGradient id="jellyfishGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#FF69B4"/>
<stop offset="100%" stop-color="#FF00FF"/>
</linearGradient>
<pattern id="starPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="1" fill="white"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#nebulaGradient)"/>
<rect width="300" height="300" fill="url(#starPattern)"/>
<ellipse cx="150" cy="100" rx="50" ry="30" fill="url(#jellyfishGradient)"/>
<path d="M130,130 Q150,180 170,130 Q150,200 130,130Z" fill="url(#jellyfishGradient)"/>
<path d="M110,110 Q130,150 150,110 Q170,150 190,110" fill="none" stroke="#FF69B4" stroke-width="2"/>
<path d="M110,120 Q130,160 150,120 Q170,160 190,120" fill="none" stroke="#FF69B4" stroke-width="2"/>
<rect x="130" y="70" width="40" height="20" fill="black"/>
<rect x="135" y="60" width="30" height="10" fill="black"/>
<ellipse cx="150" cy="60" rx="15" ry="10" fill="black"/>
<circle cx="150" cy="60" r="5" fill="white"/>
<circle cx="155" cy="60" r="3" fill="white"/>
<circle cx="145" cy="60" r="3" fill="white"/>
<path d="M150,60 Q160,50 170,60" fill="none" stroke="white" stroke-width="2"/>
<path d="M150,60 Q140,50 130,60" fill="none" stroke="white" stroke-width="2"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="nebulaGradient" cx="50%" cy="50%" r="50%">
<stop offset="10%" style="stop-color: #ff69b4; stop-opacity:1" />
<stop offset="50%" style="stop-color: #8a2be2; stop-opacity:0.7" />
<stop offset="100%" style="stop-color: #000080; stop-opacity:0.5" />
</radialGradient>
<linearGradient id="tailGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="20%" style="stop-color: #00ffff; stop-opacity:1" />
<stop offset="80%" style="stop-color: #0000ff; stop-opacity:0.5" />
</linearGradient>
<radialGradient id="hatGradient" cx="50%" cy="50%" r="50%">
<stop offset="30%" style="stop-color: #000000; stop-opacity:1" />
<stop offset="100%" style="stop-color: #555555; stop-opacity:1" />
</radialGradient>
</defs>
<rect width="100%" height="100%" fill="url(#nebulaGradient)" />
<g transform="translate(150, 150)">
<ellipse cx="0" cy="0" rx="30" ry="20" fill="url(#tailGradient)" opacity="0.8">
<animateTransform attributeName="transform" attributeType="XML"
type="rotate" from="0" to="360" dur="20s" repeatCount="indefinite"/>
</ellipse>
<path d="M -15,-10 C -30,10 -30,40 0,50 C 30,40 30,10 15,-10 Z" fill="url(#tailGradient)" />
<g>
<path d="M -15,-10 C -10,-30 10,-30 15,-10 Z" fill="url(#hatGradient)" />
<ellipse cx="0" cy="-18" rx="25" ry="5" fill="#111" />
</g>
<g transform="translate(0, 20)">
<path d="M -10,0 Q -30,40 -12,60" stroke="#00ffff" stroke-width="3" fill="none" opacity="0.7" />
<path d="M 10,0 Q 30,40 12,60" stroke="#00ffff" stroke-width="3" fill="none" opacity="0.7" />
<path d="M -5,0 Q -10,30 -2,50" stroke="#00ffff" stroke-width="2" fill="none" opacity="0.5" />
<path d="M 5,0 Q 10,30 2,50" stroke="#00ffff" stroke-width="2" fill="none" opacity="0.5" />
</g>
</g>
<circle cx="150" cy="100" r="3" fill="#ffffff" opacity="0.8" />
<circle cx="180" cy="130" r="2" fill="#ffffff" opacity="0.6" />
<circle cx="120" cy="200" r="2" fill="#ffffff" opacity="0.4" />
<circle cx="200" cy="230" r="3" fill="#ffffff" opacity="0.5" />
</svg>
Judge's Analysis
Player 2's submission exhibits a more cohesive and visually appealing composition.
The color transition in the nebula and the use of gradients enhance the ethereal quality of the scene.
The jellyfish is more distinct and integrated seamlessly with the environment, adhering closely to the prompt while maintaining technical finesse.
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
"Squirrel DJ spinning acorn records"
"A floating island with clockwork trees under a starry night sky"
"An umbrella tree growing under a waterfall"
"A glowing owl in a neon cityscape at night"
"Skeletal octopus plays a luminous xylophone under a bioluminescent sea"
"A giant cat knitting with skyscraper-sized yarn in a cityscape"