MozaikaDesign system

Function Health — Design System

light · modern · medium · custom · confidence 92%

The full decoded design system for Function Health: 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/function-health.

Tokens

Function Health's decoded design system: background #FEF9EF, text #2A2B2F, accent #B05A36, link #B05A36, primary #FEF9EF; type scale h1 80px / h2 64px / body 14px; 4px spacing base; 12px base radius. The single interactive/action color is #B05A36 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FEF9EF
surface#F1ECE3
border#DEDAD2
text#2A2B2F
text_muted#7A7977
primary#FEF9EF
accent#B05A36
link#B05A36
secondary#F5EEE1
button_bg#B05A36
button_text#FEF9EF

Using these colors

Typography

Spacing

Radii

Per-section tokens (12)

Export: DESIGN.md

# Function Health — Design System

> light, modern, medium, custom

## Colors

| Role | Value |
|------|-------|
| bg | `#FEF9EF` |
| surface | `#F1ECE3` |
| border | `#DEDAD2` |
| text | `#2A2B2F` |
| text_muted | `#7A7977` |
| primary | `#FEF9EF` |
| accent | `#B05A36` |
| link | `#B05A36` |
| secondary | `#F5EEE1` |
| button_bg | `#B05A36` |
| button_text | `#FEF9EF` |

**Using these colors**

- **Action color** `#B05A36` — 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`, `button_bg` are all `#B05A36` — one role, not several (your action color).
- **accent** `#B05A36` — 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.
- **primary** `#FEF9EF` — a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #B05A36).
- **secondary** `#F5EEE1` — 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: **Financier Display** _(free fallback: Newsreader)_
- Body: **Arial**
- h1: 80px
- h2: 64px
- body: 14px

> **Fonts —** Financier Display may be proprietary — safe free fallback: Newsreader (Google Fonts). Arial — system font, no web load needed.

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

## Radius
- base: 12px
- button: 40px

## Primary button
- bg `#B05A36` · text `#FEF9EF` · radius 40px

## 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 #B05A36 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FEF9EF;
  --color-surface: #F1ECE3;
  --color-border: #DEDAD2;
  --color-text: #2A2B2F;
  --color-text-muted: #7A7977;
  --color-primary: #FEF9EF;  /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #B05A36). */
  --color-accent: #B05A36;  /* 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: #B05A36;  /* inline text links — shares the action color. */
  --color-secondary: #F5EEE1;  /* 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: #B05A36;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FEF9EF;
  /* fonts: Financier Display may be proprietary — safe free fallback: Newsreader (Google Fonts). Arial — system font, no web load needed. */
  --font-heading: "Financier Display", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Arial", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 80px;
  --text-h2: 64px;
  --text-body: 14px;
  --radius-base: 12px;
  --radius-button: 40px;
  --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 #B05A36 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FEF9EF;
  --surface: #F1ECE3;
  --border: #DEDAD2;
  --text: #2A2B2F;
  --text-muted: #7A7977;
  --primary: #FEF9EF;  /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #B05A36). */
  --accent: #B05A36;  /* 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: #B05A36;  /* inline text links — shares the action color. */
  --secondary: #F5EEE1;  /* 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: #B05A36;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FEF9EF;
  --font-heading: "Financier Display", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Arial", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-button: 40px;
}
/* fonts: Financier Display may be proprietary — safe free fallback: Newsreader (Google Fonts). Arial — system font, no web load needed. */