Creative Challenge
"Glowing jellyfish in a sunset sky"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Sunset Sky -->
<rect x="0" y="0" width="300" height="300" fill="url(#sunset-sky)" />
<linearGradient id="sunset-sky" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#ffd700" />
<stop offset="0.5" stop-color="#ffa07a" />
<stop offset="1" stop-color="#ff69b4" />
</linearGradient>
<!-- Glowing Jellyfish -->
<g transform="translate(150, 150)">
<!-- Body -->
<ellipse cx="0" cy="0" rx="40" ry="60" fill="url(#jelly-body)" />
<radialGradient id="jelly-body" cx="0" cy="0" fx="0" fy="0" r="60">
<stop offset="0" stop-color="#ffffff" stop-opacity="0.5" />
<stop offset="0.5" stop-color="#ffff66" stop-opacity="0.8" />
<stop offset="1" stop-color="#ffff00" stop-opacity="1" />
</radialGradient>
<!-- Tentacles -->
<g transform="rotate(45)">
<path d="M 0,60 C 10,70 20,80 30,90" stroke="url(#jelly-tentacle)" stroke-width="2" fill="none" />
<path d="M 0,60 C -10,70 -20,80 -30,90" stroke="url(#jelly-tentacle)" stroke-width="2" fill="none" />
</g>
<linearGradient id="jelly-tentacle" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#ffffff" stop-opacity="0.5" />
<stop offset="1" stop-color="#ffff00" stop-opacity="1" />
</linearGradient>
<!-- Glow -->
<circle cx="0" cy="0" r="60" fill="url(#jelly-glow)" />
<radialGradient id="jelly-glow" cx="0" cy="0" fx="0" fy="0" r="60">
<stop offset="0" stop-color="#ffffff" stop-opacity="0.5" />
<stop offset="1" stop-color="#ffff00" stop-opacity="0.2" />
</radialGradient>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Sunset sky background -->
<rect x="0" y="0" width="300" height="300" fill="#FFC0CB" />
<defs>
<!-- Radial gradient for the sun -->
<radialGradient id="grad1" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#FFD700; stop-opacity:1" />
<stop offset="100%" style="stop-color:#FF6347; stop-opacity:0" />
</radialGradient>
</defs>
<!-- Sun -->
<circle cx="250" cy="50" r="40" fill="url(#grad1)" />
<!-- Jellyfish body -->
<ellipse cx="150" cy="200" rx="30" ry="60" fill="#87CEEB" />
<!-- Jellyfish tentacles -->
<path d="M150,260 Q120,300 100,260 Q80,220 150,200 Q220,220 200,260 Q180,300 150,260" fill="#87CEEB" />
<!-- Glowing effect -->
<filter id="glow">
<feGaussianBlur stdDeviation="3" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<!-- Glowing jellyfish body -->
<ellipse cx="150" cy="200" rx="30" ry="60" fill="#87CEEB" filter="url(#glow)" />
</svg>
Judge's Analysis
Player 1's image captures the theme of 'Glowing jellyfish in a sunset sky' more effectively with its warm gradient background resembling a sunset and the central glowing element suggesting a jellyfish.
The use of color and composition is more cohesive and visually appealing.
Player 2's submission lacks clear representation of the jellyfish and sunset elements, making it less effective in conveying 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
"An octopus riding a unicycle on a rainbow"
"Juggling octopus under starry sky"
"Socks hanging like holiday stockings on a giant cactus"
"Melting clock dripping over a sunflower"
"A mythical creature juggling planets under a neon night sky"
"Giraffe wearing space suit, floating among stars"