Creative Challenge
"A goldfish swimming in a floating tea cup on a crescent moon"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="moonGlow" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#ffd700;stop-opacity:0.3"/>
<stop offset="100%" style="stop-color:#fff5c2;stop-opacity:0.1"/>
</linearGradient>
<radialGradient id="teaColor" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#c2853b"/>
<stop offset="100%" style="stop-color:#8b572a"/>
</radialGradient>
<pattern id="bubbles" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.3)"/>
</pattern>
</defs>
<!-- Moon -->
<path d="M50 100 A120 120 0 0 1 250 180 A100 100 0 0 0 50 100" fill="#ffd700"/>
<circle cx="150" cy="140" r="100" fill="url(#moonGlow)" opacity="0.6"/>
<!-- Teacup -->
<ellipse cx="150" cy="140" rx="70" ry="25" fill="#ffffff" stroke="#b3b3b3" stroke-width="2"/>
<path d="M80 140 Q80 180 150 180 Q220 180 220 140" fill="#ffffff" stroke="#b3b3b3" stroke-width="2"/>
<path d="M220 140 C240 140 250 150 250 170 C250 190 240 200 220 200 L80 200 C60 200 50 190 50 170 C50 150 60 140 80 140" fill="none" stroke="#b3b3b3" stroke-width="2"/>
<!-- Tea -->
<path d="M85 140 Q85 175 150 175 Q215 175 215 140" fill="url(#teaColor)"/>
<rect x="85" y="140" width="130" height="35" fill="url(#bubbles)"/>
<!-- Goldfish -->
<g transform="translate(150,160) rotate(-20)">
<path d="M0,0 C10,-10 20,-10 30,0 C20,10 10,10 0,0" fill="#ff6b00"/>
<path d="M30,0 L40,10 L40,-10 Z" fill="#ff6b00"/>
<circle cx="5" cy="-2" r="2" fill="#000"/>
<path d="M40,0 Q50,-5 45,0 Q50,5 45,0" fill="#ff4500"/>
</g>
<!-- Steam -->
<path d="M130,110 Q140,90 150,110 Q160,90 170,110" fill="none" stroke="#e6e6e6" stroke-width="2" opacity="0.6">
<animate attributeName="d" dur="3s" repeatCount="indefinite"
values="M130,110 Q140,90 150,110 Q160,90 170,110;
M130,110 Q140,100 150,110 Q160,100 170,110;
M130,110 Q140,90 150,110 Q160,90 170,110"/>
</path>
<!-- Stars -->
<g fill="#ffffff">
<circle cx="50" cy="50" r="2"/>
<circle cx="250" cy="70" r="2"/>
<circle cx="200" cy="40" r="1.5"/>
<circle cx="100" cy="30" r="1.5"/>
<circle cx="270" cy="120" r="1.5"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="cupGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FFB3B3;stop-opacity:1" />
<stop offset="100%" style="stop-color:#FF6F61;stop-opacity:1" />
</linearGradient>
<radialGradient id="fishGradient" 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:#FF9900;stop-opacity:1" />
</radialGradient>
<filter id="glow">
<feGaussianBlur in="SourceAlpha" stdDeviation="3"/>
<feFlood floodColor="rgba(255, 255, 255, 0.5)"/>
<feComposite in2="SourceAlpha" operator="in"/>
<feMerge>
<feMergeNode />
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="midnightblue" />
<ellipse cx="150" cy="130" rx="100" ry="50" fill="url(#cupGradient)" stroke="darkred" stroke-width="5" />
<path d="M50,130 Q150,100 250,130 Q220,140 50,130 Z" fill="none" stroke="darkred" stroke-width="5"/>
<ellipse cx="150" cy="130" rx="60" ry="10" fill="none" stroke="darkred" stroke-width="5"/>
<circle cx="150" cy="130" r="55" fill="#F1F8E9" opacity="0.3"/>
<g filter="url(#glow)">
<circle cx="130" cy="120" r="15" fill="url(#fishGradient)" />
<path d="M130,115 Q125,110 120,115 Q125,120 130,115 Z" fill="white" />
<path d="M130,115 Q140,105 155,120 Q145,110 130,115 Z" fill="orange" />
</g>
<path d="M100,200 C60,180 80,100 150,100 C220,100 240,180 200,200" fill="lightgray" opacity="0.5"/>
<path d="M80,100 C60,80 50,60 75,55 Q100,70 115,55 C100,60 90,80 80,100" fill="none" stroke="darkgray" stroke-width="2" />
<path d="M170,60 Q150,40 130,60 Q140,50 150,45 Q160,45 170,60" fill="lightyellow" opacity="0.9" />
<circle cx="165" cy="55" r="5" fill="gold" />
<text x="150" y="50" text-anchor="middle" fill="yellow" font-size="16" font-family="Arial" style="text-shadow:1px 1px 1px white;">Dreams</text>
</svg>
Judge's Analysis
Player 1's submission effectively captures the whimsical concept of a goldfish in a tea cup on a crescent moon.
The composition is clear, with the crescent moon and tea cup visually well-defined and the goldfish prominently displayed.
In contrast, Player 2's image lacks clarity in depicting the elements of the prompt and does not visually convey the intended theme as effectively.
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
"A single raccoon juggling ancient, glowing runes in a moonlit forest"
"Polar bear on a tropical beach, sipping coconut drink under a palm tree"
"Flamingo wearing roller skates on a rainbow path"
"Ballerina balancing on a tightrope above a cityscape during a vibrant sunset"
"A disco ball moon over a city of dancing skyscrapers"
"Lemon-shaped hot air balloon over a surreal purple ocean"