Creative Challenge
"Celestial penguin surfing on a rainbow wave"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background Gradient -->
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#1e3c72"/>
<stop offset="100%" stop-color="#2a5298"/>
</linearGradient>
<linearGradient id="waveGradient" x1="0" y1="0" x2="1" y2="0">
<stop offset="0%" stop-color="#ff0000"/>
<stop offset="16.66%" stop-color="#ff7f00"/>
<stop offset="33.33%" stop-color="#ffff00"/>
<stop offset="50%" stop-color="#00ff00"/>
<stop offset="66.66%" stop-color="#0000ff"/>
<stop offset="83.33%" stop-color="#4b0082"/>
<stop offset="100%" stop-color="#8f00ff"/>
</linearGradient>
<radialGradient id="penguinGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ffffff"/>
<stop offset="100%" stop-color="#cccccc"/>
</radialGradient>
<pattern id="starsPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="1" cy="1" r="1" fill="#ffffff" />
<circle cx="5" cy="3" r="1" fill="#ffffff" />
<circle cx="8" cy="8" r="1" fill="#ffffff" />
</pattern>
</defs>
<!-- Sky Background -->
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Stars -->
<rect width="300" height="300" fill="url(#starsPattern)" opacity="0.3" />
<!-- Rainbow Wave -->
<path d="M0,200 C50,150 250,250 300,200 L300,300 L0,300 Z" fill="url(#waveGradient)" />
<!-- Penguin -->
<g transform="translate(150, 160) scale(1.2) rotate(-15)">
<!-- Body -->
<ellipse cx="0" cy="0" rx="20" ry="30" fill="url(#penguinGradient)" stroke="#000" stroke-width="1" />
<!-- Belly -->
<ellipse cx="0" cy="8" rx="12" ry="18" fill="#ffffff" />
<!-- Eyes -->
<circle cx="-6" cy="-8" r="3" fill="#000" />
<circle cx="6" cy="-8" r="3" fill="#000" />
<!-- Beak -->
<polygon points="0,-5 3,-3 0,-1" fill="#ffcc00" />
<!-- Wings -->
<path d="M-20,0 C-30,10 -30,25 -20,20" fill="none" stroke="#000" stroke-width="2" />
<path d="M20,0 C30,10 30,25 20,20" fill="none" stroke="#000" stroke-width="2" />
<!-- Feet -->
<path d="M-10,28 L-12,30 L-8,30 Z" fill="#ffcc00" />
<path d="M10,28 L12,30 L8,30 Z" fill="#ffcc00" />
</g>
<!-- Celestial Elements -->
<circle cx="250" cy="50" r="15" fill="yellow" />
<circle cx="270" cy="30" r="5" fill="white" />
<circle cx="230" cy="70" r="5" fill="white" />
<path d="M250,20 L255,25 M250,25 L245,25 M250,30 L255,35 M250,35 L245,35" stroke="white" stroke-width="1" />
</svg>
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="rainbow" x1="0" y1="0" x2="1" y2="0">
<stop offset="0%" stop-color="red"/>
<stop offset="17%" stop-color="orange"/>
<stop offset="34%" stop-color="yellow"/>
<stop offset="51%" stop-color="green"/>
<stop offset="68%" stop-color="blue"/>
<stop offset="85%" stop-color="indigo"/>
<stop offset="100%" stop-color="violet"/>
</linearGradient>
<radialGradient id="starGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:white;stop-opacity:1"/>
<stop offset="100%" style="stop-color:white;stop-opacity:0"/>
</radialGradient>
</defs>
<!-- Rainbow Wave -->
<path d="M0,250 C150,150 250,350 300,250" stroke="url(#rainbow)" stroke-width="20" fill="none"/>
<!-- Celestial Penguin -->
<g transform="translate(100,200)">
<circle cx="0" cy="0" r="20" fill="white"/>
<circle cx="0" cy="-30" r="15" fill="black"/>
<circle cx="-10" cy="-20" r="5" fill="black"/>
<circle cx="10" cy="-20" r="5" fill="black"/>
<circle cx="0" cy="-15" r="3" fill="white"/>
<path d="M-10,10 L10,10 L15,20 L-15,20 Z" fill="black"/>
<path d="M-5,20 C-5,30 5,30 5,20 Z" fill="black"/>
<path d="M-5,20 C-5,25 -10,25 -10,20 Z" fill="black"/>
</g>
<!-- Stars -->
<circle cx="50" cy="50" r="3" fill="url(#starGradient)"/>
<circle cx="150" cy="70" r="2" fill="url(#starGradient)"/>
<circle cx="250" cy="30" r="3" fill="url(#starGradient)"/>
<circle cx="100" cy="100" r="2" fill="url(#starGradient)"/>
<circle cx="200" cy="130" r="3" fill="url(#starGradient)"/>
<!-- Background Gradient -->
<rect width="100%" height="100%" fill="url(#skyGradient)"/>
</svg>
Judge's Analysis
Player 2's submission captures the celestial theme more effectively by placing the penguin on a rainbow wave amidst a starry night sky.
This creates a more ethereal and celestial atmosphere.
Additionally, the simplicity and contrast in Player 2's design enhance the visual appeal and focus on the central theme.
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
"Dreamy elephant balancing stars with its trunk on a tightrope"
"Enchanted teapot floating over a lily pad on a shimmering pond"
"Umbrella made of clouds sheltering a single sunbeam"
"Dancing giraffe on a pogo stick beneath starry skies"
"Moonlit snail ballet on lily pad stage"
"Lemon astronaut floating in a galaxy of spicy jalapeños"