MozaikaDesign system

ElevenLabs — Design System

light · modern · medium · tailwind · confidence 92%

ElevenLabs sells voice AI with near-silence: Waldenburg at a feather 48px/300 on warm off-white #FDFCFC, 15px Inter body, and pure-black full-pill CTAs as the only hard contrast. Waveforms and player chips stand in for imagery, keeping the page as clean as a recording booth — restraint as a proxy for audio fidelity.

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

Tokens

ElevenLabs's decoded design system: background #FDFCFC, text #000000, accent #000000, link #000000, primary #000000; type scale h1 48px / h2 36px / body 15px; 8px spacing base; 4px base radius. The single interactive/action color is #000000 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FDFCFC
surface#EDECEC
border#D7D6D6
text#000000
text_muted#605F5F
primary#000000
accent#000000
link#000000
button_bg#000000
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Per-section tokens (19)

Export: DESIGN.md

# ElevenLabs — Design System

> light, modern, medium, tailwind

ElevenLabs sells voice AI with near-silence: Waldenburg at a feather 48px/300 on warm off-white #FDFCFC, 15px Inter body, and pure-black full-pill CTAs as the only hard contrast. Waveforms and player chips stand in for imagery, keeping the page as clean as a recording booth — restraint as a proxy for audio fidelity.

## Colors

| Role | Value |
|------|-------|
| bg | `#FDFCFC` |
| surface | `#EDECEC` |
| border | `#D7D6D6` |
| text | `#000000` |
| text_muted | `#605F5F` |
| primary | `#000000` |
| accent | `#000000` |
| link | `#000000` |
| button_bg | `#000000` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#000000` — 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 `#000000` — one role, not several (your action color).
- **accent** `#000000` — 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: **Waldenburg** _(free fallback: Newsreader)_
- Body: **Inter**
- h1: 48px
- h2: 36px
- body: 15px

> **Fonts —** Waldenburg may be proprietary — safe free fallback: Newsreader (Google Fonts). Inter — free, on Google.

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

## Radius
- base: 4px
- button: 9999px

## Primary button
- bg `#000000` · text `#FFFFFF` · radius 9999px

## 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 #000000 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FDFCFC;
  --color-surface: #EDECEC;
  --color-border: #D7D6D6;
  --color-text: #000000;
  --color-text-muted: #605F5F;
  --color-primary: #000000;  /* ≈ the text color — a foreground/text color, not an action color (action = #000000). */
  --color-accent: #000000;  /* 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: #000000;  /* inline text links — shares the action color. */
  --color-button-bg: #000000;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: Waldenburg may be proprietary — safe free fallback: Newsreader (Google Fonts). Inter — free, on Google. */
  --font-heading: "Waldenburg", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 48px;
  --text-h2: 36px;
  --text-body: 15px;
  --radius-base: 4px;
  --radius-button: 9999px;
  --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 #000000 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FDFCFC;
  --surface: #EDECEC;
  --border: #D7D6D6;
  --text: #000000;
  --text-muted: #605F5F;
  --primary: #000000;  /* ≈ the text color — a foreground/text color, not an action color (action = #000000). */
  --accent: #000000;  /* 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: #000000;  /* inline text links — shares the action color. */
  --button-bg: #000000;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Waldenburg", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 4px;
  --radius-button: 9999px;
}
/* fonts: Waldenburg may be proprietary — safe free fallback: Newsreader (Google Fonts). Inter — free, on Google. */