Deepgram — Design System
The full decoded design system for Deepgram: 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/deepgram.
Tokens
Deepgram's decoded design system: background #0B0B0C, text #9CA3AF, accent #13EF93, link #13EF93, primary #9CA3AF; type scale h1 60px / h2 48px / body 18px; 4px spacing base; 6px base radius. The single interactive/action color is #FFFFFF — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #0B0B0C |
| surface | #131415 |
| border | #202124 |
| text | #9CA3AF |
| text_muted | #646971 |
| primary | #9CA3AF |
| accent | #13EF93 |
| link | #13EF93 |
| secondary | #33AAFF |
| button_bg | #FFFFFF |
| button_text | #0B0B0C |
Using these colors
- Action color
#FFFFFF— the single interactive color; only on things you click or must notice, never large fills. accent,linkare all#13EF93— one role, not several (the action color).- accent
#13EF93— accent for emphasis — keep it rare on the page. - primary
#9CA3AF— ≈ the text color — a foreground/text color, not an action color (action = #FFFFFF). - secondary
#33AAFF— 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: Inter
- Body: Inter
- h1: 60px
- h2: 48px
- body: 18px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 6px
- button: 4px
Per-section tokens (9)
Export: DESIGN.md
# Deepgram — Design System > dark, modern, medium, tailwind ## Colors | Role | Value | |------|-------| | bg | `#0B0B0C` | | surface | `#131415` | | border | `#202124` | | text | `#9CA3AF` | | text_muted | `#646971` | | primary | `#9CA3AF` | | accent | `#13EF93` | | link | `#13EF93` | | secondary | `#33AAFF` | | button_bg | `#FFFFFF` | | button_text | `#0B0B0C` | **Using these colors** - **Action color** `#FFFFFF` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds. - `accent`, `link` are all `#13EF93` — one role, not several. - **accent** `#13EF93` — accent for emphasis — keep it rare on the page. - **primary** `#9CA3AF` — ≈ the text color — a foreground/text color, not an action color (action = #FFFFFF). - **secondary** `#33AAFF` — 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: **Inter** - Body: **Inter** - h1: 60px - h2: 48px - body: 18px > **Fonts —** Inter — free, on Google. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 6px - button: 4px ## Primary button - bg `#FFFFFF` · text `#0B0B0C` · radius 4px ## 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 #FFFFFF — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #0B0B0C;
--color-surface: #131415;
--color-border: #202124;
--color-text: #9CA3AF;
--color-text-muted: #646971;
--color-primary: #9CA3AF; /* ≈ the text color — a foreground/text color, not an action color (action = #FFFFFF). */
--color-accent: #13EF93; /* accent for emphasis — keep it rare on the page. */
--color-link: #13EF93; /* inline text links and link-styled controls. */
--color-secondary: #33AAFF; /* 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: #FFFFFF; /* primary-button fill — the main call-to-action color. */
--color-button-text: #0B0B0C;
/* fonts: Inter — free, on Google. */
--font-heading: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 60px;
--text-h2: 48px;
--text-body: 18px;
--radius-base: 6px;
--radius-button: 4px;
--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 #FFFFFF — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #0B0B0C;
--surface: #131415;
--border: #202124;
--text: #9CA3AF;
--text-muted: #646971;
--primary: #9CA3AF; /* ≈ the text color — a foreground/text color, not an action color (action = #FFFFFF). */
--accent: #13EF93; /* accent for emphasis — keep it rare on the page. */
--link: #13EF93; /* inline text links and link-styled controls. */
--secondary: #33AAFF; /* 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: #FFFFFF; /* primary-button fill — the main call-to-action color. */
--button-text: #0B0B0C;
--font-heading: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 6px;
--radius-button: 4px;
}
/* fonts: Inter — free, on Google. */