Creative Challenge
"Triangular moon lighting a field of square sunflowers"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background Gradient -->
<linearGradient id="bg-gradient" x1="0" x2="0" y1="0" y2="1">
<stop offset="0" stop-color="#3498db" />
<stop offset="1" stop-color="#f1c40f" />
</linearGradient>
<rect x="0" y="0" width="300" height="300" fill="url(#bg-gradient)" />
<!-- Triangular Moon -->
<polygon points="150,50 100,150 200,150" fill="#fff">
<animateTransform attributeName="transform" type="rotate" from="0 150 150" to="360 150 150" dur="10s" repeatCount="indefinite" />
</polygon>
<circle cx="150" cy="150" r="20" fill="#fff" />
<!-- Sunflowers -->
<g transform="translate(50, 150)">
<rect x="-20" y="-20" width="40" height="40" fill="#ffd700" rx="5" />
<rect x="-15" y="-15" width="30" height="30" fill="#ffd700" rx="5" />
<rect x="-10" y="-10" width="20" height="20" fill="#ffd700" rx="5" />
<rect x="-5" y="-5" width="10" height="10" fill="#ffd700" rx="5" />
<rect x="0" y="0" width="5" height="5" fill="#ffd700" rx="2" />
</g>
<g transform="translate(100, 150)">
<rect x="-20" y="-20" width="40" height="40" fill="#ffd700" rx="5" />
<rect x="-15" y="-15" width="30" height="30" fill="#ffd700" rx="5" />
<rect x="-10" y="-10" width="20" height="20" fill="#ffd700" rx="5" />
<rect x="-5" y="-5" width="10" height="10" fill="#ffd700" rx="5" />
<rect x="0" y="0" width="5" height="5" fill="#ffd700" rx="2" />
</g>
<g transform="translate(150, 150)">
<rect x="-20" y="-20" width="40" height="40" fill="#ffd700" rx="5" />
<rect x="-15" y="-15" width="30" height="30" fill="#ffd700" rx="5" />
<rect x="-10" y="-10" width="20" height="20" fill="#ffd700" rx="5" />
<rect x="-5" y="-5" width="10" height="10" fill="#ffd700" rx="5" />
<rect x="0" y="0" width="5" height="5" fill="#ffd700" rx="2" />
</g>
<g transform="translate(200, 150)">
<rect x="-20" y="-20" width="40" height="40" fill="#ffd700" rx="5" />
<rect x="-15" y="-15" width="30" height="30" fill="#ffd700" rx="5" />
<rect x="-10" y="-10" width="20" height="20" fill="#ffd700" rx="5" />
<rect x="-5" y="-5" width="10" height="10" fill="#ffd700" rx="5" />
<rect x="0" y="0" width="5" height="5" fill="#ffd700" rx="2" />
</g>
<!-- Lighting Effect -->
<rect x="0" y="0" width="300" height="300" fill="url(#bg-gradient)" opacity="0.5" />
<circle cx="150" cy="150" r="100" fill="#fff" opacity="0.5" />
<circle cx="150" cy="150" r="50" fill="#fff" opacity="0.5" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background -->
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#0a0029" />
<stop offset="90%" stop-color="#1a0056" />
</linearGradient>
<radialGradient id="moonGlow" cx="50%" cy="50%" r="80%" fx="50%" fy="50%">
<stop offset="10%" stop-color="#fffce0" stop-opacity="0.7" />
<stop offset="100%" stop-color="#fffce0" stop-opacity="0" />
</radialGradient>
<pattern id="starsPattern" width="100" height="100" patternUnits="userSpaceOnUse">
<circle cx="10" cy="10" r="0.8" fill="white" opacity="0.8" />
<circle cx="25" cy="35" r="0.6" fill="white" opacity="0.7" />
<circle cx="40" cy="80" r="1" fill="white" opacity="0.9" />
<circle cx="70" cy="55" r="0.7" fill="white" opacity="0.8" />
<circle cx="85" cy="90" r="0.5" fill="white" opacity="0.6" />
<circle cx="90" cy="10" r="0.9" fill="white" opacity="0.8" />
</pattern>
<linearGradient id="fieldGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#081c06" />
<stop offset="100%" stop-color="#0e2d0a" />
</linearGradient>
<linearGradient id="stemGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#0e3b08" />
<stop offset="100%" stop-color="#1a5813" />
</linearGradient>
<filter id="moonBlur" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur in="SourceGraphic" stdDeviation="8" />
</filter>
</defs>
<!-- Sky background -->
<rect width="300" height="300" fill="url(#skyGradient)" />
<rect width="300" height="300" fill="url(#starsPattern)" />
<!-- Moon glow -->
<circle cx="80" cy="60" r="70" fill="url(#moonGlow)" filter="url(#moonBlur)" />
<!-- Triangular moon -->
<polygon points="80,20 120,80 40,80" fill="#fffce0" stroke="#fff8b0" stroke-width="1">
<animate attributeName="opacity" values="0.9;1;0.9" dur="5s" repeatCount="indefinite" />
</polygon>
<!-- Moon craters -->
<circle cx="80" cy="50" r="5" fill="#ede7c0" opacity="0.7" />
<circle cx="95" cy="65" r="4" fill="#ede7c0" opacity="0.7" />
<circle cx="65" cy="60" r="6" fill="#ede7c0" opacity="0.7" />
<!-- Field -->
<rect x="0" y="150" width="300" height="150" fill="url(#fieldGradient)" />
<!-- Moonlight on field -->
<path d="M 40 80 L 10 300 L 150 300 L 120 80 Z" fill="#fffff0" opacity="0.08" />
<!-- Sunflowers -->
<g id="sunflower">
<!-- Flower structure -->
<g>
<!-- Stem -->
<rect x="-4" y="20" width="8" height="70" rx="2" fill="url(#stemGradient)" />
<!-- Leaves -->
<path d="M 0 40 C -15 45, -18 55, -5 60 C -15 65, -15 75, -3 78" fill="#1a5813" />
<path d="M 0 50 C 15 55, 18 65, 5 70 C 15 75, 15 85, 3 88" fill="#1a5813" />
<!-- Square flower head -->
<rect x="-20" y="-20" width="40" height="40" rx="2" fill="#f0c010" />
<!-- Center -->
<rect x="-8" y="-8" width="16" height="16" fill="#663300" />
<!-- Petals (additional) -->
<rect x="-25" y="-10" width="10" height="20" fill="#f8d82a" />
<rect x="15" y="-10" width="10" height="20" fill="#f8d82a" />
<rect x="-10" y="-25" width="20" height="10" fill="#f8d82a" />
<rect x="-10" y="15" width="20" height="10" fill="#f8d82a" />
</g>
</g>
<!-- Clone sunflowers across field -->
<use href="#sunflower" x="50" y="200" transform="scale(0.9) rotate(5)" opacity="0.9" />
<use href="#sunflower" x="100" y="220" transform="scale(0.85) rotate(-3)" opacity="0.85" />
<use href="#sunflower" x="150" y="190" transform="scale(1) rotate(0)" opacity="1" />
<use href="#sunflower" x="200" y="230" transform="scale(0.8) rotate(8)" opacity="0.8" />
<use href="#sunflower" x="250" y="210" transform="scale(0.75) rotate(-5)" opacity="0.75" />
<use href="#sunflower" x="80" y="250" transform="scale(0.7) rotate(10)" opacity="0.7" />
<use href="#sunflower" x="130" y="240" transform="scale(0.65) rotate(-8)" opacity="0.65" />
<use href="#sunflower" x="180" y="260" transform="scale(0.6) rotate(15)" opacity="0.6" />
<use href="#sunflower" x="230" y="270" transform="scale(0.55) rotate(-12)" opacity="0.55" />
<!-- Foreground sunflower with animation -->
<use href="#sunflower" x="60" y="180" transform="scale(1.1)">
<animate attributeName="transform" type="rotate" from="0 60 180" to="5 60 180" dur="10s" repeatCount="indefinite" additive="sum" />
</use>
<!-- Additional decorative elements -->
<circle cx="270" cy="30" r="3" fill="white" opacity="0.9">
<animate attributeName="opacity" values="0.5;1;0.5" dur="3s" repeatCount="indefinite" />
</circle>
<circle cx="250" cy="50" r="2" fill="white" opacity="0.7">
<animate attributeName="opacity" values="0.3;0.8;0.3" dur="4s" repeatCount="indefinite" />
</circle>
<circle cx="230" cy="40" r="1.5" fill="white" opacity="0.6">
<animate attributeName="opacity" values="0.2;0.6;0.2" dur="5s" repeatCount="indefinite" />
</circle>
</svg>
Judge's Analysis
Player 2's image more clearly adheres to the prompt by depicting a triangular moon casting light over a field of square sunflowers, creating a whimsical night scene.
The technical quality and composition are strong, with clear elements and a cohesive visual appeal that aligns with the idea.
Player 1's submission, while visually appealing, is more abstract and less directly connected to the concept of a triangular moon and square sunflowers.
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
"Bubblegum skyscraper in a desert"
"A cat juggling fish while riding a unicycle on a rainbow"
"Astronaut riding a giant koi fish through a star-filled cosmic pond"
"Chameleon playing a tiny, neon-colored guitar on a dark branch"
"Galactic opera sung by cats in astronaut costumes"
"A flying fish wearing a top hat under a crescent moon"