4 models have responded to the "Surprise Animal SVG" challenge. Compare their approaches side-by-side on RIVAL. This response is part of RIVAL's open dataset of 5,600+ AI model responses.
Gemma 3N E2B It Free's response to the 'Surprise Animal SVG' challenge.
Create an SVG art of an animal of your choosing in a setting of your choosing. Surprise me.
Couldn't render this response
This model didn't return a displayable SVG image for this challenge.
Okay, here's an SVG art of a **Sunken City Octopus in a Bioluminescent Coral Garden**, designed to be a little unexpected! I'll describe it, and then provide the code. It's a bit complex, but I'll break it down.
**Concept:**
Imagine a vibrant, fantastical coral reef at night, teeming with life. But it's not just any reef. It's a sunken city, partially submerged, with coral growing *from* the ruins. A majestic octopus, with intricate bioluminescent patterns, is exploring the city's flooded halls. It's not menacing, but curious and serene. The colors are deep blues, greens, purples, and glowing oranges/yellows. The city ruins are stylized and don't look like any specific historical architecture – more like organic, flowing forms.
**SVG Code (with explanations):**
```xml
<svg width="800" height="600" xmlns="http://www.w3.org/2000/svg">
<!-- Background - Deep Ocean -->
<rect width="100%" height="100%" fill="#1e273f"/>
<!-- Coral Garden - Main Body -->
<g id="coral_garden">
<path d="M 0,300 C 100,200 200,150 300,100 C 400,150 500,200 600,300" fill="#48a969" stroke="#3d8613" stroke-width="2"/>
<path d="M 0,300 C 100,200 200,150 300,100 C 400,150 500,200 600,300" fill="#77a267" stroke="#598747" stroke-width="2"/>
<path d="M 0,300 C 100,200 200,150 300,100 C 400,150 500,200 600,300" fill="#a3c28a" stroke="#719955" stroke-width="2"/>
<!-- Smaller Coral/Branching Structures -->
<path d="M 100,300 C 120,250 150,200 180,150 C 210,100 240,150 270,200" fill="#e0f298" stroke="#98d35f" stroke-width="1"/>
<path d="M 300,300 C 320,250 350,200 380,150 C 410,100 440,150 470,200" fill="#f0f8ff" stroke="#d1e8b5" stroke-width="1"/>
<path d="M 500,300 C 520,250 550,200 580,150 C 610,100 640,150 670,200" fill="#e0f298" stroke="#98d35f" stroke-width="1"/>
</g>
<!-- Sunken City Ruins - Main Structure -->
<g id="city_ruins">
<rect x="250" y="250" width="150" height="100" fill="#808080" stroke="#696969" stroke-width="1"/>
<rect x="350" y="250" width="100" height="100" fill="#808080" stroke="#696969" stroke-width="1"/>
<rect x="450" y="250" width="100" height="100" fill="#808080" stroke="#696969" stroke-width="1"/>
<path d="M 270,270 C 290,250 310,230 330,210 C 350,190 370,170 390,150" stroke="#696969" stroke-width="1"/>
<path d="M 430,270 C 450,250 470,230 490,210 C 510,190 530,170 550,150" stroke="#696969" stroke-width="1"/>
</g>
<!-- Octopus - Main Body -->
<g id="octopus">
<ellipse cx="400" cy="250" rx="80" ry="40" fill="#009688" stroke="#007744" stroke-width="2"/>
<ellipse cx="350" cy="250" rx="60" ry="30" fill="#009688" stroke="#007744" stroke-width="2"/>
<ellipse cx="450" cy="250" rx="80" ry="40" fill="#009688" stroke="#007744" stroke-width="2"/>
</g>
<!-- Octopus - Tentacles -->
<g id="tentacles">
<path d="M 400,250 L 300,300 L 350,250 Z" fill="none" stroke="#009688" stroke-width="5"/>
<path d="M 400,250 L 450,300 L 400,250 Z" fill="none" stroke="#009688" stroke-width="5"/>
<path d="M 400,250 L 300,200 L 350,250 Z" fill="none" stroke="#009688" stroke-width="5"/>
<path d="M 400,250 L 450,200 L 400,250 Z" fill="none" stroke="#009688" stroke-width="5"/>
<path d="M 400,250 L 250,300 L 300,250 Z" fill="none" stroke="#009688" stroke-width="5"/>
<path d="M 400,250 L 500,300 L 450,250 Z" fill="none" stroke="#009688" stroke-width="5"/>
</g>
<!-- Bioluminescent Patterns - Octopus Body -->
<path d="M 350,250 C 370,230 400,210 430,250" fill="none" stroke="#ffcc00" stroke-width="2"/>
<path d="M 430,250 C 450,230 480,210 510,250" fill="none" stroke="#ffcc00" stroke-width="2"/>
<path d="M 300,250 C 280,230 250,210 220,250" fill="none" stroke="#ffcc00" stroke-width="2"/>
<path d="M 450,250 C 480,230 510,210 540,250" fill="none" stroke="#ffcc00" stroke-width="2"/>
<!-- Bioluminescent Patterns - Tentacles -->
<path d="M 300,300 C 280,320 250,340 220,330" fill="none" stroke="#ffcc00" stroke-width="2"/>
<path d="M 450,300 C 480,320 510,340 540,330" fill="none" stroke="#ffcc00