The Complete Guide to Email-Safe Fonts and Colors
Published
Choosing fonts and colors for an email newsletter isn’t quite like choosing them for a website — email clients have a much narrower, older set of rendering capabilities, and a font or color choice that looks fine in your preview can silently fail once it reaches a real inbox.
Why “web-safe” and “email-safe” aren’t the same thing
Modern browsers can load custom web fonts (Google Fonts, Adobe Fonts, self-hosted font files) without issue. Email clients are far more restrictive. Many, including Outlook’s Word-based engine, don’t load external font files at all — they fall back to whatever font is actually installed on the recipient’s device. That means even if your HTML specifies a custom font, most recipients will never see it; they’ll see your fallback font instead, whether you planned for that or not.
Fonts that actually render consistently
These are installed by default across nearly all major operating systems, and are the safe baseline for email body text:
- Arial / Helvetica (sans-serif)
- Georgia (serif)
- Times New Roman (serif)
- Verdana (sans-serif, slightly wider, very legible at small sizes)
- Trebuchet MS (sans-serif, less universal but widely supported)
- Courier New (monospace, for code or tabular content)
The practical approach: pick one of these as your primary font, and always include a generic fallback (font-family: Arial, sans-serif;) so that if a specific font somehow isn’t available, the client still falls back to some sans-serif rather than an unpredictable default.
Colors: less restrictive, but still worth checking
Color support in email is generally better than font support — hex colors on text, backgrounds, and borders render reliably across nearly every modern client when applied as inline styles. The real risks with color are less about client support and more about:
- Contrast and accessibility — a color that looks fine on a bright screen may fail contrast checks for readability, especially for recipients using dark mode in their email client, which can invert or adjust colors unpredictably
- Dark mode reinterpretation — some clients (notably Outlook.com and Apple Mail) apply their own dark-mode color transformations to emails that don’t explicitly account for dark mode, which can produce unexpected results with certain color choices, particularly near-white or near-black backgrounds
- Brand consistency — using inline hex values consistently (rather than named colors like “teal” which can render inconsistently) keeps your emails looking the same across clients
Putting it into practice
Every style — font family, font size, text color, link color — needs to be written as an inline style directly on each element to actually reach the recipient reliably, for the same reason covered in our guide to why Outlook strips email CSS. Our Markdown to Email HTML Converter includes font, size, and color controls that generate correctly inlined output automatically, using email-safe fonts as the available options.