MozaikaDesign system

Temu Mobile — Design System

light · consumer · high · confidence 85% · deep decode

Temu Mobile — palette measured from official store listing screenshots (colors only; no font claims). Type scale shown is the platform HIG default.

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/temu-mobile.

Tokens

Temu Mobile's decoded design system: background #FFFFFF, text #000000, accent #000000, link #000000, primary #000000; type scale h1 34px / h2 22px / body 17px; 8px spacing base; 12px base radius. The single interactive/action color is #000000 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FFFFFF
surface#EFEFEF
border#D8D8D8
text#000000
text_muted#606060
primary#000000
accent#000000
link#000000
button_bg#000000
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Motion

Micro-interactions run at 150ms (dominant) with ease.

Button states (measured)

Motion choreography (measured)

Load order: img.root-2tSNO×2 → div.wrap-uaglTdiv.content-3gEJRdiv.baseDialog-2DgKh

Overlay recipe (measured)

dialog panel: #FFFFFF · radius 4px · enter 150ms linear

Responsive (measured)

Export: DESIGN.md

# Temu Mobile — Design System

> light, consumer, high — deep decode (measured live)

Temu Mobile — palette measured from official store listing screenshots (colors only; no font claims). Type scale shown is the platform HIG default.

## Colors

| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#EFEFEF` |
| border | `#D8D8D8` |
| text | `#000000` |
| text_muted | `#606060` |
| primary | `#000000` |
| accent | `#000000` |
| link | `#000000` |
| button_bg | `#000000` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#000000` — 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`, `link`, `button_bg` are all `#000000` — one role, not several (your action color).
- **accent** `#000000` — 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.
- **Page coverage** (full-page screenshot pixels): `#141414` 65.1% · `#323131` 14.4% · `#FFFFFF` 11.6% · `#E78126` 5%

## Typography

- h1: 34px
- h2: 22px
- body: 17px

## Spacing
- base unit: 8px
- scale: 4px, 8px, 12px, 16px, 24px, 32px, 48px, 64px

## Radius
- base: 12px
- button: 12px

## Buttons

| Button | Fill / text | Border | Radius | Padding | Font | Shadow |
|--------|-------------|--------|--------|---------|------|--------|
| primary | `rgba(0, 0, 0, 0)` / `#FFFFFF` | none | 12px | 0px 17px 0px 17px | 600 14px | none |

**States (measured, not guessed)**

- primary focus: border-radius `9999px` · box-shadow `rgb(11, 123, 255) 0px 0px 0px 2px`

## Motion
- durations: 150ms (dominant) · 200ms
- easings: `ease` (dominant)

Micro-interactions use the dominant duration + easing; nothing on the page animates slower than the longest duration above — don't invent springier motion.

## Motion choreography (measured)
Load order: `img.root-2tSNO`×2 @0ms → `div.wrap-uaglT` @15ms → `div.content-3gEJR` @15ms → `div.baseDialog-2DgKh` @245ms
- `div.wrap-uaglT` — opacity 0→1 — 200ms ease
- `div.baseDialog-2DgKh` — opacity 0.2→1 · transform scale(0.9)→scale(1) — 150ms ease
- `div.content-3gEJR` — transform translateY(100%)→translateY(0px) — 200ms ease
- overlay dialog (auto-opened): panel #FFFFFF · r 4px
  - enter: transform+opacity from scale(0.9),0.2 · 150ms linear

Rebuild the timeline, not just the durations — order, delays and staggers above are the choreography.

## Responsive (measured)
- mobile (390px): hero 20px · body 12px · nav: inline

## 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.
Hover/focus states, shadows and motion timings above are measured from the live page — match them exactly, don't re-guess them.

---

> **Decoded with Mozaika** — measured live, not guessed. Full decoded design system + one-command install: mozaika.design/ds/temu-mobile

Export: Tailwind v4 (@theme)

@theme {
  /* action color #000000 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFFFFF;
  --color-surface: #EFEFEF;
  --color-border: #D8D8D8;
  --color-text: #000000;
  --color-text-muted: #606060;
  --color-primary: #000000;  /* ≈ the text color — a foreground/text color, not an action color (action = #000000). */
  --color-accent: #000000;  /* 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: #000000;  /* inline text links — shares the action color. */
  --color-button-bg: #000000;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  --text-h1: 34px;
  --text-h2: 22px;
  --text-body: 17px;
  --radius-base: 12px;
  --radius-button: 12px;
  --shadow-focus: rgb(11, 123, 255) 0px 0px 0px 2px;  /* measured focus ring */
  --ease-brand: ease;
  --duration-fast: 150ms;  /* use: duration-[var(--duration-fast)] */
  --duration-base: 200ms;
  --spacing-1: 4px;
  --spacing-2: 8px;
  --spacing-3: 12px;
  --spacing-4: 16px;
  --spacing-5: 24px;
  --spacing-6: 32px;
  --spacing-7: 48px;
  --spacing-8: 64px;
}

Export: CSS variables

:root {
  /* action color #000000 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFFFFF;
  --surface: #EFEFEF;
  --border: #D8D8D8;
  --text: #000000;
  --text-muted: #606060;
  --primary: #000000;  /* ≈ the text color — a foreground/text color, not an action color (action = #000000). */
  --accent: #000000;  /* 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: #000000;  /* inline text links — shares the action color. */
  --button-bg: #000000;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --radius: 12px;
  --radius-button: 12px;
  --focus-ring: rgb(11, 123, 255) 0px 0px 0px 2px;
  --ease: ease;
  --duration-fast: 150ms;
  --duration-base: 200ms;
}