Creative Challenge
"Crayon City: A Metropolis Built from Giant Crayons at Sunset"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Gradient Definitions -->
<defs>
<linearGradient id="crayon-gradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#FF69B4" />
<stop offset="20%" stop-color="#F2C464" />
<stop offset="40%" stop-color="#F7DC6F" />
<stop offset="60%" stop-color="#8BC34A" />
<stop offset="80%" stop-color="#03A9F4" />
<stop offset="100%" stop-color="#9C27B0" />
</linearGradient>
<radialGradient id="sunset-gradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#FFC107" />
<stop offset="20%" stop-color="#FF9800" />
<stop offset="40%" stop-color="#FFA07A" />
<stop offset="60%" stop-color="#FFC67D" />
<stop offset="80%" stop-color="#FFD7BE" />
<stop offset="100%" stop-color="#FFF8E1" />
</radialGradient>
</defs>
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="url(#sunset-gradient)" />
<!-- Crayon Cityscape -->
<g transform="translate(0, 50)">
<rect x="50" y="0" width="40" height="150" fill="url(#crayon-gradient)" rx="10" />
<rect x="100" y="30" width="30" height="120" fill="url(#crayon-gradient)" rx="10" />
<rect x="150" y="60" width="40" height="90" fill="url(#crayon-gradient)" rx="10" />
<rect x="200" y="90" width="30" height="60" fill="url(#crayon-gradient)" rx="10" />
<rect x="250" y="120" width="20" height="30" fill="url(#crayon-gradient)" rx="10" />
</g>
<!-- Crayon Details -->
<g transform="translate(0, 50)">
<circle cx="70" cy="20" r="10" fill="#FFFFFF" />
<circle cx="120" cy="50" r="10" fill="#FFFFFF" />
<circle cx="170" cy="80" r="10" fill="#FFFFFF" />
<circle cx="220" cy="110" r="10" fill="#FFFFFF" />
<circle cx="270" cy="140" r="10" fill="#FFFFFF" />
</g>
<!-- Crayon Textures -->
<g transform="translate(0, 50)">
<path d="M50 20h40v10h-40z" fill="#000000" opacity="0.2" />
<path d="M100 50h30v10h-30z" fill="#000000" opacity="0.2" />
<path d="M150 80h40v10h-40z" fill="#000000" opacity="0.2" />
<path d="M200 110h30v10h-30z" fill="#000000" opacity="0.2" />
<path d="M250 140h20v10h-20z" fill="#000000" opacity="0.2" />
</g>
<!-- Sunset Highlights -->
<g transform="translate(0, 50)">
<rect x="50" y="0" width="40" height="10" fill="#FFFFFF" opacity="0.5" />
<rect x="100" y="30" width="30" height="10" fill="#FFFFFF" opacity="0.5" />
<rect x="150" y="60" width="40" height="10" fill="#FFFFFF" opacity="0.5" />
<rect x="200" y="90" width="30" height="10" fill="#FFFFFF" opacity="0.5" />
<rect x="250" y="120" width="20" height="10" fill="#FFFFFF" opacity="0.5" />
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#FF6F61"/>
<stop offset="50%" stop-color="#FF9A8B"/>
<stop offset="100%" stop-color="#FFC3A0"/>
</linearGradient>
<linearGradient id="crayonGradient" x1="0" y1="0" x2="1" y2="0">
<stop offset="0%" stop-color="#FF6F61"/>
<stop offset="33%" stop-color="#FF9A8B"/>
<stop offset="66%" stop-color="#FFC3A0"/>
<stop offset="100%" stop-color="#FFDAB9"/>
</linearGradient>
<pattern id="crayonTexture" width="10" height="10" patternUnits="userSpaceOnUse">
<rect width="10" height="10" fill="#FFF" opacity="0.2"/>
<path d="M5,0 L10,5 L5,10 L0,5 Z" fill="#000" opacity="0.1"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)"/>
<g transform="translate(50, 100)">
<rect x="0" y="0" width="50" height="150" fill="url(#crayonGradient)" stroke="#000" stroke-width="2"/>
<rect x="60" y="30" width="50" height="120" fill="#FF6F61" stroke="#000" stroke-width="2"/>
<rect x="120" y="60" width="50" height="90" fill="#FF9A8B" stroke="#000" stroke-width="2"/>
<rect x="180" y="90" width="50" height="60" fill="#FFC3A0" stroke="#000" stroke-width="2"/>
<rect x="0" y="0" width="50" height="150" fill="url(#crayonTexture)"/>
<rect x="60" y="30" width="50" height="120" fill="url(#crayonTexture)"/>
<rect x="120" y="60" width="50" height="90" fill="url(#crayonTexture)"/>
<rect x="180" y="90" width="50" height="60" fill="url(#crayonTexture)"/>
</g>
<circle cx="250" cy="50" r="30" fill="#FFD700"/>
<path d="M230,50 L270,50 M250,30 L250,70" stroke="#FFD700" stroke-width="4"/>
<text x="150" y="250" font-family="Arial" font-size="20" fill="#FFF" text-anchor="middle">Crayon City</text>
</svg>
Judge's Analysis
Player 1's submission features a vibrant, multi-colored design that captures the imaginative concept of a city built from crayons, enhanced by the dynamic sunset gradient.
The use of color and light creates a visually appealing and creative interpretation of the prompt.
In contrast, Player 2's image, while clean and clear, lacks the same level of creativity and visual impact, appearing more simplistic and less colorful.
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
"Rainbow octopus juggling donuts in space"
"Astronaut playing chess with a giant snail on a starry cliff"
"Dancing skyscraper in a meadow"
"A snail with a cityscape shell in retro-futuristic style"
"Dancing jellyfish in a neon cyberpunk ocean"
"Clockwork dragon breathing gears and cogs instead of fire"