Creative Challenge
"A cat balancing on a tightrope over a sea of rainbow-colored jellyfish"
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- Sky Gradient -->
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="300" >
<stop offset="0%" stop-color="#1e3c72"/>
<stop offset="100%" stop-color="#2a5298"/>
</linearGradient>
<!-- Tightrope Gradient -->
<linearGradient id="ropeGradient" x1="0" y1="0" x2="300" y2="0">
<stop offset="0%" stop-color="#8b4513"/>
<stop offset="100%" stop-color="#a0522d"/>
</linearGradient>
<!-- Cat Gradient -->
<radialGradient id="catGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ffffff"/>
<stop offset="100%" stop-color="#cccccc"/>
</radialGradient>
<!-- Jellyfish Gradients -->
<radialGradient id="jelly1" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ff69b4" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#ff1493" stop-opacity="0.5"/>
</radialGradient>
<radialGradient id="jelly2" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#7fffd4" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#40e0d0" stop-opacity="0.5"/>
</radialGradient>
<radialGradient id="jelly3" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ffa500" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#ff8c00" stop-opacity="0.5"/>
</radialGradient>
<radialGradient id="jelly4" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#da70d6" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#ba55d3" stop-opacity="0.5"/>
</radialGradient>
<radialGradient id="jelly5" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#00ced1" stop-opacity="0.8"/>
<stop offset="100%" stop-color="#20b2aa" stop-opacity="0.5"/>
</radialGradient>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Sea -->
<g transform="translate(0, 200)">
<!-- Multiple Jellyfish -->
<g>
<ellipse cx="50" cy="0" rx="20" ry="10" fill="url(#jelly1)" />
<path d="M50 0 Q45 15, 50 20 Q55 15, 50 0" fill="url(#jelly1)" />
<line x1="50" y1="20" x2="50" y2="30" stroke="#ff1493" stroke-width="2" />
</g>
<g transform="translate(100, 0)">
<ellipse cx="50" cy="0" rx="18" ry="9" fill="url(#jelly2)" />
<path d="M50 0 Q44 14, 50 18 Q56 14, 50 0" fill="url(#jelly2)" />
<line x1="50" y1="18" x2="50" y2="28" stroke="#40e0d0" stroke-width="2" />
</g>
<g transform="translate(150, 0)">
<ellipse cx="50" cy="0" rx="22" ry="11" fill="url(#jelly3)" />
<path d="M50 0 Q42 16, 50 22 Q58 16, 50 0" fill="url(#jelly3)" />
<line x1="50" y1="22" x2="50" y2="32" stroke="#ff8c00" stroke-width="2" />
</g>
<g transform="translate(200, 0)">
<ellipse cx="50" cy="0" rx="19" ry="9.5" fill="url(#jelly4)" />
<path d="M50 0 Q43 15, 50 19 Q57 15, 50 0" fill="url(#jelly4)" />
<line x1="50" y1="19" x2="50" y2="29" stroke="#ba55d3" stroke-width="2" />
</g>
<g transform="translate(250, 0)">
<ellipse cx="50" cy="0" rx="21" ry="10.5" fill="url(#jelly5)" />
<path d="M50 0 Q39 17, 50 23 Q61 17, 50 0" fill="url(#jelly5)" />
<line x1="50" y1="23" x2="50" y2="33" stroke="#20b2aa" stroke-width="2" />
</g>
</g>
<!-- Tightrope -->
<line x1="0" y1="150" x2="300" y2="150" stroke="url(#ropeGradient)" stroke-width="4" stroke-linecap="round" />
<!-- Cat -->
<g transform="translate(150, 140)">
<!-- Body -->
<ellipse cx="0" cy="0" rx="15" ry="10" fill="url(#catGradient)" />
<!-- Head -->
<circle cx="0" cy="-15" r="8" fill="url(#catGradient)" />
<!-- Ears -->
<polygon points="-5,-18 -7,-22 -3,-18" fill="#666" />
<polygon points="5,-18 7,-22 3,-18" fill="#666" />
<!-- Eyes -->
<circle cx="-3" cy="-16" r="1.5" fill="#000" />
<circle cx="3" cy="-16" r="1.5" fill="#000" />
<!-- Tail -->
<path d="M15,0 Q25,5 15,10" stroke="#cccccc" stroke-width="2" fill="none" />
<!-- Paws -->
<ellipse cx="-10" cy="8" rx="3" ry="1.5" fill="#cccccc" />
<ellipse cx="10" cy="8" rx="3" ry="1.5" fill="#cccccc" />
<!-- Whiskers -->
<line x1="-3" y1="-15" x2="-8, -14" stroke="#000" stroke-width="0.5" />
<line x1="-3" y1="-16" x2="-8, -16" stroke="#000" stroke-width="0.5" />
<line x1="-3" y1="-17" x2="-8, -18" stroke="#000" stroke-width="0.5" />
<line x1="3" y1="-15" x2="8, -14" stroke="#000" stroke-width="0.5" />
<line x1="3" y1="-16" x2="8, -16" stroke="#000" stroke-width="0.5" />
<line x1="3" y1="-17" x2="8, -18" stroke="#000" stroke-width="0.5" />
</g>
<!-- Stars -->
<g fill="#ffffff" opacity="0.8">
<circle cx="30" cy="50" r="1.5"/>
<circle cx="80" cy="30" r="1"/>
<circle cx="120" cy="60" r="1.2"/>
<circle cx="200" cy="40" r="1.3"/>
<circle cx="270" cy="70" r="1"/>
<circle cx="250" cy="20" r="1.5"/>
<circle cx="60" cy="80" r="1"/>
<circle cx="180" cy="10" r="1.2"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="tightropeGradient" x1="0" y1="0" x2="1" y2="0">
<stop offset="0%" stop-color="#FF8C00"/>
<stop offset="50%" stop-color="#FFC107"/>
<stop offset="100%" stop-color="#FF8C00"/>
</linearGradient>
<radialGradient id="catFurGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#FFFFFF"/>
<stop offset="100%" stop-color="#B0B0B0"/>
</radialGradient>
<radialGradient id="jellyfishGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#FF00FF"/>
<stop offset="100%" stop-color="#00FFFF"/>
</radialGradient>
<pattern id="jellyfishPattern" patternUnits="userSpaceOnUse" width="10" height="10">
<circle cx="5" cy="5" r="3" fill="url(#jellyfishGradient)"/>
</pattern>
</defs>
<!-- Background: Sea of colorful jellyfish -->
<rect x="0" y="150" width="300" height="150" fill="url(#jellyfishPattern)" />
<g fill="none" stroke="none">
<!-- Multiple jellyfish bodies -->
<g id="jellyfish">
<ellipse cx="0" cy="0" rx="8" ry="12" fill="url(#jellyfishGradient)" opacity="0.7"/>
<!-- Tentacles -->
<path d="M-4,10 Q-3,18 0,20 Q3,18 4,10" stroke="url(#jellyfishGradient)" stroke-width="1" fill="none" opacity="0.7"/>
</g>
<!-- Place several jellyfish at various positions -->
<use href="#jellyfish" x="30" y="180" />
<use href="#jellyfish" x="70" y="220" />
<use href="#jellyfish" x="120" y="170" />
<use href="#jellyfish" x="170" y="230" />
<use href="#jellyfish" x="220" y="190" />
<use href="#jellyfish" x="260" y="210" />
</g>
<!-- Tightrope -->
<line x1="0" y1="100" x2="300" y2="100" stroke="url(#tightropeGradient)" stroke-width="4" stroke-linecap="round"/>
<!-- Cat balancing on the tightrope -->
<g id="cat" transform="translate(150, 100)">
<!-- Body -->
<ellipse cx="0" cy="15" rx="12" ry="18" fill="url(#catFurGradient)" stroke="#666" stroke-width="1"/>
<!-- Head -->
<circle cx="0" cy="-8" r="10" fill="url(#catFurGradient)" stroke="#666" stroke-width="1"/>
<!-- Ears -->
<polygon points="-7,-15 -3,-5 -11,-5" fill="url(#catFurGradient)" stroke="#666" stroke-width="1"/>
<polygon points="7,-15 3,-5 11,-5" fill="url(#catFurGradient)" stroke="#666" stroke-width="1"/>
<!-- Eyes -->
<circle cx="-3" cy="-10" r="1.5" fill="#000"/>
<circle cx="3" cy="-10" r="1.5" fill="#000"/>
<!-- Tail -->
<path d="M12,5 C25,0 25,20 12,15" stroke="url(#catFurGradient)" stroke-width="4" fill="none" stroke-linecap="round"/>
<!-- Whiskers -->
<path d="M-6,-5 L-16,-7" stroke="#000" stroke-width="0.8"/>
<path d="M-6,-3 L-16,-3" stroke="#000" stroke-width="0.8"/>
<path d="M6,-5 L16,-7" stroke="#000" stroke-width="0.8"/>
<path d="M6,-3 L16,-3" stroke="#000" stroke-width="0.8"/>
</g>
<!-- Additional artistic touches -->
<g opacity="0.5">
<!-- Sun-like burst in the background -->
<circle cx="260" cy="40" r="25" fill="url(#jellyfishGradient)" />
<path d="M260,15 L260,0" stroke="#FFF" stroke-width="1"/>
<path d="M285,40 L300,40" stroke="#FFF" stroke-width="1"/>
<path d="M260,65 L260,80" stroke="#FFF" stroke-width="1"/>
<path d="M235,40 L220,40" stroke="#FFF" stroke-width="1"/>
</g>
</svg>
Judge's Analysis
Player 1's image demonstrates a clear adherence to the prompt by depicting a cat in a balanced position over a variety of rainbow-colored jellyfish.
The composition is simple yet effective, and the use of color contributes to a visually appealing scene.
Player 2's image lacks clarity in depicting the tightrope element and the jellyfish, making it less recognizable and engaging.
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
"Octopus juggling planets in space"
"Half-zipped fruit revealing surreal cityscapes"
"Clock tower hugging the moon"
"Two flamingos in a tuxedo tango on a high-wire tightrope"
"Ice cream cone with skyscraper scoops, futuristic style"
"An owl made of steampunk gears and clock parts, perched on a glowing, mechanical moon"