Creative Challenge
"A cat with butterfly wings lounging on a crescent moon"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Background with gradient and stars -->
<defs>
<linearGradient id="nightSky" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#1a0f3c;stop-opacity:1" />
<stop offset="100%" style="stop-color:#4a1010;stop-opacity:1" />
</linearGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="4" result="glow"/>
<feMerge>
<feMergeNode in="glow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<rect width="300" height="300" fill="url(#nightSky)"/>
<!-- Crescent moon -->
<path d="M150,50 L100,150 Q150,200 200,150 L150,50"
fill="none" stroke="#fff" stroke-width="20" stroke-linecap="round"/>
<!-- Moon glow effect -->
<path d="M150,50 L100,150 Q150,200 200,150 L150,50"
fill="none" stroke="#fff" stroke-width="30" stroke-linecap="round"
filter="url(#glow)"/>
<!-- Cat body -->
<g transform="translate(150,150)">
<!-- Cat torso -->
<ellipse cx="0" cy="0" rx="40" ry="60" fill="#808080"
transform="rotate(-30)"/>
<!-- Cat head -->
<circle cx="-40" cy="-80" r="30" fill="#808080"/>
<!-- Cat wings -->
<g transform="rotate(-30)">
<path d="M0,0 Q20,40 0,80 Q-20,40 0,0"
fill="#ff99cc" transform="rotate(20)"/>
<path d="M0,0 Q20,40 0,80 Q-20,40 0,0"
fill="#cc99ff" transform="rotate(-20)"/>
</g>
</g>
<!-- Cat face details -->
<g transform="translate(150,150) rotate(-30)">
<circle cx="-40" cy="-80" r="25" fill="#808080"/>
<circle cx="-35" cy="-85" r="8" fill="#fff"/>
<circle cx="-45" cy="-85" r="8" fill="#fff"/>
<path d="M-40,-100 L-50,-90 L-40,-80" fill="#000"/>
<path d="M-40,-100 L-30,-90 L-40,-80" fill="#000"/>
<circle cx="-40" cy="-90" r="2" fill="#ff0000"/>
</g>
<!-- Butterfly wing details -->
<g transform="translate(150,150) rotate(-30)">
<path d="M0,0 Q20,40 0,80 Q-20,40 0,0"
fill="url(#wingGrad1)"/>
<path d="M0,0 Q20,40 0,80 Q-20,40 0,0"
fill="url(#wingGrad2)"/>
</g>
<!-- Stars -->
<g id="stars">
<circle cx="50" cy="50" r="1" fill="white" opacity="0.8"/>
<circle cx="200" cy="80" r="1" fill="white" opacity="0.6"/>
<circle cx="100" cy="200" r="1" fill="white" opacity="0.8"/>
</g>
<!-- Tail with star pattern -->
<path d="M150,150 Q160,140 170,130 Q160,120 150,110"
stroke="#fff" stroke-width="2" fill="none"
transform="rotate(30)"
opacity="0.8"/>
</svg>
<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:#1a1a4a;stop-opacity:1" />
<stop offset="100%" style="stop-color:#333399;stop-opacity:1" />
</linearGradient>
<linearGradient id="moonGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#ffd700;stop-opacity:1" />
<stop offset="100%" style="stop-color:#ff8c00;stop-opacity:1" />
</linearGradient>
<linearGradient id="wingGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#ff69b4;stop-opacity:1" />
<stop offset="100%" style="stop-color:#9c27b0;stop-opacity:1" />
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)"/>
<!-- Moon -->
<path d="M150 50 Q180 20 210 50 T270 100 Q270 100 240 150 T210 200 Q180 250 150 200 T90 150 Q60 100 60 100 T30 50 Q60 0 90 20 T150 50"
fill="url(#moonGradient)" stroke="#ffd700" stroke-width="2"/>
<!-- Cat Body -->
<g transform="translate(120,180)">
<path d="M0 0 Q-30 -20 -60 0 T-120 80 Q-90 120 -60 80 T0 40" fill="#ff9999"/>
<path d="M0 0 Q30 -20 60 0 T120 80 Q90 120 60 80 T0 40" fill="#ff9999"/>
<!-- Head -->
<circle cx="0" cy="0" r="20" fill="#ff9999"/>
<path d="M-30 0 Q-40 -10 -50 0 T-70 20 Q-60 30 -50 20 T-30 10" fill="#ff9999"/>
<path d="M30 0 Q40 -10 50 0 T70 20 Q60 30 50 20 T30 10" fill="#ff9999"/>
<!-- Eyes -->
<circle cx="-10" cy="-10" r="5" fill="#ffffff"/>
<circle cx="10" cy="-10" r="5" fill="#ffffff"/>
<circle cx="-10" cy="-10" r="3" fill="#000000"/>
<circle cx="10" cy="-10" r="3" fill="#000000"/>
<circle cx="-10" cy="-10" r="2" fill="#ff1493"/>
<circle cx="10" cy="-10" r="2" fill="#ff1493"/>
</g>
<!-- Wings -->
<g transform="translate(150,180)">
<path d="M0 0 Q-50 -50 -100 0 T-150 100 Q-100 150 -50 100 T0 50" fill="url(#wingGradient)" stroke="#ff69b4" stroke-width="2"/>
<path d="M0 0 Q50 -50 100 0 T150 100 Q100 150 50 100 T0 50" fill="url(#wingGradient)" stroke="#ff69b4" stroke-width="2"/>
<!-- Wing Details -->
<path d="M-75 25 L-50 50 L-25 25" fill="#ff69b4"/>
<path d="M75 25 L50 50 L25 25" fill="#ff69b4"/>
</g>
<!-- Stars -->
<g>
<circle cx="50" cy="50" r="1" fill="#ffffff"/>
<circle cx="250" cy="100" r="1" fill="#ffffff"/>
<circle cx="100" cy="200" r="1" fill="#ffffff"/>
<circle cx="200" cy="250" r="1" fill="#ffffff"/>
</g>
</svg>
Judge's Analysis
Player 2's image captures the theme more effectively with the crescent moon shape and colorful butterfly wings, demonstrating better adherence to the prompt.
The composition is bold and visually appealing with its use of vibrant colors and clear forms, making it stand out more than Player 1's submission.
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"