MozaikaDesign system

Wispr Flow — Design System

light · modern · medium · custom · confidence 92%

The full decoded design system for Wispr Flow: 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/wispr-flow.

Tokens

Wispr Flow's decoded design system: background #FFFFEB, text #1A1A1A, accent #F0D7FF, link #F0D7FF, primary #034F46; type scale h1 120px / h2 64px / body 20px; 4px spacing base; 16px base radius. The single interactive/action color is #F0D7FF — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FFFFEB
surface#F1F1DE
border#DCDCCB
text#1A1A1A
text_muted#717169
primary#034F46
accent#F0D7FF
link#F0D7FF
secondary#FFFFEB
button_bg#F0D7FF
button_text#1A1A1A

Using these colors

Typography

Spacing

Radii

Per-section tokens (13)

Export: DESIGN.md

# Wispr Flow — Design System

> light, modern, medium, custom

## Colors

| Role | Value |
|------|-------|
| bg | `#FFFFEB` |
| surface | `#F1F1DE` |
| border | `#DCDCCB` |
| text | `#1A1A1A` |
| text_muted | `#717169` |
| primary | `#034F46` |
| accent | `#F0D7FF` |
| link | `#F0D7FF` |
| secondary | `#FFFFEB` |
| button_bg | `#F0D7FF` |
| button_text | `#1A1A1A` |

**Using these colors**

- **Action color** `#F0D7FF` — 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`, `button_bg` are all `#F0D7FF` — one role, not several (your action color).
- **accent** `#F0D7FF` — 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.
- **primary** `#034F46` — a brand color — but the call-to-action uses #F0D7FF, not this.
- **secondary** `#FFFFEB` — 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: **Eb Garamond** _(free fallback: Newsreader)_
- Body: **Figtree**
- h1: 120px
- h2: 64px
- body: 20px

> **Fonts —** Eb Garamond may be proprietary — safe free fallback: Newsreader (Google Fonts). Figtree — free, on Google.

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

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

## Primary button
- bg `#F0D7FF` · text `#1A1A1A` · radius 12px

## 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 #F0D7FF — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFFFEB;
  --color-surface: #F1F1DE;
  --color-border: #DCDCCB;
  --color-text: #1A1A1A;
  --color-text-muted: #717169;
  --color-primary: #034F46;  /* a brand color — but the call-to-action uses #F0D7FF, not this. */
  --color-accent: #F0D7FF;  /* 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: #F0D7FF;  /* inline text links — shares the action color. */
  --color-secondary: #FFFFEB;  /* 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: #F0D7FF;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #1A1A1A;
  /* fonts: Eb Garamond may be proprietary — safe free fallback: Newsreader (Google Fonts). Figtree — free, on Google. */
  --font-heading: "Eb Garamond", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Figtree", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 120px;
  --text-h2: 64px;
  --text-body: 20px;
  --radius-base: 16px;
  --radius-button: 12px;
  --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 #F0D7FF — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFFFEB;
  --surface: #F1F1DE;
  --border: #DCDCCB;
  --text: #1A1A1A;
  --text-muted: #717169;
  --primary: #034F46;  /* a brand color — but the call-to-action uses #F0D7FF, not this. */
  --accent: #F0D7FF;  /* 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: #F0D7FF;  /* inline text links — shares the action color. */
  --secondary: #FFFFEB;  /* 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: #F0D7FF;  /* primary-button fill — the main call-to-action color. */
  --button-text: #1A1A1A;
  --font-heading: "Eb Garamond", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Figtree", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 16px;
  --radius-button: 12px;
}
/* fonts: Eb Garamond may be proprietary — safe free fallback: Newsreader (Google Fonts). Figtree — free, on Google. */