MozaikaDesign system

Skyscanner Mobile — Design System

light · consumer · high · confidence 85% · deep decode

Skyscanner Mobile — palette measured from official store listing screenshots (colors only; no font claims). Type scale shown is the platform HIG default.

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/skyscanner-mobile.

Tokens

Skyscanner Mobile's decoded design system: background #FFFFFF, text #00132F, accent #0062E3, link #0062E3, primary #0062E3; type scale h1 34px / h2 22px / body 17px; 8px spacing base; 12px base radius. The single interactive/action color is #0062E3 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FFFFFF
surface#EFF0F2
border#D8DBDF
text#00132F
text_muted#606C7E
primary#0062E3
accent#0062E3
link#0062E3
button_bg#0062E3
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Native design tokens

TokenValue
--bpk-canvas-contrast#eff3f8
--bpk-canvas-default#fff
--bpk-private-autosuggest-colour-bg-default#fff
--bpk-private-autosuggest-colour-bg-hover#f5f7fa
--bpk-private-autosuggest-colour-border-default#c1c7cf
--bpk-private-autosuggest-colour-text-close#161616
--bpk-private-badge-colour-bg-default#eff3f8
--bpk-private-badge-colour-bg-inverse#fff
--bpk-private-badge-colour-bg-outline#fff0
--bpk-private-badge-colour-bg-subtle#eff3f8

…and 110 more measured on the page.

Motion choreography (measured)

Load order: div.px-inner-loading-area

Responsive (measured)

Export: DESIGN.md

# Skyscanner Mobile — Design System

> light, consumer, high — deep decode (measured live)

Skyscanner Mobile — palette measured from official store listing screenshots (colors only; no font claims). Type scale shown is the platform HIG default.

## Colors

| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#EFF0F2` |
| border | `#D8DBDF` |
| text | `#00132F` |
| text_muted | `#606C7E` |
| primary | `#0062E3` |
| accent | `#0062E3` |
| link | `#0062E3` |
| button_bg | `#0062E3` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#0062E3` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds.
- `primary`, `accent`, `link`, `button_bg` are all `#0062E3` — one role, not several (your action color).
- **accent** `#0062E3` — THE accent / action color — interactive & must-notice only (buttons, links, focus, one key highlight); never large fills or backgrounds. Scarcity is what makes it read as designed.
- **Page coverage** (full-page screenshot pixels): `#FFFFFF` 91.2% · `#D0D7DE` 2.4% · `#959FAF` 1.4% · `#494B59` 1.4%

## Typography

- h1: 34px
- h2: 22px
- body: 17px

## Spacing
- base unit: 8px
- scale: 4px, 8px, 12px, 16px, 24px, 32px, 48px, 64px

## Radius
- base: 12px
- button: 12px

## Primary button
- bg `#0062E3` · text `#FFFFFF` · radius 12px

## Their own tokens (verbatim from :root)

| Token | Value |
|-------|-------|
| `--bpk-canvas-contrast` | `#eff3f8` |
| `--bpk-canvas-default` | `#fff` |
| `--bpk-private-autosuggest-colour-bg-default` | `#fff` |
| `--bpk-private-autosuggest-colour-bg-hover` | `#f5f7fa` |
| `--bpk-private-autosuggest-colour-border-default` | `#c1c7cf` |
| `--bpk-private-autosuggest-colour-text-close` | `#161616` |
| `--bpk-private-badge-colour-bg-default` | `#eff3f8` |
| `--bpk-private-badge-colour-bg-inverse` | `#fff` |
| `--bpk-private-badge-colour-bg-outline` | `#fff0` |
| `--bpk-private-badge-colour-bg-subtle` | `#eff3f8` |
| `--bpk-private-badge-colour-stroke-outline` | `#fff` |
| `--bpk-private-button-colour-bg-destructive` | `#e0e4e9` |

_…and 108 more measured on the page._

Prefer these names when extending their system — it's the brand's actual vocabulary.

## Motion choreography (measured)
Load order: `div.px-inner-loading-area` @0ms

Rebuild the timeline, not just the durations — order, delays and staggers above are the choreography.

## Responsive (measured)
- breakpoints: 350px · 688px
- mobile (390px): hero 20px · body 16px · nav: inline

## 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.
Hover/focus states, shadows and motion timings above are measured from the live page — match them exactly, don't re-guess them.

---

> **Decoded with Mozaika** — measured live, not guessed. Full decoded design system + one-command install: mozaika.design/ds/skyscanner-mobile

Export: Tailwind v4 (@theme)

@theme {
  /* action color #0062E3 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFFFFF;
  --color-surface: #EFF0F2;
  --color-border: #D8DBDF;
  --color-text: #00132F;
  --color-text-muted: #606C7E;
  --color-primary: #0062E3;  /* primary brand / action color. */
  --color-accent: #0062E3;  /* THE accent / action color — interactive & must-notice only (buttons, links, focus, one key highlight); never large fills or backgrounds. Scarcity is what makes it read as designed. */
  --color-link: #0062E3;  /* inline text links — shares the action color. */
  --color-button-bg: #0062E3;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  --text-h1: 34px;
  --text-h2: 22px;
  --text-body: 17px;
  --radius-base: 12px;
  --radius-button: 12px;
  --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 #0062E3 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFFFFF;
  --surface: #EFF0F2;
  --border: #D8DBDF;
  --text: #00132F;
  --text-muted: #606C7E;
  --primary: #0062E3;  /* primary brand / action color. */
  --accent: #0062E3;  /* THE accent / action color — interactive & must-notice only (buttons, links, focus, one key highlight); never large fills or backgrounds. Scarcity is what makes it read as designed. */
  --link: #0062E3;  /* inline text links — shares the action color. */
  --button-bg: #0062E3;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --radius: 12px;
  --radius-button: 12px;
}

/* their own tokens, verbatim from the site's :root */
:root {
  --bpk-canvas-contrast: #eff3f8;
  --bpk-canvas-default: #fff;
  --bpk-private-autosuggest-colour-bg-default: #fff;
  --bpk-private-autosuggest-colour-bg-hover: #f5f7fa;
  --bpk-private-autosuggest-colour-border-default: #c1c7cf;
  --bpk-private-autosuggest-colour-text-close: #161616;
  --bpk-private-badge-colour-bg-default: #eff3f8;
  --bpk-private-badge-colour-bg-inverse: #fff;
  --bpk-private-badge-colour-bg-outline: #fff0;
  --bpk-private-badge-colour-bg-subtle: #eff3f8;
  --bpk-private-badge-colour-stroke-outline: #fff;
  --bpk-private-button-colour-bg-destructive: #e0e4e9;
}