Creative Challenge
"A lighthouse shining beams through a swirling night storm"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="stormGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0" stop-color="#000033" />
<stop offset="1" stop-color="#000066" />
</linearGradient>
<radialGradient id="lightGradient" cx="50%" cy="50%" r="50%">
<stop offset="0" stop-color="yellow" />
<stop offset="1" stop-color="orange" />
</radialGradient>
<pattern id="rainPattern" patternUnits="userSpaceOnUse" width="6" height="6">
<path d="M0,0 L6,6 M0,6 L6,0" stroke="rgba(0,0,255,0.7)" stroke-width="1"/>
</pattern>
</defs>
<rect width="100%" height="100%" fill="url(#stormGradient)" />
<g transform="translate(100, 150)">
<path d="M0,0 v-80 h5 v80 z" fill="url(#lightGradient)" />
<path d="M0,0 v-80 h5 v80 z" fill="url(#lightGradient)" transform="rotate(120)"/>
<path d="M0,0 v-80 h5 v80 z" fill="url(#lightGradient)" transform="rotate(240)"/>
</g>
<path d="M100,150 v80 a50,50 0 0,0 -50,-50 h-50 a50,50 0 0,0 -50,50 v80 a50,50 0 0,0 50,50 h50 a50,50 0 0,0 50,-50 z" fill="darkgray" stroke="black" stroke-width="2"/>
<path d="M100,150 v-80 a20,20 0 0,1 40,0 z" fill="black"/>
<path d="M100,230 v-80 a20,20 0 0,1 40,0 z" fill="black"/>
<g transform="translate(150, 150)">
<circle cx="0" cy="0" r="50" fill="url(#rainPattern)" />
</g>
<path d="M50,150 v-50 a50,50 0 0,0 50,50 h50 a50,50 0 0,0 50,-50 v-50 a50,50 0 0,0 -50,-50 h-50 a50,50 0 0,0 -50,50 z" fill="url(#stormGradient)" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="skyGrad" cx="50%" cy="100%">
<stop offset="0%" stop-color="#120827"/>
<stop offset="100%" stop-color="#1a0637"/>
</radialGradient>
<linearGradient id="lighthouseGrad" gradientTransform="rotate(90)">
<stop offset="0%" stop-color="#c22f2f"/>
<stop offset="50%" stop-color="#ffffff"/>
<stop offset="100%" stop-color="#c22f2f"/>
</linearGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<pattern id="saltire" width="10" height="10" patternUnits="userSpaceOnUse">
<path d="M0,0 L10,10 M10,0 L0,10" stroke="#fffa8a33" stroke-width="1"/>
</pattern>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#skyGrad)"/>
<!-- Storm Swirls -->
<g opacity="0.7">
<path d="M150 50c-40 60-90 140-90 200 100-30 200-60 180-100-20-40 80-80 40-130"
stroke="#7d7daa88" fill="none" stroke-width="3" stroke-linecap="round"/>
<path d="M80 150q100-50 140 50t-60 100"
stroke="#aaccff77" fill="none" stroke-width="2" stroke-dasharray="4 4"/>
</g>
<!-- Light Beams -->
<g filter="url(#glow)" opacity="0.9">
<path d="M150 100a100 150 0 0 1 0 200" fill="url(#saltire)"
transform="rotate(-30 150 150)"/>
<path d="M150 100a100 150 0 0 0 0 200" fill="url(#saltire)"
transform="rotate(30 150 150)"/>
</g>
<!-- Lighthouse -->
<g transform="translate(150 250)">
<rect x="-15" y="-200" width="30" height="200" fill="url(#lighthouseGrad)" rx="5"/>
<circle cx="0" cy="-210" r="20" fill="#ffd700"/>
<path d="M-25 -210 L25 -210 L0 -250 Z" fill="#ffff0088"/>
<rect x="-5" y="-50" width="10" height="40" fill="#666"/>
</g>
<!-- Waves -->
<path d="M0 250q50-30 100 0 50 30 100 0 50-30 100 0v50H0z" fill="#182852"/>
<path d="M0 270q40-20 80 0t80-20 80 20 60-20v30H0z" fill="#2a3a6a" opacity="0.8"/>
<!-- Stars -->
<g fill="#ffffff" opacity="0.7">
<circle cx="50" cy="80" r="1.5"/>
<circle cx="250" cy="120" r="2"/>
<circle cx="170" cy="60" r="1.2"/>
<circle cx="90" cy="170" r="1.8"/>
</g>
</svg>
Judge's Analysis
Player 2's image effectively captures the idea of a lighthouse shining beams through a swirling night storm.
The composition is clear, with a well-defined lighthouse and dynamic beam effects that convey movement and turbulence.
The color palette and design elements are visually appealing and enhance the stormy atmosphere, showing greater technical quality and adherence to the prompt compared to Player 1's submission.
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 clock made of clouds in a stormy sky"
"Intergalactic snail race on a rainbow comet track"
"Volcano spewing rainbow-colored lava under a crescent moon"
"Octopus juggling planets under the ocean"
"Van Gogh's Starry Night with neon-colored galaxies"
"Solar-powered jellyfish floating above a cityscape, in geometric style"