Robinhood — Design System
Robinhood's 2025 face is editorial: Martina Plantijn serif at 84px/400 ('The World is Flat') over cinematic black, Phonic at 52px for section voices, and Capsule Sans on lime #CCFF00 36px-radius pills. Gold-hued product film and manifesto headlines recast the trading app as a financial magazine cover — retail investing styled with old-money typography and new-money color.
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/robinhood.
Tokens
Robinhood's decoded design system: background #000000, text #ECECEE, accent #CCFF00, link #1C180D, primary #CCFF00; type scale h1 84px / h2 52px / body 16px; 4px spacing base; 10px base radius. The single interactive/action color is #CCFF00 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #000000 |
| surface | #0E0E0E |
| border | #232323 |
| text | #ECECEE |
| text_muted | #929293 |
| primary | #CCFF00 |
| accent | #CCFF00 |
| link | #1C180D |
| secondary | #0000EE |
| button_bg | #CCFF00 |
| button_text | #110E08 |
Using these colors
- Action color
#CCFF00— the single interactive color; only on things you click or must notice, never large fills. primary,accent,button_bgare all#CCFF00— one role, not several (the action color).- accent
#CCFF00— 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
#1C180D— fails contrast on the background (~1.2:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). - secondary
#0000EE— 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: Martina Plantijn
- Body: Capsule Sans Text
- h1: 84px
- h2: 52px
- body: 16px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 10px
- button: 36px
Per-section tokens (10)
Export: DESIGN.md
# Robinhood — Design System
> dark, modern, high, custom
Robinhood's 2025 face is editorial: Martina Plantijn serif at 84px/400 ('The World is Flat') over cinematic black, Phonic at 52px for section voices, and Capsule Sans on lime #CCFF00 36px-radius pills. Gold-hued product film and manifesto headlines recast the trading app as a financial magazine cover — retail investing styled with old-money typography and new-money color.
## Colors
| Role | Value |
|------|-------|
| bg | `#000000` |
| surface | `#0E0E0E` |
| border | `#232323` |
| text | `#ECECEE` |
| text_muted | `#929293` |
| primary | `#CCFF00` |
| accent | `#CCFF00` |
| link | `#1C180D` |
| secondary | `#0000EE` |
| button_bg | `#CCFF00` |
| button_text | `#110E08` |
**Using these colors**
- **Action color** `#CCFF00` — 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 `#CCFF00` — one role, not several (your action color).
- **accent** `#CCFF00` — 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** `#1C180D` — fails contrast on the background (~1.2:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference).
- **secondary** `#0000EE` — 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: **Martina Plantijn** _(free fallback: Newsreader)_
- Body: **Capsule Sans Text** _(free fallback: Newsreader)_
- h1: 84px
- h2: 52px
- body: 16px
> **Fonts —** Martina Plantijn may be proprietary — safe free fallback: Newsreader (Google Fonts). Capsule Sans Text may be proprietary — safe free fallback: Newsreader (Google Fonts).
## Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
## Radius
- base: 10px
- button: 36px
## Primary button
- bg `#CCFF00` · text `#110E08` · radius 36px
## 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 #CCFF00 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #000000;
--color-surface: #0E0E0E;
--color-border: #232323;
--color-text: #ECECEE;
--color-text-muted: #929293;
--color-primary: #CCFF00; /* primary brand / action color. */
--color-accent: #CCFF00; /* 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: #1C180D; /* fails contrast on the background (~1.2: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: #0000EE; /* 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: #CCFF00; /* primary-button fill — the main call-to-action color. */
--color-button-text: #110E08;
/* fonts: Martina Plantijn may be proprietary — safe free fallback: Newsreader (Google Fonts). Capsule Sans Text may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "Martina Plantijn", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Capsule Sans Text", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 84px;
--text-h2: 52px;
--text-body: 16px;
--radius-base: 10px;
--radius-button: 36px;
--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 #CCFF00 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #000000;
--surface: #0E0E0E;
--border: #232323;
--text: #ECECEE;
--text-muted: #929293;
--primary: #CCFF00; /* primary brand / action color. */
--accent: #CCFF00; /* 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: #1C180D; /* fails contrast on the background (~1.2:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
--secondary: #0000EE; /* 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: #CCFF00; /* primary-button fill — the main call-to-action color. */
--button-text: #110E08;
--font-heading: "Martina Plantijn", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Capsule Sans Text", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 10px;
--radius-button: 36px;
}
/* fonts: Martina Plantijn may be proprietary — safe free fallback: Newsreader (Google Fonts). Capsule Sans Text may be proprietary — safe free fallback: Newsreader (Google Fonts). */