Creative Challenge
"Penguin-shaped hot air balloon floating above a desert oasis"
<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:#ff8a00"/>
<stop offset="100%" style="stop-color:#ffe4c4"/>
</linearGradient>
<radialGradient id="oasisGlow" cx="50%" cy="90%" r="50%">
<stop offset="0%" style="stop-color:#00876c"/>
<stop offset="100%" style="stop-color:#005242"/>
</radialGradient>
<pattern id="sandPattern" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="1" fill="#d4af37" opacity="0.3"/>
</pattern>
</defs>
<!-- Sky background -->
<rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)"/>
<!-- Desert with pattern -->
<path d="M0,200 Q150,180 300,200 L300,300 L0,300 Z" fill="#f4c430"/>
<path d="M0,200 Q150,180 300,200 L300,300 L0,300 Z" fill="url(#sandPattern)"/>
<!-- Oasis -->
<ellipse cx="150" cy="250" rx="60" ry="20" fill="url(#oasisGlow)"/>
<path d="M120,240 Q150,220 180,240" stroke="#00876c" fill="none" stroke-width="3"/>
<!-- Palm trees -->
<g transform="translate(100,235)">
<rect x="-2" y="0" width="4" height="15" fill="#654321"/>
<path d="M0,0 Q-10,-5 -15,-10 M0,0 Q10,-5 15,-10 M0,-2 Q-8,-8 -12,-15 M0,-2 Q8,-8 12,-15"
stroke="#228B22" stroke-width="2" fill="none"/>
</g>
<g transform="translate(200,235)">
<rect x="-2" y="0" width="4" height="15" fill="#654321"/>
<path d="M0,0 Q-10,-5 -15,-10 M0,0 Q10,-5 15,-10 M0,-2 Q-8,-8 -12,-15 M0,-2 Q8,-8 12,-15"
stroke="#228B22" stroke-width="2" fill="none"/>
</g>
<!-- Penguin balloon -->
<g transform="translate(150,120)">
<!-- Balloon body -->
<path d="M0,-80 Q-40,-70 -40,-20 Q-40,20 0,40 Q40,20 40,-20 Q40,-70 0,-80"
fill="#2F4F4F" stroke="#000" stroke-width="2"/>
<!-- White belly -->
<path d="M-20,-20 Q0,-10 20,-20 Q20,10 0,20 Q-20,10 -20,-20"
fill="white"/>
<!-- Eyes -->
<circle cx="-10" cy="-30" r="5" fill="white"/>
<circle cx="10" cy="-30" r="5" fill="white"/>
<circle cx="-8" cy="-30" r="2" fill="black"/>
<circle cx="12" cy="-30" r="2" fill="black"/>
<!-- Beak -->
<path d="M-5,-20 L5,-20 L0,-15 Z" fill="orange"/>
<!-- Basket -->
<rect x="-15" y="45" width="30" height="20" fill="#8B4513" stroke="#000"/>
<!-- Ropes -->
<path d="M-30,0 L-15,45 M30,0 L15,45 M-10,0 L-5,45 M10,0 L5,45"
stroke="#000" stroke-width="1" fill="none"/>
</g>
<!-- Sun -->
<circle cx="250" cy="50" r="20" fill="#FFD700"/>
<g transform="translate(250,50)">
<path d="M-30,0 L30,0 M0,-30 L0,30 M-20,-20 L20,20 M-20,20 L20,-20"
stroke="#FFD700" stroke-width="3" opacity="0.6"/>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="sunGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#fff9b1"/>
<stop offset="100%" stop-color="#f7d358"/>
</radialGradient>
<linearGradient id="sandGrad" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#e0c097"/>
<stop offset="100%" stop-color="#c2a17b"/>
</linearGradient>
<radialGradient id="penguinBodyGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#000000"/>
<stop offset="70%" stop-color="#333333"/>
</radialGradient>
<radialGradient id="penguinBellyGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#ffffff"/>
<stop offset="100%" stop-color="#e0e0e0"/>
</radialGradient>
<linearGradient id="balloonShadow" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="rgba(0,0,0,0.3)"/>
<stop offset="100%" stop-color="rgba(0,0,0,0)"/>
</linearGradient>
<pattern id="waterPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="2" fill="#a0dcef" />
</pattern>
</defs>
<!-- Sky -->
<rect x="0" y="0" width="300" height="300" fill="#87ceeb" />
<!-- Desert -->
<rect x="0" y="210" width="300" height="90" fill="url(#sandGrad)" />
<!-- Oasis: water pool with ripples -->
<ellipse cx="150" cy="240" rx="40" ry="15" fill="url(#waterPattern)" stroke="#80cce6" stroke-width="1" />
<ellipse cx="150" cy="240" rx="30" ry="10" fill="none" stroke="#80cce6" stroke-width="1" stroke-dasharray="2,2" />
<!-- Sun -->
<circle cx="250" cy="50" r="30" fill="url(#sunGrad)" />
<!-- Penguin Hot Air Balloon String -->
<path d="M150,170 C145,190 140,210 140,230" stroke="#555" stroke-width="2" fill="none" />
<path d="M160,170 C165,190 170,210 170,230" stroke="#555" stroke-width="2" fill="none" />
<!-- Penguin-shaped hot air balloon -->
<g id="penguinBalloon" transform="translate(150,100)">
<!-- Balloon Body (Penguin silhouette) -->
<path d="M0,-50
C20,-50 30,-30 30,-10
C30,10 15,30 0,40
C-15,30 -30,10 -30,-10
C-30,-30 -20,-50 0,-50 Z"
fill="url(#penguinBodyGrad)" stroke="#222" stroke-width="1" />
<!-- Belly shape -->
<path d="M0,-30
C10,-30 15,-20 15,-10
C15,0 10,10 0,15
C-10,10 -15,0 -15,-10
C-15,-20 -10,-30 0,-30 Z"
fill="url(#penguinBellyGrad)" stroke="#777" stroke-width="0.5"/>
<!-- Eyes -->
<circle cx="8" cy="-40" r="1.5" fill="#fff"/>
<circle cx="-8" cy="-40" r="1.5" fill="#fff"/>
<circle cx="8" cy="-40" r="0.7" fill="#000"/>
<circle cx="-8" cy="-40" r="0.7" fill="#000"/>
<!-- Beak -->
<polygon points="0,-35 3,-32 0,-29 -3,-32" fill="#f4a460"/>
<!-- Balloon basket attached beneath -->
<rect x="-6" y="42" width="12" height="8" fill="#8b4513" stroke="#5a2e0d" stroke-width="0.5"/>
<line x1="0" y1="40" x2="0" y2="42" stroke="#555" stroke-width="1"/>
<!-- Add small shadow under balloon -->
<ellipse cx="0" cy="50" rx="10" ry="2" fill="url(#balloonShadow)"/>
</g>
<!-- Additional desert details: a solitary palm tree -->
<g transform="translate(50,210)">
<!-- Palm trunk -->
<path d="M0,0 C5,-20 10,-40 8,-60" stroke="#8B4513" stroke-width="3" fill="none"/>
<!-- Palm leaves -->
<path d="M8,-60 C15,-65 25,-55 20,-45" stroke="#228B22" stroke-width="2" fill="none"/>
<path d="M8,-60 C5,-65 -5,-55 0,-45" stroke="#228B22" stroke-width="2" fill="none"/>
<path d="M8,-60 C12,-70 22,-70 18,-60" stroke="#228B22" stroke-width="2" fill="none"/>
</g>
<!-- Floating illusion: small clouds -->
<g fill="#fff" opacity="0.8">
<ellipse cx="80" cy="60" rx="12" ry="6"/>
<ellipse cx="90" cy="65" rx="12" ry="6"/>
<ellipse cx="85" cy="55" rx="12" ry="6"/>
</g>
<g fill="#fff" opacity="0.8">
<ellipse cx="170" cy="30" rx="8" ry="4"/>
<ellipse cx="180" cy="35" rx="8" ry="4"/>
<ellipse cx="175" cy="25" rx="8" ry="4"/>
</g>
</svg>
Judge's Analysis
Player 1's submission creatively integrates the penguin shape with clear details, making it immediately recognizable as a hot air balloon.
The vibrant colors and the well-defined desert oasis contribute to a visually appealing scene.
Player 2's submission, while also creative, lacks the same level of clarity and visual impact, making Player 1's image more compelling overall.
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 skyscraper shaped like a giant, sleeping cat in a bustling futuristic city"
"Fire-breathing squirrel in a bonsai garden"
"Floating city on a giant tortoise's back under a vibrant galaxy sky"
"A cyberpunk octopus playing a violin"
"A giraffe wearing a top hat, sipping tea on a floating lily pad"
"Flying elephant juggling planets in the night sky"