MozaikaDesign system

Qonto — Design System

light · professional · medium · tailwind · confidence 90%

Qonto banks European SMBs in its own grotesque: Qonto Sans at 72px/700 over full-bleed brand photography, 18px body, and warm neutrals that keep the finance approachable. Product UI floats in device frames between editorial statements — a business account styled with the confidence of a consumer brand and the restraint of a ledger.

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/qonto.

Tokens

Qonto's decoded design system: background #FFFFFF, text #050505, accent #9880FF, link #9880FF, primary #D5C8FF; type scale h1 72px / h2 56px / body 16px; 4px spacing base; 8px base radius. The single interactive/action color is #FFFFFF — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FFFFFF
surface#F0F0F0
border#D9D9D9
text#050505
text_muted#646464
primary#D5C8FF
accent#9880FF
link#9880FF
secondary#A585DB
button_bg#FFFFFF
button_text#050505

Using these colors

Typography

Spacing

Radii

Per-section tokens (11)

Export: DESIGN.md

# Qonto — Design System

> light, professional, medium, tailwind

Qonto banks European SMBs in its own grotesque: Qonto Sans at 72px/700 over full-bleed brand photography, 18px body, and warm neutrals that keep the finance approachable. Product UI floats in device frames between editorial statements — a business account styled with the confidence of a consumer brand and the restraint of a ledger.

## Colors

| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#F0F0F0` |
| border | `#D9D9D9` |
| text | `#050505` |
| text_muted | `#646464` |
| primary | `#D5C8FF` |
| accent | `#9880FF` |
| link | `#9880FF` |
| secondary | `#A585DB` |
| button_bg | `#FFFFFF` |
| button_text | `#050505` |

**Using these colors**

- **Action color** `#FFFFFF` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds.
- `accent`, `link` are all `#9880FF` — one role, not several.
- **accent** `#9880FF` — accent for emphasis — keep it rare on the page.
- **primary** `#D5C8FF` — a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #FFFFFF).
- **secondary** `#A585DB` — 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: **QontoSans** _(free fallback: Newsreader)_
- Body: **QontoSans** _(free fallback: Newsreader)_
- h1: 72px
- h2: 56px
- body: 16px

> **Fonts —** QontoSans may be proprietary — safe free fallback: Newsreader (Google Fonts).

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

## Radius
- base: 8px
- button: 8px

## Primary button
- bg `#FFFFFF` · text `#050505` · radius 8px

## 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 #FFFFFF — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFFFFF;
  --color-surface: #F0F0F0;
  --color-border: #D9D9D9;
  --color-text: #050505;
  --color-text-muted: #646464;
  --color-primary: #D5C8FF;  /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #FFFFFF). */
  --color-accent: #9880FF;  /* accent for emphasis — keep it rare on the page. */
  --color-link: #9880FF;  /* inline text links and link-styled controls. */
  --color-secondary: #A585DB;  /* 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: #FFFFFF;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #050505;
  /* fonts: QontoSans may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "QontoSans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "QontoSans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 72px;
  --text-h2: 56px;
  --text-body: 16px;
  --radius-base: 8px;
  --radius-button: 8px;
  --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 #FFFFFF — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFFFFF;
  --surface: #F0F0F0;
  --border: #D9D9D9;
  --text: #050505;
  --text-muted: #646464;
  --primary: #D5C8FF;  /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #FFFFFF). */
  --accent: #9880FF;  /* accent for emphasis — keep it rare on the page. */
  --link: #9880FF;  /* inline text links and link-styled controls. */
  --secondary: #A585DB;  /* 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: #FFFFFF;  /* primary-button fill — the main call-to-action color. */
  --button-text: #050505;
  --font-heading: "QontoSans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "QontoSans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 8px;
  --radius-button: 8px;
}
/* fonts: QontoSans may be proprietary — safe free fallback: Newsreader (Google Fonts). */