Creative Challenge
"Two giraffes tangled in a game of twister on a starry night."
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<!-- Night sky gradient -->
<radialGradient id="skyGrad" cx="50%" cy="30%" r="80%">
<stop offset="0%" stop-color="#0a0f3d"/>
<stop offset="100%" stop-color="#000"/>
</radialGradient>
<!-- Giraffe spots pattern -->
<pattern id="spots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<rect width="20" height="20" fill="#f5d07e"/>
<circle cx="6" cy="6" r="4" fill="#c68642"/>
<circle cx="14" cy="14" r="3" fill="#c68642"/>
</pattern>
<!-- Horn gradient -->
<linearGradient id="hornGrad" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#ffe4a1"/>
<stop offset="100%" stop-color="#d4a76d"/>
</linearGradient>
<!-- Twister circle gradients -->
<radialGradient id="redGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ff6b6b"/>
<stop offset="100%" stop-color="#c0392b"/>
</radialGradient>
<radialGradient id="greenGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#6bff8f"/>
<stop offset="100%" stop-color="#27ae60"/>
</radialGradient>
<radialGradient id="blueGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#6bbaff"/>
<stop offset="100%" stop-color="#2980b9"/>
</radialGradient>
<radialGradient id="yellowGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#fff96b"/>
<stop offset="100%" stop-color="#f1c40f"/>
</radialGradient>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#skyGrad)" />
<!-- Stars -->
<g fill="#fff">
<circle cx="20" cy="30" r="1.2"/>
<circle cx="100" cy="50" r="1.5"/>
<circle cx="250" cy="70" r="1"/>
<circle cx="200" cy="20" r="1.8"/>
<circle cx="150" cy="100" r="1.3"/>
<circle cx="80" cy="120" r="1.1"/>
<circle cx="270" cy="140" r="1.4"/>
<circle cx="50" cy="200" r="1.2"/>
<circle cx="220" cy="180" r="1.6"/>
<circle cx="180" cy="250" r="1.2"/>
</g>
<!-- Twister Mat -->
<g transform="translate(50,180)">
<ellipse cx="100" cy="30" rx="120" ry="40" fill="#333" opacity="0.6"/>
<g>
<!-- 4 rows of circles -->
<g id="row">
<circle cx="50" cy="15" r="12"/>
<circle cx="90" cy="15" r="12"/>
<circle cx="130" cy="15" r="12"/>
<circle cx="170" cy="15" r="12"/>
</g>
<use href="#row" y="25" fill="url(#redGrad)"/>
<use href="#row" y="50" fill="url(#greenGrad)"/>
<use href="#row" y="75" fill="url(#blueGrad)"/>
<use href="#row" y="100" fill="url(#yellowGrad)"/>
</g>
</g>
<!-- Giraffe 1 -->
<g id="giraffe1" transform="translate(90,120) rotate(-10)">
<!-- Body -->
<ellipse cx="0" cy="40" rx="15" ry="30" fill="url(#spots)"/>
<!-- Legs -->
<rect x="-14" y="65" width="6" height="40" fill="url(#spots)" transform="rotate(5 -14,65)"/>
<rect x="-4" y="65" width="6" height="40" fill="url(#spots)" transform="rotate(-5 -4,65)"/>
<rect x="4" y="65" width="6" height="40" fill="url(#spots)" transform="rotate(3 4,65)"/>
<rect x="14" y="65" width="6" height="40" fill="url(#spots)" transform="rotate(-3 14,65)"/>
<!-- Neck -->
<path d="M0,10 C-5,-20 10,-60 15,-90" stroke="url(#spots)" stroke-width="20" fill="none" stroke-linecap="round"/>
<!-- Head -->
<g transform="translate(15,-90)">
<ellipse cx="0" cy="0" rx="12" ry="8" fill="url(#spots)"/>
<circle cx="-5" cy="-2" r="1.5" fill="#000"/>
<circle cx="3" cy="-1" r="1.5" fill="#000"/>
<!-- Horns -->
<rect x="-3" y="-10" width="2" height="8" fill="url(#hornGrad)"/>
<rect x="1" y="-10" width="2" height="8" fill="url(#hornGrad)"/>
</g>
</g>
<!-- Giraffe 2 -->
<g id="giraffe2" transform="translate(200,130) scale(-1,1) rotate(15)">
<!-- Body -->
<ellipse cx="0" cy="40" rx="15" ry="30" fill="url(#spots)"/>
<!-- Legs -->
<rect x="-14" y="65" width="6" height="40" fill="url(#spots)" transform="rotate(8 -14,65)"/>
<rect x="-4" y="65" width="6" height="40" fill="url(#spots)" transform="rotate(-8 -4,65)"/>
<rect x="4" y="65" width="6" height="40" fill="url(#spots)" transform="rotate(4 4,65)"/>
<rect x="14" y="65" width="6" height="40" fill="url(#spots)" transform="rotate(-4 14,65)"/>
<!-- Neck -->
<path d="M0,10 C5,-20 -10,-60 -15,-90" stroke="url(#spots)" stroke-width="20" fill="none" stroke-linecap="round"/>
<!-- Head -->
<g transform="translate(-15,-90)">
<ellipse cx="0" cy="0" rx="12" ry="8" fill="url(#spots)"/>
<circle cx="-5" cy="-2" r="1.5" fill="#000"/>
<circle cx="3" cy="-1" r="1.5" fill="#000"/>
<!-- Horns -->
<rect x="-3" y="-10" width="2" height="8" fill="url(#hornGrad)"/>
<rect x="1" y="-10" width="2" height="8" fill="url(#hornGrad)"/>
</g>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<!-- Starry Night Background -->
<defs>
<radialGradient id="nightSky" cx="50%" cy="50%" r="80%">
<stop offset="0%" stop-color="#0b0c10" />
<stop offset="100%" stop-color="#1f2833" />
</radialGradient>
<pattern id="stars" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="2" cy="2" r="0.7" fill="#ffffff" opacity="0.8"/>
</pattern>
<linearGradient id="twisterGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#ff4b1f"/>
<stop offset="50%" stop-color="#ff9068"/>
<stop offset="100%" stop-color="#ff4b1f"/>
</linearGradient>
</defs>
<!-- Background fill -->
<rect width="300" height="300" fill="url(#nightSky)"/>
<rect width="300" height="300" fill="url(#stars)" opacity="0.3"/>
<!-- Twister Mat (stylized as a circular mat with colored spots) -->
<circle cx="150" cy="220" r="50" fill="url(#twisterGradient)" opacity="0.6"/>
<circle cx="150" cy="220" r="40" fill="none" stroke="#ffffff" stroke-width="2" stroke-dasharray="4 2"/>
<!-- Colored circles representing twister spots -->
<circle cx="150" cy="170" r="8" fill="#00a8cc"/>
<circle cx="110" cy="220" r="8" fill="#e63946"/>
<circle cx="150" cy="270" r="8" fill="#f4a261"/>
<circle cx="190" cy="220" r="8" fill="#a8dadc"/>
<!-- Giraffe 1 (Left) -->
<g id="giraffe1" transform="translate(60,50) scale(0.9)">
<!-- Body -->
<ellipse cx="50" cy="80" rx="20" ry="40" fill="#f0c987" stroke="#d4a373" stroke-width="2"/>
<!-- Neck -->
<rect x="45" y="20" width="10" height="60" fill="#f0c987" stroke="#d4a373" stroke-width="2"/>
<!-- Head -->
<ellipse cx="50" cy="10" rx="12" ry="16" fill="#f0c987" stroke="#d4a373" stroke-width="2"/>
<!-- Ears -->
<path d="M42,2 q-3,-5 0,-8" fill="none" stroke="#d4a373" stroke-width="2"/>
<path d="M58,2 q3,-5 0,-8" fill="none" stroke="#d4a373" stroke-width="2"/>
<!-- Spots -->
<circle cx="50" cy="70" r="3" fill="#d4a373"/>
<circle cx="60" cy="90" r="3" fill="#d4a373"/>
<circle cx="40" cy="100" r="3" fill="#d4a373"/>
</g>
<!-- Giraffe 2 (Right, intertwined) -->
<g id="giraffe2" transform="translate(150,40) scale(0.9) rotate(15,50,50)">
<!-- Body -->
<ellipse cx="50" cy="80" rx="20" ry="40" fill="#f0c987" stroke="#d4a373" stroke-width="2"/>
<!-- Neck in a twisted position -->
<path d="M50,80 C52,60 48,40 50,20" fill="none" stroke="#f0c987" stroke-width="10" stroke-linecap="round" opacity="0.9"/>
<path d="M50,80 C52,60 48,40 50,20" fill="none" stroke="#d4a373" stroke-width="2" stroke-linecap="round"/>
<!-- Head -->
<ellipse cx="50" cy="10" rx="12" ry="16" fill="#f0c987" stroke="#d4a373" stroke-width="2"/>
<!-- Ears -->
<path d="M42,2 q-3,-5 0,-8" fill="none" stroke="#d4a373" stroke-width="2"/>
<path d="M58,2 q3,-5 0,-8" fill="none" stroke="#d4a373" stroke-width="2"/>
<!-- Spots -->
<circle cx="50" cy="70" r="3" fill="#d4a373"/>
<circle cx="60" cy="90" r="3" fill="#d4a373"/>
<circle cx="40" cy="100" r="3" fill="#d4a373"/>
</g>
<!-- Twisted interaction connectors -->
<path d="M80,90 C100,110 140,110 160,90" fill="none" stroke="#ffffff" stroke-width="2" stroke-dasharray="3 3"/>
<path d="M80,100 C100,120 140,120 160,100" fill="none" stroke="#ffffff" stroke-width="2" stroke-dasharray="3 3"/>
<!-- Additional Decorative Stars -->
<g fill="#ffffff">
<circle cx="20" cy="30" r="1.5"/>
<circle cx="280" cy="40" r="1.2"/>
<circle cx="250" cy="70" r="1.3"/>
<circle cx="100" cy="20" r="0.8"/>
<circle cx="200" cy="25" r="1"/>
<circle cx="270" cy="100" r="1.5"/>
<circle cx="30" cy="200" r="1.1"/>
<circle cx="260" cy="180" r="0.9"/>
<circle cx="40" cy="260" r="1.2"/>
<circle cx="80" cy="280" r="1.3"/>
<circle cx="150" cy="5" r="1.5"/>
<circle cx="220" cy="15" r="1.2"/>
</g>
</svg>
Judge's Analysis
Player 1's submission clearly and creatively depicts two giraffes tangled in a game of Twister, adhering closely to the prompt.
The use of color, recognizable Twister dots, and the starry background effectively combines the elements of playfulness and a night setting.
Player 2's submission, while abstract and visually interesting, lacks clarity and adherence to the specific theme of giraffes playing Twister, making Player 1 the stronger choice.
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
"A dragonfly wearing a vintage aviator helmet mid-flight over a glowing pond."
"A cactus wearing a top hat under a disco ball."
"An underwater tea party with octopuses serving cups to fish and turtles."