MozaikaDesign system

Descript — Design System

light · modern · high · tailwind · confidence 92%

Descript edits video in editorial type: Gamuth Display at 88px/400 on blush #FFF7FA, Booton at 18px for the working copy, and Brett serif eyebrows in signal red #F73B3B marking each section like chapter numbers. Plum 12px-radius buttons and timeline UI screenshots round out a page that treats an AI video editor like a magazine feature about one.

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

Tokens

Descript's decoded design system: background #FFF7FA, text #1A1A1A, accent #F73B3B, link #651A39, primary #390A1A; type scale h1 88px / h2 40px / body 18px; 4px spacing base; 8px base radius. The single interactive/action color is #F73B3B — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FFF7FA
surface#F1E9EC
border#DCD5D8
text#1A1A1A
text_muted#716D6F
primary#390A1A
accent#F73B3B
link#651A39
secondary#3F2A32
button_bg#F73B3B
button_text#FFF7FD

Using these colors

Typography

Spacing

Radii

Per-section tokens (11)

Export: DESIGN.md

# Descript — Design System

> light, modern, high, tailwind

Descript edits video in editorial type: Gamuth Display at 88px/400 on blush #FFF7FA, Booton at 18px for the working copy, and Brett serif eyebrows in signal red #F73B3B marking each section like chapter numbers. Plum 12px-radius buttons and timeline UI screenshots round out a page that treats an AI video editor like a magazine feature about one.

## Colors

| Role | Value |
|------|-------|
| bg | `#FFF7FA` |
| surface | `#F1E9EC` |
| border | `#DCD5D8` |
| text | `#1A1A1A` |
| text_muted | `#716D6F` |
| primary | `#390A1A` |
| accent | `#F73B3B` |
| link | `#651A39` |
| secondary | `#3F2A32` |
| button_bg | `#F73B3B` |
| button_text | `#FFF7FD` |

**Using these colors**

- **Action color** `#F73B3B` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds.
- `accent`, `button_bg` are all `#F73B3B` — one role, not several (your action color).
- **accent** `#F73B3B` — 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** `#390A1A` — a brand color — but the call-to-action uses #F73B3B, not this.
- **link** `#651A39` — inline text links and link-styled controls.
- **secondary** `#3F2A32` — 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: **Gamuth Display** _(free fallback: Newsreader)_
- Body: **Booton** _(free fallback: Newsreader)_
- h1: 88px
- h2: 40px
- body: 18px

> **Fonts —** Gamuth Display may be proprietary — safe free fallback: Newsreader (Google Fonts). Booton may be proprietary — safe free fallback: Newsreader (Google Fonts).

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

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

## Primary button
- bg `#F73B3B` · text `#FFF7FD` · 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 #F73B3B — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFF7FA;
  --color-surface: #F1E9EC;
  --color-border: #DCD5D8;
  --color-text: #1A1A1A;
  --color-text-muted: #716D6F;
  --color-primary: #390A1A;  /* a brand color — but the call-to-action uses #F73B3B, not this. */
  --color-accent: #F73B3B;  /* 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: #651A39;  /* inline text links and link-styled controls. */
  --color-secondary: #3F2A32;  /* 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: #F73B3B;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFF7FD;
  /* fonts: Gamuth Display may be proprietary — safe free fallback: Newsreader (Google Fonts). Booton may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "Gamuth Display", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Booton", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 88px;
  --text-h2: 40px;
  --text-body: 18px;
  --radius-base: 8px;
  --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 #F73B3B — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFF7FA;
  --surface: #F1E9EC;
  --border: #DCD5D8;
  --text: #1A1A1A;
  --text-muted: #716D6F;
  --primary: #390A1A;  /* a brand color — but the call-to-action uses #F73B3B, not this. */
  --accent: #F73B3B;  /* 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: #651A39;  /* inline text links and link-styled controls. */
  --secondary: #3F2A32;  /* 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: #F73B3B;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFF7FD;
  --font-heading: "Gamuth Display", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Booton", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 8px;
  --radius-button: 12px;
}
/* fonts: Gamuth Display may be proprietary — safe free fallback: Newsreader (Google Fonts). Booton may be proprietary — safe free fallback: Newsreader (Google Fonts). */