N26 — Design System
N26 banks Europe in its custom Extended face at 80px/400 — wide, level-headed letterforms over lifestyle film — with deep teal #003B39 accents and 24px-radius translucent buttons. Card renders in brushed pastels keep the fintech tactile; 'the first bank you'll love' argued in a typeface stretched wide enough to feel effortless.
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/n26.
Tokens
N26's decoded design system: background #FFFFFF, text #1B1B1B, accent #088177, link #088177, primary #003B39; type scale h1 80px / h2 58px / body 16px; 8px spacing base; 0px base radius. The single interactive/action color is #003B39 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FFFFFF |
| surface | #F1F1F1 |
| border | #DCDCDC |
| text | #1B1B1B |
| text_muted | #717171 |
| primary | #003B39 |
| accent | #088177 |
| link | #088177 |
| secondary | #E3D9CF |
| button_bg | #003B39 |
| button_text | #FFFFFF |
Using these colors
- Action color
#003B39— the single interactive color; only on things you click or must notice, never large fills. primary,button_bgare all#003B39— one role, not several (the action color).accent,linkare all#088177— one role, not several (the action color).- accent
#088177— accent for emphasis — keep it rare on the page. - secondary
#E3D9CF— 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: N26 Extended
- Body: N26
- h1: 80px
- h2: 58px
- body: 16px
Spacing
- base unit: 8px
- scale: 4px, 8px, 12px, 16px, 24px, 32px, 48px, 64px
Radii
- base: 0px
- button: 24px
Per-section tokens (2)
Export: DESIGN.md
# N26 — Design System > light, modern, medium, tailwind N26 banks Europe in its custom Extended face at 80px/400 — wide, level-headed letterforms over lifestyle film — with deep teal #003B39 accents and 24px-radius translucent buttons. Card renders in brushed pastels keep the fintech tactile; 'the first bank you'll love' argued in a typeface stretched wide enough to feel effortless. ## Colors | Role | Value | |------|-------| | bg | `#FFFFFF` | | surface | `#F1F1F1` | | border | `#DCDCDC` | | text | `#1B1B1B` | | text_muted | `#717171` | | primary | `#003B39` | | accent | `#088177` | | link | `#088177` | | secondary | `#E3D9CF` | | button_bg | `#003B39` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#003B39` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds. - `primary`, `button_bg` are all `#003B39` — one role, not several (your action color). - `accent`, `link` are all `#088177` — one role, not several. - **accent** `#088177` — accent for emphasis — keep it rare on the page. - **secondary** `#E3D9CF` — 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: **N26 Extended** _(free fallback: Newsreader)_ - Body: **N26** _(free fallback: Newsreader)_ - h1: 80px - h2: 58px - body: 16px > **Fonts —** N26 Extended may be proprietary — safe free fallback: Newsreader (Google Fonts). N26 may be proprietary — safe free fallback: Newsreader (Google Fonts). ## Spacing - base unit: 8px - scale: 4px, 8px, 12px, 16px, 24px, 32px, 48px, 64px ## Radius - base: 0px - button: 24px ## Primary button - bg `#003B39` · text `#FFFFFF` · radius 24px ## 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 #003B39 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FFFFFF;
--color-surface: #F1F1F1;
--color-border: #DCDCDC;
--color-text: #1B1B1B;
--color-text-muted: #717171;
--color-primary: #003B39; /* primary brand / action color. */
--color-accent: #088177; /* accent for emphasis — keep it rare on the page. */
--color-link: #088177; /* inline text links and link-styled controls. */
--color-secondary: #E3D9CF; /* 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: #003B39; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: N26 Extended may be proprietary — safe free fallback: Newsreader (Google Fonts). N26 may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "N26 Extended", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "N26", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 80px;
--text-h2: 58px;
--text-body: 16px;
--radius-base: 0px;
--radius-button: 24px;
--spacing-1: 4px;
--spacing-2: 8px;
--spacing-3: 12px;
--spacing-4: 16px;
--spacing-5: 24px;
--spacing-6: 32px;
--spacing-7: 48px;
--spacing-8: 64px;
}Export: CSS variables
:root {
/* action color #003B39 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FFFFFF;
--surface: #F1F1F1;
--border: #DCDCDC;
--text: #1B1B1B;
--text-muted: #717171;
--primary: #003B39; /* primary brand / action color. */
--accent: #088177; /* accent for emphasis — keep it rare on the page. */
--link: #088177; /* inline text links and link-styled controls. */
--secondary: #E3D9CF; /* 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: #003B39; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "N26 Extended", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "N26", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 0px;
--radius-button: 24px;
}
/* fonts: N26 Extended may be proprietary — safe free fallback: Newsreader (Google Fonts). N26 may be proprietary — safe free fallback: Newsreader (Google Fonts). */