MozaikaDesign system

Endel — Design System

dark · modern · medium · custom · confidence 90%

Endel sells engineered calm on pure black: Apercu Pro at 60px/400 never bolder than it needs to be, body text at an unhurried 22px, and #262626 buttons at 12px radius that barely rise off the void. Soundscape tiles glow like album art in a dark room and award quotes do the talking — a functional-sound brand whose website is itself a wind-down mode.

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

Tokens

Endel's decoded design system: background #000000, text #FFFFFF, accent #262626, link #FFFFFF, primary #FFFFFF; type scale h1 60px / h2 44px / body 22px; 4px spacing base; 12px base radius. The single interactive/action color is #262626 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#000000
surface#0F0F0F
border#262626
text#FFFFFF
text_muted#9E9E9E
primary#FFFFFF
accent#262626
link#FFFFFF
button_bg#262626
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Per-section tokens (14)

Export: DESIGN.md

# Endel — Design System

> dark, modern, medium, custom

Endel sells engineered calm on pure black: Apercu Pro at 60px/400 never bolder than it needs to be, body text at an unhurried 22px, and #262626 buttons at 12px radius that barely rise off the void. Soundscape tiles glow like album art in a dark room and award quotes do the talking — a functional-sound brand whose website is itself a wind-down mode.

## Colors

| Role | Value |
|------|-------|
| bg | `#000000` |
| surface | `#0F0F0F` |
| border | `#262626` |
| text | `#FFFFFF` |
| text_muted | `#9E9E9E` |
| primary | `#FFFFFF` |
| accent | `#262626` |
| link | `#FFFFFF` |
| button_bg | `#262626` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#262626` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds.
- `primary`, `link` are all `#FFFFFF` — one role, not several.
- `accent`, `button_bg` are all `#262626` — one role, not several (your action color).
- **accent** `#262626` — 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.

## Typography

- Heading: **Apercu Pro** _(free fallback: Newsreader)_
- Body: **Apercu Pro** _(free fallback: Newsreader)_
- h1: 60px
- h2: 44px
- body: 22px

> **Fonts —** Apercu Pro may be proprietary — safe free fallback: Newsreader (Google Fonts).

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

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

## Primary button
- bg `#262626` · text `#FFFFFF` · 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 #262626 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #000000;
  --color-surface: #0F0F0F;
  --color-border: #262626;
  --color-text: #FFFFFF;
  --color-text-muted: #9E9E9E;
  --color-primary: #FFFFFF;  /* ≈ the text color — a foreground/text color, not an action color (action = #262626). */
  --color-accent: #262626;  /* 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: #FFFFFF;  /* reads as a neutral UI color, not a link accent — verify against the reference (action = #262626). */
  --color-button-bg: #262626;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: Apercu Pro may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "Apercu Pro", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Apercu Pro", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 60px;
  --text-h2: 44px;
  --text-body: 22px;
  --radius-base: 12px;
  --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 #262626 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #000000;
  --surface: #0F0F0F;
  --border: #262626;
  --text: #FFFFFF;
  --text-muted: #9E9E9E;
  --primary: #FFFFFF;  /* ≈ the text color — a foreground/text color, not an action color (action = #262626). */
  --accent: #262626;  /* 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: #FFFFFF;  /* reads as a neutral UI color, not a link accent — verify against the reference (action = #262626). */
  --button-bg: #262626;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Apercu Pro", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Apercu Pro", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-button: 12px;
}
/* fonts: Apercu Pro may be proprietary — safe free fallback: Newsreader (Google Fonts). */