MozaikaDesign system

Cargo — Design System

light · minimalist · low · custom · confidence 45%

The full decoded design system for Cargo: 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/cargo.

Tokens

Cargo's decoded design system: background #FCFCFC, text #000000, accent #000000, link #000000, primary #000000; type scale h1 7497.75px / h2 7497.75px / body 16px; 8px spacing base; 0px base radius. The single interactive/action color is #000000 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FCFCFC
surface#ECECEC
border#D6D6D6
text#000000
text_muted#5F5F5F
primary#000000
accent#000000
link#000000

Using these colors

Typography

Spacing

Radii

Export: DESIGN.md

# Cargo — Design System

> light, minimalist, low, custom

## Colors

| Role | Value |
|------|-------|
| bg | `#FCFCFC` |
| surface | `#ECECEC` |
| border | `#D6D6D6` |
| text | `#000000` |
| text_muted | `#5F5F5F` |
| primary | `#000000` |
| accent | `#000000` |
| link | `#000000` |

**Using these colors**

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


| Role | Size / weight · line-height · tracking |
|------|------------------------------------------|
| hero | 41px / 500 · lh 41px · tracking -1.02px |
| body | 15px / 400 · lh 15px |

- Weight ladder: 400 · 500 — use these exact measured weights, not the 400/600 defaults.

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

## Radius
- base: 0px
- button: 0px

## Primary button
- bg `None` · text `None` · radius None

## 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 #000000 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FCFCFC;
  --color-surface: #ECECEC;
  --color-border: #D6D6D6;
  --color-text: #000000;
  --color-text-muted: #5F5F5F;
  --color-primary: #000000;  /* ≈ the text color — a foreground/text color, not an action color (action = #000000). */
  --color-accent: #000000;  /* 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: #000000;  /* inline text links — shares the action color. */
  /* measured weights: 400, 500 — use these, not 400/600 */
  --text-hero: 41px; --font-weight-hero: 500; --leading-hero: 41px; --tracking-hero: -1.02px;
  --text-body: 15px; --font-weight-body: 400; --leading-body: 15px;
  --radius-base: 0px;
  --radius-button: 0px;
  --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 #000000 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FCFCFC;
  --surface: #ECECEC;
  --border: #D6D6D6;
  --text: #000000;
  --text-muted: #5F5F5F;
  --primary: #000000;  /* ≈ the text color — a foreground/text color, not an action color (action = #000000). */
  --accent: #000000;  /* 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: #000000;  /* inline text links — shares the action color. */
  --text-hero: 41px; --weight-hero: 500; --leading-hero: 41px; --tracking-hero: -1.02px;
  --text-body: 15px; --weight-body: 400; --leading-body: 15px;
  --radius: 0px;
  --radius-button: 0px;
}