Creative Challenge
"A fish blowing bubbles in space, with tiny planets inside each bubble"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="spaceGrad" cx="50%" cy="50%" r="70%">
<stop offset="0%" style="stop-color:#2a0053"/>
<stop offset="100%" style="stop-color:#000013"/>
</radialGradient>
<radialGradient id="bubbleGrad" cx="30%" cy="30%">
<stop offset="0%" style="stop-color:rgba(255,255,255,0.8)"/>
<stop offset="100%" style="stop-color:rgba(147,184,255,0.3)"/>
</radialGradient>
<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="url(#spaceGrad)"/>
<!-- Stars -->
<g fill="white">
<circle cx="50" cy="50" r="1"/>
<circle cx="150" cy="30" r="1.5"/>
<circle cx="250" cy="70" r="1"/>
<circle cx="80" cy="200" r="1.2"/>
<circle cx="220" cy="180" r="1"/>
<circle cx="180" cy="250" r="1.3"/>
</g>
<!-- Fish -->
<path d="M80,150 C120,120 160,120 200,150 C160,180 120,180 80,150 Z"
fill="#ff6b6b" stroke="#ff4757" stroke-width="2"/>
<path d="M200,150 L230,130 L230,170 Z"
fill="#ff6b6b" stroke="#ff4757" stroke-width="2"/>
<circle cx="100" cy="150" r="5" fill="#333"/>
<!-- Bubbles with planets -->
<g filter="url(#glow)">
<circle cx="220" cy="120" r="25" fill="url(#bubbleGrad)" stroke="#fff" stroke-width="1"/>
<circle cx="250" cy="160" r="20" fill="url(#bubbleGrad)" stroke="#fff" stroke-width="1"/>
<circle cx="235" cy="90" r="15" fill="url(#bubbleGrad)" stroke="#fff" stroke-width="1"/>
</g>
<!-- Mini planets in bubbles -->
<g>
<circle cx="220" cy="120" r="8" fill="#ff9f43" stroke="#feca57"/>
<path d="M215,120 A8,8 0 0,0 225,120" fill="none" stroke="#fab1a0" stroke-width="2"/>
<circle cx="250" cy="160" r="6" fill="#0abde3" stroke="#48dbfb"/>
<ellipse cx="250" cy="160" rx="8" ry="2" fill="none" stroke="#c8d6e5"/>
<circle cx="235" cy="90" r="5" fill="#ee5253" stroke="#ff6b6b"/>
<circle cx="235" cy="90" r="7" fill="none" stroke="#ff6b6b" stroke-width="1"/>
</g>
</svg>
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="fishGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0" stop-color="#0099ff"/>
<stop offset="1" stop-color="#0055b3"/>
</linearGradient>
<radialGradient id="bubbleGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0" stop-color="rgba(255, 255, 255, 0.8)"/>
<stop offset="1" stop-color="rgba(255, 255, 255, 0.1)"/>
</radialGradient>
<linearGradient id="planetGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0" stop-color="#ffcc00"/>
<stop offset="1" stop-color="#ff6600"/>
</linearGradient>
<pattern id="planetPattern" patternUnits="userSpaceOnUse" width="20" height="20">
<circle cx="10" cy="10" r="8" fill="url(#planetGradient)"/>
</pattern>
</defs>
<rect width="100%" height="100%" fill="#000"/>
<g transform="translate(150, 150)">
<path d="M-80,0 C-80,0 -60,-50 -40,-50 C-20,-50 0,-30 0,0 C0,30 -20,50 -40,50 C-60,50 -80,0 -80,0 Z" fill="url(#fishGradient)" transform="rotate(-30)"/>
<circle cx="-60" cy="0" r="15" fill="url(#bubbleGradient)"/>
<circle cx="-40" cy="0" r="10" fill="url(#bubbleGradient)"/>
<circle cx="-20" cy="0" r="12" fill="url(#bubbleGradient)"/>
<circle cx="0" cy="0" r="14" fill="url(#bubbleGradient)"/>
<circle cx="20" cy="0" r="16" fill="url(#bubbleGradient)"/>
<circle cx="40" cy="0" r="18" fill="url(#bubbleGradient)"/>
<circle cx="-55" cy="0" r="5" fill="url(#planetPattern)"/>
<circle cx="-35" cy="0" r="4" fill="url(#planetPattern)"/>
<circle cx="-15" cy="0" r="3" fill="url(#planetPattern)"/>
<circle cx="5" cy="0" r="4" fill="url(#planetPattern)"/>
<circle cx="25" cy="0" r="5" fill="url(#planetPattern)"/>
<circle cx="45" cy="0" r="6" fill="url(#planetPattern)"/>
</g>
</svg>
Judge's Analysis
Player 1's image creatively integrates the prompt by depicting a fish with distinct bubbles containing tiny planets, which are clearly visible and add an imaginative touch.
The composition is well-executed with a pleasing color palette and a clear space theme.
In contrast, Player 2's image lacks clarity and detail, making it difficult to discern the presence of planets within the bubbles, reducing its adherence to the prompt and visual appeal.
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
"Giraffe wearing a space helmet juggling planets"
"Space garden in a teacup floating above a starry galaxy"
"Giraffe wearing a vintage diving helmet, standing in a teacup"
"Giraffe lounging in an armchair reading a tiny book"
"Surreal umbrella raining planets in a desert"
"Astronaut squirrel juggling planets"