MozaikaDesign system

Calendly — Design System

light · professional · medium · custom · confidence 92%

Calendly matured into its own typeface: Calendly Sans at 72px/500 in deep navy #071A31 ('Easy scheduling ahead.'), Gilroy on the #006BFF 8px-radius buttons, 16-18px body. Booking widgets embed as live proof and enterprise logos anchor the trust story — the scheduling category's default brand, dressed with the calm of incumbency.

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

Tokens

Calendly's decoded design system: background #F8F9FB, text #0A0A0B, accent #006BFF, link #0B3558, primary #006BFF; type scale h1 68px / h2 18px / body 20px; 4px spacing base; 8px base radius. The single interactive/action color is #006BFF — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#F8F9FB
surface#E9EAEC
border#D4D5D7
text#0A0A0B
text_muted#646466
primary#006BFF
accent#006BFF
link#0B3558
secondary#476788
button_bg#006BFF
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Per-section tokens (10)

Export: DESIGN.md

# Calendly — Design System

> light, professional, medium, custom

Calendly matured into its own typeface: Calendly Sans at 72px/500 in deep navy #071A31 ('Easy scheduling ahead.'), Gilroy on the #006BFF 8px-radius buttons, 16-18px body. Booking widgets embed as live proof and enterprise logos anchor the trust story — the scheduling category's default brand, dressed with the calm of incumbency.

## Colors

| Role | Value |
|------|-------|
| bg | `#F8F9FB` |
| surface | `#E9EAEC` |
| border | `#D4D5D7` |
| text | `#0A0A0B` |
| text_muted | `#646466` |
| primary | `#006BFF` |
| accent | `#006BFF` |
| link | `#0B3558` |
| secondary | `#476788` |
| button_bg | `#006BFF` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#006BFF` — 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 `#006BFF` — one role, not several (your action color).
- **accent** `#006BFF` — 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** `#0B3558` — inline text links and link-styled controls.
- **secondary** `#476788` — 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: 68px
- h2: 18px
- body: 20px

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

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

## Radius
- base: 8px
- button: 8px

## Primary button
- bg `#006BFF` · 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.

Export: Tailwind v4 (@theme)

@theme {
  /* action color #006BFF — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #F8F9FB;
  --color-surface: #E9EAEC;
  --color-border: #D4D5D7;
  --color-text: #0A0A0B;
  --color-text-muted: #646466;
  --color-primary: #006BFF;  /* primary brand / action color. */
  --color-accent: #006BFF;  /* 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: #0B3558;  /* inline text links and link-styled controls. */
  --color-secondary: #476788;  /* 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: #006BFF;  /* 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: 68px;
  --text-h2: 18px;
  --text-body: 20px;
  --radius-base: 8px;
  --radius-button: 8px;
  --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 #006BFF — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #F8F9FB;
  --surface: #E9EAEC;
  --border: #D4D5D7;
  --text: #0A0A0B;
  --text-muted: #646466;
  --primary: #006BFF;  /* primary brand / action color. */
  --accent: #006BFF;  /* 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: #0B3558;  /* inline text links and link-styled controls. */
  --secondary: #476788;  /* 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: #006BFF;  /* 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: 8px;
  --radius-button: 8px;
}
/* fonts: Roboto — free, on Google. */