Creative Challenge
"Floating castle anchored by rainbow chains"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Rainbow chains -->
<defs>
<linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#FF0000"/>
<stop offset="20%" stop-color="#FFA500"/>
<stop offset="40%" stop-color="#FFFF00"/>
<stop offset="60%" stop-color="#008000"/>
<stop offset="80%" stop-color="#0000FF"/>
<stop offset="100%" stop-color="#800080"/>
</linearGradient>
</defs>
<!-- Sky background -->
<rect x="0" y="0" width="300" height="300" fill="#87CEEB"/>
<!-- Floating castle -->
<g transform="translate(150, 120)">
<!-- Castle base -->
<rect x="-50" y="20" width="100" height="80" fill="#D3D3D3"/>
<!-- Castle towers -->
<rect x="-40" y="-20" width="30" height="40" fill="#D3D3D3"/>
<rect x="10" y="-20" width="30" height="40" fill="#D3D3D3"/>
<!-- Castle top -->
<polygon points="-50 20 50 20 0 -40" fill="#D3D3D3"/>
</g>
<!-- Rainbow chains anchored to the castle -->
<path d="M150,100 Q120,80 90,100" fill="none" stroke="url(#rainbow)" stroke-width="5"/>
<path d="M150,100 Q120,70 90,100" fill="none" stroke="url(#rainbow)" stroke-width="5"/>
<path d="M150,100 Q120,60 90,100" fill="none" stroke="url(#rainbow)" stroke-width="5"/>
<path d="M150,100 Q120,50 90,100" fill="none" stroke="url(#rainbow)" stroke-width="5"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#87CEEB;stop-opacity:1" />
<stop offset="100%" style="stop-color:#B0E0E6;stop-opacity:1" />
</linearGradient>
<linearGradient id="castleGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FFD700;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FF8C00;stop-opacity:1" />
</linearGradient>
<radialGradient id="cloudGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#FFFFFF;stop-opacity:1" />
<stop offset="100%" style="stop-color:#DCDCDC;stop-opacity:1" />
</radialGradient>
<linearGradient id="rainbowChain" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#FF0000;stop-opacity:1" />
<stop offset="16.67%" style="stop-color:#FF7F00;stop-opacity:1" />
<stop offset="33.33%" style="stop-color:#FFFF00;stop-opacity:1" />
<stop offset="50%" style="stop-color:#00FF00;stop-opacity:1" />
<stop offset="66.67%" style="stop-color:#0000FF;stop-opacity:1" />
<stop offset="83.33%" style="stop-color:#4B0082;stop-opacity:1" />
<stop offset="100%" style="stop-color:#9400D3;stop-opacity:1" />
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<g transform="translate(100,50)">
<polygon points="50,0 100,-50 150,0 120,30 30,30" fill="url(#castleGradient)" />
<polygon points="70,-20 130,-20 130,0 70,0" fill="#C0C0C0" />
<rect x="80" y="10" width="10" height="20" fill="#8B4513" />
<polygon points="40,10 90,20 130,15" fill="#FFD700" opacity="0.7" />
<circle cx="150" cy="0" r="4" fill="#8B0000" />
<text x="50" y="-10" font-family="Verdana" font-size="10" fill="black">Floating Castle</text>
</g>
<g transform="translate(50,100)">
<ellipse cx="0" cy="0" rx="50" ry="20" fill="url(#cloudGradient)" opacity="0.5" />
<ellipse cx="30" cy="-10" rx="50" ry="20" fill="url(#cloudGradient)" opacity="0.5" />
<ellipse cx="-30" cy="-5" rx="50" ry="20" fill="url(#cloudGradient)" opacity="0.5" />
</g>
<g stroke="url(#rainbowChain)" stroke-width="5" fill="none">
<line x1="150" y1="50" x2="150" y2="230" />
<line x1="120" y1="50" x2="120" y2="230" />
<line x1="180" y1="50" x2="180" y2="230" />
<line x1="90" y1="50" x2="90" y2="230" />
<line x1="210" y1="50" x2="210" y2="230" />
</g>
<g fill="url(#rainbowChain)" transform="translate(135,230)">
<polygon points="0,0 10,-5 20,0 10,5" />
<polygon points="0,10 10,5 20,10 10,15" />
</g>
</svg>
Judge's Analysis
Player 2's submission more effectively captures the concept of a 'floating castle anchored by rainbow chains' by depicting a clearly floating structure labeled as a castle, connected to a colorful element below.
The inclusion of clouds adds to the sense of elevation.
In contrast, Player 1's image lacks clarity in representing a floating castle and the rainbow chain concept is less apparent, reducing its adherence to 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
"Clock tower erupting with a cascade of vibrant flamingos"
"Floating cityscape in a jellyfish dome"
"Moonlit Jellyfish Ballet in the Sky"
"Steam-powered seahorse gliding through a neon coral reef"
"Pirate parrot with a cybernetic eye"
"Golden snail atop a rainbow swamp with silver stars falling"