MozaikaDesign system

Poppi — Design System

light · playful · high · tailwind · confidence 92%

The full decoded design system for Poppi: 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/poppi.

Tokens

Poppi's decoded design system: background #FFFFFF, text #0A0A0B, accent #FED455, link #EC008C, primary #FFF200; type scale h1 16px / h2 16px / body 16px; 4px spacing base; 8px base radius. The single interactive/action color is #FED455 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FFFFFF
surface#F0F0F0
border#DADADA
text#0A0A0B
text_muted#676767
primary#FFF200
accent#FED455
link#EC008C
secondary#FF00D0
button_bg#FED455
button_text#FE1A88

Using these colors

Typography

Spacing

Radii

Shadow

rgb(254, 26, 136) 5px 5px 0px 0px

Per-section tokens (7)

Export: DESIGN.md

# Poppi — Design System

> light, playful, high, tailwind

## Colors

| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#F0F0F0` |
| border | `#DADADA` |
| text | `#0A0A0B` |
| text_muted | `#676767` |
| primary | `#FFF200` |
| accent | `#FED455` |
| link | `#EC008C` |
| secondary | `#FF00D0` |
| button_bg | `#FED455` |
| button_text | `#FE1A88` |

**Using these colors**

- **Action color** `#FED455` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds.
- `accent`, `button_bg` are all `#FED455` — one role, not several (your action color).
- **accent** `#FED455` — 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** `#FFF200` — a brand color — but the call-to-action uses #FED455, not this.
- **link** `#EC008C` — inline text links and link-styled controls.
- **secondary** `#FF00D0` — 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: **ITCAvantGarde** _(free fallback: Newsreader)_
- Body: **Source Sans Pro** _(free fallback: Newsreader)_
- h1: 16px
- h2: 16px
- body: 16px

> **Fonts —** ITCAvantGarde may be proprietary — safe free fallback: Newsreader (Google Fonts). Source Sans Pro may be proprietary — safe free fallback: Newsreader (Google Fonts).

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

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

## Primary button
- bg `#FED455` · text `#FE1A88` · 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 #FED455 — 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: #FFF200;  /* a brand color — but the call-to-action uses #FED455, not this. */
  --color-accent: #FED455;  /* 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: #EC008C;  /* inline text links and link-styled controls. */
  --color-secondary: #FF00D0;  /* 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: #FED455;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FE1A88;
  /* fonts: ITCAvantGarde may be proprietary — safe free fallback: Newsreader (Google Fonts). Source Sans Pro may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "ITCAvantGarde", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Source Sans Pro", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 16px;
  --text-h2: 16px;
  --text-body: 16px;
  --radius-base: 8px;
  --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 #FED455 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFFFFF;
  --surface: #F0F0F0;
  --border: #DADADA;
  --text: #0A0A0B;
  --text-muted: #676767;
  --primary: #FFF200;  /* a brand color — but the call-to-action uses #FED455, not this. */
  --accent: #FED455;  /* 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: #EC008C;  /* inline text links and link-styled controls. */
  --secondary: #FF00D0;  /* 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: #FED455;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FE1A88;
  --font-heading: "ITCAvantGarde", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Source Sans Pro", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 8px;
  --radius-button: 40px;
}
/* fonts: ITCAvantGarde may be proprietary — safe free fallback: Newsreader (Google Fonts). Source Sans Pro may be proprietary — safe free fallback: Newsreader (Google Fonts). */