MozaikaDesign system

Magic Spoon — Design System

light · playful · high · custom · confidence 92%

The full decoded design system for Magic Spoon: color roles, type scale, spacing, radii and paste-ready DESIGN.md / Tailwind / CSS exports.

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

Tokens

Magic Spoon's decoded design system: background #DAD9FF, text #0A0A0B, accent #3E00B3, link #3F0791, primary #3E00B3; type scale h1 60px / h2 28px / body 16px; 4px spacing base; 16px base radius. The single interactive/action color is #3E00B3 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#DAD9FF
surface#CDCCF0
border#BAB9DA
text#0A0A0B
text_muted#595867
primary#3E00B3
accent#3E00B3
link#3F0791
secondary#CAC4F4
button_bg#3E00B3
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Per-section tokens (10)

Export: DESIGN.md

# Magic Spoon — Design System

> light, playful, high, custom

## Colors

| Role | Value |
|------|-------|
| bg | `#DAD9FF` |
| surface | `#CDCCF0` |
| border | `#BAB9DA` |
| text | `#0A0A0B` |
| text_muted | `#595867` |
| primary | `#3E00B3` |
| accent | `#3E00B3` |
| link | `#3F0791` |
| secondary | `#CAC4F4` |
| button_bg | `#3E00B3` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#3E00B3` — 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 `#3E00B3` — one role, not several (your action color).
- **accent** `#3E00B3` — 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** `#3F0791` — inline text links and link-styled controls.
- **secondary** `#CAC4F4` — 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: **Poppins**
- Body: **Poppins**
- h1: 60px
- h2: 28px
- body: 16px

> **Fonts —** Poppins — free, on Google.

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

## Radius
- base: 16px
- button: 28px

## Primary button
- bg `#3E00B3` · text `#FFFFFF` · radius 28px

## 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 #3E00B3 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #DAD9FF;
  --color-surface: #CDCCF0;
  --color-border: #BAB9DA;
  --color-text: #0A0A0B;
  --color-text-muted: #595867;
  --color-primary: #3E00B3;  /* primary brand / action color. */
  --color-accent: #3E00B3;  /* 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: #3F0791;  /* inline text links and link-styled controls. */
  --color-secondary: #CAC4F4;  /* 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: #3E00B3;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: Poppins — free, on Google. */
  --font-heading: "Poppins", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Poppins", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 60px;
  --text-h2: 28px;
  --text-body: 16px;
  --radius-base: 16px;
  --radius-button: 28px;
  --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 #3E00B3 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #DAD9FF;
  --surface: #CDCCF0;
  --border: #BAB9DA;
  --text: #0A0A0B;
  --text-muted: #595867;
  --primary: #3E00B3;  /* primary brand / action color. */
  --accent: #3E00B3;  /* 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: #3F0791;  /* inline text links and link-styled controls. */
  --secondary: #CAC4F4;  /* 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: #3E00B3;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Poppins", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Poppins", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 16px;
  --radius-button: 28px;
}
/* fonts: Poppins — free, on Google. */