Pro admin bar icon

Pro’s admin bar icon sticks out quite a bit in the admin environment. I’d personally rather have a grey icon instead, like the rest of the icons.

Yeah, I’m really looking for things to complain about at this point :slight_smile:

We went with it because we’d argue that on a crowded admin bar, it’s nice if something as fundamental to building as the theme would pop out. If it’s something you can’t get used to, you could hack it in a child theme with this:

add_action( 'admin_bar_init', function() {
  wp_add_inline_style( 'admin-bar', '#wp-admin-bar-tco-main .tco-admin-bar-logo svg { fill: rgba(240, 245, 250, 0.6)!important; }' );
} );
1 Like

Thanks, I’ll use that solution :+1:

Sounds good!