Creative Challenge
"Penguin juggling glowing ice cubes under the northern lights."
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- Background gradient -->
<linearGradient id="skyGrad" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#001022"/>
<stop offset="100%" stop-color="#002b3a"/>
</linearGradient>
<!-- Aurora gradient -->
<linearGradient id="auroraGrad" x1="0" y1="0" x2="1" y2="0">
<stop offset="0%" stop-color="#4fffd8" stop-opacity="0.6"/>
<stop offset="50%" stop-color="#a2fffa" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#4fffd8" stop-opacity="0.6"/>
</linearGradient>
<!-- Ice cube gradient -->
<radialGradient id="iceGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#e0f7ff"/>
<stop offset="100%" stop-color="#a0e0ff"/>
</radialGradient>
<!-- Glow filter -->
<filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur stdDeviation="4" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Sky background -->
<rect width="300" height="300" fill="url(#skyGrad)" />
<!-- Aurora waves -->
<path d="M0,80 Q75,60 150,80 T300,80 L300,120 Q225,100 150,120 T0,120 Z" fill="url(#auroraGrad)" opacity="0.7"/>
<path d="M0,110 Q75,90 150,110 T300,110 L300,150 Q225,130 150,150 T0,150 Z" fill="url(#auroraGrad)" opacity="0.5"/>
<!-- Ground snow -->
<ellipse cx="150" cy="290" rx="200" ry="40" fill="#eef9ff"/>
<!-- Penguin body -->
<g transform="translate(150,200)">
<!-- Feet -->
<path d="M-20,60 q20,10 40,0 q-10,-15 -30,-10 q-20,-5 -10,10" fill="#fdc76c" />
<!-- Body -->
<ellipse cx="0" cy="0" rx="50" ry="75" fill="#000" />
<ellipse cx="0" cy="10" rx="30" ry="50" fill="#fff" />
<!-- Flippers -->
<path d="M-50,-10 Q-80,10 -60,40 Q-50,20 -40,0" fill="#000" />
<path d="M50,-10 Q80,10 60,40 Q50,20 40,0" fill="#000" />
<!-- Head -->
<circle cx="0" cy="-85" r="35" fill="#000" />
<circle cx="0" cy="-85" r="25" fill="#fff" />
<!-- Eyes -->
<circle cx="-10" cy="-90" r="5" fill="#000"/>
<circle cx="10" cy="-90" r="5" fill="#000"/>
<!-- Beak -->
<path d="M0,-75 L-7,-65 L7,-65 Z" fill="#fdc76c" />
</g>
<!-- Juggling arcs -->
<path d="M150,115 A60,60 0 0,1 200,160" stroke="#fff" stroke-dasharray="4,4" fill="none" opacity="0.5"/>
<path d="M150,115 A60,60 0 0,0 100,160" stroke="#fff" stroke-dasharray="4,4" fill="none" opacity="0.5"/>
<!-- Ice cubes -->
<g filter="url(#glow)" opacity="0.9">
<g transform="translate(200,160) rotate(15)">
<rect x="-12" y="-12" width="24" height="24" rx="3" ry="3" fill="url(#iceGrad)" stroke="#c0eaff" stroke-width="1"/>
</g>
<g transform="translate(150,115) rotate(-10)">
<rect x="-12" y="-12" width="24" height="24" rx="3" ry="3" fill="url(#iceGrad)" stroke="#c0eaff" stroke-width="1"/>
</g>
<g transform="translate(100,160) rotate(20)">
<rect x="-12" y="-12" width="24" height="24" rx="3" ry="3" fill="url(#iceGrad)" stroke="#c0eaff" stroke-width="1"/>
</g>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Northern Lights -->
<rect x="0" y="0" width="300" height="300" fill="#00203FFF" />
<circle cx="150" cy="50" r="90" fill="#7400BFFF" />
<circle cx="90" cy="90" r="70" fill="#ae0895" />
<circle cx="220" cy="70" r="60" fill="#fff024" />
<!-- Ice Cubes -->
<rect x="50" y="180" width="40" height="40" fill="#B5D6E4" />
<rect x="110" y="150" width="60" height="60" fill="#BCE2E8" />
<rect x="190" y="190" width="50" height="50" fill="#D7EBF2" />
<!-- Penguin -->
<circle cx="150" cy="240" r="40" fill="#000000" />
<circle cx="135" cy="230" r="5" fill="#F4A460" />
<circle cx="165" cy="230" r="5" fill="#F4A460" />
<polygon points="137,245 163,245 150,260" fill="#FFD700" />
<!-- Juggling motion lines -->
<line x1="70" y1="195" x2="80" y2="205" stroke="#FFFFFF" stroke-width="2" />
<line x1="110" y1="170" x2="120" y2="180" stroke="#FFFFFF" stroke-width="2" />
<line x1="200" y1="210" x2="210" y2="220" stroke="#FFFFFF" stroke-width="2" />
</svg>
Judge's Analysis
Player 1's submission adheres more closely to the prompt, depicting a penguin juggling glowing ice cubes with the northern lights in the background.
The composition is clean and visually appealing, with a clear focus on the penguin and the glowing effect of the ice cubes.
Player 2's submission is more abstract and less recognizable as a penguin or the northern lights, 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
"An ant wearing a top hat and monocle dancing on a slice of lemon."
"An octopus juggling flaming torches underwater."
"A snail racing a cheetah on a rollercoaster track."
"A dragon tangled in a huge ball of yarn, with only its head sticking out."