MozaikaDesign system

Revolut — Design System

light · modern · high · custom · confidence 90%

Revolut banks at cinema scale: Aeonik Pro at 88px/500 ('Banking & Beyond') in white over metallic 3D card renders, 12-14px dense legal body, and white full-pill buttons. The palette is chrome, violet and night — a neobank that art-directs like a flagship phone launch, because its product is the object on screen.

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

Tokens

Revolut's decoded design system: background #FFFFFF, text #1F1F1F, accent #1A1AFF, link #1A1AFF, primary #000000; type scale h1 88px / h2 52px / body 14px; 12px spacing base; 20px base radius. The single interactive/action color is #1F1F1F — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FFFFFF
surface#F1F1F1
border#DDDDDD
text#1F1F1F
text_muted#747474
primary#000000
accent#1A1AFF
link#1A1AFF
button_bg#1F1F1F
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Per-section tokens (8)

Export: DESIGN.md

# Revolut — Design System

> light, modern, high, custom

Revolut banks at cinema scale: Aeonik Pro at 88px/500 ('Banking & Beyond') in white over metallic 3D card renders, 12-14px dense legal body, and white full-pill buttons. The palette is chrome, violet and night — a neobank that art-directs like a flagship phone launch, because its product is the object on screen.

## Colors

| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#F1F1F1` |
| border | `#DDDDDD` |
| text | `#1F1F1F` |
| text_muted | `#747474` |
| primary | `#000000` |
| accent | `#1A1AFF` |
| link | `#1A1AFF` |
| button_bg | `#1F1F1F` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#1F1F1F` — 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 `#1A1AFF` — one role, not several.
- **accent** `#1A1AFF` — accent for emphasis — keep it rare on the page.
- **primary** `#000000` — a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #1F1F1F).

## Typography

- Heading: **Aeonik Pro** _(free fallback: Newsreader)_
- Body: **Aeonik Pro** _(free fallback: Newsreader)_
- h1: 88px
- h2: 52px
- body: 14px

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

## Spacing
- base unit: 12px
- scale: 6px, 12px, 18px, 24px, 36px, 48px, 72px, 96px

## Radius
- base: 20px
- button: 9999px

## Primary button
- bg `#1F1F1F` · text `#FFFFFF` · radius 9999px

## 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 #1F1F1F — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFFFFF;
  --color-surface: #F1F1F1;
  --color-border: #DDDDDD;
  --color-text: #1F1F1F;
  --color-text-muted: #747474;
  --color-primary: #000000;  /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #1F1F1F). */
  --color-accent: #1A1AFF;  /* accent for emphasis — keep it rare on the page. */
  --color-link: #1A1AFF;  /* inline text links and link-styled controls. */
  --color-button-bg: #1F1F1F;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: Aeonik Pro may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "Aeonik Pro", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Aeonik Pro", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 88px;
  --text-h2: 52px;
  --text-body: 14px;
  --radius-base: 20px;
  --radius-button: 9999px;
  --spacing-1: 6px;
  --spacing-2: 12px;
  --spacing-3: 18px;
  --spacing-4: 24px;
  --spacing-5: 36px;
  --spacing-6: 48px;
  --spacing-7: 72px;
  --spacing-8: 96px;
}

Export: CSS variables

:root {
  /* action color #1F1F1F — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFFFFF;
  --surface: #F1F1F1;
  --border: #DDDDDD;
  --text: #1F1F1F;
  --text-muted: #747474;
  --primary: #000000;  /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #1F1F1F). */
  --accent: #1A1AFF;  /* accent for emphasis — keep it rare on the page. */
  --link: #1A1AFF;  /* inline text links and link-styled controls. */
  --button-bg: #1F1F1F;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Aeonik Pro", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Aeonik Pro", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 20px;
  --radius-button: 9999px;
}
/* fonts: Aeonik Pro may be proprietary — safe free fallback: Newsreader (Google Fonts). */