Modern Treasury — Design System
Modern Treasury moves money in Neue Haas Grotesk: Display cut at 71px on a precise 450 weight ('Build Products That Move Money'), Text cut at 16px, JetBrains Mono for the ledger data, and near-square 2px-radius buttons. Payment-flow diagrams in banker's neutrals complete it — fintech infrastructure typeset like the Swiss ledger it wants to be.
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/modern-treasury.
Tokens
Modern Treasury's decoded design system: background #FFFFFF, text #151515, accent #BAE0CF, link #BAE0CF, primary #543B4E; type scale h1 71px / h2 47px / body 14px; 4px spacing base; 2px base radius. The single interactive/action color is #BAE0CF — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FFFFFF |
| surface | #F0F0F0 |
| border | #DBDBDB |
| text | #151515 |
| text_muted | #6D6D6D |
| primary | #543B4E |
| accent | #BAE0CF |
| link | #BAE0CF |
| secondary | #0C221D |
| button_bg | #BAE0CF |
| button_text | #151515 |
Using these colors
- Action color
#BAE0CF— the single interactive color; only on things you click or must notice, never large fills. accent,link,button_bgare all#BAE0CF— one role, not several (the action color).- accent
#BAE0CF— 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
#543B4E— a brand color — but the call-to-action uses #BAE0CF, not this. - secondary
#0C221D— 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: mt-neue-text
- Body: mt-sans
- h1: 71px
- h2: 47px
- body: 14px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 2px
- button: 2px
Per-section tokens (9)
- Hero
- Logo Wall
- Feature
- Steps / How-it-works
- Stats / Metrics
- Bento Grid
- CTA / Sign-up
- Testimonial / Social Proof
- Footer
Export: DESIGN.md
# Modern Treasury — Design System
> light, professional, medium, tailwind
Modern Treasury moves money in Neue Haas Grotesk: Display cut at 71px on a precise 450 weight ('Build Products That Move Money'), Text cut at 16px, JetBrains Mono for the ledger data, and near-square 2px-radius buttons. Payment-flow diagrams in banker's neutrals complete it — fintech infrastructure typeset like the Swiss ledger it wants to be.
## Colors
| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#F0F0F0` |
| border | `#DBDBDB` |
| text | `#151515` |
| text_muted | `#6D6D6D` |
| primary | `#543B4E` |
| accent | `#BAE0CF` |
| link | `#BAE0CF` |
| secondary | `#0C221D` |
| button_bg | `#BAE0CF` |
| button_text | `#151515` |
**Using these colors**
- **Action color** `#BAE0CF` — 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 `#BAE0CF` — one role, not several (your action color).
- **accent** `#BAE0CF` — 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** `#543B4E` — a brand color — but the call-to-action uses #BAE0CF, not this.
- **secondary** `#0C221D` — 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: **mt-neue-text** _(free fallback: Newsreader)_
- Body: **mt-sans** _(free fallback: Newsreader)_
- h1: 71px
- h2: 47px
- body: 14px
> **Fonts —** mt-neue-text may be proprietary — safe free fallback: Newsreader (Google Fonts). mt-sans may be proprietary — safe free fallback: Newsreader (Google Fonts).
## Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
## Radius
- base: 2px
- button: 2px
## Primary button
- bg `#BAE0CF` · text `#151515` · radius 2px
## 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 #BAE0CF — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FFFFFF;
--color-surface: #F0F0F0;
--color-border: #DBDBDB;
--color-text: #151515;
--color-text-muted: #6D6D6D;
--color-primary: #543B4E; /* a brand color — but the call-to-action uses #BAE0CF, not this. */
--color-accent: #BAE0CF; /* 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: #BAE0CF; /* inline text links — shares the action color. */
--color-secondary: #0C221D; /* 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: #BAE0CF; /* primary-button fill — the main call-to-action color. */
--color-button-text: #151515;
/* fonts: mt-neue-text may be proprietary — safe free fallback: Newsreader (Google Fonts). mt-sans may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "mt-neue-text", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "mt-sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 71px;
--text-h2: 47px;
--text-body: 14px;
--radius-base: 2px;
--radius-button: 2px;
--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 #BAE0CF — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FFFFFF;
--surface: #F0F0F0;
--border: #DBDBDB;
--text: #151515;
--text-muted: #6D6D6D;
--primary: #543B4E; /* a brand color — but the call-to-action uses #BAE0CF, not this. */
--accent: #BAE0CF; /* 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: #BAE0CF; /* inline text links — shares the action color. */
--secondary: #0C221D; /* 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: #BAE0CF; /* primary-button fill — the main call-to-action color. */
--button-text: #151515;
--font-heading: "mt-neue-text", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "mt-sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 2px;
--radius-button: 2px;
}
/* fonts: mt-neue-text may be proprietary — safe free fallback: Newsreader (Google Fonts). mt-sans may be proprietary — safe free fallback: Newsreader (Google Fonts). */