Vanta — Design System
Vanta softens compliance with a serif: Reckless at 72px/500 gives 'Trust is everything' a literary, almost legal-letterhead authority, floated over lavender washes with Inter at 16px underneath. Deep-violet #5E05C4 full-pill buttons and SOC-2 dashboard cards keep it product-real — audit automation that looks like it was art-directed by a law-firm rebrand.
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/vanta.
Tokens
Vanta's decoded design system: background #FFFFFF, text #181822, accent #5E05C4, link #5E05C4, primary #260048; type scale h1 72px / h2 56px / body 16px; 4px spacing base; 8px base radius. The single interactive/action color is #5E05C4 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FFFFFF |
| surface | #F1F1F1 |
| border | #DCDCDD |
| text | #181822 |
| text_muted | #6F6F75 |
| primary | #260048 |
| accent | #5E05C4 |
| link | #5E05C4 |
| secondary | #DDD6FF |
| button_bg | #5E05C4 |
| button_text | #FFFFFF |
Using these colors
- Action color
#5E05C4— the single interactive color; only on things you click or must notice, never large fills. accent,link,button_bgare all#5E05C4— one role, not several (the action color).- accent
#5E05C4— 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
#260048— a brand color — but the call-to-action uses #5E05C4, not this. - secondary
#DDD6FF— 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: Reckless
- Body: Inter
- h1: 72px
- h2: 56px
- body: 16px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 8px
- button: 999px
Per-section tokens (12)
- Hero
- Logo Wall
- Bento Grid
- Feature
- Testimonial / Social Proof
- Feature
- Comparison
- Gallery / Showcase
- Stats / Metrics
- Gallery / Showcase
- CTA / Sign-up
- Footer
Export: DESIGN.md
# Vanta — Design System > light, professional, medium, custom Vanta softens compliance with a serif: Reckless at 72px/500 gives 'Trust is everything' a literary, almost legal-letterhead authority, floated over lavender washes with Inter at 16px underneath. Deep-violet #5E05C4 full-pill buttons and SOC-2 dashboard cards keep it product-real — audit automation that looks like it was art-directed by a law-firm rebrand. ## Colors | Role | Value | |------|-------| | bg | `#FFFFFF` | | surface | `#F1F1F1` | | border | `#DCDCDD` | | text | `#181822` | | text_muted | `#6F6F75` | | primary | `#260048` | | accent | `#5E05C4` | | link | `#5E05C4` | | secondary | `#DDD6FF` | | button_bg | `#5E05C4` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#5E05C4` — 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`, `button_bg` are all `#5E05C4` — one role, not several (your action color). - **accent** `#5E05C4` — 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** `#260048` — a brand color — but the call-to-action uses #5E05C4, not this. - **secondary** `#DDD6FF` — 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: **Reckless** _(free fallback: Fraunces)_ - Body: **Inter** - h1: 72px - h2: 56px - body: 16px > **Fonts —** Reckless is proprietary — closest free match: Fraunces (Google). Load Fraunces; keep Reckless first so licensed users still get it. Inter — free, on Google. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 8px - button: 999px ## Primary button - bg `#5E05C4` · text `#FFFFFF` · radius 999px ## 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 #5E05C4 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FFFFFF;
--color-surface: #F1F1F1;
--color-border: #DCDCDD;
--color-text: #181822;
--color-text-muted: #6F6F75;
--color-primary: #260048; /* a brand color — but the call-to-action uses #5E05C4, not this. */
--color-accent: #5E05C4; /* 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: #5E05C4; /* inline text links — shares the action color. */
--color-secondary: #DDD6FF; /* 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: #5E05C4; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: Reckless is proprietary — closest free match: Fraunces (Google). Load Fraunces; keep Reckless first so licensed users still get it. Inter — free, on Google. */
--font-heading: "Reckless", "Fraunces", Georgia, 'Times New Roman', serif;
--font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 72px;
--text-h2: 56px;
--text-body: 16px;
--radius-base: 8px;
--radius-button: 999px;
--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 #5E05C4 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FFFFFF;
--surface: #F1F1F1;
--border: #DCDCDD;
--text: #181822;
--text-muted: #6F6F75;
--primary: #260048; /* a brand color — but the call-to-action uses #5E05C4, not this. */
--accent: #5E05C4; /* 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: #5E05C4; /* inline text links — shares the action color. */
--secondary: #DDD6FF; /* 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: #5E05C4; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "Reckless", "Fraunces", Georgia, 'Times New Roman', serif;
--font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 8px;
--radius-button: 999px;
}
/* fonts: Reckless is proprietary — closest free match: Fraunces (Google). Load Fraunces; keep Reckless first so licensed users still get it. Inter — free, on Google. */