A new name, a new logo
Firefish is an open-source social media platform in the fediverse.
They were rebranding with a new, funkier name and needed a new logo to match.
We had some constructive back and forth tweaking the colours to feel softer, and choosing a more friendly typeface, but overall it was a very quick and satisfying project.
Blueprint/Design
We wanted a clean, modern, geometric silhouette.
With a fiery gradient fill and round eyes, we added personality and depth.
Animated Logo
As a fun little extra, the client asked if it was possible to animate the logo.
We are big fans of SVG animation and we were happy to oblige. You can insert CSS animations into SVG markup, which is performant and cheap.
We simply added some CSS @keyframe
animations to scale the eye height and some opacity/translation to the bubbles and it worked great.
@keyframes blink {
95% { transform: scaleY(1); }
97.5% { transform: scaleY(0); }
100% { transform: scaleY(1); }
}
Launch Video
To boost the launch we released a short, simple animation that was widely shared around the fediverse.
Logo Pack
We don’t just hand over a single image when we complete a logo.
We create a complete logo pack – in this case 50 files! With versions optimised for social media avatars, OG share cards, favicons, mono black and white versions in PNG and SVG, along with the Adobe Illustrator master .ai file and a Figma assets file.
├── 01 Logo Master │ ├── firefish-assets.fig │ └── firefish-logo PRODUCTION.ai ├── 02 Logo Web │ ├── PNG │ │ ├── favicon-simple.png │ │ ├── favicon.png │ │ ├── firefish-logo-social-dark.png │ │ ├── firefish-logo-social-light.png │ │ ├── firefish-logo-landscape.png │ │ ├── firefish-logo-square.png │ │ └── social.png │ └── SVG │ ├── favicon-simple.svg │ ├── favicon.svg │ ├── firefish-logo-social-dark.svg │ ├── firefish-logo-social-light.svg │ ├── firefish-logo-landscape.svg │ ├── firefish-logo-square.svg │ └── social.svg ├── 03 Logo PNG │ ├── firefish-logo-landscape-large.png │ ├── firefish-logo-landscape-small.png │ ├── firefish-logo-landscape-standard.png │ ├── firefish-logo-square-large.png │ ├── firefish-logo-square-small.png │ ├── firefish-logo-square-standard.png │ ├── firefish-logo-text-large.png │ ├── firefish-logo-text-small.png │ └── firefish-logo-text-standard.png ├── 04 Logo PNG Mono │ ├── firefish-logo-landscape-black-large.png │ ├── firefish-logo-landscape-black-small.png │ ├── firefish-logo-landscape-black-standard.png │ ├── firefish-logo-landscape-firefish-logo-landscape-white-large.png │ ├── firefish-logo-landscape-firefish-logo-landscape-white-small.png │ ├── firefish-logo-landscape-firefish-logo-landscape-white-standard.png │ ├── firefish-logo-square-white-large.png │ ├── firefish-logo-square-white-small.png │ ├── firefish-logo-square-white-standard.png │ ├── firefish-logo-square-firefish-logo-landscape-black-large.png │ ├── firefish-logo-square-firefish-logo-landscape-black-small.png │ ├── firefish-logo-square-firefish-logo-landscape-black-standard.png │ ├── firefish-logo-text-firefish-logo-landscape-black-large.png │ ├── firefish-logo-text-firefish-logo-landscape-black-small.png │ ├── firefish-logo-text-firefish-logo-landscape-black-standard.png │ ├── firefish-logo-text-white-large.png │ ├── firefish-logo-text-white-small.png │ └── firefish-logo-text-white-standard.png ├── 04 Logo SVG Mono │ ├── firefish-logo-landscape-black-small.svg │ ├── firefish-logo-landscape-firefish-logo-landscape-white-small.svg │ ├── firefish-logo-square-white-small.svg │ ├── firefish-logo-square-firefish-logo-landscape-black-small.svg │ ├── firefish-logo-text-firefish-logo-landscape-black-small.svg │ └── firefish-logo-text-white-small.svg └── 05 Logo SVG Animation └── firefish-logo-animated.svg