MozaikaDesign system

Cartesia — Design System

light · modern · medium · tailwind · confidence 92%

The full decoded design system for Cartesia: color roles, type scale, spacing, radii and paste-ready DESIGN.md / Tailwind / CSS exports.

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

Tokens

Cartesia's decoded design system: background #F9F9F8, text #1E1C1A, accent #004E23, link #004E23, primary #004E23; type scale h1 36px / h2 24px / body 48px; 4px spacing base; 4px base radius. The single interactive/action color is #004E23 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#F9F9F8
surface#EBEBEA
border#D8D7D6
text#1E1C1A
text_muted#716F6E
primary#004E23
accent#004E23
link#004E23
button_bg#004E23
button_text#FEFEFE

Using these colors

Typography

Spacing

Radii

Per-section tokens (10)

Export: DESIGN.md

# Cartesia — Design System

> light, modern, medium, tailwind

## Colors

| Role | Value |
|------|-------|
| bg | `#F9F9F8` |
| surface | `#EBEBEA` |
| border | `#D8D7D6` |
| text | `#1E1C1A` |
| text_muted | `#716F6E` |
| primary | `#004E23` |
| accent | `#004E23` |
| link | `#004E23` |
| button_bg | `#004E23` |
| button_text | `#FEFEFE` |

**Using these colors**

- **Action color** `#004E23` — 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`, `link`, `button_bg` are all `#004E23` — one role, not several (your action color).
- **accent** `#004E23` — 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.

## Typography

- Heading: **PP Kyoto** _(free fallback: Newsreader)_
- Body: **ABC Diatype** _(free fallback: Space Grotesk)_
- h1: 36px
- h2: 24px
- body: 48px

> **Fonts —** PP Kyoto may be proprietary — safe free fallback: Newsreader (Google Fonts). ABC Diatype is proprietary — closest free match: Space Grotesk (Google). Load Space Grotesk; keep ABC Diatype first so licensed users still get it.

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

## Radius
- base: 4px
- button: 7px

## Primary button
- bg `#004E23` · text `#FEFEFE` · radius 7px

## 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 #004E23 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #F9F9F8;
  --color-surface: #EBEBEA;
  --color-border: #D8D7D6;
  --color-text: #1E1C1A;
  --color-text-muted: #716F6E;
  --color-primary: #004E23;  /* primary brand / action color. */
  --color-accent: #004E23;  /* 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: #004E23;  /* inline text links — shares the action color. */
  --color-button-bg: #004E23;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FEFEFE;
  /* fonts: PP Kyoto may be proprietary — safe free fallback: Newsreader (Google Fonts). ABC Diatype is proprietary — closest free match: Space Grotesk (Google). Load Space Grotesk; keep ABC Diatype first so licensed users still get it. */
  --font-heading: "PP Kyoto", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "ABC Diatype", "Space Grotesk", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 36px;
  --text-h2: 24px;
  --text-body: 48px;
  --radius-base: 4px;
  --radius-button: 7px;
  --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 #004E23 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #F9F9F8;
  --surface: #EBEBEA;
  --border: #D8D7D6;
  --text: #1E1C1A;
  --text-muted: #716F6E;
  --primary: #004E23;  /* primary brand / action color. */
  --accent: #004E23;  /* 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: #004E23;  /* inline text links — shares the action color. */
  --button-bg: #004E23;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FEFEFE;
  --font-heading: "PP Kyoto", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "ABC Diatype", "Space Grotesk", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 4px;
  --radius-button: 7px;
}
/* fonts: PP Kyoto may be proprietary — safe free fallback: Newsreader (Google Fonts). ABC Diatype is proprietary — closest free match: Space Grotesk (Google). Load Space Grotesk; keep ABC Diatype first so licensed users still get it. */