Creative Challenge
"Rainbow-hued octopus playing chess with a cat on a cloud"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)"/>
<defs>
<!-- Sky Gradient -->
<linearGradient id="skyGradient" x1="0" x2="0" y1="0" y2="1">
<stop offset="0%" stop-color="#87CEEB"/>
<stop offset="100%" stop-color="#E0FFFF"/>
</linearGradient>
<!-- Rainbow Gradient for Octopus -->
<linearGradient id="rainbow" x1="0" y1="0" x2="1" y2="0">
<stop offset="0%" stop-color="#FF0000"/>
<stop offset="16.6%" stop-color="#FF7F00"/>
<stop offset="33.3%" stop-color="#FFFF00"/>
<stop offset="50%" stop-color="#00FF00"/>
<stop offset="66.6%" stop-color="#0000FF"/>
<stop offset="83.3%" stop-color="#4B0082"/>
<stop offset="100%" stop-color="#8B00FF"/>
</linearGradient>
<!-- Chessboard Pattern -->
<pattern id="chessPattern" width="10" height="10" patternUnits="userSpaceOnUse">
<rect width="10" height="10" fill="#f0d9b5"/>
<rect x="0" y="0" width="5" height="5" fill="#b58863"/>
<rect x="5" y="5" width="5" height="5" fill="#b58863"/>
</pattern>
<!-- Cloud Pattern -->
<radialGradient id="cloudGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#FFFFFF" stop-opacity="1"/>
<stop offset="100%" stop-color="#FFFFFF" stop-opacity="0.6"/>
</radialGradient>
</defs>
<!-- Cloud -->
<g id="cloud">
<ellipse cx="150" cy="90" rx="70" ry="30" fill="url(#cloudGradient)"/>
<ellipse cx="110" cy="90" rx="40" ry="25" fill="url(#cloudGradient)"/>
<ellipse cx="190" cy="90" rx="40" ry="25" fill="url(#cloudGradient)"/>
<ellipse cx="150" cy="65" rx="50" ry="20" fill="url(#cloudGradient)"/>
</g>
<!-- Chessboard on cloud -->
<g id="chessboard" transform="translate(115,70) scale(0.7)">
<rect width="80" height="80" fill="url(#chessPattern)" stroke="#333" stroke-width="1"/>
<!-- Simple Chess Pieces -->
<!-- White pieces -->
<circle cx="10" cy="10" r="3" fill="#fff" stroke="#000" stroke-width="0.5"/>
<circle cx="30" cy="10" r="3" fill="#fff" stroke="#000" stroke-width="0.5"/>
<circle cx="50" cy="10" r="3" fill="#fff" stroke="#000" stroke-width="0.5"/>
<circle cx="70" cy="10" r="3" fill="#fff" stroke="#000" stroke-width="0.5"/>
<!-- Black pieces -->
<circle cx="10" cy="70" r="3" fill="#000"/>
<circle cx="30" cy="70" r="3" fill="#000"/>
<circle cx="50" cy="70" r="3" fill="#000"/>
<circle cx="70" cy="70" r="3" fill="#000"/>
</g>
<!-- Rainbow Octopus -->
<g id="octopus" transform="translate(80,180)">
<!-- Body -->
<ellipse cx="50" cy="20" rx="25" ry="18" fill="url(#rainbow)" stroke="#333" stroke-width="1"/>
<!-- Eyes -->
<circle cx="42" cy="15" r="2" fill="#fff"/>
<circle cx="58" cy="15" r="2" fill="#fff"/>
<circle cx="42" cy="15" r="1" fill="#000"/>
<circle cx="58" cy="15" r="1" fill="#000"/>
<!-- Tentacles -->
<g id="tentacles">
<path d="M35,35 C20,60 30,80 15,95" stroke="url(#rainbow)" stroke-width="4" fill="none" stroke-linecap="round"/>
<path d="M45,35 C40,60 50,85 35,100" stroke="url(#rainbow)" stroke-width="4" fill="none" stroke-linecap="round"/>
<path d="M55,35 C70,60 65,80 80,95" stroke="url(#rainbow)" stroke-width="4" fill="none" stroke-linecap="round"/>
<path d="M25,30 C10,50 20,75 5,90" stroke="url(#rainbow)" stroke-width="4" fill="none" stroke-linecap="round"/>
<path d="M65,30 C80,50 70,75 85,90" stroke="url(#rainbow)" stroke-width="4" fill="none" stroke-linecap="round"/>
<path d="M50,25 C50,45 60,65 55,85" stroke="url(#rainbow)" stroke-width="4" fill="none" stroke-linecap="round"/>
<path d="M50,25 C50,45 40,65 45,85" stroke="url(#rainbow)" stroke-width="4" fill="none" stroke-linecap="round"/>
<path d="M35,20 C30,40 25,60 20,80" stroke="url(#rainbow)" stroke-width="4" fill="none" stroke-linecap="round"/>
</g>
</g>
<!-- Cat -->
<g id="cat" transform="translate(180,190) scale(0.8)">
<!-- Body -->
<ellipse cx="40" cy="30" rx="20" ry="12" fill="#FFDAB9" stroke="#000" stroke-width="1"/>
<!-- Head -->
<circle cx="40" cy="15" r="10" fill="#FFDAB9" stroke="#000" stroke-width="1"/>
<!-- Ears -->
<polygon points="33,8 37,2 41,8" fill="#FFDAB9" stroke="#000" stroke-width="1"/>
<polygon points="47,8 43,2 39,8" fill="#FFDAB9" stroke="#000" stroke-width="1"/>
<!-- Eyes -->
<circle cx="37" cy="14" r="1.5" fill="#000"/>
<circle cx="43" cy="14" r="1.5" fill="#000"/>
<!-- Whiskers -->
<line x1="30" y1="15" x2="20" y2="15" stroke="#000" stroke-width="0.5"/>
<line x1="30" y1="17" x2="20" y2="19" stroke="#000" stroke-width="0.5"/>
<line x1="30" y1="13" x2="20" y2="11" stroke="#000" stroke-width="0.5"/>
<line x1="50" y1="15" x2="60" y2="15" stroke="#000" stroke-width="0.5"/>
<line x1="50" y1="17" x2="60" y2="19" stroke="#000" stroke-width="0.5"/>
<line x1="50" y1="13" x2="60" y2="11" stroke="#000" stroke-width="0.5"/>
<!-- Tail -->
<path d="M55,30 q20,10 5,30" fill="none" stroke="#FFDAB9" stroke-width="3" stroke-linecap="round"/>
<!-- Chess piece in front of cat: hinting at its engagement -->
<circle cx="20" cy="45" r="4" fill="#fff" stroke="#000" stroke-width="0.5"/>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Definitions for reuse -->
<defs>
<!-- Rainbow gradient for octopus -->
<linearGradient id="rainbowGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<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>
<!-- Cloud pattern -->
<pattern id="cloudPattern" patternUnits="userSpaceOnUse" width="60" height="60">
<path d="M30,10 Q40,0 50,10 T70,10 Q80,0 90,10 T110,10 Q120,0 130,10 V30 H30 Z" fill="white" opacity="0.4"/>
</pattern>
<!-- Glow filter -->
<filter id="glow" x="-20%" y="-20%" width="140%" height="140%">
<feGaussianBlur stdDeviation="3" result="blur"/>
<feComposite in="SourceGraphic" in2="blur" operator="over"/>
</filter>
</defs>
<!-- Background sky -->
<rect x="0" y="0" width="300" height="300" fill="#1a2b4f"/>
<circle cx="250" cy="50" r="20" fill="#fff9db" opacity="0.8"/>
<circle cx="245" cy="55" r="22" fill="#1a2b4f"/>
<!-- Stars -->
<g>
<circle cx="30" cy="40" r="1" fill="white"/>
<circle cx="60" cy="30" r="1.5" fill="white"/>
<circle cx="100" cy="20" r="1" fill="white"/>
<circle cx="150" cy="25" r="1.5" fill="white"/>
<circle cx="200" cy="35" r="1" fill="white"/>
<circle cx="220" cy="70" r="1.5" fill="white"/>
<circle cx="25" cy="80" r="1" fill="white"/>
<circle cx="70" cy="60" r="1.5" fill="white"/>
<circle cx="270" cy="25" r="1" fill="white"/>
<circle cx="280" cy="90" r="1.2" fill="white"/>
</g>
<!-- Main cloud -->
<g transform="translate(50, 120)">
<ellipse cx="100" cy="60" rx="120" ry="50" fill="#e6f7ff" stroke="#b3e0ff" stroke-width="2"/>
<ellipse cx="60" cy="40" rx="60" ry="35" fill="#f2faff" stroke="#b3e0ff" stroke-width="2"/>
<ellipse cx="140" cy="35" rx="70" ry="30" fill="#f2faff" stroke="#b3e0ff" stroke-width="2"/>
<ellipse cx="100" cy="60" rx="120" ry="50" fill="url(#cloudPattern)" opacity="0.6"/>
</g>
<!-- Chess board -->
<g transform="translate(105, 125)">
<rect x="0" y="0" width="80" height="80" fill="#e6ccb3" stroke="#7d5a44" stroke-width="3"/>
<!-- Chess squares -->
<g>
<rect x="0" y="0" width="10" height="10" fill="#7d5a44"/>
<rect x="20" y="0" width="10" height="10" fill="#7d5a44"/>
<rect x="40" y="0" width="10" height="10" fill="#7d5a44"/>
<rect x="60" y="0" width="10" height="10" fill="#7d5a44"/>
<rect x="10" y="10" width="10" height="10" fill="#7d5a44"/>
<rect x="30" y="10" width="10" height="10" fill="#7d5a44"/>
<rect x="50" y="10" width="10" height="10" fill="#7d5a44"/>
<rect x="70" y="10" width="10" height="10" fill="#7d5a44"/>
<rect x="0" y="20" width="10" height="10" fill="#7d5a44"/>
<rect x="20" y="20" width="10" height="10" fill="#7d5a44"/>
<rect x="40" y="20" width="10" height="10" fill="#7d5a44"/>
<rect x="60" y="20" width="10" height="10" fill="#7d5a44"/>
<rect x="10" y="30" width="10" height="10" fill="#7d5a44"/>
<rect x="30" y="30" width="10" height="10" fill="#7d5a44"/>
<rect x="50" y="30" width="10" height="10" fill="#7d5a44"/>
<rect x="70" y="30" width="10" height="10" fill="#7d5a44"/>
<rect x="0" y="40" width="10" height="10" fill="#7d5a44"/>
<rect x="20" y="40" width="10" height="10" fill="#7d5a44"/>
<rect x="40" y="40" width="10" height="10" fill="#7d5a44"/>
<rect x="60" y="40" width="10" height="10" fill="#7d5a44"/>
<rect x="10" y="50" width="10" height="10" fill="#7d5a44"/>
<rect x="30" y="50" width="10" height="10" fill="#7d5a44"/>
<rect x="50" y="50" width="10" height="10" fill="#7d5a44"/>
<rect x="70" y="50" width="10" height="10" fill="#7d5a44"/>
<rect x="0" y="60" width="10" height="10" fill="#7d5a44"/>
<rect x="20" y="60" width="10" height="10" fill="#7d5a44"/>
<rect x="40" y="60" width="10" height="10" fill="#7d5a44"/>
<rect x="60" y="60" width="10" height="10" fill="#7d5a44"/>
<rect x="10" y="70" width="10" height="10" fill="#7d5a44"/>
<rect x="30" y="70" width="10" height="10" fill="#7d5a44"/>
<rect x="50" y="70" width="10" height="10" fill="#7d5a44"/>
<rect x="70" y="70" width="10" height="10" fill="#7d5a44"/>
</g>
<!-- Chess pieces -->
<circle cx="15" cy="15" r="4" fill="#333"/>
<circle cx="35" cy="25" r="4" fill="#eee"/>
<circle cx="55" cy="35" r="4" fill="#333"/>
<path d="M65,65 L70,70 L60,70 Z" fill="#eee"/> <!-- pawn -->
<path d="M25,55 Q25,50 30,50 Q35,50 35,55 L35,58 L25,58 Z" fill="#333"/> <!-- rook -->
<path d="M45,45 C45,40 55,40 55,45 L55,50 L45,50 Z M50,40 L50,35" stroke="#eee" fill="#eee" stroke-width="1"/> <!-- queen -->
</g>
<!-- Cat -->
<g transform="translate(200, 130)">
<!-- Cat body -->
<ellipse cx="0" cy="10" rx="25" ry="20" fill="#f9e0c0"/>
<!-- Cat head -->
<circle cx="25" cy="0" r="15" fill="#f9e0c0"/>
<!-- Ears -->
<path d="M15,-10 L10,-20 L20,-15 Z" fill="#f9e0c0"/>
<path d="M35,-10 L40,-20 L30,-15 Z" fill="#f9e0c0"/>
<path d="M17,-8 L14,-15 L20,-12 Z" fill="#ff9b9b"/>
<path d="M33,-8 L36,-15 L30,-12 Z" fill="#ff9b9b"/>
<!-- Eyes -->
<ellipse cx="20" cy="-2" rx="3" ry="4" fill="#006666"/>
<ellipse cx="30" cy="-2" rx="3" ry="4" fill="#006666"/>
<ellipse cx="20" cy="-3" rx="1" ry="2" fill="black"/>
<ellipse cx="30" cy="-3" rx="1" ry="2" fill="black"/>
<!-- Nose and mouth -->
<path d="M25,3 L23,5 L27,5 Z" fill="#ff9b9b"/>
<path d="M25,5 L25,8 M23,7 C24,9 26,9 27,7" fill="none" stroke="black" stroke-width="0.7"/>
<!-- Whiskers -->
<line x1="15" y1="3" x2="5" y2="0" stroke="black" stroke-width="0.5"/>
<line x1="15" y1="5" x2="5" y2="5" stroke="black" stroke-width="0.5"/>
<line x1="15" y1="7" x2="5" y2="10" stroke="black" stroke-width="0.5"/>
<line x1="35" y1="3" x2="45" y2="0" stroke="black" stroke-width="0.5"/>
<line x1="35" y1="5" x2="45" y2="5" stroke="black" stroke-width="0.5"/>
<line x1="35" y1="7" x2="45" y2="10" stroke="black" stroke-width="0.5"/>
<!-- Paws -->
<circle cx="-10" cy="20" r="8" fill="#f9e0c0"/>
<circle cx="10" cy="25" r="8" fill="#f9e0c0"/>
<!-- Tail -->
<path d="M-20,0 C-30,-10 -40,20 -20,10" fill="none" stroke="#f9e0c0" stroke-width="5" stroke-linecap="round"/>
</g>
<!-- Rainbow Octopus -->
<g transform="translate(70, 130)">
<!-- Octopus head -->
<circle cx="0" cy="0" r="25" fill="url(#rainbowGradient)" filter="url(#glow)"/>
<!-- Octopus eyes -->
<circle cx="-8" cy="-8" r="7" fill="white"/>
<circle cx="8" cy="-8" r="7" fill="white"/>
<circle cx="-8" cy="-8" r="3" fill="black"/>
<circle cx="8" cy="-8" r="3" fill="black"/>
<circle cx="-9" cy="-9" r="1" fill="white"/>
<circle cx="7" cy="-9" r="1" fill="white"/>
<!-- Smile -->
<path d="M-10,5 C-5,12 5,12 10,5" fill="none" stroke="white" stroke-width="2" stroke-linecap="round"/>
<!-- Tentacles -->
<path d="M-20,10 C-40,20 -50,40 -30,50" fill="none" stroke="#ff0000" stroke-width="5" stroke-linecap="round"/>
<path d="M-15,20 C-25,30 -20,60 -5,55" fill="none" stroke="#ff9900" stroke-width="5" stroke-linecap="round"/>
<path d="M-5,25 C-10,40 0,60 10,50" fill="none" stroke="#ffff00" stroke-width="5" stroke-linecap="round"/>
<path d="M10,20 C15,45 30,50 35,40" fill="none" stroke="#00ff00" stroke-width="5" stroke-linecap="round"/>
<path d="M20,10 C35,15 40,30 30,45" fill="none" stroke="#0099ff" stroke-width="5" stroke-linecap="round"/>
<path d="M-25,0 C-45,-10 -60,10 -50,25" fill="none" stroke="#6633ff" stroke-width="5" stroke-linecap="round"/>
<path d="M-15,-15 C-25,-30 -50,-20 -40,-5" fill="none" stroke="#9900ff" stroke-width="5" stroke-linecap="round"/>
<path d="M5,-20 C10,-35 -10,-45 -15,-30" fill="none" stroke="#ff00ff" stroke-width="5" stroke-linecap="round"/>
<!-- Tentacle suckers -->
<circle cx="-30" cy="50" r="2" fill="white" opacity="0.8"/>
<circle cx="-5" cy="55" r="2" fill="white" opacity="0.8"/>
<circle cx="10" cy="50" r="2" fill="white" opacity="0.8"/>
<circle cx="35" cy="40" r="2" fill="white" opacity="0.8"/>
<circle cx="30" cy="45" r="2" fill="white" opacity="0.8"/>
<circle cx="-50" cy="25" r="2" fill="white" opacity="0.8"/>
<circle cx="-40" cy="-5" r="2" fill="white" opacity="0.8"/>
<circle cx="-15" cy="-30" r="2" fill="white" opacity="0.8"/>
<!-- Chess piece -->
<path d="M-2,5 L2,5 L1.5,10 L-1.5,10 Z M0,0 L0,-5" stroke="#333" fill="none" stroke-width="1"/>
<circle cx="0" cy="-5" r="2" fill="#333"/>
</g>
<!-- Thought bubbles -->
<g>
<circle cx="225" cy="110" r="4" fill="white" opacity="0.7"/>
<circle cx="215" cy="105" r="6" fill="white" opacity="0.7"/>
<circle cx="200" cy="100" r="8" fill="white" opacity="0.7"/>
<path d="M197,100 L190,97 L195,95 Z" fill="white" opacity="0.7"/>
</g>
<g>
<circle cx="90" cy="100" r="4" fill="white" opacity="0.7"/>
<circle cx="80" cy="95" r="6" fill="white" opacity="0.7"/>
<circle cx="65" cy="90" r="8" fill="white" opacity="0.7"/>
<path d="M65,90 L55,85 L60,80 Z" fill="white" opacity="0.7"/>
</g>
</svg>
Judge's Analysis
Player 2's submission demonstrates greater creativity and adherence to the prompt with a clear depiction of both the octopus and the cat actively engaged in playing chess on a cloud.
The nighttime setting and expressions add personality and charm, enhancing visual appeal.
Player 1's image lacks interaction with the chessboard and overall composition feels less cohesive.
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
"Teapot-shaped spaceship orbiting a giant floating strawberry"
"Octopus in a top hat juggling flaming swords"
"Floating city on a giant turtle's shell, geometric style"
"A giraffe in a trench coat under a streetlight, noir style"