MozaikaDesign system

Apple Music — Design System

light · modern · high · custom · confidence 92%

Apple Music's page runs at product scale, not poster scale: SF Pro headlines a restrained 34px/600, body copy the canonical Apple 17px, and every claim is carried by device frames and album art instead of display type. Gradient washes supply the emotion, hairline dividers and text-link CTAs keep the chrome silent — the house style where the interface itself is the typography.

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/apple-music.

Tokens

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

Color roles

RoleValue
bg#FFFFFF
surface#F2F2F2
border#E0E0E0
text#333336
text_muted#808082
primary#FA243C
accent#FA243C
link#FA243C
secondary#2997FF
button_bg#FA243C
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Per-section tokens (13)

Export: DESIGN.md

# Apple Music — Design System

> light, modern, high, custom

Apple Music's page runs at product scale, not poster scale: SF Pro headlines a restrained 34px/600, body copy the canonical Apple 17px, and every claim is carried by device frames and album art instead of display type. Gradient washes supply the emotion, hairline dividers and text-link CTAs keep the chrome silent — the house style where the interface itself is the typography.

## Colors

| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#F2F2F2` |
| border | `#E0E0E0` |
| text | `#333336` |
| text_muted | `#808082` |
| primary | `#FA243C` |
| accent | `#FA243C` |
| link | `#FA243C` |
| secondary | `#2997FF` |
| button_bg | `#FA243C` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#FA243C` — 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 `#FA243C` — one role, not several (your action color).
- **accent** `#FA243C` — 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.
- **secondary** `#2997FF` — 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: **SF Pro Display** _(free fallback: Inter)_
- Body: **SF Pro Text** _(free fallback: Inter)_
- h1: 34px
- h2: 28px
- body: 17px

> **Fonts —** SF Pro Display is proprietary — closest free match: Inter (Google). Load Inter; keep SF Pro Display first so licensed users still get it. SF Pro Text is proprietary — closest free match: Inter (Google). Load Inter; keep SF Pro Text first so licensed users still get it.

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

## Radius
- base: 0px
- button: 980px

## Primary button
- bg `#FA243C` · text `#FFFFFF` · radius 980px

## 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 #FA243C — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFFFFF;
  --color-surface: #F2F2F2;
  --color-border: #E0E0E0;
  --color-text: #333336;
  --color-text-muted: #808082;
  --color-primary: #FA243C;  /* primary brand / action color. */
  --color-accent: #FA243C;  /* 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: #FA243C;  /* inline text links — shares the action color. */
  --color-secondary: #2997FF;  /* 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: #FA243C;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: SF Pro Display is proprietary — closest free match: Inter (Google). Load Inter; keep SF Pro Display first so licensed users still get it. SF Pro Text is proprietary — closest free match: Inter (Google). Load Inter; keep SF Pro Text first so licensed users still get it. */
  --font-heading: "SF Pro Display", "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "SF Pro Text", "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 34px;
  --text-h2: 28px;
  --text-body: 17px;
  --radius-base: 0px;
  --radius-button: 980px;
  --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 #FA243C — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFFFFF;
  --surface: #F2F2F2;
  --border: #E0E0E0;
  --text: #333336;
  --text-muted: #808082;
  --primary: #FA243C;  /* primary brand / action color. */
  --accent: #FA243C;  /* 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: #FA243C;  /* inline text links — shares the action color. */
  --secondary: #2997FF;  /* 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: #FA243C;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "SF Pro Display", "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "SF Pro Text", "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 0px;
  --radius-button: 980px;
}
/* fonts: SF Pro Display is proprietary — closest free match: Inter (Google). Load Inter; keep SF Pro Display first so licensed users still get it. SF Pro Text is proprietary — closest free match: Inter (Google). Load Inter; keep SF Pro Text first so licensed users still get it. */