MozaikaDesign system

Stytch — Design System

light · modern · medium · custom · confidence 92%

Stytch keeps auth friendly: Booton at a compact 40px/700 in warm ink #1D1D1D, 16px body, and the signature move — Chivo Mono button labels on powder-blue #B2D6DE 4px-radius slabs, splitting the difference between API docs and consumer SaaS. Auth-flow UI cards and fraud dashboards do the demoing while the palette stays pastel-calm; identity infrastructure without the security-vendor menace.

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

Tokens

Stytch's decoded design system: background #FBFAF9, text #1D1D1D, accent #B2D6DE, link #B2D6DE, primary #0D122B; type scale h1 40px / h2 25px / body 80px; 4px spacing base; 4px base radius. The single interactive/action color is #B2D6DE — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FBFAF9
surface#EDECEB
border#D9D8D8
text#1D1D1D
text_muted#717070
primary#0D122B
accent#B2D6DE
link#B2D6DE
secondary#E6FD13
button_bg#B2D6DE
button_text#1D1D1D

Using these colors

Typography

Spacing

Radii

Per-section tokens (13)

Export: DESIGN.md

# Stytch — Design System

> light, modern, medium, custom

Stytch keeps auth friendly: Booton at a compact 40px/700 in warm ink #1D1D1D, 16px body, and the signature move — Chivo Mono button labels on powder-blue #B2D6DE 4px-radius slabs, splitting the difference between API docs and consumer SaaS. Auth-flow UI cards and fraud dashboards do the demoing while the palette stays pastel-calm; identity infrastructure without the security-vendor menace.

## Colors

| Role | Value |
|------|-------|
| bg | `#FBFAF9` |
| surface | `#EDECEB` |
| border | `#D9D8D8` |
| text | `#1D1D1D` |
| text_muted | `#717070` |
| primary | `#0D122B` |
| accent | `#B2D6DE` |
| link | `#B2D6DE` |
| secondary | `#E6FD13` |
| button_bg | `#B2D6DE` |
| button_text | `#1D1D1D` |

**Using these colors**

- **Action color** `#B2D6DE` — 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 `#B2D6DE` — one role, not several (your action color).
- **accent** `#B2D6DE` — 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** `#0D122B` — a brand color — but the call-to-action uses #B2D6DE, not this.
- **secondary** `#E6FD13` — 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: **Whitney-Book** _(free fallback: Newsreader)_
- Body: **Whitney-Book** _(free fallback: Newsreader)_
- Mono: **Chivo Mono**
- h1: 40px
- h2: 25px
- body: 80px

> **Fonts —** Whitney-Book may be proprietary — safe free fallback: Newsreader (Google Fonts).

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

## Radius
- base: 4px
- button: 4px

## Primary button
- bg `#B2D6DE` · text `#1D1D1D` · 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 #B2D6DE — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FBFAF9;
  --color-surface: #EDECEB;
  --color-border: #D9D8D8;
  --color-text: #1D1D1D;
  --color-text-muted: #717070;
  --color-primary: #0D122B;  /* a brand color — but the call-to-action uses #B2D6DE, not this. */
  --color-accent: #B2D6DE;  /* 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: #B2D6DE;  /* inline text links — shares the action color. */
  --color-secondary: #E6FD13;  /* 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: #B2D6DE;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #1D1D1D;
  /* fonts: Whitney-Book may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "Whitney-Book", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Whitney-Book", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: "Chivo Mono", ui-monospace, monospace;
  --text-h1: 40px;
  --text-h2: 25px;
  --text-body: 80px;
  --radius-base: 4px;
  --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 #B2D6DE — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FBFAF9;
  --surface: #EDECEB;
  --border: #D9D8D8;
  --text: #1D1D1D;
  --text-muted: #717070;
  --primary: #0D122B;  /* a brand color — but the call-to-action uses #B2D6DE, not this. */
  --accent: #B2D6DE;  /* 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: #B2D6DE;  /* inline text links — shares the action color. */
  --secondary: #E6FD13;  /* 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: #B2D6DE;  /* primary-button fill — the main call-to-action color. */
  --button-text: #1D1D1D;
  --font-heading: "Whitney-Book", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Whitney-Book", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: "Chivo Mono", ui-monospace, monospace;
  --radius: 4px;
  --radius-button: 4px;
}
/* fonts: Whitney-Book may be proprietary — safe free fallback: Newsreader (Google Fonts). */