Creative Challenge
"A levitating teacup pouring rainbow tea into a cloud-shaped saucer."
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Definitions for reusable elements -->
<defs>
<!-- Rainbow gradient for the tea -->
<linearGradient id="rainbowGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#ff0000"/>
<stop offset="16.6%" stop-color="#ff9900"/>
<stop offset="33.3%" stop-color="#ffff00"/>
<stop offset="50%" stop-color="#00ff00"/>
<stop offset="66.6%" stop-color="#0099ff"/>
<stop offset="83.3%" stop-color="#6633ff"/>
<stop offset="100%" stop-color="#ff00ff"/>
</linearGradient>
<!-- Animated rainbow gradient -->
<linearGradient id="animatedRainbow" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#ff0000">
<animate attributeName="offset" values="0;1;0" dur="10s" repeatCount="indefinite" />
</stop>
<stop offset="16.6%" stop-color="#ff9900">
<animate attributeName="offset" values="0.166;1.166;0.166" dur="10s" repeatCount="indefinite" />
</stop>
<stop offset="33.3%" stop-color="#ffff00">
<animate attributeName="offset" values="0.333;1.333;0.333" dur="10s" repeatCount="indefinite" />
</stop>
<stop offset="50%" stop-color="#00ff00">
<animate attributeName="offset" values="0.5;1.5;0.5" dur="10s" repeatCount="indefinite" />
</stop>
<stop offset="66.6%" stop-color="#0099ff">
<animate attributeName="offset" values="0.666;1.666;0.666" dur="10s" repeatCount="indefinite" />
</stop>
<stop offset="83.3%" stop-color="#6633ff">
<animate attributeName="offset" values="0.833;1.833;0.833" dur="10s" repeatCount="indefinite" />
</stop>
<stop offset="100%" stop-color="#ff00ff">
<animate attributeName="offset" values="1;2;1" dur="10s" repeatCount="indefinite" />
</stop>
</linearGradient>
<!-- Teacup pattern -->
<pattern id="teacupPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="10" cy="10" r="1" fill="#9c7b5e" />
<circle cx="5" cy="5" r="0.8" fill="#9c7b5e" />
<circle cx="15" cy="15" r="0.8" fill="#9c7b5e" />
<circle cx="5" cy="15" r="0.8" fill="#9c7b5e" />
<circle cx="15" cy="5" r="0.8" fill="#9c7b5e" />
</pattern>
<!-- Magic runes pattern -->
<pattern id="runesPattern" x="0" y="0" width="40" height="20" patternUnits="userSpaceOnUse">
<path d="M5,15 L5,5 L10,5 L10,15 M15,5 L20,15 L25,5 M30,5 L30,15 M28,5 L32,5 M28,10 L32,10"
fill="none" stroke="#9c7b5e" stroke-width="0.5" />
</pattern>
<!-- Cloud filter for soft edges -->
<filter id="cloudFilter" x="-20%" y="-20%" width="140%" height="140%">
<feGaussianBlur stdDeviation="3" />
</filter>
<!-- Glow effect for magical appearance -->
<filter id="glowEffect" x="-30%" y="-30%" width="160%" height="160%">
<feGaussianBlur stdDeviation="4" result="blur" />
<feComposite in="SourceGraphic" in2="blur" operator="over" />
</filter>
</defs>
<!-- Background with subtle gradient -->
<rect x="0" y="0" width="300" height="300" fill="#f0f8ff" />
<rect x="0" y="0" width="300" height="300" fill="url(#animatedRainbow)" opacity="0.05" />
<!-- Background sparkles -->
<g id="backgroundSparkles">
<circle cx="50" cy="50" r="1.5" fill="white">
<animate attributeName="opacity" values="0;1;0" dur="3s" begin="0s" repeatCount="indefinite" />
</circle>
<circle cx="100" cy="70" r="1" fill="white">
<animate attributeName="opacity" values="0;1;0" dur="4s" begin="1s" repeatCount="indefinite" />
</circle>
<circle cx="200" cy="50" r="1.5" fill="white">
<animate attributeName="opacity" values="0;1;0" dur="5s" begin="2s" repeatCount="indefinite" />
</circle>
<circle cx="250" cy="100" r="1" fill="white">
<animate attributeName="opacity" values="0;1;0" dur="3.5s" begin="0.5s" repeatCount="indefinite" />
</circle>
<circle cx="60" cy="200" r="1.5" fill="white">
<animate attributeName="opacity" values="0;1;0" dur="4.5s" begin="1.5s" repeatCount="indefinite" />
</circle>
<circle cx="220" cy="230" r="1" fill="white">
<animate attributeName="opacity" values="0;1;0" dur="3s" begin="2.5s" repeatCount="indefinite" />
</circle>
</g>
<!-- Cloud-shaped saucer -->
<g id="cloudSaucer">
<!-- Base cloud shape -->
<ellipse cx="150" cy="230" rx="80" ry="20" fill="#e6e6e6" filter="url(#cloudFilter)" />
<circle cx="110" cy="220" r="25" fill="white" filter="url(#cloudFilter)" />
<circle cx="150" cy="215" r="30" fill="white" filter="url(#cloudFilter)" />
<circle cx="190" cy="220" r="25" fill="white" filter="url(#cloudFilter)" />
<!-- Additional cloud puffs -->
<circle cx="90" cy="225" r="15" fill="white" filter="url(#cloudFilter)" />
<circle cx="210" cy="225" r="15" fill="white" filter="url(#cloudFilter)" />
<!-- Rainbow puddle in the cloud -->
<ellipse cx="150" cy="225" rx="40" ry="10" fill="url(#rainbowGradient)" opacity="0.7">
<animate attributeName="rx" values="40;45;40" dur="3s" repeatCount="indefinite" />
</ellipse>
<!-- Subtle rainbow glow underneath -->
<ellipse cx="150" cy="240" rx="70" ry="10" fill="url(#rainbowGradient)" opacity="0.2" filter="url(#cloudFilter)" />
</g>
<!-- Teacup -->
<g id="teacup" filter="url(#glowEffect)">
<!-- Levitation effect - concentric circles underneath -->
<ellipse cx="150" cy="150" rx="40" ry="10" fill="none" stroke="white" stroke-width="0.5" opacity="0.3">
<animate attributeName="ry" values="10;12;10" dur="3s" repeatCount="indefinite" />
</ellipse>
<ellipse cx="150" cy="150" rx="35" ry="8" fill="none" stroke="white" stroke-width="0.5" opacity="0.5">
<animate attributeName="ry" values="8;10;8" dur="2.5s" repeatCount="indefinite" />
</ellipse>
<ellipse cx="150" cy="150" rx="30" ry="6" fill="none" stroke="white" stroke-width="0.5" opacity="0.7">
<animate attributeName="ry" values="6;8;6" dur="2s" repeatCount="indefinite" />
</ellipse>
<!-- Cup body with subtle animation -->
<g>
<animate attributeName="transform" type="translate" values="0,-2;0,2;0,-2" dur="4s" repeatCount="indefinite" />
<!-- Cup outer shape -->
<path d="M100,100 Q150,80 200,100 L190,150 Q150,170 110,150 Z" fill="#ffffff" stroke="#cccccc" stroke-width="2" />
<path d="M110,150 Q150,170 190,150 L185,160 Q150,180 115,160 Z" fill="#efefef" stroke="#cccccc" stroke-width="1" />
<!-- Decorative band around cup -->
<path d="M105,110 Q150,95 195,110" fill="none" stroke="url(#rainbowGradient)" stroke-width="3" />
<!-- Cup interior with pattern -->
<path d="M115,105 Q150,90 185,105 L180,145 Q150,160 120,145 Z" fill="#fff5ee" />
<path d="M115,105 Q150,90 185,105 L180,145 Q150,160 120,145 Z" fill="url(#teacupPattern)" opacity="0.3" />
<!-- Magical runes on cup -->
<path d="M115,115 Q150,100 185,115 L180,140 Q150,155 120,140 Z" fill="url(#runesPattern)" opacity="0.4" />
<!-- Remaining tea in cup with animated rainbow -->
<path d="M120,145 Q150,155 180,145 L178,148 Q150,158 122,148 Z" fill="url(#animatedRainbow)" opacity="0.8" />
<!-- Cup handle -->
<path d="M200,100 Q230,110 220,130 Q210,145 190,135" fill="none" stroke="#dddddd" stroke-width="4" stroke-linecap="round" />
<path d="M200,100 Q230,110 220,130 Q210,145 190,135" fill="none" stroke="url(#rainbowGradient)" stroke-width="1" opacity="0.5" />
</g>
</g>
<!-- Small sparkles around the teacup for levitation effect -->
<g id="magicSparkles">
<circle cx="90" cy="120" r="2" fill="white">
<animate attributeName="opacity" values="0;1;0" dur="2s" repeatCount="indefinite" />
<animate attributeName="r" values="1;2;1" dur="2s" repeatCount="indefinite" />
</circle>
<circle cx="210" cy="110" r="3" fill="white">
<animate attributeName="opacity" values="0;1;0" dur="1.5s" repeatCount="indefinite" />
<animate attributeName="r" values="2;3;2" dur="1.5s" repeatCount="indefinite" />
</circle>
<circle cx="150" cy="80" r="2" fill="white">
<animate attributeName="opacity" values="0;1;0" dur="2.5s" repeatCount="indefinite" />
<animate attributeName="r" values="1;2;1" dur="2.5s" repeatCount="indefinite" />
</circle>
<circle cx="120" cy="170" r="2" fill="white">
<animate attributeName="opacity" values="0;1;0" dur="3s" begin="1s" repeatCount="indefinite" />
<animate attributeName="r" values="1;2;1" dur="3s" begin="1s" repeatCount="indefinite" />
</circle>
<circle cx="180" cy="170" r="2" fill="white">
<animate attributeName="opacity" values="0;1;0" dur="2s" begin="0.5s" repeatCount="indefinite" />
<animate attributeName="r" values="1;2;1" dur="2s" begin="0.5s" repeatCount="indefinite" />
</circle>
<!-- Magical star sparkles -->
<path d="M100,130 L102,132 L100,134 L98,132 Z" fill="white">
<animate attributeName="opacity" values="0;1;0" dur="3s" begin="1s" repeatCount="indefinite" />
<animate attributeName="transform" type="rotate" values="0 100 132;180 100 132;360 100 132" dur="3s" begin="1s" repeatCount="indefinite" />
</path>
<path d="M200,120 L203,123 L200,126 L197,123 Z" fill="white">
<animate attributeName="opacity" values="0;1;0" dur="2s" begin="0.5s" repeatCount="indefinite" />
<animate attributeName="transform" type="rotate" values="0 200 123;180 200 123;360 200 123" dur="2s" begin="0.5s" repeatCount="indefinite" />
</path>
</g>
<!-- Rainbow tea pouring from cup -->
<g id="pouringTea">
<!-- Main stream with animation -->
<path d="M150,150 Q170,190 150,225" fill="none" stroke="url(#rainbowGradient)" stroke-width="10" stroke-linecap="round">
<animate attributeName="d" values="M150,150 Q170,190 150,225; M150,150 Q160,190 150,225; M150,150 Q170,190 150,225" dur="3s" repeatCount="indefinite" />
</path>
<!-- Thinner stream overtop for highlight effect -->
<path d="M150,150 Q170,190 150,225" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" opacity="0.3">
<animate attributeName="d" values="M150,150 Q170,190 150,225; M150,150 Q160,190 150,225; M150,150 Q170,190 150,225" dur="3s" repeatCount="indefinite" />
</path>
</g>
<!-- Rainbow droplets -->
<g id="droplets">
<circle cx="160" cy="180" r="3" fill="url(#rainbowGradient)">
<animate attributeName="cy" values="180;225" dur="2s" repeatCount="indefinite" />
<animate attributeName="opacity" values="1;0" dur="2s" repeatCount="indefinite" />
</circle>
<circle cx="165" cy="170" r="2" fill="url(#rainbowGradient)">
<animate attributeName="cy" values="170;225" dur="1.5s" repeatCount="indefinite" />
<animate attributeName="opacity" values="1;0" dur="1.5s" repeatCount="indefinite" />
</circle>
<circle cx="155" cy="175" r="2.5" fill="url(#rainbowGradient)">
<animate attributeName="cy" values="175;225" dur="1.8s" repeatCount="indefinite" />
<animate attributeName="opacity" values="1;0" dur="1.8s" repeatCount="indefinite" />
</circle>
<circle cx="162" cy="185" r="1.5" fill="url(#rainbowGradient)">
<animate attributeName="cy" values="185;225" dur="1.2s" repeatCount="indefinite" />
<animate attributeName="opacity" values="1;0" dur="1.2s" repeatCount="indefinite" />
</circle>
</g>
<!-- Steam from the cup -->
<g id="steam" opacity="0.7">
<path d="M130,90 Q140,80 135,70 Q130,60 140,55" fill="none" stroke="white" stroke-width="2" opacity="0.6">
<animate attributeName="d" values="M130,90 Q140,80 135,70 Q130,60 140,55; M130,90 Q135,80 140,70 Q145,60 140,55; M130,90 Q140,80 135,70 Q130,60 140,55" dur="4s" repeatCount="indefinite" />
<animate attributeName="opacity" values="0.6;0.2;0.6" dur="4s" repeatCount="indefinite" />
</path>
<path d="M150,85 Q160,75 155,65 Q150,55 160,50" fill="none" stroke="white" stroke-width="2" opacity="0.6">
<animate attributeName="d" values="M150,85 Q160,75 155,65 Q150,55 160,50; M150,85 Q155,75 160,65 Q165,55 160,50; M150,85 Q160,75 155,65 Q150,55 160,50" dur="3s" repeatCount="indefinite" />
<animate attributeName="opacity" values="0.6;0.2;0.6" dur="3s" repeatCount="indefinite" />
</path>
<path d="M170,90 Q180,80 175,70 Q170,60 180,55" fill="none" stroke="white" stroke-width="2" opacity="0.6">
<animate attributeName="d" values="M170,90 Q180,80 175,70 Q170,60 180,55; M170,90 Q175,80 180,70 Q185,60 180,55; M170,90 Q180,80 175,70 Q170,60 180,55" dur="3.5s" repeatCount="indefinite" />
<animate attributeName="opacity" values="0.6;0.2;0.6" dur="3.5s" repeatCount="indefinite" />
</path>
<!-- Colored steam hint -->
<path d="M140,85 Q150,75 145,65 Q140,55 150,50" fill="none" stroke="url(#rainbowGradient)" stroke-width="1" opacity="0.3">
<animate attributeName="d" values="M140,85 Q150,75 145,65 Q140,55 150,50; M140,85 Q145,75 150,65 Q155,55 150,50; M140,85 Q150,75 145,65 Q140,55 150,50" dur="3.5s" repeatCount="indefinite" />
<animate attributeName="opacity" values="0.3;0.1;0.3" dur="3.5s" repeatCount="indefinite" />
</path>
<path d="M160,85 Q170,75 165,65 Q160,55 170,50" fill="none" stroke="url(#rainbowGradient)" stroke-width="1" opacity="0.3">
<animate attributeName="d" values="M160,85 Q170,75 165,65 Q160,55 170,50; M160,85 Q165,75 170,65 Q175,55 170,50; M160,85 Q170,75 165,65 Q160,55 170,50" dur="4s" repeatCount="indefinite" />
<animate attributeName="opacity" values="0.3;0.1;0.3" dur="4s" repeatCount="indefinite" />
</path>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<radialGradient id="sky" cx="50%" cy="30%" r="80%">
<stop offset="0%" stop-color="#a0e9ff"/>
<stop offset="100%" stop-color="#6ec1ff"/>
</radialGradient>
<linearGradient id="rainbow" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#ff0000"/>
<stop offset="20%" stop-color="#ff7f00"/>
<stop offset="40%" stop-color="#ffff00"/>
<stop offset="60%" stop-color="#00ff00"/>
<stop offset="80%" stop-color="#0000ff"/>
<stop offset="100%" stop-color="#8b00ff"/>
</linearGradient>
<radialGradient id="cupGrad" cx="50%" cy="30%" r="70%">
<stop offset="0%" stop-color="#fffefc"/>
<stop offset="100%" stop-color="#f5e1c9"/>
</radialGradient>
<filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
<feDropShadow dx="0" dy="4" stdDeviation="4" flood-color="#000" flood-opacity="0.3"/>
</filter>
<filter id="shadowSoft" x="-40%" y="-40%" width="180%" height="180%">
<feDropShadow dx="0" dy="2" stdDeviation="2" flood-color="#000" flood-opacity="0.2"/>
</filter>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#sky)"/>
<!-- Levitating teacup -->
<g transform="translate(150,100)" filter="url(#shadow)">
<ellipse cx="0" cy="10" rx="45" ry="12" fill="#f5e1c9" />
<path d="M-45,10 L-40,-20 Q0,-40 40,-20 L45,10 Z" fill="url(#cupGrad)" stroke="#e0c8a0" stroke-width="2"/>
<path d="M40,-15 Q55,5 40,25" fill="none" stroke="#e0c8a0" stroke-width="6"/>
<ellipse cx="0" cy="-15" rx="38" ry="8" fill="white" stroke="#e0c8a0" stroke-width="2"/>
</g>
<!-- Rainbow tea stream -->
<path d="M150,90 C155,140 140,150 155,200 S165,260 140,260" fill="none" stroke="url(#rainbow)" stroke-width="12" stroke-linecap="round" filter="url(#shadowSoft)"/>
<!-- Cloud-shaped saucer -->
<g transform="translate(150,260)" filter="url(#shadow)">
<path d="
M -60,0
a20,20 0 0,1 40,0
a20,20 0 0,1 40,0
a20,20 0 0,1 40,0
a20,20 0 0,1 40,0
a20,20 0 0,1 -200,0
z" fill="white" stroke="#d0e7fa" stroke-width="2"/>
</g>
<!-- Splash highlights -->
<circle cx="140" cy="235" r="4" fill="#fff" opacity="0.8"/>
<circle cx="160" cy="245" r="3" fill="#fff" opacity="0.7"/>
<circle cx="130" cy="250" r="2.5" fill="#fff" opacity="0.7"/>
<!-- Sparkles -->
<g fill="#fff" opacity="0.8">
<polygon points="220,50 222,56 228,56 223,60 225,66 220,62 215,66 217,60 212,56 218,56"/>
<polygon points="80,40 82,44 86,44 83,47 84,51 80,48 76,51 77,47 74,44 78,44"/>
</g>
</svg>
Judge's Analysis
Player 1's submission is more visually cohesive and creative, with a well-executed levitating teacup and a vibrant rainbow tea stream that blends beautifully with the soft cloud saucer.
The subtle gradient background and glowing effects enhance the magical feel, adhering closely to the prompt.
Player 2's submission, while conceptually similar, appears less polished with a simpler execution and less dynamic composition.
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
"Cat balancing on a unicycle across a tightrope over a canyon at sunset."
"A cactus wearing sunglasses, holding a balloon, in the middle of a desert."
"A flying toaster chasing a bagel through a rainbow."
"A giraffe wearing a polka-dot spacesuit floating in zero gravity."