Wise — Design System
Wise is the loudest brand in fintech: custom Wise Sans at 89px/900 in forest #163300 slabs over electric lime, with a live currency calculator embedded straight into the hero. Inter at 18px handles the sober transfer details while the display face shouts THE FAST WAY TO SEND MONEY ABROAD — regulated finance wearing festival-poster typography and making it work.
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/wise.
Tokens
Wise's decoded design system: background #FFFFFF, text #0A0A0B, accent #9FE870, link #9FE870, primary #163300; type scale h1 89px / h2 58px / body 18px; 4px spacing base; 3px base radius. The single interactive/action color is #9FE870 — 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 | #DADADA |
| text | #0A0A0B |
| text_muted | #676767 |
| primary | #163300 |
| accent | #9FE870 |
| link | #9FE870 |
| secondary | #37517E |
| button_bg | #9FE870 |
| button_text | #163300 |
Using these colors
- Action color
#9FE870— the single interactive color; only on things you click or must notice, never large fills. accent,link,button_bgare all#9FE870— one role, not several (the action color).- accent
#9FE870— 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
#163300— a brand color — but the call-to-action uses #9FE870, not this. - secondary
#37517E— 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: Wise Sans
- Body: Inter
- h1: 89px
- h2: 58px
- body: 18px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 3px
- button: 9999px
Per-section tokens (12)
- Hero
- Logo Wall
- Feature
- Feature
- Comparison
- Feature
- Feature
- Testimonial / Social Proof
- Feature
- CTA / Sign-up
- Gallery / Showcase
- Footer
Export: DESIGN.md
# Wise — Design System > light, modern, medium, custom Wise is the loudest brand in fintech: custom Wise Sans at 89px/900 in forest #163300 slabs over electric lime, with a live currency calculator embedded straight into the hero. Inter at 18px handles the sober transfer details while the display face shouts THE FAST WAY TO SEND MONEY ABROAD — regulated finance wearing festival-poster typography and making it work. ## Colors | Role | Value | |------|-------| | bg | `#FFFFFF` | | surface | `#F0F0F0` | | border | `#DADADA` | | text | `#0A0A0B` | | text_muted | `#676767` | | primary | `#163300` | | accent | `#9FE870` | | link | `#9FE870` | | secondary | `#37517E` | | button_bg | `#9FE870` | | button_text | `#163300` | **Using these colors** - **Action color** `#9FE870` — 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 `#9FE870` — one role, not several (your action color). - **accent** `#9FE870` — 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** `#163300` — a brand color — but the call-to-action uses #9FE870, not this. - **secondary** `#37517E` — 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: **Wise Sans** _(free fallback: Newsreader)_ - Body: **Inter** - h1: 89px - h2: 58px - body: 18px > **Fonts —** Wise Sans may be proprietary — safe free fallback: Newsreader (Google Fonts). Inter — free, on Google. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 3px - button: 9999px ## Primary button - bg `#9FE870` · text `#163300` · 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 #9FE870 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FFFFFF;
--color-surface: #F0F0F0;
--color-border: #DADADA;
--color-text: #0A0A0B;
--color-text-muted: #676767;
--color-primary: #163300; /* a brand color — but the call-to-action uses #9FE870, not this. */
--color-accent: #9FE870; /* 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: #9FE870; /* inline text links — shares the action color. */
--color-secondary: #37517E; /* 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: #9FE870; /* primary-button fill — the main call-to-action color. */
--color-button-text: #163300;
/* fonts: Wise Sans may be proprietary — safe free fallback: Newsreader (Google Fonts). Inter — free, on Google. */
--font-heading: "Wise Sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 89px;
--text-h2: 58px;
--text-body: 18px;
--radius-base: 3px;
--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 #9FE870 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FFFFFF;
--surface: #F0F0F0;
--border: #DADADA;
--text: #0A0A0B;
--text-muted: #676767;
--primary: #163300; /* a brand color — but the call-to-action uses #9FE870, not this. */
--accent: #9FE870; /* 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: #9FE870; /* inline text links — shares the action color. */
--secondary: #37517E; /* 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: #9FE870; /* primary-button fill — the main call-to-action color. */
--button-text: #163300;
--font-heading: "Wise Sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 3px;
--radius-button: 9999px;
}
/* fonts: Wise Sans may be proprietary — safe free fallback: Newsreader (Google Fonts). Inter — free, on Google. */