MozaikaDesign system

Hume — Design System

light · modern · medium · tailwind · confidence 90%

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

Tokens

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

Color roles

RoleValue
bg#FFF9F3
surface#F1ECE6
border#DDD8D3
text#222222
text_muted#757371
primary#E8739E
accent#E8739E
link#E8739E
button_bg#FFFAF4
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Per-section tokens (6)

Export: DESIGN.md

# Hume — Design System

> light, modern, medium, tailwind

## Colors

| Role | Value |
|------|-------|
| bg | `#FFF9F3` |
| surface | `#F1ECE6` |
| border | `#DDD8D3` |
| text | `#222222` |
| text_muted | `#757371` |
| primary | `#E8739E` |
| accent | `#E8739E` |
| link | `#E8739E` |
| button_bg | `#FFFAF4` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#FFFAF4` — 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 `#E8739E` — one role, not several.
- **accent** `#E8739E` — accent for emphasis — keep it rare on the page.

## Typography

- Heading: **Fellix** _(free fallback: Newsreader)_
- Body: **Fellix** _(free fallback: Newsreader)_
- h1: 48px
- body: 16px

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

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

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

## Primary button
- bg `#FFFAF4` · text `#FFFFFF` · radius 9999px

## 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 #FFFAF4 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFF9F3;
  --color-surface: #F1ECE6;
  --color-border: #DDD8D3;
  --color-text: #222222;
  --color-text-muted: #757371;
  --color-primary: #E8739E;  /* a brand color — but the call-to-action uses #FFFAF4, not this. */
  --color-accent: #E8739E;  /* accent for emphasis — keep it rare on the page. */
  --color-link: #E8739E;  /* fails contrast on the background (~2.7:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
  --color-button-bg: #FFFAF4;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: Fellix may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "Fellix", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Fellix", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 48px;
  --text-body: 16px;
  --radius-base: 0px;
  --radius-button: 9999px;
  --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 #FFFAF4 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFF9F3;
  --surface: #F1ECE6;
  --border: #DDD8D3;
  --text: #222222;
  --text-muted: #757371;
  --primary: #E8739E;  /* a brand color — but the call-to-action uses #FFFAF4, not this. */
  --accent: #E8739E;  /* accent for emphasis — keep it rare on the page. */
  --link: #E8739E;  /* fails contrast on the background (~2.7:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
  --button-bg: #FFFAF4;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Fellix", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Fellix", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 0px;
  --radius-button: 9999px;
}
/* fonts: Fellix may be proprietary — safe free fallback: Newsreader (Google Fonts). */