MozaikaDesign system

Monzo — Design System

light · modern · medium · bootstrap · confidence 92%

Monzo banks in its own voice: custom Monzo Sans Display at 49px/800 speaks with high-street warmth, body text runs a generous 20px for genuine readability, and 500px-radius pills in deep navy anchor the hot-coral card photography. Bright product shots and plain-English copy make regulated finance feel like a friendly app store listing — consumer fintech at its most legible.

Open in Mozaika →

This is a static, crawlable rendering for search & AI engines. The interactive version — filters, live decode console, copy & export — is at https://mozaika.design/ds/monzo.

Tokens

Monzo's decoded design system: background #FFFFFF, text #091723, accent #FF4F64, link #091723, primary #112231; type scale h1 49px / h2 40px / body 20px; 4px spacing base; 16px base radius. The single interactive/action color is #091723 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FFFFFF
surface#F0F1F1
border#DADCDE
text#091723
text_muted#666F76
primary#112231
accent#FF4F64
link#091723
secondary#0000EE
button_bg#091723
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Per-section tokens (16)

Export: DESIGN.md

# Monzo — Design System

> light, modern, medium, bootstrap

Monzo banks in its own voice: custom Monzo Sans Display at 49px/800 speaks with high-street warmth, body text runs a generous 20px for genuine readability, and 500px-radius pills in deep navy anchor the hot-coral card photography. Bright product shots and plain-English copy make regulated finance feel like a friendly app store listing — consumer fintech at its most legible.

## Colors

| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#F0F1F1` |
| border | `#DADCDE` |
| text | `#091723` |
| text_muted | `#666F76` |
| primary | `#112231` |
| accent | `#FF4F64` |
| link | `#091723` |
| secondary | `#0000EE` |
| button_bg | `#091723` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#091723` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds.
- `link`, `button_bg` are all `#091723` — one role, not several (your action color).
- **accent** `#FF4F64` — accent for emphasis — keep it rare on the page.
- **primary** `#112231` — a brand color — but the call-to-action uses #091723, not this.
- **secondary** `#0000EE` — optional secondary accent — LOW decode confidence; use rarely (a status color or a single decorative moment) or omit it entirely. Prefer one accent unless the reference clearly shows two.

## Typography

- Heading: **Monzo Sans Display** _(free fallback: Newsreader)_
- Body: **Monzo Sans Text** _(free fallback: Newsreader)_
- h1: 49px
- h2: 40px
- body: 20px

> **Fonts —** Monzo Sans Display may be proprietary — safe free fallback: Newsreader (Google Fonts). Monzo Sans Text may be proprietary — safe free fallback: Newsreader (Google Fonts).

## Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px

## Radius
- base: 16px
- button: 500px

## Primary button
- bg `#091723` · text `#FFFFFF` · radius 500px

## How to apply
Paste the Tailwind `@theme` (or CSS variables) as your base, then build each
section to its spec — verify every color, radius, and font against these tokens.

Export: Tailwind v4 (@theme)

@theme {
  /* action color #091723 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFFFFF;
  --color-surface: #F0F1F1;
  --color-border: #DADCDE;
  --color-text: #091723;
  --color-text-muted: #666F76;
  --color-primary: #112231;  /* a brand color — but the call-to-action uses #091723, not this. */
  --color-accent: #FF4F64;  /* accent for emphasis — keep it rare on the page. */
  --color-link: #091723;  /* inline text links — shares the action color. */
  --color-secondary: #0000EE;  /* optional secondary accent — LOW decode confidence; use rarely (a status color or a single decorative moment) or omit it entirely. Prefer one accent unless the reference clearly shows two. */
  --color-button-bg: #091723;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: Monzo Sans Display may be proprietary — safe free fallback: Newsreader (Google Fonts). Monzo Sans Text may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "Monzo Sans Display", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Monzo Sans Text", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 49px;
  --text-h2: 40px;
  --text-body: 20px;
  --radius-base: 16px;
  --radius-button: 500px;
  --spacing-1: 2px;
  --spacing-2: 4px;
  --spacing-3: 6px;
  --spacing-4: 8px;
  --spacing-5: 12px;
  --spacing-6: 16px;
  --spacing-7: 24px;
  --spacing-8: 32px;
}

Export: CSS variables

:root {
  /* action color #091723 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFFFFF;
  --surface: #F0F1F1;
  --border: #DADCDE;
  --text: #091723;
  --text-muted: #666F76;
  --primary: #112231;  /* a brand color — but the call-to-action uses #091723, not this. */
  --accent: #FF4F64;  /* accent for emphasis — keep it rare on the page. */
  --link: #091723;  /* inline text links — shares the action color. */
  --secondary: #0000EE;  /* optional secondary accent — LOW decode confidence; use rarely (a status color or a single decorative moment) or omit it entirely. Prefer one accent unless the reference clearly shows two. */
  --button-bg: #091723;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Monzo Sans Display", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Monzo Sans Text", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 16px;
  --radius-button: 500px;
}
/* fonts: Monzo Sans Display may be proprietary — safe free fallback: Newsreader (Google Fonts). Monzo Sans Text may be proprietary — safe free fallback: Newsreader (Google Fonts). */