MozaikaDesign system

Pika — Design System

light · playful · high · tailwind · confidence 92%

Pika welcomes you to its universe in Telka Extended at 48px/900 — squared, wide, cartoon-confident — on warm paper #FCFAF7 with butter-yellow #FFD184 18px-radius buttons. Generated video stills tile like comic panels; an AI video startup whose chunky display face does the world-building its model renders.

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

Tokens

Pika's decoded design system: background #FCFAF7, text #222222, accent #FFD184, link #CFC3FF, primary #FFD184; type scale h1 48px / h2 35px / body 17px; 4px spacing base; 3px base radius. The single interactive/action color is #FFD184 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FCFAF7
surface#EEEDEA
border#DBD9D7
text#222222
text_muted#747472
primary#FFD184
accent#FFD184
link#CFC3FF
secondary#FFEDD2
button_bg#FFD184
button_text#222222

Using these colors

Typography

Spacing

Radii

Per-section tokens (2)

Export: DESIGN.md

# Pika — Design System

> light, playful, high, tailwind

Pika welcomes you to its universe in Telka Extended at 48px/900 — squared, wide, cartoon-confident — on warm paper #FCFAF7 with butter-yellow #FFD184 18px-radius buttons. Generated video stills tile like comic panels; an AI video startup whose chunky display face does the world-building its model renders.

## Colors

| Role | Value |
|------|-------|
| bg | `#FCFAF7` |
| surface | `#EEEDEA` |
| border | `#DBD9D7` |
| text | `#222222` |
| text_muted | `#747472` |
| primary | `#FFD184` |
| accent | `#FFD184` |
| link | `#CFC3FF` |
| secondary | `#FFEDD2` |
| button_bg | `#FFD184` |
| button_text | `#222222` |

**Using these colors**

- **Action color** `#FFD184` — 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 `#FFD184` — one role, not several (your action color).
- **accent** `#FFD184` — 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** `#CFC3FF` — fails contrast on the background (~1.6:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference).
- **secondary** `#FFEDD2` — 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: **TelkaExtended** _(free fallback: Newsreader)_
- Body: **Telka** _(free fallback: Newsreader)_
- h1: 48px
- h2: 35px
- body: 17px

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

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

## Radius
- base: 3px
- button: 18px

## Primary button
- bg `#FFD184` · text `#222222` · radius 18px

## 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 #FFD184 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FCFAF7;
  --color-surface: #EEEDEA;
  --color-border: #DBD9D7;
  --color-text: #222222;
  --color-text-muted: #747472;
  --color-primary: #FFD184;  /* primary brand / action color. */
  --color-accent: #FFD184;  /* 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: #CFC3FF;  /* fails contrast on the background (~1.6: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: #FFEDD2;  /* 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: #FFD184;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #222222;
  /* fonts: TelkaExtended may be proprietary — safe free fallback: Newsreader (Google Fonts). Telka may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "TelkaExtended", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Telka", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 48px;
  --text-h2: 35px;
  --text-body: 17px;
  --radius-base: 3px;
  --radius-button: 18px;
  --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 #FFD184 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FCFAF7;
  --surface: #EEEDEA;
  --border: #DBD9D7;
  --text: #222222;
  --text-muted: #747472;
  --primary: #FFD184;  /* primary brand / action color. */
  --accent: #FFD184;  /* 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: #CFC3FF;  /* fails contrast on the background (~1.6:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
  --secondary: #FFEDD2;  /* 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: #FFD184;  /* primary-button fill — the main call-to-action color. */
  --button-text: #222222;
  --font-heading: "TelkaExtended", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Telka", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 3px;
  --radius-button: 18px;
}
/* fonts: TelkaExtended may be proprietary — safe free fallback: Newsreader (Google Fonts). Telka may be proprietary — safe free fallback: Newsreader (Google Fonts). */