MozaikaDesign system

Rainbow — Design System

light · playful · high · custom · confidence 92%

Rainbow makes crypto feel like candy: SF Pro Rounded Black at 96-100px ('Experience Crypto in Color'), 20px rounded body, full-pill white buttons, and a palette that runs the whole spectrum behind phone mockups. The rounded everything — type, corners, icons — is a deliberate antidote to exchange-grade severity; a wallet designed like a toy you'd actually trust.

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/rainbow.

Tokens

Rainbow's decoded design system: background #FFFFFF, text #0F101A, accent #FF8A00, link #0000EE, primary #FF8A00; type scale h1 96px / h2 56px / body 20px; 4px spacing base; 32px base radius. The single interactive/action color is #FF8A00 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FFFFFF
surface#F0F0F1
border#DBDBDC
text#0F101A
text_muted#6A6A71
primary#FF8A00
accent#FF8A00
link#0000EE
secondary#FF54BB
button_bg#FF8A00
button_text#0000EE

Using these colors

Typography

Spacing

Radii

Shadow

rgba(255, 255, 255, 0.59) 0px 0.48175px 0.86715px -1px inset, rgba(255, 255, 255, 0.553) 0px 1.83083px 3.29549px -2px inset, rgba(255, 255, 255, 0.4) 0px 8px 14.4px -3px inset, rgba(255, 255, 255, 0.196) 0px -0.362176px 0.217306px -0.5px inset, rgba(255, 255, 255, 0.576) 0px -3px 1.8px -1px inset

Per-section tokens (11)

Export: DESIGN.md

# Rainbow — Design System

> light, playful, high, custom

Rainbow makes crypto feel like candy: SF Pro Rounded Black at 96-100px ('Experience Crypto in Color'), 20px rounded body, full-pill white buttons, and a palette that runs the whole spectrum behind phone mockups. The rounded everything — type, corners, icons — is a deliberate antidote to exchange-grade severity; a wallet designed like a toy you'd actually trust.

## Colors

| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#F0F0F1` |
| border | `#DBDBDC` |
| text | `#0F101A` |
| text_muted | `#6A6A71` |
| primary | `#FF8A00` |
| accent | `#FF8A00` |
| link | `#0000EE` |
| secondary | `#FF54BB` |
| button_bg | `#FF8A00` |
| button_text | `#0000EE` |

**Using these colors**

- **Action color** `#FF8A00` — 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 `#FF8A00` — one role, not several (your action color).
- **accent** `#FF8A00` — 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** `#0000EE` — inline text links and link-styled controls.
- **secondary** `#FF54BB` — 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: **SF Pro Rounded Black** _(free fallback: Newsreader)_
- Body: **SF Pro Rounded** _(free fallback: Nunito Sans)_
- h1: 96px
- h2: 56px
- body: 20px

> **Fonts —** SF Pro Rounded Black may be proprietary — safe free fallback: Newsreader (Google Fonts). SF Pro Rounded is proprietary — closest free match: Nunito Sans (Google). Load Nunito Sans; keep SF Pro Rounded first so licensed users still get it.

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

## Radius
- base: 32px
- button: 40px

## Primary button
- bg `#FF8A00` · text `#0000EE` · radius 40px

## 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 #FF8A00 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFFFFF;
  --color-surface: #F0F0F1;
  --color-border: #DBDBDC;
  --color-text: #0F101A;
  --color-text-muted: #6A6A71;
  --color-primary: #FF8A00;  /* primary brand / action color. */
  --color-accent: #FF8A00;  /* 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: #0000EE;  /* inline text links and link-styled controls. */
  --color-secondary: #FF54BB;  /* 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: #FF8A00;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #0000EE;
  /* fonts: SF Pro Rounded Black may be proprietary — safe free fallback: Newsreader (Google Fonts). SF Pro Rounded is proprietary — closest free match: Nunito Sans (Google). Load Nunito Sans; keep SF Pro Rounded first so licensed users still get it. */
  --font-heading: "SF Pro Rounded Black", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "SF Pro Rounded", "Nunito Sans", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 96px;
  --text-h2: 56px;
  --text-body: 20px;
  --radius-base: 32px;
  --radius-button: 40px;
  --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 #FF8A00 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFFFFF;
  --surface: #F0F0F1;
  --border: #DBDBDC;
  --text: #0F101A;
  --text-muted: #6A6A71;
  --primary: #FF8A00;  /* primary brand / action color. */
  --accent: #FF8A00;  /* 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: #0000EE;  /* inline text links and link-styled controls. */
  --secondary: #FF54BB;  /* 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: #FF8A00;  /* primary-button fill — the main call-to-action color. */
  --button-text: #0000EE;
  --font-heading: "SF Pro Rounded Black", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "SF Pro Rounded", "Nunito Sans", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 32px;
  --radius-button: 40px;
}
/* fonts: SF Pro Rounded Black may be proprietary — safe free fallback: Newsreader (Google Fonts). SF Pro Rounded is proprietary — closest free match: Nunito Sans (Google). Load Nunito Sans; keep SF Pro Rounded first so licensed users still get it. */