Creative Challenge
"Floating city on a giant turtle's back, sunset silhouette, geometric style"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Sunset Gradient -->
<linearGradient id="sunset" x1="0" x2="0" y1="0" y2="1">
<stop offset="0" stop-color="#FFC67D" />
<stop offset="0.5" stop-color="#FF99CC" />
<stop offset="1" stop-color="#FF69B4" />
</linearGradient>
<!-- Turtle's Shell -->
<pattern id="shell" patternUnits="userSpaceOnUse" width="100" height="100">
<rect x="0" y="0" width="100" height="100" fill="#964B00" rx="20" />
<circle cx="50" cy="50" r="40" fill="#786C3B" />
<circle cx="50" cy="50" r="30" fill="#786C3B" />
<circle cx="50" cy="50" r="20" fill="#786C3B" />
</pattern>
<!-- Turtle's Body -->
<rect x="50" y="150" width="200" height="100" fill="url(#shell)" rx="40" />
<!-- City Buildings -->
<g transform="translate(100, 50)">
<rect x="0" y="0" width="40" height="60" fill="#F7F7F7" rx="10" />
<rect x="50" y="0" width="40" height="80" fill="#F7F7F7" rx="10" />
<rect x="100" y="0" width="40" height="100" fill="#F7F7F7" rx="10" />
<rect x="150" y="0" width="40" height="80" fill="#F7F7F7" rx="10" />
<rect x="200" y="0" width="40" height="60" fill="#F7F7F7" rx="10" />
</g>
<!-- Sunset Silhouette -->
<rect x="0" y="0" width="300" height="300" fill="url(#sunset)" rx="20" />
<!-- City Outline -->
<path d="M100 50 L150 50 L150 70 L100 70 Z" fill="none" stroke="#F7F7F7" stroke-width="5" />
<path d="M150 50 L200 50 L200 70 L150 70 Z" fill="none" stroke="#F7F7F7" stroke-width="5" />
<!-- Geometric Patterns -->
<g transform="translate(100, 50)">
<circle cx="0" cy="0" r="10" fill="#F7F7F7" />
<circle cx="50" cy="0" r="10" fill="#F7F7F7" />
<circle cx="100" cy="0" r="10" fill="#F7F7F7" />
<circle cx="150" cy="0" r="10" fill="#F7F7F7" />
<circle cx="200" cy="0" r="10" fill="#F7F7F7" />
</g>
<!-- Turtle's Head -->
<circle cx="150" cy="200" r="20" fill="#786C3B" />
<circle cx="150" cy="220" r="10" fill="#786C3B" />
<!-- Turtle's Legs -->
<rect x="50" y="250" width="20" height="40" fill="#786C3B" rx="10" />
<rect x="230" y="250" width="20" height="40" fill="#786C3B" rx="10" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="sunset" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#1a0f3c;stop-opacity:1" />
<stop offset="50%" style="stop-color:#ff6b6b;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ffd93d;stop-opacity:1" />
</linearGradient>
<pattern id="turtleScale" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<rect x="0" y="0" width="10" height="10" fill="#4a525a"/>
<rect x="5" y="5" width="5" height="5" fill="#333"/>
</pattern>
<linearGradient id="buildingGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#ff9999;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ffe6e6;stop-opacity:1" />
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#sunset)"/>
<!-- Turtle Shell -->
<path d="M150 220q-50 0-90-30T60 160q0-30 30-50t90-30q30 0 60 20t60 50q0 20-20 40t-60 30z"
fill="url(#turtleScale)" stroke="#2d3436" stroke-width="2"/>
<!-- City Buildings -->
<g transform="translate(100,180)">
<rect width="40" height="60" fill="url(#buildingGradient)" rx="5"/>
<rect x="50" width="30" height="80" fill="url(#buildingGradient)" rx="5"/>
<rect x="90" width="25" height="70" fill="url(#buildingGradient)" rx="5"/>
<rect x="120" width="35" height="90" fill="url(#buildingGradient)" rx="5"/>
<rect x="160" width="40" height="80" fill="url(#buildingGradient)" rx="5"/>
</g>
<!-- Skyline Silhouette -->
<path d="M0 140q50-30 100-30t100 30q50 30 100 30t100-30"
fill="#ff7f7f" opacity="0.8"/>
<path d="M20 120q50-20 100-20t100 20q50 20 100 20t100-20"
fill="#ff9999" opacity="0.6"/>
<path d="M30 100q50-15 100-15t100 15q50 15 100 15t100-15"
fill="#ffa349" opacity="0.7"/>
<!-- Turtle Legs -->
<rect x="10" y="240" width="20" height="40" fill="#2d3436" rx="3"/>
<rect x="270" y="240" width="20" height="40" fill="#2d3436" rx="3"/>
<!-- Clouds -->
<g opacity="0.8">
<path d="M150 100q-20 0-30 10t-10 20q0 10 10 20t30 10q20 0 30-10t10-20q0-10-10-20t-30-10"
fill="#fff" opacity="0.8"/>
<path d="M200 80q-15 0-25 5t-10 10q0 10 10 15t25 10q15 0 25-5t10-10q0-10-10-15t-25-10"
fill="#fff" opacity="0.8"/>
</g>
<!-- Stars -->
<g opacity="0.5">
<circle cx="50" cy="50" r="3" fill="white"/>
<circle cx="150" cy="80" r="4" fill="white"/>
<circle cx="250" cy="70" r="3" fill="white"/>
</g>
</svg>
Judge's Analysis
Player 2's submission captures the concept of a floating city on a turtle's back with more clarity and creativity.
The geometric elements are well integrated and the silhouette against the sunset is visually striking.
Player 1's image, while colorful, lacks the defined elements needed to clearly convey 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
"Gravity-defying giraffe on roller skates juggling planets"
"Moonlit jellyfish symphony, dancing above a neon coral stage"
"Octopus juggling planets under a starlit ocean"
"A giraffe wearing astronaut gear floating in a galaxy of swirling stars"
"Lighthouse floating in a teacup on a stormy sea"
"Neon giraffe floating in space with a rainbow spacesuit"