MozaikaDesign system

Phantom — Design System

light · modern · high · custom · confidence 90%

Phantom wallets crypto in its own rounded face at up to 96px, cream on violet, with body copy at an unusually large 30px and lavender #AB9FF2 32px-radius pills. Pastel illustration cards and playful ghost iconography soften self-custody — the friendliest voice in a category that usually growls.

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

Tokens

Phantom's decoded design system: background #F5F2FF, text #1C1C1C, accent #AB9FF2, link #3C315B, primary #AB9FF2; type scale h1 96px / h2 24px / body 30px; 4px spacing base; 24px base radius. The single interactive/action color is #AB9FF2 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#F5F2FF
surface#E7E5F1
border#D4D1DC
text#1C1C1C
text_muted#6E6D72
primary#AB9FF2
accent#AB9FF2
link#3C315B
secondary#E2DFFE
button_bg#AB9FF2
button_text#3C315B

Using these colors

Typography

Spacing

Radii

Per-section tokens (6)

Export: DESIGN.md

# Phantom — Design System

> light, modern, high, custom

Phantom wallets crypto in its own rounded face at up to 96px, cream on violet, with body copy at an unusually large 30px and lavender #AB9FF2 32px-radius pills. Pastel illustration cards and playful ghost iconography soften self-custody — the friendliest voice in a category that usually growls.

## Colors

| Role | Value |
|------|-------|
| bg | `#F5F2FF` |
| surface | `#E7E5F1` |
| border | `#D4D1DC` |
| text | `#1C1C1C` |
| text_muted | `#6E6D72` |
| primary | `#AB9FF2` |
| accent | `#AB9FF2` |
| link | `#3C315B` |
| secondary | `#E2DFFE` |
| button_bg | `#AB9FF2` |
| button_text | `#3C315B` |

**Using these colors**

- **Action color** `#AB9FF2` — 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 `#AB9FF2` — one role, not several (your action color).
- **accent** `#AB9FF2` — 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** `#3C315B` — inline text links and link-styled controls.
- **secondary** `#E2DFFE` — 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: **Phantom (custom)** _(free fallback: Newsreader)_
- Body: **Phantom (custom)** _(free fallback: Newsreader)_
- h1: 96px
- h2: 24px
- body: 30px

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

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

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

## Primary button
- bg `#AB9FF2` · text `#3C315B` · radius 32px

## 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 #AB9FF2 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #F5F2FF;
  --color-surface: #E7E5F1;
  --color-border: #D4D1DC;
  --color-text: #1C1C1C;
  --color-text-muted: #6E6D72;
  --color-primary: #AB9FF2;  /* primary brand / action color. */
  --color-accent: #AB9FF2;  /* 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: #3C315B;  /* inline text links and link-styled controls. */
  --color-secondary: #E2DFFE;  /* 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: #AB9FF2;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #3C315B;
  /* fonts: Phantom (custom) may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "Phantom (custom)", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Phantom (custom)", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 96px;
  --text-h2: 24px;
  --text-body: 30px;
  --radius-base: 24px;
  --radius-button: 32px;
  --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 #AB9FF2 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #F5F2FF;
  --surface: #E7E5F1;
  --border: #D4D1DC;
  --text: #1C1C1C;
  --text-muted: #6E6D72;
  --primary: #AB9FF2;  /* primary brand / action color. */
  --accent: #AB9FF2;  /* 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: #3C315B;  /* inline text links and link-styled controls. */
  --secondary: #E2DFFE;  /* 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: #AB9FF2;  /* primary-button fill — the main call-to-action color. */
  --button-text: #3C315B;
  --font-heading: "Phantom (custom)", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Phantom (custom)", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 24px;
  --radius-button: 32px;
}
/* fonts: Phantom (custom) may be proprietary — safe free fallback: Newsreader (Google Fonts). */