unbound-e2b / unbound-logo.svg
johnsonchromia's picture
Logo: add dark rounded-square background for light-mode visibility
f2a81cf verified
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" width="200" height="200" role="img" aria-label="Unbound logo">
<!-- Unbound mark — U + orb with dark rounded-square background.
Background ensures the white U stays visible on both light and dark
Hugging Face themes (transparent variant left the white U invisible
on the light theme). -->
<defs>
<mask id="uCutout" maskUnits="userSpaceOnUse">
<rect width="200" height="200" fill="white"/>
<circle cx="138" cy="62" r="22" fill="black"/>
</mask>
</defs>
<!-- Background — dark rounded square -->
<rect x="0" y="0" width="200" height="200" rx="32" ry="32" fill="#0E1116"/>
<!-- The U — chunky, rounded, opening downward -->
<g mask="url(#uCutout)">
<path d="
M 55 55
L 55 118
A 45 45 0 0 0 145 118
L 145 55
L 120 55
L 120 118
A 20 20 0 0 1 80 118
L 80 55
Z
" fill="#FFFFFF"/>
</g>
<!-- Orb floating at upper right, overlapping the U -->
<circle cx="138" cy="62" r="18" fill="#CC91F0"/>
<!-- Tiny specular highlight -->
<ellipse cx="132" cy="56" rx="5" ry="3.2" fill="#FFFFFF" opacity="0.2"/>
</svg>