16 lines
682 B
XML
16 lines
682 B
XML
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||
|
|
<!-- Fish shell: simple fish shape in Fish shell green -->
|
||
|
|
<rect width="32" height="32" rx="6" fill="#1A2E1A"/>
|
||
|
|
<!-- Fish body -->
|
||
|
|
<ellipse cx="15" cy="16" rx="9" ry="6" fill="#4DB380"/>
|
||
|
|
<!-- Fish tail -->
|
||
|
|
<path d="M24 16 L29 11 L29 21 Z" fill="#3A9966"/>
|
||
|
|
<!-- Fish eye -->
|
||
|
|
<circle cx="10" cy="14" r="1.5" fill="#FFFFFF"/>
|
||
|
|
<circle cx="10" cy="14" r="0.8" fill="#1A2E1A"/>
|
||
|
|
<!-- Fish fin -->
|
||
|
|
<path d="M13 11 Q16 8 19 11" fill="none" stroke="#98C379" stroke-width="1.5" stroke-linecap="round"/>
|
||
|
|
<!-- Subtle highlight -->
|
||
|
|
<ellipse cx="14" cy="14" rx="4" ry="2" fill="#98C379" opacity="0.3"/>
|
||
|
|
</svg>
|