Vapi — Design System
The full decoded design system for Vapi: 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/vapi.
Tokens
Vapi's decoded design system: background #0E0E13, text #FFFAEA, accent #9ACDBF, link #9ACDBF, primary #FFFAEA; type scale h1 80px / h2 58px / body 16px; 4px spacing base; 0px base radius. The single interactive/action color is #07070A — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #0E0E13 |
| surface | #1C1C1F |
| border | #323133 |
| text | #FFFAEA |
| text_muted | #A3A098 |
| primary | #FFFAEA |
| accent | #9ACDBF |
| link | #9ACDBF |
| button_bg | #07070A |
| button_text | #FFFFFF |
Using these colors
- Action color
#07070A— the single interactive color; only on things you click or must notice, never large fills. accent,linkare all#9ACDBF— one role, not several (the action color).- accent
#9ACDBF— accent for emphasis — keep it rare on the page. - primary
#FFFAEA— ≈ the text color — a foreground/text color, not an action color (action = #07070A).
Typography
- Heading: foundryGridnik
- Body: avantt
- Mono: Geist Mono
- h1: 80px
- h2: 58px
- body: 16px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 0px
- button: 12px
Per-section tokens (11)
- Hero
- Testimonial / Social Proof
- Feature
- Feature
- Feature
- Integrations
- Feature
- Testimonial / Social Proof
- Stats / Metrics
- CTA / Sign-up
- Footer
Export: DESIGN.md
# Vapi — Design System > dark, modern, medium, tailwind ## Colors | Role | Value | |------|-------| | bg | `#0E0E13` | | surface | `#1C1C1F` | | border | `#323133` | | text | `#FFFAEA` | | text_muted | `#A3A098` | | primary | `#FFFAEA` | | accent | `#9ACDBF` | | link | `#9ACDBF` | | button_bg | `#07070A` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#07070A` — 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 `#9ACDBF` — one role, not several. - **accent** `#9ACDBF` — accent for emphasis — keep it rare on the page. - **primary** `#FFFAEA` — ≈ the text color — a foreground/text color, not an action color (action = #07070A). ## Typography - Heading: **foundryGridnik** _(free fallback: Newsreader)_ - Body: **avantt** _(free fallback: Newsreader)_ - Mono: **Geist Mono** - h1: 80px - h2: 58px - body: 16px > **Fonts —** foundryGridnik may be proprietary — safe free fallback: Newsreader (Google Fonts). avantt may be proprietary — safe free fallback: Newsreader (Google Fonts). ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 0px - button: 12px ## Primary button - bg `#07070A` · 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 #07070A — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #0E0E13;
--color-surface: #1C1C1F;
--color-border: #323133;
--color-text: #FFFAEA;
--color-text-muted: #A3A098;
--color-primary: #FFFAEA; /* ≈ the text color — a foreground/text color, not an action color (action = #07070A). */
--color-accent: #9ACDBF; /* accent for emphasis — keep it rare on the page. */
--color-link: #9ACDBF; /* inline text links and link-styled controls. */
--color-button-bg: #07070A; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: foundryGridnik may be proprietary — safe free fallback: Newsreader (Google Fonts). avantt may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "foundryGridnik", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "avantt", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-mono: "Geist Mono", ui-monospace, monospace;
--text-h1: 80px;
--text-h2: 58px;
--text-body: 16px;
--radius-base: 0px;
--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 #07070A — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #0E0E13;
--surface: #1C1C1F;
--border: #323133;
--text: #FFFAEA;
--text-muted: #A3A098;
--primary: #FFFAEA; /* ≈ the text color — a foreground/text color, not an action color (action = #07070A). */
--accent: #9ACDBF; /* accent for emphasis — keep it rare on the page. */
--link: #9ACDBF; /* inline text links and link-styled controls. */
--button-bg: #07070A; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "foundryGridnik", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "avantt", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-mono: "Geist Mono", ui-monospace, monospace;
--radius: 0px;
--radius-button: 12px;
}
/* fonts: foundryGridnik may be proprietary — safe free fallback: Newsreader (Google Fonts). avantt may be proprietary — safe free fallback: Newsreader (Google Fonts). */