MozaikaDesign system

Depot — Design System

dark · professional · medium · tailwind · confidence 90%

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

Tokens

Depot's decoded design system: background #04040B, text #ECECEE, accent #71D083, link #70B8FF, primary #1B2A1E; type scale h1 60px / h2 60px / body 18px; 4px spacing base; 1px base radius. The single interactive/action color is #1B2A1E — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#04040B
surface#111118
border#26262D
text#ECECEE
text_muted#939397
primary#1B2A1E
accent#71D083
link#70B8FF
secondary#71D083
button_bg#1B2A1E
button_text#71D083

Using these colors

Typography

Spacing

Radii

Per-section tokens (9)

Export: DESIGN.md

# Depot — Design System

> dark, professional, medium, tailwind

## Colors

| Role | Value |
|------|-------|
| bg | `#04040B` |
| surface | `#111118` |
| border | `#26262D` |
| text | `#ECECEE` |
| text_muted | `#939397` |
| primary | `#1B2A1E` |
| accent | `#71D083` |
| link | `#70B8FF` |
| secondary | `#71D083` |
| button_bg | `#1B2A1E` |
| button_text | `#71D083` |

**Using these colors**

- **Action color** `#1B2A1E` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds.
- `primary`, `button_bg` are all `#1B2A1E` — one role, not several (your action color).
- `accent`, `secondary` are all `#71D083` — one role, not several.
- **accent** `#71D083` — accent for emphasis — keep it rare on the page.
- **link** `#70B8FF` — inline text links and link-styled controls.

## Typography

- Heading: **Red Hat Display** _(free fallback: Newsreader)_
- Body: **Red Hat Text** _(free fallback: Newsreader)_
- h1: 60px
- h2: 60px
- body: 18px

> **Fonts —** Red Hat Display may be proprietary — safe free fallback: Newsreader (Google Fonts). Red Hat Text may be proprietary — safe free fallback: Newsreader (Google Fonts).

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

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

## Primary button
- bg `#1B2A1E` · text `#71D083` · 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 #1B2A1E — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #04040B;
  --color-surface: #111118;
  --color-border: #26262D;
  --color-text: #ECECEE;
  --color-text-muted: #939397;
  --color-primary: #1B2A1E;  /* primary brand / action color. */
  --color-accent: #71D083;  /* accent for emphasis — keep it rare on the page. */
  --color-link: #70B8FF;  /* inline text links and link-styled controls. */
  --color-secondary: #71D083;  /* 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: #1B2A1E;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #71D083;
  /* fonts: Red Hat Display may be proprietary — safe free fallback: Newsreader (Google Fonts). Red Hat Text may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "Red Hat Display", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Red Hat Text", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 60px;
  --text-h2: 60px;
  --text-body: 18px;
  --radius-base: 1px;
  --radius-button: 10px;
  --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 #1B2A1E — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #04040B;
  --surface: #111118;
  --border: #26262D;
  --text: #ECECEE;
  --text-muted: #939397;
  --primary: #1B2A1E;  /* primary brand / action color. */
  --accent: #71D083;  /* accent for emphasis — keep it rare on the page. */
  --link: #70B8FF;  /* inline text links and link-styled controls. */
  --secondary: #71D083;  /* 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: #1B2A1E;  /* primary-button fill — the main call-to-action color. */
  --button-text: #71D083;
  --font-heading: "Red Hat Display", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Red Hat Text", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 1px;
  --radius-button: 10px;
}
/* fonts: Red Hat Display may be proprietary — safe free fallback: Newsreader (Google Fonts). Red Hat Text may be proprietary — safe free fallback: Newsreader (Google Fonts). */