MozaikaDesign system

Mixpanel — Design System

light · professional · medium · custom · confidence 90%

Mixpanel wears Garnett's quirky curves at 60px like a signature, pairs them with full-round 100px pill buttons in ink black, and lets purple-accented chart illustrations bring the analytics to life on white. Numbers get display-type treatment — 48px stat heads — because the product's whole argument is that metrics deserve better design.

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

Tokens

Mixpanel's decoded design system: background #FFFFFF, text #122124, accent #0000EE, link #0000EE, primary #150040; type scale h1 60px / h2 48px / body 16px; 4px spacing base; 8px base radius. The single interactive/action color is #EDEDED — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FFFFFF
surface#F0F1F1
border#DBDDDE
text#122124
text_muted#6C7577
primary#150040
accent#0000EE
link#0000EE
secondary#122124
button_bg#EDEDED
button_text#0000EE

Using these colors

Typography

Spacing

Radii

Per-section tokens (16)

Export: DESIGN.md

# Mixpanel — Design System

> light, professional, medium, custom

Mixpanel wears Garnett's quirky curves at 60px like a signature, pairs them with full-round 100px pill buttons in ink black, and lets purple-accented chart illustrations bring the analytics to life on white. Numbers get display-type treatment — 48px stat heads — because the product's whole argument is that metrics deserve better design.

## Colors

| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#F0F1F1` |
| border | `#DBDDDE` |
| text | `#122124` |
| text_muted | `#6C7577` |
| primary | `#150040` |
| accent | `#0000EE` |
| link | `#0000EE` |
| secondary | `#122124` |
| button_bg | `#EDEDED` |
| button_text | `#0000EE` |

**Using these colors**

- **Action color** `#EDEDED` — 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` are all `#0000EE` — one role, not several.
- **accent** `#0000EE` — accent for emphasis — keep it rare on the page.
- **primary** `#150040` — a brand color — but the call-to-action uses #EDEDED, not this.
- **secondary** `#122124` — 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: **Garnett** _(free fallback: Newsreader)_
- Body: **Garnett** _(free fallback: Newsreader)_
- h1: 60px
- h2: 48px
- body: 16px

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

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

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

## Primary button
- bg `#EDEDED` · text `#0000EE` · 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 #EDEDED — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFFFFF;
  --color-surface: #F0F1F1;
  --color-border: #DBDDDE;
  --color-text: #122124;
  --color-text-muted: #6C7577;
  --color-primary: #150040;  /* a brand color — but the call-to-action uses #EDEDED, not this. */
  --color-accent: #0000EE;  /* accent for emphasis — keep it rare on the page. */
  --color-link: #0000EE;  /* inline text links and link-styled controls. */
  --color-secondary: #122124;  /* 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: #EDEDED;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #0000EE;
  /* fonts: Garnett may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "Garnett", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Garnett", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 60px;
  --text-h2: 48px;
  --text-body: 16px;
  --radius-base: 8px;
  --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 #EDEDED — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFFFFF;
  --surface: #F0F1F1;
  --border: #DBDDDE;
  --text: #122124;
  --text-muted: #6C7577;
  --primary: #150040;  /* a brand color — but the call-to-action uses #EDEDED, not this. */
  --accent: #0000EE;  /* accent for emphasis — keep it rare on the page. */
  --link: #0000EE;  /* inline text links and link-styled controls. */
  --secondary: #122124;  /* 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: #EDEDED;  /* primary-button fill — the main call-to-action color. */
  --button-text: #0000EE;
  --font-heading: "Garnett", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Garnett", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 8px;
  --radius-button: 100px;
}
/* fonts: Garnett may be proprietary — safe free fallback: Newsreader (Google Fonts). */