MozaikaDesign system

Gusto — Design System

light · professional · medium · custom · confidence 92%

Gusto humanizes payroll with a serif: custom-cut Clearface at 56px/600 brings 1970s bookshop warmth to HR software, while Centra No.2 keeps forms and 16px body text modern and legible. Layered payroll-run UI, Forbes and Newsweek badges, and even bare blue text-link CTAs — a fintech confident enough to look like a well-set magazine instead of a bank.

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

Tokens

Gusto's decoded design system: background #FFFFFF, text #1C1C1C, accent #0A8080, link #005C5C, primary #0A8080; type scale h1 56px / h2 42px / body 16px; 4px spacing base; 4px base radius. The single interactive/action color is #0A8080 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FFFFFF
surface#F1F1F1
border#DCDCDC
text#1C1C1C
text_muted#727272
primary#0A8080
accent#0A8080
link#005C5C
secondary#C53336
button_bg#0A8080
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Per-section tokens (13)

Export: DESIGN.md

# Gusto — Design System

> light, professional, medium, custom

Gusto humanizes payroll with a serif: custom-cut Clearface at 56px/600 brings 1970s bookshop warmth to HR software, while Centra No.2 keeps forms and 16px body text modern and legible. Layered payroll-run UI, Forbes and Newsweek badges, and even bare blue text-link CTAs — a fintech confident enough to look like a well-set magazine instead of a bank.

## Colors

| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#F1F1F1` |
| border | `#DCDCDC` |
| text | `#1C1C1C` |
| text_muted | `#727272` |
| primary | `#0A8080` |
| accent | `#0A8080` |
| link | `#005C5C` |
| secondary | `#C53336` |
| button_bg | `#0A8080` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#0A8080` — 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 `#0A8080` — one role, not several (your action color).
- **accent** `#0A8080` — 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** `#005C5C` — inline text links and link-styled controls.
- **secondary** `#C53336` — 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: **Gusto Clearface** _(free fallback: Newsreader)_
- Body: **Centra No.2** _(free fallback: Newsreader)_

| Role | Size / weight · line-height · tracking |
|------|------------------------------------------|
| hero | 56px / 600 · lh 64px · tracking 0.28px |
| h2 | 48px / 500 · lh 60px · tracking -0.24px |
| h3 | 42px / 600 · lh 50px · tracking -0.55px |
| body | 16px / 400 · lh 24px · tracking 0.32px |
| small | 14px / 400 · lh 24px · tracking 0.32px |

- Weight ladder: 400 · 500 · 600 — use these exact measured weights, not the 400/600 defaults.

> **Fonts —** Gusto Clearface may be proprietary — safe free fallback: Newsreader (Google Fonts). Centra No.2 may be proprietary — safe free fallback: Newsreader (Google Fonts).

## Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
- section rhythm: 64px top/bottom padding per section (measured)

## Radius
- base: 4px
- button: 8px
- card: 8px
- pill: 9999px
- sharp: 2px

## Primary button
- bg `#0A8080` · text `#FFFFFF` · radius 8px

## 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.

---

> **Decoded with Mozaika** — measured live, not guessed. Full decoded design system + one-command install: mozaika.design/ds/gusto

Export: Tailwind v4 (@theme)

@theme {
  /* action color #0A8080 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFFFFF;
  --color-surface: #F1F1F1;
  --color-border: #DCDCDC;
  --color-text: #1C1C1C;
  --color-text-muted: #727272;
  --color-primary: #0A8080;  /* primary brand / action color. */
  --color-accent: #0A8080;  /* 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: #005C5C;  /* inline text links and link-styled controls. */
  --color-secondary: #C53336;  /* 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: #0A8080;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: Gusto Clearface may be proprietary — safe free fallback: Newsreader (Google Fonts). Centra No.2 may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "Gusto Clearface", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Centra No.2", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  /* measured weights: 400, 500, 600 — use these, not 400/600 */
  --text-hero: 56px; --font-weight-hero: 600; --leading-hero: 64px; --tracking-hero: 0.28px;
  --text-h2: 48px; --font-weight-h2: 500; --leading-h2: 60px; --tracking-h2: -0.24px;
  --text-h3: 42px; --font-weight-h3: 600; --leading-h3: 50px; --tracking-h3: -0.55px;
  --text-body: 16px; --font-weight-body: 400; --leading-body: 24px; --tracking-body: 0.32px;
  --text-small: 14px; --font-weight-small: 400; --leading-small: 24px; --tracking-small: 0.32px;
  --radius-base: 4px;
  --radius-button: 8px;
  --radius-card: 8px;
  --radius-pill: 9999px;
  --radius-sharp: 2px;
  --section-y: 64px;  /* per-section vertical padding (measured) */
  --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 #0A8080 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFFFFF;
  --surface: #F1F1F1;
  --border: #DCDCDC;
  --text: #1C1C1C;
  --text-muted: #727272;
  --primary: #0A8080;  /* primary brand / action color. */
  --accent: #0A8080;  /* 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: #005C5C;  /* inline text links and link-styled controls. */
  --secondary: #C53336;  /* 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: #0A8080;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Gusto Clearface", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Centra No.2", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-hero: 56px; --weight-hero: 600; --leading-hero: 64px; --tracking-hero: 0.28px;
  --text-h2: 48px; --weight-h2: 500; --leading-h2: 60px; --tracking-h2: -0.24px;
  --text-h3: 42px; --weight-h3: 600; --leading-h3: 50px; --tracking-h3: -0.55px;
  --text-body: 16px; --weight-body: 400; --leading-body: 24px; --tracking-body: 0.32px;
  --text-small: 14px; --weight-small: 400; --leading-small: 24px; --tracking-small: 0.32px;
  --radius: 4px;
  --radius-button: 8px;
  --radius-card: 8px;
  --radius-pill: 9999px;
  --radius-sharp: 2px;
  --section-y: 64px;
}
/* fonts: Gusto Clearface may be proprietary — safe free fallback: Newsreader (Google Fonts). Centra No.2 may be proprietary — safe free fallback: Newsreader (Google Fonts). */