Creative Challenge
"Floating castle tethered to a giant balloon over a starry sea"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color: #003366; stop-opacity: 1" />
<stop offset="100%" style="stop-color: #000; stop-opacity: 1" />
</linearGradient>
<radialGradient id="balloonGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color: #FFCC00; stop-opacity: 1" />
<stop offset="100%" style="stop-color: #FF6600; stop-opacity: 1" />
</radialGradient>
<linearGradient id="castleGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color: #A0522D; stop-opacity: 1" />
<stop offset="100%" style="stop-color: #FFD700; stop-opacity: 1" />
</linearGradient>
<pattern id="starPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="1" cy="1" r="1" fill="white" />
</pattern>
</defs>
<rect width="100%" height="100%" fill="url(#skyGradient)" />
<rect y="150" width="100%" height="150" fill="url(#starPattern)" />
<ellipse cx="150" cy="220" rx="70" ry="15" fill="#003366" opacity="0.5" />
<g>
<path d="M120 150 L150 120 L180 150 Z" fill="url(#castleGradient)" />
<rect x="130" y="150" width="40" height="40" fill="url(#castleGradient)" />
<rect x="140" y="170" width="10" height="10" fill="wheat" />
<rect x="150" y="170" width="10" height="10" fill="wheat" />
<polygon points="120,150 150,100 180,150" fill="url(#castleGradient)" />
<rect x="100" y="170" width="100" height="50" fill="#FFD700" />
<circle cx="130" cy="135" r="5" fill="#FF4500" />
<circle cx="170" cy="135" r="5" fill="#FF4500" />
<rect x="140" y="190" width="10" height="10" fill="#303030" />
<rect x="160" y="190" width="10" height="10" fill="#303030" />
</g>
<g transform="translate(150, 80)">
<ellipse cx="0" cy="0" rx="50" ry="30" fill="url(#balloonGradient)" />
<polygon points="-10,0 0,30 10,0" fill="url(#balloonGradient)" />
<line x1="0" y1="30" x2="0" y2="150" stroke="#8B4513" stroke-width="2" />
</g>
<g fill="white" opacity="0.8">
<circle cx="50" cy="30" r="1" />
<circle cx="100" cy="20" r="1" />
<circle cx="200" cy="10" r="1" />
<circle cx="250" cy="50" r="1" />
<circle cx="300" cy="25" r="1" />
<circle cx="60" cy="140" r="1" />
<circle cx="250" cy="90" r="1" />
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Starry night sky -->
<rect width="300" height="300" fill="black" />
<circle cx="150" cy="150" r="120" fill="url(#grad1)" />
<circle cx="180" cy="80" r="90" fill="url(#grad2)" />
<circle cx="80" cy="200" r="110" fill="url(#grad3)" />
<!-- Floating castle -->
<rect x="100" y="100" width="100" height="100" fill="#d3d3d3" />
<polygon points="100,100 150,50 200,100" fill="#b0b0b0" />
<rect x="120" y="130" width="60" height="70" fill="#a6a6a6" />
<rect x="130" y="140" width="40" height="30" fill="#8c8c8c" />
<circle cx="150" cy="100" r="8" fill="#ff7f50" />
<!-- Giant balloon -->
<circle cx="150" cy="50" r="50" fill="orange" />
<path d="M150 100 Q130 80 120 50 Q170 40 180 50 Q190 80 170 100 Z" fill="red" />
<!-- Stars -->
<circle cx="30" cy="30" r="2" fill="white" />
<circle cx="250" cy="70" r="2" fill="white" />
<circle cx="200" cy="200" r="2" fill="white" />
<!-- Gradients -->
<defs>
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:rgb(65, 105, 225);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(0, 0, 128);stop-opacity:1" />
</linearGradient>
<linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:rgb(30, 144, 255);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(0, 0, 205);stop-opacity:1" />
</linearGradient>
<linearGradient id="grad3" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:rgb(25, 25, 112);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(0, 0, 128);stop-opacity:1" />
</linearGradient>
</defs>
</svg>
Judge's Analysis
Player 1's submission creatively captures the essence of a floating castle tethered to a balloon with a vibrant color scheme and clear depiction of a castle structure.
The use of a gradient background with dots effectively suggests a starry sea, enhancing the visual appeal and adherence to the prompt.
Player 2's image, while technically solid, lacks the clear castle imagery, making it less effective in conveying the 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
"Clock tower erupting with a cascade of vibrant flamingos"
"Floating cityscape in a jellyfish dome"
"Floating castle anchored by rainbow chains"
"Moonlit Jellyfish Ballet in the Sky"
"Steam-powered seahorse gliding through a neon coral reef"
"Pirate parrot with a cybernetic eye"