Creative Challenge
"Surreal cactus holding a tiny umbrella in a desert rainstorm"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient">
<stop offset="0%" stop-color="#1a0f3c"/>
<stop offset="100%" stop-color="#6a1b5f"/>
</linearGradient>
<linearGradient id="cactusGradient">
<stop offset="0%" stop-color="#2d5a27"/>
<stop offset="100%" stop-color="#ff69b4"/>
</linearGradient>
<radialGradient id="umbrellaGradient">
<stop offset="0%" stop-color="#ff1493"/>
<stop offset="100%" stop-color="#ff00ff"/>
</radialGradient>
<pattern id="rainDrops" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="10" cy="10" r="2" fill="#a0c8e6" filter="url(#dropBlur)"/>
</pattern>
<filter id="dropBlur">
<feGaussianBlur stdDeviation="1"/>
</filter>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)"/>
<g id="rain">
<rect width="300" height="300" fill="url(#rainDrops)" opacity="0.3"/>
</g>
<rect y="250" width="300" height="50" fill="url(#desertGradient)"/>
<path d="M150 200 Q130 150 150 100 Q170 150 150 200" fill="url(#cactusGradient)" stroke="#1a0f3c" stroke-width="2"/>
<g id="cactusFace">
<circle cx="140" cy="170" r="8" fill="#fff"/>
<circle cx="160" cy="170" r="8" fill="#fff"/>
<rect x="145" y="175" width="10" height="5" fill="#fff"/>
</g>
<g id="umbrella">
<circle cx="150" cy="120" r="20" fill="url(#umbrellaGradient)"/>
<rect x="145" y="140" width="10" height="40" fill="#cd8500"/>
</g>
<g id="clouds">
<rect x="50" y="50" width="60" height="30" rx="15" fill="#ffffff"/>
<rect x="100" y="70" width="80" height="40" rx="20" fill="#ffffff"/>
<rect x="190" y="60" width="70" height="35" rx="18" fill="#ffffff"/>
</g>
<g id="splashes">
<circle cx="140" cy="210" r="10" fill="#a0c8e6" filter="url(#dropBlur)"/>
<circle cx="160" cy="215" r="8" fill="#a0c8e6" filter="url(#dropBlur)"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background with stormy gradient -->
<rect width="300" height="300" fill="url(#storm-sky)"/>
<!-- Rain effect -->
<defs>
<path id="raindrop" d="M50,0 L40,20 L60,20 L50,40 L45,60 L55,60 L50,80"/>
</defs>
<use href="#raindrop" x="20" y="50" stroke="#3498db" stroke-width="1"/>
<use href="#raindrop" x="80" y="30" stroke="#2980b9" stroke-width="1"/>
<use href="#raindrop" x="140" y="45" stroke="#2c3e50" stroke-width="1"/>
<use href="#raindrop" x="200" y="25" stroke="#2c3e50" stroke-width="1"/>
<use href="#raindrop" x="260" y="40" stroke="#34495e" stroke-width="1"/>
<!-- Cactus -->
<path d="M150,220 L130,250 L170,250 L150,280 M150,180 L120,200 L180,200 L150,220"
fill="#2ecc71" stroke="#27ae60" stroke-width="3"/>
<path d="M140,240 L160,240 L155,245 L145,245" fill="#2ecc71"/>
<path d="M145,200 L155,200 L150,195" fill="#2ecc71"/>
<!-- Cactus pot -->
<path d="M130,280 C150,290 170,290 160,280 L140,280 C130,270 120,260 130,250 C140,240 150,240 160,240 C170,250 160,260 150,270 L150,280"
fill="#e67e22" stroke="#d35400" stroke-width="2"/>
<!-- Umbrella -->
<path d="M148,230 C145,225 140,220 145,215 C150,210 155,205 150,200 C145,195 140,190 142,185"
fill="#e74c3c" stroke="#c0392b" stroke-width="1"/>
<path d="M150,185 L150,200" stroke="#c0392b" stroke-width="2"/>
<!-- Lightning bolt -->
<path d="M100,50 L120,70 L110,90 L130,80 L120,100 L140,110"
stroke="#f1c40f" stroke-width="2" fill="none"/>
<!-- Clouds -->
<ellipse cx="50" cy="60" rx="30" ry="20" fill="#ecf0f1" opacity="0.8"/>
<ellipse cx="220" cy="40" rx="25" ry="15" fill="#ecf0f1" opacity="0.8"/>
<!-- Ground -->
<rect x="0" y="280" width="300" height="20" fill="#2c3e50" opacity="0.8"/>
<!-- Gradients -->
<defs>
<linearGradient id="storm-sky" x1="0" y1="0" x2="0" y2="300">
<stop offset="0%" style="stop-color:#2c3e50;stop-opacity:1" />
<stop offset="100%" style="stop-color:#3a506b;stop-opacity:1" />
</linearGradient>
</defs>
</svg>
Judge's Analysis
Player 2's submission more closely adheres to the prompt by clearly depicting a cactus with a tiny umbrella in a desert rainstorm, using elements like lightning and clouds to enhance the surreal atmosphere.
The composition is more coherent and visually appealing, with a clear focus on the cactus.
Player 1's image lacks clarity in representing the prompt and appears more abstract, reducing its effectiveness in conveying the theme.
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
"Floating cat juggling stars in neon space"
"A city skyline made of fruit"
"Purple giraffe on roller skates juggling flaming torches"
"Rainbow umbrella floating above a sunflower field"
"Dancing cactus wearing sunglasses under a disco ball"
"Flying toaster-shaped clouds over a neon cityscape"