AssemblyAI — Design System
The full decoded design system for AssemblyAI: color roles, type scale, spacing, radii and paste-ready DESIGN.md / Tailwind / CSS exports.
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/assemblyai.
Tokens
AssemblyAI's decoded design system: background #FDFCF8, text #1D1B16, accent #3923C7, link #C7C3B2, primary #3923C7; type scale h1 72px / h2 64px / body 12px; 4px spacing base; 0px base radius. The single interactive/action color is #3923C7 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FDFCF8 |
| surface | #EFEEEA |
| border | #DBDAD6 |
| text | #1D1B16 |
| text_muted | #72706B |
| primary | #3923C7 |
| accent | #3923C7 |
| link | #C7C3B2 |
| button_bg | #3923C7 |
| button_text | #FFFFFF |
Using these colors
- Action color
#3923C7— the single interactive color; only on things you click or must notice, never large fills. primary,accent,button_bgare all#3923C7— one role, not several (the action color).- accent
#3923C7— 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
#C7C3B2— fails contrast on the background (~1.7:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference).
Typography
- Heading: Georgia
- Body: Georgia
- Mono: Modern Gothic Mono
- h1: 72px
- h2: 64px
- body: 12px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 0px
- button: 2px
Per-section tokens (9)
Export: DESIGN.md
# AssemblyAI — Design System > light, modern, medium, tailwind ## Colors | Role | Value | |------|-------| | bg | `#FDFCF8` | | surface | `#EFEEEA` | | border | `#DBDAD6` | | text | `#1D1B16` | | text_muted | `#72706B` | | primary | `#3923C7` | | accent | `#3923C7` | | link | `#C7C3B2` | | button_bg | `#3923C7` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#3923C7` — 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 `#3923C7` — one role, not several (your action color). - **accent** `#3923C7` — 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** `#C7C3B2` — fails contrast on the background (~1.7:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). ## Typography - Heading: **Georgia** - Body: **Georgia** - Mono: **Modern Gothic Mono** - h1: 72px - h2: 64px - body: 12px > **Fonts —** Georgia — system font, no web load needed. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 0px - button: 2px ## Primary button - bg `#3923C7` · text `#FFFFFF` · radius 2px ## 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 #3923C7 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FDFCF8;
--color-surface: #EFEEEA;
--color-border: #DBDAD6;
--color-text: #1D1B16;
--color-text-muted: #72706B;
--color-primary: #3923C7; /* primary brand / action color. */
--color-accent: #3923C7; /* 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: #C7C3B2; /* fails contrast on the background (~1.7:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
--color-button-bg: #3923C7; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: Georgia — system font, no web load needed. */
--font-heading: "Georgia", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Georgia", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-mono: "Modern Gothic Mono", ui-monospace, monospace;
--text-h1: 72px;
--text-h2: 64px;
--text-body: 12px;
--radius-base: 0px;
--radius-button: 2px;
--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 #3923C7 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FDFCF8;
--surface: #EFEEEA;
--border: #DBDAD6;
--text: #1D1B16;
--text-muted: #72706B;
--primary: #3923C7; /* primary brand / action color. */
--accent: #3923C7; /* 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: #C7C3B2; /* fails contrast on the background (~1.7:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
--button-bg: #3923C7; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "Georgia", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Georgia", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-mono: "Modern Gothic Mono", ui-monospace, monospace;
--radius: 0px;
--radius-button: 2px;
}
/* fonts: Georgia — system font, no web load needed. */