MozaikaDesign system

Monarch Money — Design System

light · modern · medium · tailwind · confidence 92%

Monarch gives personal finance an editorial calm: Copernicus serif at 48px on a precise 350 weight — lighter than book, warmer than light — over linen #F6F5F3, with ABC Oracle at 18px in the working text. Sankey flows and budget dashboards supply the color; a single tangerine #FF692D full-pill CTA supplies the push. Money software that reads like a well-designed annual report for your life.

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/monarch-money.

Tokens

Monarch Money's decoded design system: background #F6F5F3, text #22201D, accent #FF692D, link #F35B16, primary #FF692D; type scale h1 48px / h2 40px / body 18px; 4px spacing base; 6px base radius. The single interactive/action color is #FF692D — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#F6F5F3
surface#E9E8E6
border#D6D5D2
text#22201D
text_muted#72706E
primary#FF692D
accent#FF692D
link#F35B16
secondary#9499AD
button_bg#FF692D
button_text#FEFCFB

Using these colors

Typography

Spacing

Radii

Shadow

rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(34, 32, 29, 0.05) 0px 1px 2px 0px

Per-section tokens (12)

Export: DESIGN.md

# Monarch Money — Design System

> light, modern, medium, tailwind

Monarch gives personal finance an editorial calm: Copernicus serif at 48px on a precise 350 weight — lighter than book, warmer than light — over linen #F6F5F3, with ABC Oracle at 18px in the working text. Sankey flows and budget dashboards supply the color; a single tangerine #FF692D full-pill CTA supplies the push. Money software that reads like a well-designed annual report for your life.

## Colors

| Role | Value |
|------|-------|
| bg | `#F6F5F3` |
| surface | `#E9E8E6` |
| border | `#D6D5D2` |
| text | `#22201D` |
| text_muted | `#72706E` |
| primary | `#FF692D` |
| accent | `#FF692D` |
| link | `#F35B16` |
| secondary | `#9499AD` |
| button_bg | `#FF692D` |
| button_text | `#FEFCFB` |

**Using these colors**

- **Action color** `#FF692D` — 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`, `button_bg` are all `#FF692D` — one role, not several (your action color).
- **accent** `#FF692D` — 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** `#F35B16` — inline text links and link-styled controls.
- **secondary** `#9499AD` — 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: **Copernicus** _(free fallback: Newsreader)_
- Body: **ABC Oracle** _(free fallback: Newsreader)_
- h1: 48px
- h2: 40px
- body: 18px

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

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

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

## Primary button
- bg `#FF692D` · text `#FEFCFB` · 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 #FF692D — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #F6F5F3;
  --color-surface: #E9E8E6;
  --color-border: #D6D5D2;
  --color-text: #22201D;
  --color-text-muted: #72706E;
  --color-primary: #FF692D;  /* primary brand / action color. */
  --color-accent: #FF692D;  /* 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: #F35B16;  /* inline text links and link-styled controls. */
  --color-secondary: #9499AD;  /* 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: #FF692D;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FEFCFB;
  /* fonts: Copernicus may be proprietary — safe free fallback: Newsreader (Google Fonts). ABC Oracle may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "Copernicus", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "ABC Oracle", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 48px;
  --text-h2: 40px;
  --text-body: 18px;
  --radius-base: 6px;
  --radius-button: 9999px;
  --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 #FF692D — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #F6F5F3;
  --surface: #E9E8E6;
  --border: #D6D5D2;
  --text: #22201D;
  --text-muted: #72706E;
  --primary: #FF692D;  /* primary brand / action color. */
  --accent: #FF692D;  /* 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: #F35B16;  /* inline text links and link-styled controls. */
  --secondary: #9499AD;  /* 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: #FF692D;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FEFCFB;
  --font-heading: "Copernicus", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "ABC Oracle", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 6px;
  --radius-button: 9999px;
}
/* fonts: Copernicus may be proprietary — safe free fallback: Newsreader (Google Fonts). ABC Oracle may be proprietary — safe free fallback: Newsreader (Google Fonts). */