MozaikaDesign system

Netlify — Design System

light · modern · high · custom · confidence 92%

Netlify runs an all-Figtree system at maximum weight: 64px/800 headlines over dark navy heroes, 16px body, and its signature teal #32E6E2 on full-pill 360px buttons. 'Start with a prompt / Deploy from Git / Drag and drop' panels turn the platform's flexibility into layout — AI-era deployment wearing the rounded, high-contrast confidence of a devtool that got there first.

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

Tokens

Netlify's decoded design system: background #FFFFFF, text #181A1C, accent #32E6E2, link #2E51ED, primary #32E6E2; type scale h1 64px / h2 48.64px / body 14px; 4px spacing base; 3px base radius. The single interactive/action color is #32E6E2 — 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#181A1C
text_muted#6F7172
primary#32E6E2
accent#32E6E2
link#2E51ED
secondary#9DA7B2
button_bg#32E6E2
button_text#12181F

Using these colors

Typography

Spacing

Radii

Per-section tokens (12)

Export: DESIGN.md

# Netlify — Design System

> light, modern, high, custom

Netlify runs an all-Figtree system at maximum weight: 64px/800 headlines over dark navy heroes, 16px body, and its signature teal #32E6E2 on full-pill 360px buttons. 'Start with a prompt / Deploy from Git / Drag and drop' panels turn the platform's flexibility into layout — AI-era deployment wearing the rounded, high-contrast confidence of a devtool that got there first.

## Colors

| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#F1F1F1` |
| border | `#DCDCDC` |
| text | `#181A1C` |
| text_muted | `#6F7172` |
| primary | `#32E6E2` |
| accent | `#32E6E2` |
| link | `#2E51ED` |
| secondary | `#9DA7B2` |
| button_bg | `#32E6E2` |
| button_text | `#12181F` |

**Using these colors**

- **Action color** `#32E6E2` — 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 `#32E6E2` — one role, not several (your action color).
- **accent** `#32E6E2` — 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** `#2E51ED` — inline text links and link-styled controls.
- **secondary** `#9DA7B2` — 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: **Instrument Sans**
- Body: **Figtree**
- Mono: **Martian Mono**
- h1: 64px
- h2: 48.64px
- body: 14px

> **Fonts —** Instrument Sans — free, on Google. Figtree — free, on Google.

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

## Radius
- base: 3px
- button: 360px

## Primary button
- bg `#32E6E2` · text `#12181F` · radius 360px

## 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 #32E6E2 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFFFFF;
  --color-surface: #F1F1F1;
  --color-border: #DCDCDC;
  --color-text: #181A1C;
  --color-text-muted: #6F7172;
  --color-primary: #32E6E2;  /* primary brand / action color. */
  --color-accent: #32E6E2;  /* 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: #2E51ED;  /* inline text links and link-styled controls. */
  --color-secondary: #9DA7B2;  /* 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: #32E6E2;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #12181F;
  /* fonts: Instrument Sans — free, on Google. Figtree — free, on Google. */
  --font-heading: "Instrument Sans", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Figtree", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: "Martian Mono", ui-monospace, monospace;
  --text-h1: 64px;
  --text-h2: 48.64px;
  --text-body: 14px;
  --radius-base: 3px;
  --radius-button: 360px;
  --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 #32E6E2 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFFFFF;
  --surface: #F1F1F1;
  --border: #DCDCDC;
  --text: #181A1C;
  --text-muted: #6F7172;
  --primary: #32E6E2;  /* primary brand / action color. */
  --accent: #32E6E2;  /* 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: #2E51ED;  /* inline text links and link-styled controls. */
  --secondary: #9DA7B2;  /* 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: #32E6E2;  /* primary-button fill — the main call-to-action color. */
  --button-text: #12181F;
  --font-heading: "Instrument Sans", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Figtree", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: "Martian Mono", ui-monospace, monospace;
  --radius: 3px;
  --radius-button: 360px;
}
/* fonts: Instrument Sans — free, on Google. Figtree — free, on Google. */