MozaikaDesign system

Copilot Money — Design System

dark · modern · medium · custom · confidence 92%

Copilot Money owns the biggest headline in consumer fintech: Jokker at a cinematic 148px/600 — 'Your money, beautifully organized.' — glowing on midnight #000814, with 16px body and soft 14px-radius buttons. App screens float in dark glass with category-color accents; a personal-finance app whose landing page makes the same promise as its charts: order, rendered gorgeously.

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

Tokens

Copilot Money's decoded design system: background #000814, text #ECECEE, accent #1C6CFF, link #000814, primary #010D1E; type scale h1 148px / h2 64px / body 16px; 4px spacing base; 0px base radius. The single interactive/action color is #1C6CFF — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#000814
surface#0E1521
border#232A34
text#ECECEE
text_muted#92959B
primary#010D1E
accent#1C6CFF
link#000814
secondary#1C6CFF
button_bg#1C6CFF
button_text#000000

Using these colors

Typography

Spacing

Radii

Shadow

rgba(0, 0, 0, 0.07) 0px 0.362176px 0.651917px -1.5px, rgba(0, 0, 0, 0.05) 0px 3px 5.4px -3px

Per-section tokens (10)

Export: DESIGN.md

# Copilot Money — Design System

> dark, modern, medium, custom

Copilot Money owns the biggest headline in consumer fintech: Jokker at a cinematic 148px/600 — 'Your money, beautifully organized.' — glowing on midnight #000814, with 16px body and soft 14px-radius buttons. App screens float in dark glass with category-color accents; a personal-finance app whose landing page makes the same promise as its charts: order, rendered gorgeously.

## Colors

| Role | Value |
|------|-------|
| bg | `#000814` |
| surface | `#0E1521` |
| border | `#232A34` |
| text | `#ECECEE` |
| text_muted | `#92959B` |
| primary | `#010D1E` |
| accent | `#1C6CFF` |
| link | `#000814` |
| secondary | `#1C6CFF` |
| button_bg | `#1C6CFF` |
| button_text | `#000000` |

**Using these colors**

- **Action color** `#1C6CFF` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds.
- `primary` `#010D1E`, `link` `#000814` are visually the same color (Δ16) — treat as one role.
- `accent`, `secondary`, `button_bg` are all `#1C6CFF` — one role, not several (your action color).
- **accent** `#1C6CFF` — 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.

## Typography

- Heading: **Jokker Semibold** _(free fallback: Newsreader)_
- Body: **Jokker** _(free fallback: Newsreader)_
- h1: 148px
- h2: 64px
- body: 16px

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

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

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

## Primary button
- bg `#1C6CFF` · text `#000000` · radius 16px

## 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 #1C6CFF — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #000814;
  --color-surface: #0E1521;
  --color-border: #232A34;
  --color-text: #ECECEE;
  --color-text-muted: #92959B;
  --color-primary: #010D1E;  /* a brand color — but the call-to-action uses #1C6CFF, not this. */
  --color-accent: #1C6CFF;  /* 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: #000814;  /* fails contrast on the background (~1.0:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
  --color-secondary: #1C6CFF;  /* same color as the action (see accent). */
  --color-button-bg: #1C6CFF;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #000000;
  /* fonts: Jokker Semibold may be proprietary — safe free fallback: Newsreader (Google Fonts). Jokker may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "Jokker Semibold", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Jokker", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 148px;
  --text-h2: 64px;
  --text-body: 16px;
  --radius-base: 0px;
  --radius-button: 16px;
  --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 #1C6CFF — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #000814;
  --surface: #0E1521;
  --border: #232A34;
  --text: #ECECEE;
  --text-muted: #92959B;
  --primary: #010D1E;  /* a brand color — but the call-to-action uses #1C6CFF, not this. */
  --accent: #1C6CFF;  /* 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: #000814;  /* fails contrast on the background (~1.0:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
  --secondary: #1C6CFF;  /* same color as the action (see accent). */
  --button-bg: #1C6CFF;  /* primary-button fill — the main call-to-action color. */
  --button-text: #000000;
  --font-heading: "Jokker Semibold", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Jokker", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 0px;
  --radius-button: 16px;
}
/* fonts: Jokker Semibold may be proprietary — safe free fallback: Newsreader (Google Fonts). Jokker may be proprietary — safe free fallback: Newsreader (Google Fonts). */