What font does Coca-Cola use?
The famous script is a logo, not a font. For everything else, The Coca-Cola Company introduced its own typeface, Unity, in 2018. The website uses two weights of it.
Short answer: Coca-Cola’s website uses TCCC Unity, the company’s own typeface, for all text. It appears in the CSS as TCCC-UnityText.
TCCC Unity
Self-hosted100%- CSS name
TCCC-UnityText- Weights
- 400, 700
- Sizes
- 38px · 32px · 24px · 16px · 14px · 12px
- Served from
- www.coca-cola.com
Sizes, weights and spacing by role
These are computed values from the live page, which is what the Font Inspector panel shows when you click each element.
| Role | Font | Size | Weight | Line height | Letter spacing |
|---|---|---|---|---|---|
| Headline | TCCC Unity | 38px | 700 | 1.26 | -0.039em |
| Subheading | TCCC Unity | 32px | 700 | 1.25 | -0.047em |
| Body text | TCCC Unity | 16px | 400 | 1.5 | normal |
| Navigation | TCCC Unity | 14px | 700 | 1.21 | normal |
The main font stack in the CSS:
font-family: Noto-regional, Noto-latin, TCCC-UnityText, sans-serif;- Bold headlines carry strong negative tracking, around -0.04em.
- The stack puts regional Noto fonts first, so markets with other scripts get a matching font before the brand typeface is tried.
Check any site yourself in one click.
Sites change their type without notice. Font Inspector shows the rendered font, size, weight and spacing of any text on coca-cola.com or anywhere else, and lists every font on the page. Free, no account.
About the fonts, and whether you can use them
TCCC Unity
A custom geometric sans serif created for The Coca-Cola Company, developed with Neville Brody’s studio.
Can you use it? TCCC Unity is proprietary. Outfit and Figtree are free geometric sans serifs with a similar friendly feel.
Finding a font does not license it. More in how to get a font you found, legally.
Get a similar look with a free font
This starter uses Outfit, which is open source, with the sizes and spacing measured above. It is an approximation, not a copy of Coca-Cola’s brand typeface.
/* Approximates the Coca-Cola look with a free font */
body {
font-family: "Outfit", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
h1 {
font-size: 2.375rem; /* 38px */
font-weight: 700;
line-height: 1.26;
letter-spacing: -0.039em;
}
p {
font-size: 1rem; /* 16px */
font-weight: 400;
line-height: 1.5;
}How we checked
We opened coca-cola.com in Chrome on September 21, 2026 and read the computed styles of its visible text: the declared font stack, the font actually rendered, and how much of the page’s text each family sets. That is the same data the Font Inspector extension shows under Fonts on this page. We re-check these pages periodically, and the date above shows the last inspection.
Coca-Cola and its typefaces are trademarks of their respective owners. Font Inspector is not affiliated with Coca-Cola.
Questions & answers
What font does Coca-Cola use on its website?
Coca-Cola’s website uses TCCC Unity, the company’s own typeface, for all text. It appears in the CSS as TCCC-UnityText.
Can I use the Coca-Cola font?
TCCC Unity is proprietary. Outfit and Figtree are free geometric sans serifs with a similar friendly feel.
What is a free font similar to TCCC Unity?
Outfit and Figtree are free on Google Fonts and give a similar feel. No free font is an exact match, so compare it with your own text first.
How can I check what font Coca-Cola uses myself?
Open coca-cola.com, then click any text with the Font Inspector extension, or right-click, choose Inspect and look at Rendered Fonts in the Computed tab. Sites change their typography, so checking the live page is the only way to be sure.