Skip to content

Instantly share code, notes, and snippets.

@tobob
Last active December 22, 2025 07:37
Show Gist options
  • Select an option

  • Save tobob/e371c63183b59876f53868bc29ff7100 to your computer and use it in GitHub Desktop.

Select an option

Save tobob/e371c63183b59876f53868bc29ff7100 to your computer and use it in GitHub Desktop.
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" role="img" aria-label="Owl logo">
<defs>
<style>
.stroke {
fill: none;
stroke: #1f2937; /* graphite outline */
stroke-width: 12;
stroke-linecap: round;
stroke-linejoin: round;
}
.owlFill { fill: #6F7E8C; } /* British Shorthair blue-gray */
.eyeWhite { fill: #FFFFFF; }
.eyeBlue { fill: #3B82F6; } /* iris */
.pupil { fill: #0B1220; }
.beakFill { fill: #C2410C; } /* light orange */
.beakStroke { stroke: #C2410C; } /* dark orange */
</style>
</defs>
<!-- Head -->
<path
class="stroke owlFill"
d="
M64 96
c0-24 18-44 40-44
c10 0 18 4 24 12
c6-8 14-12 24-12
c22 0 40 20 40 44
c0 56-30 88-64 88
s-64-32-64-88
z
"
/>
<!-- Ear tufts -->
<path class="stroke" d="M88 56l20 24M168 56l-20 24"/>
<!-- Eyes -->
<circle class="stroke eyeWhite" cx="96" cy="112" r="22"/>
<circle class="stroke eyeWhite" cx="160" cy="112" r="22"/>
<!-- Iris -->
<circle class="eyeBlue" cx="96" cy="112" r="10"/>
<circle class="eyeBlue" cx="160" cy="112" r="10"/>
<!-- Pupils -->
<circle class="pupil" cx="96" cy="112" r="4"/>
<circle class="pupil" cx="160" cy="112" r="4"/>
<!-- Beak -->
<path
class="stroke beakFill beakStroke"
d="M128 124l-10 14 10 10 10-10z"
/>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment