Creative Challenge
"A jellyfish wearing a top hat, floating in a starry night sky"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="skyGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:rgb(20,24,82);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(5,5,35);stop-opacity:1" />
</radialGradient>
<radialGradient id="jellyfishBody" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:rgb(173,216,230);stop-opacity:0.8" />
<stop offset="100%" style="stop-color:rgb(24,60,191);stop-opacity:0.8" />
</radialGradient>
<radialGradient id="topHatGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:rgb(45,45,45);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(20,20,20);stop-opacity:1" />
</radialGradient>
<pattern id="stars" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="1" cy="1" r="1" fill="white" />
<circle cx="8" cy="8" r="1.5" fill="white" />
</pattern>
</defs>
<rect width="100%" height="100%" fill="url(#skyGradient)" />
<rect width="100%" height="100%" fill="url(#stars)" />
<g transform="translate(150, 150)">
<!-- Jellyfish Body -->
<ellipse cx="0" cy="0" rx="50" ry="70" fill="url(#jellyfishBody)" filter="url(#fuzz)" />
<!-- Jellyfish Tentacles -->
<path d="M0,30 Q-10,60 -5,100 T0,170 M0,30 Q-5,60 0,100 T-5,170
M0,30 Q0,60 5,100 T0,170 M0,30 Q10,60 5,100 T5,170"
stroke="rgba(24,60,191,0.5)" stroke-width="2" fill="none" />
<!-- Top Hat -->
<ellipse cx="0" cy="-50" rx="40" ry="5" fill="black" opacity="0.6" />
<rect x="-30" y="-90" width="60" height="40" fill="url(#topHatGradient)" />
<ellipse cx="0" cy="-90" rx="30" ry="7" fill="black" />
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background with starry night effect -->
<defs>
<radialGradient id="nightSky" cx="150" cy="150" r="150" fx="150" fy="150">
<stop offset="0" stop-color="#0a192f" />
<stop offset="1" stop-color="#020c1b" />
</radialGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="url(#nightSky)"/>
<!-- Stars -->
<g id="stars">
<circle cx="50" cy="50" r="1" fill="white"/>
<circle cx="80" cy="100" r="1" fill="white"/>
<circle cx="120" cy="70" r="1" fill="white"/>
<circle cx="200" cy="80" r="1" fill="white"/>
<circle cx="250" cy="120" r="1" fill="white"/>
<circle cx="150" cy="150" r="1" fill="white"/>
<circle cx="100" cy="200" r="1" fill="white"/>
<circle cx="220" cy="220" r="1" fill="white"/>
<circle cx="280" cy="250" r="1" fill="white"/>
<circle cx="180" cy="280" r="1" fill="white"/>
</g>
<!-- Jellyfish body -->
<circle cx="150" cy="150" r="80" fill="#32CD32" opacity="0.5" filter="url(#glow)"/>
<circle cx="150" cy="150" r="60" fill="#1a8f4c" opacity="0.3"/>
<!-- Jellyfish tentacles -->
<path d="M150,230 Q160,260 170,270 L150,270 L130,270 Q140,260 150,230" fill="#1a8f4c" opacity="0.3"/>
<path d="M150,230 Q170,240 190,250 L170,270 Q160,260 150,230" fill="#1a8f4c" opacity="0.3"/>
<path d="M150,230 Q130,240 110,250 L130,270 Q140,260 150,230" fill="#1a8f4c" opacity="0.3"/>
<path d="M150,230 Q160,220 170,210 L170,270 Q160,260 150,230" fill="#1a8f4c" opacity="0.3"/>
<!-- Top hat -->
<rect x="130" y="70" width="40" height="60" fill="#000" rx="5"/>
<rect x="125" y="50" width="50" height="20" fill="#000" rx="3"/>
<path d="M145,50 L155,40 L145,30 Z" fill="#000"/>
<path d="M155,50 L165,40 L155,30 Z" fill="#000"/>
<path d="M135,50 L145,40 L135,30 Z" fill="#000"/>
<path d="M145,30 L155,20 L165,30 Z" fill="#000"/>
<path d="M135,30 L145,20 L155,30 Z" fill="#000"/>
<!-- Hat band -->
<rect x="125" y="50" width="50" height="10" fill="#8a2be2" rx="2"/>
</svg>
Judge's Analysis
Player 1's image directly depicts a jellyfish with a clear top hat, floating against a starry background, effectively adhering to the prompt.
The use of color and pattern creates a visually appealing and whimsical scene.
In contrast, Player 2's image is more abstract, making it difficult to discern the elements described in the prompt, which affects its adherence and clarity.
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
"Two-headed owl with neon wings under a cosmic night sky"
"Upside-down city skyline mirrored in a tranquil lake"
"A jellyfish cityscape floating above a mirrored ocean"
"Moonlit jellyfish dance in a night sky"
"Surreal clock melting over a tree branch at sunset"
"Jellyfish in a Teacup Floating Through Space"