MozaikaDesign system

Warp — Design System

light · modern · medium · tailwind · confidence 90%

The full decoded design system for Warp: color roles, type scale, spacing, radii and paste-ready DESIGN.md / Tailwind / CSS exports.

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

Tokens

Warp's decoded design system: background #FCFCFC, text #0A0908, accent #01A4FF, link #01A4FF, primary #656D76; type scale h1 80px / h2 20px / body 14px; 6px spacing base; 3px base radius. The single interactive/action color is #0A0908 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FCFCFC
surface#EDEDED
border#D7D7D7
text#0A0908
text_muted#656564
primary#656D76
accent#01A4FF
link#01A4FF
secondary#8B949E
button_bg#0A0908
button_text#F8F5EE

Using these colors

Typography

Spacing

Radii

Per-section tokens (12)

Export: DESIGN.md

# Warp — Design System

> light, modern, medium, tailwind

## Colors

| Role | Value |
|------|-------|
| bg | `#FCFCFC` |
| surface | `#EDEDED` |
| border | `#D7D7D7` |
| text | `#0A0908` |
| text_muted | `#656564` |
| primary | `#656D76` |
| accent | `#01A4FF` |
| link | `#01A4FF` |
| secondary | `#8B949E` |
| button_bg | `#0A0908` |
| button_text | `#F8F5EE` |

**Using these colors**

- **Action color** `#0A0908` — 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 `#01A4FF` — one role, not several.
- **accent** `#01A4FF` — accent for emphasis — keep it rare on the page.
- **primary** `#656D76` — a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #0A0908).
- **secondary** `#8B949E` — 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: **Matter** _(free fallback: Inter)_
- Body: **Matter** _(free fallback: Inter)_
- Mono: **Azeret Mono**
- h1: 80px
- h2: 20px
- body: 14px

> **Fonts —** Matter is proprietary — closest free match: Inter (Google). Load Inter; keep Matter first so licensed users still get it.

## Spacing
- base unit: 6px
- scale: 3px, 6px, 9px, 12px, 18px, 24px, 36px, 48px

## Radius
- base: 3px
- button: 0px

## Primary button
- bg `#0A0908` · text `#F8F5EE` · radius 0px

## 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 #0A0908 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FCFCFC;
  --color-surface: #EDEDED;
  --color-border: #D7D7D7;
  --color-text: #0A0908;
  --color-text-muted: #656564;
  --color-primary: #656D76;  /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #0A0908). */
  --color-accent: #01A4FF;  /* accent for emphasis — keep it rare on the page. */
  --color-link: #01A4FF;  /* fails contrast on the background (~2.6:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
  --color-secondary: #8B949E;  /* 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: #0A0908;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #F8F5EE;
  /* fonts: Matter is proprietary — closest free match: Inter (Google). Load Inter; keep Matter first so licensed users still get it. */
  --font-heading: "Matter", "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Matter", "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: "Azeret Mono", ui-monospace, monospace;
  --text-h1: 80px;
  --text-h2: 20px;
  --text-body: 14px;
  --radius-base: 3px;
  --radius-button: 0px;
  --spacing-1: 3px;
  --spacing-2: 6px;
  --spacing-3: 9px;
  --spacing-4: 12px;
  --spacing-5: 18px;
  --spacing-6: 24px;
  --spacing-7: 36px;
  --spacing-8: 48px;
}

Export: CSS variables

:root {
  /* action color #0A0908 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FCFCFC;
  --surface: #EDEDED;
  --border: #D7D7D7;
  --text: #0A0908;
  --text-muted: #656564;
  --primary: #656D76;  /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #0A0908). */
  --accent: #01A4FF;  /* accent for emphasis — keep it rare on the page. */
  --link: #01A4FF;  /* fails contrast on the background (~2.6:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
  --secondary: #8B949E;  /* 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: #0A0908;  /* primary-button fill — the main call-to-action color. */
  --button-text: #F8F5EE;
  --font-heading: "Matter", "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Matter", "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: "Azeret Mono", ui-monospace, monospace;
  --radius: 3px;
  --radius-button: 0px;
}
/* fonts: Matter is proprietary — closest free match: Inter (Google). Load Inter; keep Matter first so licensed users still get it. */