MozaikaDesign system

WorkOS — Design System

light · professional · medium · custom · confidence 92%

The full decoded design system for WorkOS: color roles, type scale, spacing, radii and paste-ready DESIGN.md / Tailwind / CSS exports.

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

Tokens

WorkOS's decoded design system: background #FFFFFF, text #29363D, accent #6363F1, link #6363F1, primary #29363D; type scale h1 80px / h2 28px / body 19px; 4px spacing base; 5px base radius. The single interactive/action color is #6363F1 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FFFFFF
surface#F2F2F3
border#DEE0E1
text#29363D
text_muted#7A8286
primary#29363D
accent#6363F1
link#6363F1
secondary#23F0C3
button_bg#6363F1
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Shadow

rgba(23, 6, 100, 0.035) 0px 24px 22px 0px, rgba(23, 6, 100, 0.055) 0px 8.5846px 8.03036px 0px, rgba(23, 6, 100, 0.067) 0px 4.77692px 3.89859px 0px, rgba(23, 6, 100, 0.082) 0px 2.63479px 1.91116px 0px, rgba(23, 6, 100, 0.12) 0px 1.15891px 0.755676px 0px

Per-section tokens (9)

Export: DESIGN.md

# WorkOS — Design System

> light, professional, medium, custom

## Colors

| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#F2F2F3` |
| border | `#DEE0E1` |
| text | `#29363D` |
| text_muted | `#7A8286` |
| primary | `#29363D` |
| accent | `#6363F1` |
| link | `#6363F1` |
| secondary | `#23F0C3` |
| button_bg | `#6363F1` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#6363F1` — 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 `#6363F1` — one role, not several (your action color).
- **accent** `#6363F1` — 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** `#29363D` — ≈ the text color — a foreground/text color, not an action color (action = #6363F1).
- **secondary** `#23F0C3` — 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: **Untitled Sans** _(free fallback: Newsreader)_
- Body: **Untitled Sans** _(free fallback: Newsreader)_
- h1: 80px
- h2: 28px
- body: 19px

> **Fonts —** Untitled Sans may be proprietary — safe free fallback: Newsreader (Google Fonts).

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

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

## Primary button
- bg `#6363F1` · text `#FFFFFF` · radius 100px

## 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 #6363F1 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFFFFF;
  --color-surface: #F2F2F3;
  --color-border: #DEE0E1;
  --color-text: #29363D;
  --color-text-muted: #7A8286;
  --color-primary: #29363D;  /* ≈ the text color — a foreground/text color, not an action color (action = #6363F1). */
  --color-accent: #6363F1;  /* 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: #6363F1;  /* inline text links — shares the action color. */
  --color-secondary: #23F0C3;  /* 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: #6363F1;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: Untitled Sans may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "Untitled Sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Untitled Sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 80px;
  --text-h2: 28px;
  --text-body: 19px;
  --radius-base: 5px;
  --radius-button: 100px;
  --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 #6363F1 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFFFFF;
  --surface: #F2F2F3;
  --border: #DEE0E1;
  --text: #29363D;
  --text-muted: #7A8286;
  --primary: #29363D;  /* ≈ the text color — a foreground/text color, not an action color (action = #6363F1). */
  --accent: #6363F1;  /* 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: #6363F1;  /* inline text links — shares the action color. */
  --secondary: #23F0C3;  /* 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: #6363F1;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Untitled Sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Untitled Sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 5px;
  --radius-button: 100px;
}
/* fonts: Untitled Sans may be proprietary — safe free fallback: Newsreader (Google Fonts). */