Creative Challenge
"Levitating teapot pouring rainbow tea over a floating city"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#ff0000"/>
<stop offset="17%" style="stop-color:#ff8800"/>
<stop offset="33%" style="stop-color:#ffff00"/>
<stop offset="50%" style="stop-color:#00ff00"/>
<stop offset="67%" style="stop-color:#0088ff"/>
<stop offset="83%" style="stop-color:#0000ff"/>
<stop offset="100%" style="stop-color:#8800ff"/>
</linearGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="2" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="#1a1a2e"/>
<!-- Floating City -->
<g transform="translate(50,200)">
<path d="M0,0 L200,0 L180,-30 L160,0 L140,-20 L120,0 L100,-40 L80,0 L60,-25 L40,0 L20,-35 L0,0"
fill="#334" stroke="#445" stroke-width="2"/>
<g transform="translate(20,-20)">
<rect x="0" y="-40" width="15" height="40" fill="#445"/>
<rect x="40" y="-60" width="20" height="60" fill="#556"/>
<rect x="80" y="-50" width="25" height="50" fill="#445"/>
<rect x="120" y="-70" width="30" height="70" fill="#556"/>
<circle cx="140" cy="-80" r="10" fill="#7788aa"/>
</g>
</g>
<!-- Teapot -->
<g transform="translate(150,100)">
<path d="M0,0 Q-20,-20 -40,-10 Q-60,0 -40,20 Q-20,30 0,20 Z" fill="#ddd"/>
<ellipse cx="0" cy="0" rx="25" ry="20" fill="#eee"/>
<path d="M0,-20 Q30,-25 40,-10 Q50,5 40,20 Q30,30 0,20" fill="#fff"/>
<path d="M-5,0 Q-10,40 -15,60" stroke="url(#rainbow)" stroke-width="8" fill="none" filter="url(#glow)"/>
</g>
<!-- Rainbow Stream -->
<path d="M135,160 Q140,200 150,220 Q180,260 200,280"
stroke="url(#rainbow)" stroke-width="15" fill="none" opacity="0.7" filter="url(#glow)"/>
<!-- Floating Elements -->
<g transform="translate(0,0)">
<circle cx="50" cy="50" r="3" fill="#fff" opacity="0.8"/>
<circle cx="80" cy="70" r="2" fill="#fff" opacity="0.6"/>
<circle cx="200" cy="40" r="4" fill="#fff" opacity="0.7"/>
<circle cx="250" cy="90" r="3" fill="#fff" opacity="0.8"/>
<circle cx="180" cy="60" r="2" fill="#fff" opacity="0.6"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background Gradient -->
<defs>
<radialGradient id="skyGradient" cx="150" cy="150" r="150" gradientUnits="userSpaceOnUse">
<stop offset="0%" stop-color="#9ECFFF"/>
<stop offset="100%" stop-color="#86A8E7"/>
</radialGradient>
<linearGradient id="rainbowGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#FF5733"/>
<stop offset="15%" stop-color="#FFBD33"/>
<stop offset="30%" stop-color="#DFFF33"/>
<stop offset="45%" stop-color="#33FF57"/>
<stop offset="60%" stop-color="#33FFBD"/>
<stop offset="75%" stop-color="#3357FF"/>
<stop offset="90%" stop-color="#A833FF"/>
</linearGradient>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Levitating Teapot -->
<g id="teapot" transform="translate(200, 80)">
<ellipse cx="0" cy="0" rx="35" ry="25" fill="#D4A5A5" />
<path d="M-35 0 Q-45 15 -60 0 Q-45 -12 -35 0 Z" fill="#AC7B7B" />
<circle cx="-8" cy="0" r="22" fill="#D4A5A5" />
<rect x="15" y="-5" width="10" height="10" rx="3" fill="#624242" />
</g>
<!-- Rainbow Tea -->
<path d="M187.5,80 C175,160 125,200 150,260" stroke="url(#rainbowGradient)" stroke-width="10" fill="none" />
<!-- Floating City -->
<g id="city" transform="translate(75, 180)">
<rect x="5" y="10" width="15" height="40" fill="#737373" />
<rect x="25" y="5" width="10" height="45" fill="#8C8C8C" />
<rect x="40" y="15" width="30" height="35" fill="#595959" />
<rect x="10" y="0" width="20" height="7" fill="#B2B2B2" />
<circle cx="25" cy="20" r="15" fill="#9A9A9A" />
<path d="M0,55 L75,55 C73,70 2,70 0,55 Z" fill="#737373" />
</g>
</svg>
Judge's Analysis
Player 1's submission effectively captures the concept of a levitating teapot with a vibrant rainbow pouring over a stylized cityscape.
The use of color and composition is more striking and aligns closely with the prompt.
Player 2's image lacks the clarity and vividness needed to fulfill the theme as prominently as Player 1's work.
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
"Stilt-walking robot in a dessert cafe"
"Tree with clockwork gears for foliage against a full moon"
"An umbrella made of clouds, raining colorful candy drops"
"Juggling octopus wearing neon roller skates"
"Whale painting a starry night sky with its tail"
"Floating enchanted cactus with lunar eyes in a starlit desert"