🎉 Lethbridge & Taber Chamber Members are eligible for 5% off some services. Send a Message for More Info.

Why Image Formats MATTER for your Logo

February 1, 2025
Lyndon Dueck

Leave the first comment

Picture this: You send an email to a potential client. Your logo looks sharp in light mode, but in dark mode? It ends up with an awkward white box around it. Not exactly the first impression you were hoping for, right?

I’m Lyndon, a graphic and web designer based in Alberta. Today, I’m diving into image formats and why the right choice can make all the difference for your business. From transparent backgrounds to file sizes, this post will help you understand when to use which format so your brand always looks its best. By the end, you’ll know exactly what to ask for when working with designers—or how to tackle it yourself.

A Quick Overview of File Types

There are a lot of image file types out there—each designed for a specific purpose. For instance:

• Printer-friendly formats like PDF and SVG are perfect for business cards, flyers, or large banners.

• Everyday formats like PNG and JPEG are the workhorses of the web.

• .heic files are unique to Apple, so if you’ve ever tried to transfer photos off your iPhone, you know what I’m talking about.

• GIFs have become synonymous with memes or simple animations.

While this isn’t an exhaustive list, today we’re focusing on JPEGs and PNGs—the two formats that really stand out in the online world.

Transparency and Why It Matters

Let’s talk transparency and why it’s crucial, especially for logos. Imagine setting up your email signature: your logo looks fine on a white background, but when your recipient switches to dark mode, that same logo ends up with an unsightly white box. Not only is this distracting, but it also comes off as unprofessional.

This is where PNG files shine. PNG supports an alpha channel—a feature that lets you have a clear, see-through background instead of a solid color fill. With a PNG’s transparency, you can overlay your logo on any background, and it will blend in seamlessly. But there’s a catch: if your logo includes dark elements, it might just disappear against a dark background—even with transparency.

The solution? Multiple logo variants. A light version of your logo (with white text and accents) is specifically designed for dark backgrounds. Many modern website builders allow you to automatically switch between your regular and inverse logo versions based on whether the user is in light or dark mode. This way, you avoid that jarring white box on a dark background and keep your branding consistent.

For those who want to automate this switch, CSS comes in handy. If you’re not familiar with CSS, it’s a coding language that tells elements on a webpage how to look and where to go—and yes, you can even use it in some email clients.

Here’s a quick example of the CSS code that makes this magic happen:

@media (prefers-color-scheme: dark) {
  .logo {
    content: url('logo-light.png');
  }
}
@media (prefers-color-scheme: light) {
  .logo {
    content: url('logo-dark.png');
  }
}

In this snippet, if someone’s device is in dark mode, the code swaps in the light logo; if it’s in light mode, it uses the dark logo. A simple step, but one that ensures your brand always looks on point.

Here’s some instructions on how to do this:

Apple Mail

1. Create Your Signature

• Open Apple Mail and navigate to Mail > Preferences > Signatures.

• Create a new signature (you can leave it as a placeholder for now).

2. Locate the Signature File

• Quit Apple Mail completely.

• In Finder, go to your Library folder:

~/Library/Mail/V7/MailData/Signatures/

(Note: The “V7” folder may differ based on your macOS version.)

3. Edit the Signature File

• Identify the most recent signature file (it will have a long, randomized name ending in .mailsignature).

• Open this file in a text editor (like TextEdit or Visual Studio Code).

4. Insert Your CSS and HTML

• Locate the HTML portion of the file.

• Add your CSS code. For example, you might insert a <style> block within the <head> section or, for email reliability, apply inline CSS directly to your elements.

• Save your changes.

5. Lock the File

• To prevent Apple Mail from overwriting your custom signature, right-click the file, choose Get Info, and check the Locked box.

6. Restart Apple Mail and Test

• Open Apple Mail again and verify that your signature now displays with the added CSS styling.

Outlook (Windows)

1. Create a New Signature

• Open Outlook and navigate to File > Options > Mail > Signatures.

• Create a new signature; a default version will be generated.

2. Locate the Signature Folder

• Close Outlook.

• Open Windows Explorer and go to:

%APPDATA%\Microsoft\Signatures

• Here, you’ll find several files for each signature (HTML, RTF, and TXT versions).

3. Edit the HTML File

• Open the HTML version of your signature in a text editor (such as Notepad or Notepad++).

• Insert your custom HTML and CSS code. For the best compatibility in emails, consider using inline CSS or include a <style> block at the top of the HTML file.

• Save your changes.

4. Reopen Outlook and Verify

• Launch Outlook again and check your signature. It should now reflect the custom styling defined by your CSS.

5. Alternative Method

• If editing the HTML file directly doesn’t work as expected, open your HTML file in a web browser.

• Select all the rendered content, copy it, and then paste it into the Outlook signature editor (accessible via File > Options > Mail > Signatures).

• This method sometimes preserves the visual formatting better.

Notes:

  • Since many email clients have restrictions on CSS for security reasons, inline CSS tends to be more reliable than external or embedded <style> blocks.
  • Always test your email signature by sending test emails to different email clients to ensure it displays as intended.

By following these steps, you’ll be able to integrate custom CSS into your email signature, ensuring your branding looks sharp whether your email is viewed in light or dark mode.

Tools and Best Practices

When it comes to creating and editing your images, you have plenty of options. If you’re using paid tools like Photoshop or Affinity Photo, you already have robust features to create transparent images and export them in various formats. But if you’re on a budget, free tools like Canva, Photopea, or Squoosh work right from your browser and can get the job done.

If you’re having a logo professionally designed, here’s a tip: always ask for multiple formats—PNG, JPEG, PDF, and SVG—in at least three variants: light, dark, and full-colour. This ensures you’re prepared for any situation, whether it’s a business card, an email signature, or a billboard.

At my company, Mountain Thirteen, this is our standard. We provide clients with three colour variants in all the necessary file formats, so you’re never caught off guard with an “Oh no, I need a transparent version!” moment at the last minute.

When to Use Each Format

Here’s a quick summary of when to use the most common file formats:

  • PNG – Use it when you need transparency or a crisp logo on various backgrounds.
  • JPEG – Great for photos and images where file size is a concern—ideal for product shots or blog images.
  • GIF – Perfect for simple animations or memes, but not typically used for professional branding.
  • PDF – Best for print materials like business cards, flyers, or posters. (Though, PDF and SVG open up a whole conversation about vector files—a topic for another day.)
  • SVG – Ideal for scalable logos or icons that need to remain sharp at any size. Like PDFs, SVGs have their own set of complexities that deserve their own discussion.

Wrap-Up

To sum it up: choosing the right image format for your logo is essential. Whether it’s ensuring transparency, optimizing file sizes, or having multiple logo variants for different backgrounds, the format you choose plays a key role in your overall branding.

A little planning goes a long way. Talk to your designer—or try out some of the free tools available—and make sure your brand assets are set up to shine on every platform.

If you have any questions or need help getting your logos in the right formats, feel free to drop a comment below or reach out to us at Mountain Thirteen. We’re always here to help—whether you need to tweak your current logo or design a brand new one with every file format you might need.

Thanks for reading, and stay tuned for more insights on making your brand look amazing!

Leave the first comment