MozaikaDesign system

Attio — Design System

light · modern · medium · tailwind · confidence 92%

Attio engineers CRM in Inter Display at 64px/600 with lab()-precise near-blacks, Inter at 16px, and 10px-radius ink buttons. Pipeline views and comparison matrices render with spreadsheet crispness — 'the revenue platform engineered for scale' proving it through typographic tolerances rather than gradients.

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

Tokens

Attio's decoded design system: background #FFFFFF, text #2E3238, accent #1A1A1A, link #6F7988, primary #B5BDC9; type scale h1 64px / h2 32px / body 16px; 8px spacing base; 10px base radius. The single interactive/action color is #202124 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FFFFFF
surface#F2F2F3
border#DFE0E1
text#2E3238
text_muted#7D7F83
primary#B5BDC9
accent#1A1A1A
link#6F7988
secondary#A4ADBA
button_bg#202124
button_text#F3F4F6

Using these colors

Typography

Spacing

Radii

Per-section tokens (7)

Export: DESIGN.md

# Attio — Design System

> light, modern, medium, tailwind

Attio engineers CRM in Inter Display at 64px/600 with lab()-precise near-blacks, Inter at 16px, and 10px-radius ink buttons. Pipeline views and comparison matrices render with spreadsheet crispness — 'the revenue platform engineered for scale' proving it through typographic tolerances rather than gradients.

## Colors

| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#F2F2F3` |
| border | `#DFE0E1` |
| text | `#2E3238` |
| text_muted | `#7D7F83` |
| primary | `#B5BDC9` |
| accent | `#1A1A1A` |
| link | `#6F7988` |
| secondary | `#A4ADBA` |
| button_bg | `#202124` |
| button_text | `#F3F4F6` |

**Using these colors**

- **Action color** `#202124` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds.
- **accent** `#1A1A1A` — accent for emphasis — keep it rare on the page.
- **primary** `#B5BDC9` — a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #202124).
- **link** `#6F7988` — reads as a neutral UI color, not a link accent — verify against the reference (action = #202124).
- **secondary** `#A4ADBA` — 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: **Inter Display**
- Body: **Inter**
- h1: 64px
- h2: 32px
- body: 16px

> **Fonts —** Inter Display — free, on Google. Inter — free, on Google.

## Spacing
- base unit: 8px
- scale: 4px, 8px, 12px, 16px, 24px, 32px, 48px, 64px

## Radius
- base: 10px
- button: 10px

## Primary button
- bg `#202124` · text `#F3F4F6` · radius 10px

## 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 #202124 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFFFFF;
  --color-surface: #F2F2F3;
  --color-border: #DFE0E1;
  --color-text: #2E3238;
  --color-text-muted: #7D7F83;
  --color-primary: #B5BDC9;  /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #202124). */
  --color-accent: #1A1A1A;  /* accent for emphasis — keep it rare on the page. */
  --color-link: #6F7988;  /* reads as a neutral UI color, not a link accent — verify against the reference (action = #202124). */
  --color-secondary: #A4ADBA;  /* 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: #202124;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #F3F4F6;
  /* fonts: Inter Display — free, on Google. Inter — free, on Google. */
  --font-heading: "Inter Display", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 64px;
  --text-h2: 32px;
  --text-body: 16px;
  --radius-base: 10px;
  --radius-button: 10px;
  --spacing-1: 4px;
  --spacing-2: 8px;
  --spacing-3: 12px;
  --spacing-4: 16px;
  --spacing-5: 24px;
  --spacing-6: 32px;
  --spacing-7: 48px;
  --spacing-8: 64px;
}

Export: CSS variables

:root {
  /* action color #202124 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFFFFF;
  --surface: #F2F2F3;
  --border: #DFE0E1;
  --text: #2E3238;
  --text-muted: #7D7F83;
  --primary: #B5BDC9;  /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #202124). */
  --accent: #1A1A1A;  /* accent for emphasis — keep it rare on the page. */
  --link: #6F7988;  /* reads as a neutral UI color, not a link accent — verify against the reference (action = #202124). */
  --secondary: #A4ADBA;  /* 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: #202124;  /* primary-button fill — the main call-to-action color. */
  --button-text: #F3F4F6;
  --font-heading: "Inter Display", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 10px;
  --radius-button: 10px;
}
/* fonts: Inter Display — free, on Google. Inter — free, on Google. */