Headspace — Design System
Headspace runs everything in its own cut of Apercu — 72px/700 'Get your headspace' down to 20px body — in warm charcoal #2D2C2B over sunshine orange and blob illustrations. The single-family system mirrors the product's promise: one calm, rounded voice at every scale, with meditation characters doing the emotional storytelling the type stays too composed for.
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/headspace.
Tokens
Headspace's decoded design system: background #F9F4F2, text #44423F, accent #0061EF, link #0040EA, primary #0061EF; type scale h1 72px / h2 52px / body 20px; 4px spacing base; 32px base radius. The single interactive/action color is #0061EF — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #F9F4F2 |
| surface | #EEE9E7 |
| border | #DDD9D7 |
| text | #44423F |
| text_muted | #888583 |
| primary | #0061EF |
| accent | #0061EF |
| link | #0040EA |
| secondary | #9D968E |
| button_bg | #0061EF |
| button_text | #FFFFFF |
Using these colors
- Action color
#0061EF— the single interactive color; only on things you click or must notice, never large fills. primary,accent,button_bgare all#0061EF— one role, not several (the action color).- accent
#0061EF— 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
#0040EA— inline text links and link-styled controls. - secondary
#9D968E— 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: Headspace Apercu
- Body: Headspace Apercu
- h1: 72px
- h2: 52px
- body: 20px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 32px
- button: 32px
Shadow
rgba(65, 61, 69, 0.2) 0px 2px 0px 0px
Per-section tokens (10)
- Banner
- Hero
- Steps / How-it-works
- Feature
- Testimonial / Social Proof
- Logo Wall
- Banner
- Gallery / Showcase
- Stats / Metrics
- FAQ
Export: DESIGN.md
# Headspace — Design System > light, modern, medium, custom Headspace runs everything in its own cut of Apercu — 72px/700 'Get your headspace' down to 20px body — in warm charcoal #2D2C2B over sunshine orange and blob illustrations. The single-family system mirrors the product's promise: one calm, rounded voice at every scale, with meditation characters doing the emotional storytelling the type stays too composed for. ## Colors | Role | Value | |------|-------| | bg | `#F9F4F2` | | surface | `#EEE9E7` | | border | `#DDD9D7` | | text | `#44423F` | | text_muted | `#888583` | | primary | `#0061EF` | | accent | `#0061EF` | | link | `#0040EA` | | secondary | `#9D968E` | | button_bg | `#0061EF` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#0061EF` — 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`, `button_bg` are all `#0061EF` — one role, not several (your action color). - **accent** `#0061EF` — 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** `#0040EA` — inline text links and link-styled controls. - **secondary** `#9D968E` — 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: **Headspace Apercu** _(free fallback: Newsreader)_ - Body: **Headspace Apercu** _(free fallback: Newsreader)_ - h1: 72px - h2: 52px - body: 20px > **Fonts —** Headspace Apercu may be proprietary — safe free fallback: Newsreader (Google Fonts). ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 32px - button: 32px ## Primary button - bg `#0061EF` · text `#FFFFFF` · radius 32px ## 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 #0061EF — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #F9F4F2;
--color-surface: #EEE9E7;
--color-border: #DDD9D7;
--color-text: #44423F;
--color-text-muted: #888583;
--color-primary: #0061EF; /* primary brand / action color. */
--color-accent: #0061EF; /* 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: #0040EA; /* inline text links and link-styled controls. */
--color-secondary: #9D968E; /* 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: #0061EF; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: Headspace Apercu may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "Headspace Apercu", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Headspace Apercu", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 72px;
--text-h2: 52px;
--text-body: 20px;
--radius-base: 32px;
--radius-button: 32px;
--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 #0061EF — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #F9F4F2;
--surface: #EEE9E7;
--border: #DDD9D7;
--text: #44423F;
--text-muted: #888583;
--primary: #0061EF; /* primary brand / action color. */
--accent: #0061EF; /* 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: #0040EA; /* inline text links and link-styled controls. */
--secondary: #9D968E; /* 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: #0061EF; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "Headspace Apercu", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Headspace Apercu", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 32px;
--radius-button: 32px;
}
/* fonts: Headspace Apercu may be proprietary — safe free fallback: Newsreader (Google Fonts). */