Creative Challenge
"A cosmic whale swimming through a sea of stars, minimalist style"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="starGradient1">
<stop offset="0%" stop-color="#ff61d2" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#6b46c1" stop-opacity="0"/>
</radialGradient>
<radialGradient id="starGradient2">
<stop offset="0%" stop-color="#4facfe" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#00f3ff" stop-opacity="0"/>
</radialGradient>
<linearGradient id="whaleGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#1a1a2e"/>
<stop offset="100%" stop-color="#1a2b4c"/>
</linearGradient>
</defs>
<rect width="300" height="300" fill="radial-gradient(circle, #0a0a1a 0%, #0d0d2b 100%)" />
<g transform="translate(150,150)">
<!-- Whale Body -->
<path d="M-60,0 Q-30,20 0,0 Q30,-20 60,0"
fill="url(#whaleGradient)"
stroke="#1a2b4c"
stroke-width="2"/>
<!-- Whale Tail -->
<path d="M60,0 Q75,-20 90,0"
fill="url(#whaleGradient)"
stroke="#1a2b4c"
stroke-width="2"/>
<!-- Starfield -->
<g>
<!-- Star 1 -->
<circle cx="-80" cy="-40" r="2" fill="url(#starGradient1)"/>
<!-- Star 2 -->
<circle cx="70" cy="-30" r="3" fill="url(#starGradient2)"/>
<!-- Star 3 -->
<circle cx="-30" cy="50" r="2" fill="url(#starGradient1)"/>
<!-- Star 4 -->
<circle cx="40" cy="30" r="3" fill="url(#starGradient2)"/>
<!-- Star 5 -->
<circle cx="-50" cy="-20" r="2" fill="url(#starGradient1)"/>
<!-- Star 6 -->
<circle cx="60" cy="40" r="2" fill="url(#starGradient2)"/>
<!-- Star 7 -->
<circle cx="20" cy="-50" r="2" fill="url(#starGradient1)"/>
<!-- Star 8 -->
<circle cx="-40" cy="30" r="3" fill="url(#starGradient2)"/>
</g>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="starsGradient" cx="150" cy="150" r="150" fx="150" fy="150">
<stop offset="0" stop-color="#1A1A2C" stop-opacity="1"/>
<stop offset="1" stop-color="#2A1A2C" stop-opacity="0.4"/>
</radialGradient>
<pattern id="stars" width="100" height="100" patternUnits="userSpaceOnUse">
<circle cx="50" cy="50" r="1" fill="#fff"/>
<circle cx="20" cy="30" r="1" fill="#fff"/>
<circle cx="80" cy="40" r="1" fill="#fff"/>
</pattern>
<mask id="starMask">
<rect width="100%" height="100%" fill="url(#stars)"/>
</mask>
<linearGradient id="whaleGradient" x1="0" y1="0" x2="300" y2="300" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#3A506B"/>
<stop offset="1" stop-color="#5B728A"/>
</linearGradient>
<linearGradient id="streamGradient" x1="150" y1="150" x2="300" y2="300" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#FF61D2"/>
<stop offset="1" stop-color="#C7B8EA"/>
</linearGradient>
</defs>
<rect width="100%" height="100%" fill="url(#starsGradient)"/>
<g mask="url(#starMask)">
<path d="M150,200 L170,220 L230,200 L250,180 L230,160 L170,180 Z" fill="url(#whaleGradient)"/>
<path d="M220,200 L230,160 L210,170" fill="#4A5568"/>
<path d="M180,200 L170,220 L190,200" fill="#4A5568"/>
<circle cx="200" cy="190" r="8" fill="url(#whaleGradient)"/>
<circle cx="200" cy="190" r="4" fill="#fff"/>
<path d="M250,180 Q270,150 270,120" stroke="#4A5568" stroke-width="2" fill="none"/>
<path d="M150,200 Q170,220 190,200" stroke="#4A5568" stroke-width="2" fill="none"/>
<path d="M200,150 Q220,140 230,150" stroke="#4A5568" stroke-width="1" fill="none"/>
<path d="M200,170 Q220,160 230,170" stroke="#4A5568" stroke-width="1" fill="none"/>
<path d="M200,190 Q220,180 230,190" stroke="#4A5568" stroke-width="1" fill="none"/>
</g>
<path d="M150,200 Q170,210 190,200 Q210,190 230,200 Q250,210 270,200" fill="url(#streamGradient)" opacity="0.6"/>
</svg>
Judge's Analysis
Player 1's image effectively captures the theme with a minimalist depiction of a whale and a scattering of stars, conveying a cosmic ambiance.
The color choice and composition are clear and visually engaging.
Player 2's image, while also minimal, lacks the distinct presence of stars and the cosmic element, making it less aligned with 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
"Floating cat juggling stars in neon space"
"A city skyline made of fruit"
"Purple giraffe on roller skates juggling flaming torches"
"Rainbow umbrella floating above a sunflower field"
"Dancing cactus wearing sunglasses under a disco ball"
"Flying toaster-shaped clouds over a neon cityscape"