Creative Challenge
"Mona Lisa wearing futuristic sunglasses"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background with subtle texture -->
<rect width="300" height="300" fill="url(#bgGradient)" />
<defs>
<linearGradient id="bgGradient" x1="0" y1="0" x2="300" y2="300">
<stop offset="0" stop-color="#1a1a2e" />
<stop offset="1" stop-color="#16213e" />
</linearGradient>
<pattern id="texture" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="10" cy="10" r="2" fill="#2d2d4e" />
</pattern>
</defs>
<!-- Sunglasses frame -->
<path d="M150,100 L220,140 L280,170 L260,220 L220,200 L180,220 L140,200 L100,220 L120,140 L80,170 L100,100 Z"
fill="url(#frameGradient)" stroke="#ff00ff" stroke-width="2" />
<defs>
<linearGradient id="frameGradient" x1="150" y1="100" x2="300" y2="300">
<stop offset="0" stop-color="#ff00ff" />
<stop offset="1" stop-color="#ff0080" />
</linearGradient>
</defs>
<!-- Lenses with reflection effect -->
<circle cx="180" cy="160" r="40" fill="url(#lensGradient)" />
<circle cx="220" cy="160" r="40" fill="url(#lensGradient)" />
<defs>
<radialGradient id="lensGradient" cx="150" cy="150" r="50" fx="150" fy="150">
<stop offset="0" stop-color="#00a8ff" stop-opacity="0.9" />
<stop offset="1" stop-color="#0080ff" stop-opacity="0.2" />
</radialGradient>
</defs>
<!-- Face outline -->
<path d="M200,100 C220,100 240,120 240,140 C240,160 220,180 200,180 C180,180 160,160 160,140 C160,120 180,100 200,100 Z"
fill="#f0d9b5" stroke="#8b4513" stroke-width="2" />
<!-- Hair with subtle pattern -->
<path d="M150,60 C170,60 190,70 210,80 C230,90 240,100 240,110 L240,130 C240,140 230,150 220,160 C210,170 190,170 170,170 C150,170 130,160 120,150 C110,140 100,130 100,120 L100,110 C100,100 110,90 120,80 C130,70 140,60 150,60 Z"
fill="#2d1810" />
<rect x="100" y="80" width="100" height="80" fill="url(#texture)" opacity="0.2" />
<!-- Geometric face details -->
<path d="M200,140 L220,160 L180,160 Z" fill="#ff00ff" opacity="0.5" />
<path d="M160,160 L180,180 L140,160 Z" fill="#ff00ff" opacity="0.5" />
<path d="M200,120 L220,140 L180,140 Z" fill="#ff00ff" opacity="0.5" />
<path d="M160,140 L180,160 L140,140 Z" fill="#ff00ff" opacity="0.5" />
<!-- Lips -->
<path d="M180,170 C190,170 200,180 200,190 C200,200 190,210 180,210 C170,210 160,200 160,190 C160,180 170,170 180,170 Z"
fill="#e6007e" stroke="#8b0000" stroke-width="1" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="faceGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FDD7E4;stop-opacity:1" />
<stop offset="100%" style="stop-color:#F8BBD0;stop-opacity:1" />
</linearGradient>
<radialGradient id="sunglassesGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#000000;stop-opacity:1" />
<stop offset="100%" style="stop-color:#58606B;stop-opacity:1" />
</radialGradient>
</defs>
<rect width="100%" height="100%" fill="#EDE6E3" />
<path d="M150 250Q120 240 110 220Q100 200 120 160Q140 100 160 120T190 180Q210 200 200 220Q190 240 150 250Z"
fill="url(#faceGradient)"/>
<ellipse cx="150" cy="100" rx="40" ry="50" fill="url(#faceGradient)" />
<path d="M130 105Q135 115 140 105Q145 95 150 105Q155 115 160 105" stroke="#333" stroke-width="3" fill="none" />
<rect x="110" y="75" width="80" height="20" rx="10" ry="10" fill="url(#sunglassesGradient)" />
<line x1="110" y1="85" x2="85" y2="80" stroke="#333" stroke-width="3" />
<line x1="190" y1="85" x2="215" y2="80" stroke="#333" stroke-width="3" />
<circle cx="150" cy="160" r="65" fill="none" stroke="#4A2E2C" stroke-width="3" stroke-dasharray="10,5" />
<path d="M90 250C90 170 210 170 210 250" fill="none" stroke="#4A2E2C" stroke-width="3" stroke-dasharray="5,5" />
<text x="50" y="295" font-family="Arial" font-size="16" fill="#4A2E2C">Mona Lisa 3000</text>
</svg>
Judge's Analysis
Player 2's submission more effectively captures the concept of 'Mona Lisa wearing futuristic sunglasses' by incorporating a recognizable human form with a clear depiction of sunglasses.
The inclusion of the 'Mona Lisa 3000' label adds a creative futuristic twist.
In contrast, Player 1's abstract approach lacks clear adherence to the prompt and is less visually communicative of 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
"Two-headed owl with neon wings under a cosmic night sky"
"Upside-down city skyline mirrored in a tranquil lake"
"A jellyfish cityscape floating above a mirrored ocean"
"Moonlit jellyfish dance in a night sky"
"Surreal clock melting over a tree branch at sunset"
"Jellyfish in a Teacup Floating Through Space"