Wealthsimple — Design System
The full decoded design system for Wealthsimple: color roles, type scale, spacing, radii and paste-ready DESIGN.md / Tailwind / CSS exports.
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/wealthsimple.
Tokens
Wealthsimple's decoded design system: background #FCFCFC, text #32302F, accent #F5F3EF, link #4B5763, primary #FEF8CA; type scale h1 64px / h2 48px / body 16px; 4px spacing base; 12px base radius. The single interactive/action color is #F5F3EF — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FCFCFC |
| surface | #EFEFEF |
| border | #DDDDDD |
| text | #32302F |
| text_muted | #7E7D7C |
| primary | #FEF8CA |
| accent | #F5F3EF |
| link | #4B5763 |
| secondary | #737A61 |
| button_bg | #F5F3EF |
| button_text | #32302F |
Using these colors
- Action color
#F5F3EF— the single interactive color; only on things you click or must notice, never large fills. accent,button_bgare all#F5F3EF— one role, not several (the action color).- accent
#F5F3EF— 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
#FEF8CA— a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #F5F3EF). - link
#4B5763— inline text links and link-styled controls. - secondary
#737A61— 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: Tiempos
- Body: The Future
- h1: 64px
- h2: 48px
- body: 16px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 12px
- button: 0px
Per-section tokens (11)
Export: DESIGN.md
# Wealthsimple — Design System > light, professional, medium, custom ## Colors | Role | Value | |------|-------| | bg | `#FCFCFC` | | surface | `#EFEFEF` | | border | `#DDDDDD` | | text | `#32302F` | | text_muted | `#7E7D7C` | | primary | `#FEF8CA` | | accent | `#F5F3EF` | | link | `#4B5763` | | secondary | `#737A61` | | button_bg | `#F5F3EF` | | button_text | `#32302F` | **Using these colors** - **Action color** `#F5F3EF` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds. - `accent`, `button_bg` are all `#F5F3EF` — one role, not several (your action color). - **accent** `#F5F3EF` — 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** `#FEF8CA` — a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #F5F3EF). - **link** `#4B5763` — inline text links and link-styled controls. - **secondary** `#737A61` — 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: **Tiempos** _(free fallback: Newsreader)_ - Body: **The Future** _(free fallback: Newsreader)_ - h1: 64px - h2: 48px - body: 16px > **Fonts —** Tiempos is proprietary — closest free match: Newsreader (Google). Load Newsreader; keep Tiempos first so licensed users still get it. The Future may be proprietary — safe free fallback: Newsreader (Google Fonts). ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 12px - button: 0px ## Primary button - bg `#F5F3EF` · text `#32302F` · radius 0px ## 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 #F5F3EF — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FCFCFC;
--color-surface: #EFEFEF;
--color-border: #DDDDDD;
--color-text: #32302F;
--color-text-muted: #7E7D7C;
--color-primary: #FEF8CA; /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #F5F3EF). */
--color-accent: #F5F3EF; /* 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: #4B5763; /* inline text links and link-styled controls. */
--color-secondary: #737A61; /* 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: #F5F3EF; /* primary-button fill — the main call-to-action color. */
--color-button-text: #32302F;
/* fonts: Tiempos is proprietary — closest free match: Newsreader (Google). Load Newsreader; keep Tiempos first so licensed users still get it. The Future may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "Tiempos", "Newsreader", Georgia, 'Times New Roman', serif;
--font-body: "The Future", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 64px;
--text-h2: 48px;
--text-body: 16px;
--radius-base: 12px;
--radius-button: 0px;
--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 #F5F3EF — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FCFCFC;
--surface: #EFEFEF;
--border: #DDDDDD;
--text: #32302F;
--text-muted: #7E7D7C;
--primary: #FEF8CA; /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #F5F3EF). */
--accent: #F5F3EF; /* 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: #4B5763; /* inline text links and link-styled controls. */
--secondary: #737A61; /* 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: #F5F3EF; /* primary-button fill — the main call-to-action color. */
--button-text: #32302F;
--font-heading: "Tiempos", "Newsreader", Georgia, 'Times New Roman', serif;
--font-body: "The Future", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 12px;
--radius-button: 0px;
}
/* fonts: Tiempos is proprietary — closest free match: Newsreader (Google). Load Newsreader; keep Tiempos first so licensed users still get it. The Future may be proprietary — safe free fallback: Newsreader (Google Fonts). */