Creative Challenge
"A hyperrealistic teardrop on a sunflower's petal reflecting a mini rainbow"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300" style="background:#08172F;">
<!-- Sunflower Petal -->
<path d="M150,100 Q160,50 170,100 T190,100 Q180,150 170,100 T150,100"
fill="url(#petalGradient)" stroke="#D35400" stroke-width="2"/>
<!-- Tear Drop -->
<path d="M150,140 Q155,120 160,130 T170,130 Q165,145 160,130 T150,130"
fill="url(#tearGradient)" filter="url(#shadow)"/>
<circle cx="150" cy="140" r="15" fill="url(#highlight)"/>
<circle cx="155" cy="135" r="8" fill="url(#shine)"/>
<!-- Rainbow Reflection -->
<circle cx="152" cy="138" r="6" fill="url(#rainbow)"/>
<!-- Sunflower Center -->
<circle cx="150" cy="130" r="20" fill="url(#centerGradient)"/>
<!-- Petal Highlights -->
<circle cx="165" cy="110" r="8" fill="url(#highlight)"/>
<circle cx="135" cy="110" r="8" fill="url(#highlight)"/>
<!-- Defs for Gradients -->
<defs>
<linearGradient id="petalGradient">
<stop offset="0%" stop-color="#FFA500"/>
<stop offset="100%" stop-color="#FF6B35"/>
</linearGradient>
<radialGradient id="tearGradient">
<stop offset="0%" stop-color="#9FE6B8"/>
<stop offset="70%" stop-color="#67D698"/>
<stop offset="100%" stop-color="#45C494"/>
</radialGradient>
<radialGradient id="highlight">
<stop offset="0%" stop-color="#FFFFFF"/>
<stop offset="70%" stop-color="#B3DDF5"/>
</radialGradient>
<radialGradient id="shine">
<stop offset="0%" stop-color="#E8F8FF"/>
<stop offset="50%" stop-color="#A3E1FF"/>
<stop offset="100%" stop-color="transparent"/>
</radialGradient>
<radialGradient id="rainbow">
<stop offset="0%" stop-color="#FF0000"/>
<stop offset="20%" stop-color="#FFA500"/>
<stop offset="40%" stop-color="#FFFF00"/>
<stop offset="60%" stop-color="#00FF00"/>
<stop offset="80%" stop-color="#0000FF"/>
<stop offset="100%" stop-color="#800080"/>
</radialGradient>
<radialGradient id="centerGradient">
<stop offset="0%" stop-color="#4B2E15"/>
<stop offset="100%" stop-color="#8B4513"/>
</radialGradient>
<!-- Shadow Effect -->
<filter id="shadow">
<feDropShadow dx="0" dy="2" stdDeviation="3" flood-opacity="0.5"/>
</filter>
</defs>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="rainbowGradient" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="red" />
<stop offset="17%" stop-color="orange" />
<stop offset="34%" stop-color="yellow" />
<stop offset="51%" stop-color="green" />
<stop offset="68%" stop-color="blue" />
<stop offset="85%" stop-color="indigo" />
<stop offset="100%" stop-color="violet" />
</radialGradient>
<linearGradient id="petalGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#FFEE93" />
<stop offset="100%" stop-color="#FFD700" />
</linearGradient>
<radialGradient id="teardropGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#C0E0F4" />
<stop offset="100%" stop-color="#98BBE5" />
</radialGradient>
</defs>
<!-- Sunflower petal -->
<path d="M150,180 C130,160 170,140 150,120 C130,140 150,100 200,100 C250,100 240,150 220,160 C200,170 250,200 180,190 C150,185 170,200 150,180 Z" fill="url(#petalGradient)" stroke="#E1AC00" stroke-width="2"/>
<!-- Teardrop -->
<ellipse cx="175" cy="155" rx="12" ry="18" fill="url(#teardropGradient)" opacity="0.9" />
<!-- Rainbow reflection -->
<circle cx="175" cy="155" r="8" fill="url(#rainbowGradient)" opacity="0.7" />
<!-- Teardrop highlights -->
<ellipse cx="176" cy="148" rx="4" ry="6" fill="white" opacity="0.5" />
<circle cx="170" cy="160" r="2" fill="white" opacity="0.3" />
<!-- Petal veins -->
<path d="M150,180 Q160,160 170,140" stroke="#DBA901" stroke-width="1" fill="none" />
<path d="M200,100 Q190,130 185,155" stroke="#DBA901" stroke-width="1" fill="none" />
</svg>
Judge's Analysis
Player 2's submission better matches the prompt by depicting a sunflower petal with a teardrop that reflects a mini rainbow.
The use of color and shape effectively conveys the concept, while Player 1's image lacks clear representation of a sunflower petal, teardrop, or rainbow, making it less relevant to the prompt.
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
"An octopus wearing a crown juggling teacups"
"Surreal watermelon hot air balloon over a desert"
"Surreal cityscape with buildings shaped like vegetables"
"Flying octopus delivering mail in a steampunk city"
"Giraffe on a unicycle juggling flamingos in the desert"
"Bicycle-riding octopus juggling flaming torches"