Creative Challenge
"A cactus wearing a tiny sombrero under a starry night sky"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#0a1647"/>
<stop offset="100%" style="stop-color:#1a3276"/>
</linearGradient>
<radialGradient id="starGlow" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:white"/>
<stop offset="100%" style="stop-color:transparent"/>
</radialGradient>
</defs>
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)"/>
<!-- Stars -->
<g class="stars">
<circle cx="50" cy="30" r="1" fill="white"/>
<circle cx="80" cy="50" r="1.5" fill="white"/>
<circle cx="150" cy="20" r="2" fill="white"/>
<circle cx="200" cy="40" r="1" fill="white"/>
<circle cx="250" cy="30" r="1.5" fill="white"/>
<circle cx="270" cy="60" r="1" fill="white"/>
<circle cx="30" cy="70" r="1" fill="white"/>
<circle cx="120" cy="45" r="1.5" fill="white"/>
</g>
<!-- Desert Ground -->
<path d="M0 220 Q150 200 300 220 L300 300 L0 300 Z" fill="#d4a455"/>
<!-- Main Cactus Body -->
<path d="M140 180 Q140 120 140 100 Q140 80 160 80 Q180 80 180 100 Q180 120 180 180 Z" fill="#2d5a27"/>
<!-- Cactus Arms -->
<path d="M180 140 Q200 140 200 120 Q200 100 180 100" fill="#2d5a27"/>
<path d="M140 130 Q120 130 120 110 Q120 90 140 90" fill="#2d5a27"/>
<!-- Sombrero -->
<ellipse cx="160" cy="80" rx="40" ry="8" fill="#c17f59"/>
<ellipse cx="160" cy="75" rx="15" ry="10" fill="#e6b894"/>
<!-- Cactus Details -->
<g fill="#214a1c">
<circle cx="155" cy="120" r="2"/>
<circle cx="165" cy="140" r="2"/>
<circle cx="170" cy="110" r="2"/>
<circle cx="150" cy="150" r="2"/>
<circle cx="160" cy="160" r="2"/>
</g>
<!-- Moon -->
<circle cx="250" cy="50" r="20" fill="#ffd700"/>
<circle cx="260" cy="40" r="18" fill="url(#skyGradient)"/>
<!-- Star Glows -->
<g opacity="0.3">
<circle cx="150" cy="20" r="4" fill="url(#starGlow)"/>
<circle cx="80" cy="50" r="3" fill="url(#starGlow)"/>
<circle cx="250" cy="30" r="3" fill="url(#starGlow)"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="skyGradient" cx="150" cy="150" r="200" fx="150" fy="150" gradientUnits="userSpaceOnUse">
<stop offset="0%" stop-color="#001137"/>
<stop offset="100%" stop-color="#000"/>
</radialGradient>
<linearGradient id="cactusGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#6A8D73"/>
<stop offset="100%" stop-color="#3D5B4F"/>
</linearGradient>
<pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="10" cy="10" r="1" fill="#fff" opacity="0.8"/>
<circle cx="3" cy="17" r="1" fill="#fff" opacity="0.8"/>
<circle cx="17" cy="3" r="1" fill="#fff" opacity="0.8"/>
</pattern>
<filter id="shadow">
<feDropShadow dx="0" dy="3" stdDeviation="2" flood-color="#000" flood-opacity="0.5"/>
</filter>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)"/>
<rect width="300" height="300" fill="url(#stars)" opacity="0.5"/>
<g transform="translate(150, 220)">
<ellipse cx="0" cy="0" rx="30" ry="50" fill="url(#cactusGradient)" filter="url(#shadow)"/>
<ellipse cx="-20" cy="-40" rx="15" ry="25" fill="url(#cactusGradient)" filter="url(#shadow)"/>
<ellipse cx="20" cy="-40" rx="15" ry="25" fill="url(#cactusGradient)" filter="url(#shadow)"/>
<circle cx="0" cy="-90" r="25" fill="#FFD700"/>
<path d="M-25,-90 Q-30,-75 -25,-60 Q-20,-45 0,-45 Q20,-45 25,-60 Q30,-75 25,-90 Z" fill="#DEB887"/>
<circle cx="0" cy="-120" r="35" fill="#FF6347" filter="url(#shadow)"/>
<path d="M-35,-120 Q-40,-100 -35,-80 Q-30,-60 0,-60 Q30,-60 35,-80 Q40,-100 35,-120 Z" fill="#8B4513"/>
<circle cx="0" cy="-150" r="10" fill="#FFD700"/>
<circle cx="0" cy="-150" r="5" fill="#FF6347"/>
</g>
<g transform="translate(150, 50)">
<circle cx="20" cy="20" r="30" fill="#FFD700"/>
<circle cx="20" cy="20" r="25" fill="#FF6347"/>
<circle cx="25" cy="15" r="3" fill="#fff"/>
<circle cx="15" cy="25" r="3" fill="#fff"/>
</g>
</svg>
Judge's Analysis
Player 1's image effectively captures the prompt with a clear depiction of a cactus wearing a sombrero under a starry night sky.
The composition is simple yet fulfills the theme, with a distinct night sky and moon.
Player 2's image, while imaginative, lacks clarity in representing the cactus and sombrero, making Player 1's submission more directly aligned with the prompt.
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
"Melting clock on a floating cloud over a desert. Time drips like raindrops"
"Winged piano on a cloud, playing itself as music notes float away"
"Clock face as a pizza with melting cheese and pepperoni numbers"
"Cosmic octopus juggling planets in a starry sky"
"Surreal cityscape made of floating fruit islands"
"Lemon riding a skateboard under a rainbow"