MozaikaDesign system

Svix — Design System

light · professional · medium · tailwind · confidence 92%

Svix pitches webhooks-as-a-service in a single open-source voice: Overused Grotesk does every job on the page, 64px/500 in the deep-indigo hero and 16px in the working text, with section headings deliberately understated at 18px. Code snippets and dashboard frames carry the proof while 6px-radius buttons keep the chrome quiet — infrastructure branding that trusts one grotesque to do it all.

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

Tokens

Svix's decoded design system: background #FFFFFF, text #0A0A0B, accent #2C70FF, link #1C1C46, primary #2C70FF; type scale h1 64px / h2 18px / body 14.4px; 4px spacing base; 5px base radius. The single interactive/action color is #2C70FF — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FFFFFF
surface#F0F0F0
border#DADADA
text#0A0A0B
text_muted#676767
primary#2C70FF
accent#2C70FF
link#1C1C46
secondary#A9B7C6
button_bg#2C70FF
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Per-section tokens (14)

Export: DESIGN.md

# Svix — Design System

> light, professional, medium, tailwind

Svix pitches webhooks-as-a-service in a single open-source voice: Overused Grotesk does every job on the page, 64px/500 in the deep-indigo hero and 16px in the working text, with section headings deliberately understated at 18px. Code snippets and dashboard frames carry the proof while 6px-radius buttons keep the chrome quiet — infrastructure branding that trusts one grotesque to do it all.

## Colors

| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#F0F0F0` |
| border | `#DADADA` |
| text | `#0A0A0B` |
| text_muted | `#676767` |
| primary | `#2C70FF` |
| accent | `#2C70FF` |
| link | `#1C1C46` |
| secondary | `#A9B7C6` |
| button_bg | `#2C70FF` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#2C70FF` — 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 `#2C70FF` — one role, not several (your action color).
- **accent** `#2C70FF` — 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** `#1C1C46` — inline text links and link-styled controls.
- **secondary** `#A9B7C6` — 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: **Roboto**
- Body: **Roboto**
- h1: 64px
- h2: 18px
- body: 14.4px

> **Fonts —** Roboto — free, on Google.

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

## Radius
- base: 5px
- button: 6px

## Primary button
- bg `#2C70FF` · text `#FFFFFF` · radius 6px

## 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 #2C70FF — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFFFFF;
  --color-surface: #F0F0F0;
  --color-border: #DADADA;
  --color-text: #0A0A0B;
  --color-text-muted: #676767;
  --color-primary: #2C70FF;  /* primary brand / action color. */
  --color-accent: #2C70FF;  /* 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: #1C1C46;  /* inline text links and link-styled controls. */
  --color-secondary: #A9B7C6;  /* 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: #2C70FF;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: Roboto — free, on Google. */
  --font-heading: "Roboto", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Roboto", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 64px;
  --text-h2: 18px;
  --text-body: 14.4px;
  --radius-base: 5px;
  --radius-button: 6px;
  --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 #2C70FF — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFFFFF;
  --surface: #F0F0F0;
  --border: #DADADA;
  --text: #0A0A0B;
  --text-muted: #676767;
  --primary: #2C70FF;  /* primary brand / action color. */
  --accent: #2C70FF;  /* 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: #1C1C46;  /* inline text links and link-styled controls. */
  --secondary: #A9B7C6;  /* 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: #2C70FF;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Roboto", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Roboto", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 5px;
  --radius-button: 6px;
}
/* fonts: Roboto — free, on Google. */