'
. '
'
. '';
}
// Real bird PNG as
— CSS filter turns black silhouette → brand blue.
$filter = 'brightness(0) saturate(100%) invert(30%) sepia(100%) saturate(10000%) hue-rotate(190deg)';
return '
';
}
/**
* The "Beep!" brand wordmark shown at the bottom-right of every beep and reply.
*
* Rendered as a crisp inline SVG recreation of the 3D extruded brand logo —
* a blue-violet face with a darker-blue depth and navy outline. Stays sharp at
* any size and ships as ~1KB of markup (no image request). The matching raster
* version lives at assets/beep-wordmark.png (used in the feed header).
* To swap in the PNG here instead, hook the filter:
* add_filter('beep_post_wordmark', fn() => '');
*/
function beep_post_wordmark() {
// Build the 3D extrusion: stacked copies offset down-left, deepest first.
$depth = 7;
$extrude = '';
for ( $i = $depth; $i >= 1; $i-- ) {
$x = 9 - $i;
$y = 49 + $i;
$extrude .= '
';
ob_start();
?>