cubic-bezier(0.3, 0, 0.4, 1)extracted · 39 artefacts
spotify.com
Live extraction of https://spotify.com — tokens, emitters, anatomy, icons, voice, motion, MCP server, AGENTS.md, prompt pack and a 13-chapter brand book. Generated with one command.
They surface 4 sections per brand (DESIGN.md · Tailwind · CSS · Tokens). designlang ships 39 artefacts for spotify.com and renders 12+ sections below.
---
site: "Spotify - Web Player: Music for everyone"
url: "https://spotify.com"
generated_at: "2026-05-21T11:46:57.246Z"
generator: "designlang@12.14.0"
intent: landing
material: material-you
tokens:
colors:
primary: "#1ed760"
secondary: "#346e4a"
accent: "#1db954"
background: "#121212"
foreground: "#000000"
typography:
sans: SpotifyMixUI
base: 16
spacing:
scale: "[1, 15, 20, 23, 28, 35, 40, 48, 64, 96]"
radii:
xs: 2
md: 10
lg: 16
xl: 20
full: 32
shadows:
sm: "rgba(0, 0, 0, 0.5) 0px 2px 4px 0px"
xs: "rgb(18, 18, 18) 0px 1px 0px 0px, rgb(124, 124, 124) 0px 0px 0px 1px inset"
---
# Overview
A **landing** page (heuristic confidence 0.29), dressed in **material-you** material (0.45).
> "Your Library"
The author writes in a **friendly** voice; headings tend to be **Sentence case** case and **tight**.
Reading order detected on the source: `content → content → content → content → content → nav → nav → pricing → testimonials → hero → content → content → content → hero → cta → nav`.
Source: <https://spotify.com>.
# Colors
| role | hex | usage |
|---|---|---|
| primary | `#1ed760` | 40 |
| secondary | `#346e4a` | 6 |
| accent | `#1db954` | 2 |
| background | `#121212` | — |
| foreground | `#000000` | — |
**Neutrals:** `#ffffff` · `#b3b3b3` · `#000000` · `#696969` · `#555555`
**Total unique colors detected:** 45.
# Typography
**Families**
- `SpotifyMixUI` · 2400 uses
- `Times` · 115 uses
- `SpotifyMixUITitle` · 10 uses
**Body size:** `16px` / line-height `normal`.
**Heading scale**
| level | size | weight | line-height |
|---|---|---|---|
| h1 | `24px` | `700` | `normal` |
| h2 | `16px` | `400` | `normal` |
| h3 | `14px` | `700` | `normal` |
# Layout
**Scale:** `1px` · `15px` · `20px` · `23px` · `28px` · `35px` · `40px` · `48px` · `64px` · `96px`
**Layout primitives:** 13 grid containers · 651 flex containers.
**Breakpoints:** `[object Object]px` · `[object Object]px` · `[object Object]px` · `[object Object]px` · `[object Object]px` · `[object Object]px` · `[object Object]px` · `[object Object]px` · `[object Object]px` · `[object Object]px` · `[object Object]px` · `[object Object]px` · `[object Object]px` · `[object Object]px` · `[object Object]px` · `[object Object]px`
# Elevation and Depth
**Shadow scale**
- `sm` — `rgb(124, 124, 124) 0px 0px 0px 1px inset`
- `xs` — `rgb(18, 18, 18) 0px 1px 0px 0px, rgb(124, 124, 124) 0px 0px 0px 1px inset`
- `sm` — `rgb(128, 128, 128) 0px 0px 5px 0px`
- `sm` — `rgba(0, 0, 0, 0.5) 0px 2px 4px 0px`
- `md` — `rgb(199, 197, 199) -3px -3px 5px -2px`
- `md` — `rgb(153, 153, 153) 0px 2px 10px -3px`
**Z-index layers:** 14 · ⚠ 1 issue(s)
# Shapes
**Radius scale**
- `xs` — `2px`
- `md` — `6px`
- `md` — `10px`
- `lg` — `16px`
- `xl` — `20px`
- `full` — `32px`
# Components
**Detected patterns:** `buttons` · `cards` · `inputs` · `links` · `navigation` · `footer` · `modals` · `badges` · `accordions` · `switches`
**Anatomy**
| kind | variants | sizes | instances |
|---|---|---|---|
| button | tertiary, primary, secondary | medium, small | 170 |
| card | — | medium | 129 |
# Do's and Don'ts
**Do's**
- Use `sign`, `log`, `create` as the primary verbs in CTAs — these dominate the source.
- Write headings in **Sentence case** case, **tight** length.
- Address the reader with the pronoun posture **you-only**.
- Stay inside the **material-you** material — match shadow and radius habits.
**Don'ts**
- Don't ship copy on the colors flagged in accessibility — 1 contrast pair(s) fail WCAG AA on the source itself.
- Don't 1 wcag contrast failures.
- Don't 175 !important rules — prefer specificity over overrides.
- Don't 71% of css is unused — consider purging.
- Don't 12418 duplicate css declarations.
---
_Generated by [designlang](https://github.com/Manavarya09/design-extract) v12.14.0 from <https://spotify.com>._
_Compatible with the DESIGN.md convention pioneered by [design-extractor.com](https://www.design-extractor.com) — extended with intent, material, voice, anatomy, and library detection._
Typography
SpotifyMixUIVoice
Tone, CTA verbs, headlines and pronoun stance — pulled from the live page.
top CTA verbs
motionlang
Motion Lab
Every easing curve and duration spotify.com ships, drawn and replayed live. Export them as Framer Motion presets from the motion.framer.js tab above.
easing curves · 3
easecubic-bezier(0.3, 0, 0, 1)durations · 5
Component anatomy
Typed React stubs — variants, slots and props detected from clustered DOM patterns.
// Auto-generated by designlang — component anatomy v2.
// Scaffolds. Wire into your token system; not a runtime library.
import * as React from 'react';
export interface ButtonProps {
variant?: 'tertiary' | 'primary' | 'secondary';
size?: 'medium' | 'small';
disabled?: boolean;
leadingIcon?: React.ReactNode;
children?: React.ReactNode;
}
export function Button({ variant = 'tertiary', size = 'md', ...rest }: ButtonProps) {
return React.createElement('button', { 'data-variant': variant, 'data-size': size, ...rest });
}
export interface CardProps {
variant?: 'default';
size?: 'medium';
children?: React.ReactNode;
}
export function Card({ variant = 'default', size = 'md', ...rest }: CardProps) {
return React.createElement('div', { 'data-variant': variant, 'data-size': size, ...rest });
}
Icon system
SVG icon census — count, style mix, grid and stroke profile.
Agent prompt
One self-contained system prompt with every spotify.com token, anatomy slot and voice rule. Drop it into any AI agent and it builds in this brand without hallucinating.
# You are building UI in the spotify.com design system. Source: https://spotify.com Extracted by designlang on 2026-05-21. ## Brand at a glance - title Spotify - Web Player: Music for everyone - page intent landing - material material-you - design grade C ## Colour - primary #1ed760 - secondary #346e4a - accent #1db954 - neutrals #ffffff · #b3b3b3 · #000000 · #696969 · #555555 · #121212 ## Typography - families SpotifyMixUI · Times · SpotifyMixUITitle - weights 400 · 700 · 600 · 500 - base size 16px ## Spacing - scale 1px · 15px · 20px · 23px · 28px · 35px · 40px · 48px · 64px · 96px · 125px · 154px ## Radii - scale 2px · 6px · 10px · 16px · 20px · 32px ## Motion - durations 100ms · 200ms · 300ms · 500ms ## Voice - tone friendly - pronoun you-only - headings Sentence case - CTA verbs sign · log · create · browse · premium · support ## Component anatomy - button variants: [object Object] · [object Object] · [object Object] · [object Object] · slots: true · true · false - card variants: [object Object] · slots: false · false · true · true ## Accessibility - WCAG score 88% · failing pairs: 1 ## Build rules 1. Use the colours above. **Never invent a new hex.** If you need a shade between two existing colours, derive it via HSL adjustment from the closest extracted colour and call out the derivation. 2. Use the extracted typography families. If you need a missing weight, pick the nearest available weight from the list and note it. 3. Snap spacing values to the scale above. No off-scale paddings or margins. 4. Snap border radii to the scale above. 5. Match the voice: same tone, same pronoun stance, same heading style. Reuse the listed CTA verbs. 6. Aim for WCAG AA contrast minimum. When the brand colours fail, prefer the foreground colour on the background colour rather than mid-tone neutrals. 7. Reuse component anatomy when it exists — do not invent novel structures for things the site already has. ## Available context files designlang wrote these alongside this prompt. Reach for them when you need ground truth: - `<host>-design-tokens.json` — DTCG primitive · semantic · composite tokens - `<host>-tailwind.config.js` — Tailwind v3 config - `<host>-tailwind-v4.css` — Tailwind v4 `@theme` block - `<host>-tokens.d.ts` — TypeScript literal-union types - `<host>-variables.css` — bare CSS custom properties - `<host>-reset.css` — brand-aware base styles - `<host>-gradients.css` — `.grad-N` utility classes - `<host>-anatomy.tsx` — typed React component scaffolds - `<host>-shadcn-theme.css` — shadcn/ui theme - `<host>-theme.js` — React / Vue / Svelte theme object - `<host>-mcp.json` — MCP server payload (load via stdio) - `<host>.brand.pdf` — print-ready 13-chapter brand book When you reference the system in code, prefer importing from these files over hard-coding values. ## Output expectations When asked to "build a pricing page" or "make a card" or any UI: - Produce a single self-contained component file in the appropriate framework (React / Vue / Svelte — match what the user is using). - Use Tailwind utility classes wired to the v4 `@theme` if Tailwind is available; otherwise use the CSS custom properties from `variables.css`. - Write the headline copy using the brand voice; do not invent generic Lorem. - Annotate any choice where you had to bend the system, with a one-line `// note:` comment explaining what and why. ## One-line install ```bash npx designlang spotify.com ``` Run this against any other URL to extract its system in the same shape as the one above. --- Generated by designlang. Re-extract by running `npx designlang spotify.com`.
MCP / Agent rules
The same payload the stdio MCP server hands to Claude Code, Cursor and Windsurf. Wire it into your editor and the agent answers brand-system questions with the actual extraction — not a guess.
npx designlang mcp --url https://spotify.com{
"colors": {
"all": [
{
"hex": "#ffffff",
"rgb": {
"r": 255,
"g": 255,
"b": 255,
"a": 1
},
"hsl": {
"h": 0,
"s": 0,
"l": 100
},
"count": 2367,
"contexts": [
"background",
"text",
"border"
]
},
{
"hex": "#b3b3b3",
"rgb": {
"r": 179,
"g": 179,
"b": 179,
"a": 1
},
"hsl": {
"h": 0,
"s": 0,
"l": 70
},
"count": 1887,
"contexts": [
"text",
"border",
"background"
]
},
{
"hex": "#000000",
"rgb": {
"r": 0,
"g": 0,
"b": 0,
"a": 1
},
"hsl": {
"h": 0,
"s": 0,
"l": 0
},
"count": 610,
"contexts": [
"text",
"border",
"background"
]
},
{
"hex": "#696969",
"rgb": {
"r": 105,
"g": 105,
"b": 105,
"a": 1
},
"hsl": {
"h": 0,
"s": 0,
"l": 41
},
"count": 129,
"contexts": [
"text",
"border"
]
},
{
"hex": "#555555",
"rgb": {
"r": 85,
"g": 85,
"b": 85,
"a": 1
},
"hsl": {
"h": 0,
"s": 0,
"l": 33
},
"count": 44,
"contexts": [
"background",
"text",
"border"
]
},
{
"hex": "#1ed760",
"rgb": {
"r": 30,
"g": 215,
"b": 96,
"a": 1
},
"hsl": {
"h": 141,
"s": 76,
"l": 48
},
"count": 40,
"contexts": [
"background"
]
},
{
"hex": "#121212",
"rgb": {
"r": 18,
"g": 18,
"b": 18,
"a": 1
},
"hsl": {
"h": 0,
"s": 0,
"l": 7
},
"count": 28,
"contexts": [
"background",
"text",
"border"
]
},
{
"hex": "#7c7c7c",
"rgb": {
"r": 124,
"g": 124,
"b": 124,
"a": 1
},
"hsl": {
"h": 0,
"s": 0,
"l": 49
},
"count": 25,
"contexts": [
"text",
"border",
"background"
]
},
{
"hex": "#1f1f1f",
"rgb": {
"r": 31,
"g": 31,
"b": 31,
"a": 1
},
"hsl": {
"h": 0,
"s": 0,
"l": 12
},
"count": 11,
"contexts": [
"background"
]
},
{
"hex": "#333333",
"rgb": {
"r": 51,
"g": 51,
"b": 51,
"a": 1
},
"hsl": {
"h": 0,
"s": 0,
"l": 20
},
"count": 11,
"contexts": [
"background"
]
},
{
"hex": "#468254",
"rgb": {
"r": 70,
"g": 130,
"b": 84,
"a": 1
},
"hsl": {
"h": 134,
"s": 30,
"l": 39
},
"count": 9,
"contexts": [
"background"
]
},
{
"hex": "#3860be",
"rgb": {
"r": 56,
"g": 96,
"b": 190,
"a": 1
},
"hsl": {
"h": 222,
"s": 54,
"l": 48
},
"count": 6,
"contexts": [
"text",
"border",
"background"
]
},
{
"hex": "#346e4a",
"rgb": {
"r": 52,
"g": 110,
"b": 74,
"a": 1
},
"hsl": {
"h": 143,
"s": 36,
"l": 32
},
"count": 6,
"contexts": [
"background",
"border"
]
},
{
"hex": "#292929",
"rgb": {
"r": 41,
"g": 41,
"b": 41,
"a": 1
},
"hsl": {
"h": 0,
"s": 0,
"l": 16
},
"count": 5,
"contexts": [
"border",
"background"
]
},
{
"hex": "#0000ee",
"rgb": {
"r": 0,
"g": 0,
"b": 238,
"a": 1
},
"hsl": {
"h": 240,
"s": 100,
"l": 47
},
"count": 4,
"contexts": [
"text",
"border"
]
},
{
"hex": "#c1c1c1",
"rgb": {
"r": 193,
"g": 193,
"b": 193,
"a": 1
},
"hsl": {
"h": 0,
"s": 0,
"l": 76
},
"count": 2,
"contexts": [
"border",
"text"
]
},
{
"hex": "#002038",
"rgb": {
"r": 0,
"g": 32,
"b": 56,
"a": 1
},
"hsl": {
"h": 206,
"s": 100,
"l": 11
},
"count": 2,
"contexts": [
"background"
]
},
{
"hex": "#eeeeee",
"rgb": {
"r": 238,
"g": 238,
"b": 238,
"a": 1
},
"hsl": {
"h": 0,
"s": 0,
"l": 93
},
"count": 2,
"contexts": [
"background"
]
},
{
"hex": "#d8d8d8",
"rgb": {
"r": 216,
"g": 216,
"b": 216,
"a": 1
},
"hsl": {
"h": 0,
"s": 0,
"l": 85
},
"count": 2,
"contexts": [
"border"
]
},
{
"hex": "#1db954",
"rgb": {
"r": 29,
"g": 185,
"b": 84,
"a": 1
},
"hsl": {
"h": 141,
"s": 73,
"l": 42
},
"count": 2,
"contexts": [
"background",
"border"
]
},
{
"hex": "#b03830",
"rgb": {
"r": 176,
"g": 56,
"b": 48,
"a": 1
},
"hsl": {
"h": 4,
"s": 57,
"l": 44
},
"count": 1,
"contexts": [
"background"
]
},
{
"hex": "#402830",
"rgb": {
"r": 64,
"g": 40,
"b": 48,
"a": 1
},
"hsl": {
"h": 340,
"s": 23,
"l": 20
},
"count": 1,
"contexts": [
"background"
]
},
{
"hex": "#c03830",
"rgb": {
"r": 192,
"g": 56,
"b": 48,
"a": 1
},
"hsl": {
"h": 3,
"s": 60,
"l": 47
},
"count": 1,
"contexts": [
"background"
]
},
{
"hex": "#701818",
"rgb": {
"r": 112,
"g": 24,
"b": 24,
"a": 1
},
"hsl": {
"h": 0,
"s": 65,
"l": 27
},
"count": 1,
"contexts": [
"background"
]
},
{
"hex": "#817915",
"rgb": {
"r": 129,
"g": 121,
"b": 21,
"a": 1
},
"hsl": {
"h": 56,
"s": 72,
"l": 29
},
"count": 1,
"contexts": [
"background"
]
},
{
"hex": "#384040",
"rgb": {
"r": 56,
"g": 64,
"b": 64,
"a": 1
},
"hsl": {
"h": 180,
"s": 7,
"l": 24
},
"count": 1,
"contexts": [
"background"
]
},
{
"hex": "#186090",
"rgb": {
"r": 24,
"g": 96,
"b": 144,
"a": 1
},
"hsl": {
"h": 204,
"s": 71,
"l": 33
},
"count": 1,
"contexts": [
"background"
]
},
{
"hex": "#93712d",
"rgb": {
"r": 147,
"g": 113,
"b": 45,
"a": 1
},
"hsl": {
"h": 40,
"s": 53,
"l": 38
},
"count": 1,
"contexts": [
"background"
]
},
{
"hex": "#ba3cd1",
"rgb": {
"r": 186,
"g": 60,
"b": 209,
"a": 1
},
"hsl": {
"h": 291,
"s": 62,
"l": 53
},
"count": 1,
"contexts": [
"background"
]
},
{
"hex": "#177ace",
"rgb": {
"r": 23,
"g": 122,
"b": 206,
"a": 1
},
"hsl": {
"h": 208,
"s": 80,
"l": 45
},
"count": 1,
"contexts": [
"background"
]
},
{
"hex": "#687088",
"rgb": {
"r": 104,
"g": 112,
"b": 136,
"a": 1
},
"hsl": {
"h": 225,
"s": 13,
"l": 47
},
"count": 1,
"contexts": [
"background"
]
},
{
"hex": "#318099",
"rgb": {
"r": 49,
"g": 128,
"b": 153,
"a": 1
},
"hsl": {
"h": 194,
"s": 51,
"l": 40
},
"count": 1,
"contexts": [
"background"
]
},
{
"hex": "#cf4c1c",
"rgb": {
"r": 207,
"g": 76,
"b": 28,
"a": 1
},
"hsl": {
"h": 16,
"s": 76,
"l": 46
},
"count": 1,
"contexts": [
"background"
]
},
{
"hex": "#7f7757",
"rgb": {
"r": 127,
"g": 119,
"b": 87,
"a": 1
},
"hsl": {
"h": 48,
"s": 19,
"l": 42
},
"count": 1,
"contexts": [
"background"
]
},
{
"hex": "#e10096",
"rgb": {
"r": 225,
"g": 0,
"b": 150,
"a": 1
},
"hsl": {
"h": 320,
"s": 100,
"l": 44
},
"count": 1,
"contexts": [
"background"
]
},
{
"hex": "#b02828",
"rgb": {
"r": 176,
"g": 40,
"b": 40,
"a": 1
},
"hsl": {
"h": 0,
"s": 63,
"l": 42
},
"count": 1,
"contexts": [
"background"
]
},
{
"hex": "#883028",
"rgb": {
"r": 136,
"g": 48,
"b": 40,
"a": 1
},
"hsl": {
"h": 5,
"s": 55,
"l": 35
},
"count": 1,
"contexts": [
"background"
]
},
{
"hex": "#067eb6",
"rgb": {
"r": 6,
"g": 126,
"b": 182,
"a": 1
},
"hsl": {
"h": 199,
"s": 94,
"l": 37
},
"count": 1,
"contexts": [
"background"
]
},
{
"hex": "#517aa3",
"rgb": {
"r": 81,
"g": 122,
"b": 163,
"a": 1
},
"hsl": {
"h": 210,
"s": 34,
"l": 48
},
"count": 1,
"contexts": [
"background"
]
},
{
"hex": "#418369",
"rgb": {
"r": 65,
"g": 131,
"b": 105,
"a": 1
},
"hsl": {
"h": 156,
"s": 34,
"l": 38
},
"count": 1,
"contexts": [
"background"
]
},
{
"hex": "#284038",
"rgb": {
"r": 40,
"g": 64,
"b": 56,
"a": 1
},
"hsl": {
"h": 160,
"s": 23,
"l": 20
},
"count": 1,
"contexts": [
"background"
]
},
{
"hex": "#381800",
"rgb": {
"r": 56,
"g": 24,
"b": 0,
"a": 1
},
"hsl": {
"h": 26,
"s": 100,
"l": 11
},
"count": 1,
"contexts": [
"background"
]
},
{
"hex": "#c00808",
"rgb": {
"r": 192,
"g": 8,
"b": 8,
"a": 1
},
"hsl": {
"h": 0,
"s": 92,
"l": 39
},
"count": 1,
"contexts": [
"background"
]
},
{
"hex": "#204090",
"rgb": {
"r": 32,
"g": 64,
"b": 144,
"a": 1
},
"hsl": {
"h": 223,
"s": 64,
"l": 35
},
"count": 1,
"contexts": [
"background"
]
},
{
"hex": "#32ae88",
"rgb": {
"r": 50,
"g": 174,
"b": 136,
"a": 1
},
"hsl": {
"h": 162,
"s": 55,
"l": 44
},
"count": 1,
"contexts": [
"border"
]
}
]
},
"regions": [
{
"role": "nav",
"tag": "nav",
"bounds": {
"x": 8,
"y": 64,
"w": 294,
"h": 654
},
"heading": "Your Library",
"buttonCount": 7,
"cardCount": 0,
"className": "zOQ0BU6AULAqd7Qd"
},
{
"role": "nav",
"tag": "header",
"bounds": {
"x": 8,
"y": 64,
"w": 294,
"h": 59
},
"heading": "Your Library",
"buttonCount": 1,
"cardCount": 0,
"className": "ctNLVWve8CosEgh2"
},
{
"role": "content",
"tag": "section",
"bounds": {
"x": 16,
"y": 155,
"w": 278,
"h": 134
},
"heading": null,
"buttonCount": 2,
"cardCount": 0,
"className": "Re_OXhMIUkvAxhof q8mQFn7r8UYsKdHE _H2ZzS_Atuwx6wh9 tMFkXbMSXNUegQIu aIU4qABgiIgjAEyD LUVEWqx9qW4kwbPr C2vATbKl0MDEq09a DSes_Z2f48QaZ1s0 eOI7g5Zd6esLuCCb LJCjURMQBE6o9exj EYdwwRebZIgjbKy_ j3SHhp1yEwUOoay8"
},
{
"role": "content",
"tag": "section",
"bounds": {
"x": 16,
"y": 313,
"w": 278,
"h": 176
},
"heading": null,
"buttonCount": 2,
"cardCount": 0,
"className": "Re_OXhMIUkvAxhof q8mQFn7r8UYsKdHE _H2ZzS_Atuwx6wh9 tMFkXbMSXNUegQIu aIU4qABgiIgjAEyD LUVEWqx9qW4kwbPr C2vATbKl0MDEq09a DSes_Z2f48QaZ1s0 eOI7g5Zd6esLuCCb LJCjURMQBE6o9exj EYdwwRebZIgjbKy_ j3SHhp1yEwUOoay8"
},
{
"role": "sidebar",
"tag": "aside",
"bounds": {
"x": 8,
"y": 726,
"w": 1264,
"h": 66
},
"heading": null,
"buttonCount": 17,
"cardCount": 0,
"className": "Q2n2bdBXy28oQWoC nRWw2cACzspvO3GF"
},
{
"role": "pricing",
"tag": "main",
"bounds": {
"x": 310,
"y": 64,
"w": 962,
"h": 654
},
"heading": "Home",
"buttonCount": 166,
"cardCount": 200,
"className": "J6wP3V0xzh0Hj_MS"
},
{
"role": "testimonials",
"tag": "section",
"bounds": {
"x": 310,
"y": 64,
"w": 962,
"h": 1018.21875
},
"heading": "Home",
"buttonCount": 160,
"cardCount": 200,
"className": "JlQyoTD6puMgqY_y CDyHWsKVsLAC4HFx"
},
{
"role": "testimonials",
"tag": "section",
"bounds": {
"x": 350,
"y": 68,
"w": 882,
"h": 332.78125
},
"heading": "Trending songs",
"buttonCount": 80,
"cardCount": 100,
"className": "l3tPikCftuELMOzz e4IK04uNVRsB6jbO yTHNsGSMiG01kxo3"
},
{
"role": "content",
"tag": "section",
"bounds": {
"x": 350,
"y": 416.78125,
"w": 882,
"h": 287.71875
},
"heading": "Popular artists",
"buttonCount": 40,
"cardCount": 50,
"className": "l3tPikCftuELMOzz e4IK04uNVRsB6jbO yTHNsGSMiG01kxo3"
},
{
"role": "hero",
"tag": "section",
"bounds": {
"x": 350,
"y": 720.5,
"w": 882,
"h": 329.71875
},
"heading": "Popular albums and singles",
"buttonCount": 40,
"cardCount": 50,
"className": "l3tPikCftuELMOzz e4IK04uNVRsB6jbO yTHNsGSMiG01kxo3"
},
{
"role": "nav",
"tag": "nav",
"bounds": {
"x": 310,
"y": 1171.21875,
"w": 962,
"h": 355
},
"heading": null,
"buttonCount": 6,
"cardCount": 0,
"className": "sc-jxOSlx esBjsh"
},
{
"role": "content",
"tag": "section",
"bounds": {
"x": 0,
"y": 0,
"w": 0,
"h": 0
},
"heading": "Location",
"buttonCount": 2,
"cardCount": 184,
"className": "nWR7PbHjFXQJiYNL"
},
{
"role": "content",
"tag": "section",
"bounds": {
"x": 0,
"y": 0,
"w": 0,
"h": 0
},
"heading": " Manage Consent Preferences",
"buttonCount": 10,
"cardCount": 10,
"className": "ot-sdk-row ot-cat-grp"
},
{
"role": "content",
"tag": "section",
"bounds": {
"x": 0,
"y": 0,
"w": 0,
"h": 0
},
"heading": "Cookie List",
"buttonCount": 5,
"cardCount": 1,
"className": "ot-hide ot-hosts-ui ot-pc-scrollbar ot-enbl-chr"
},
{
"role": "content",
"tag": "section",
"bounds": {
"x": 0,
"y": 0,
"w": 0,
"h": 0
},
"heading": null,
"buttonCount": 3,
"cardCount": 1,
"className": null
},
{
"role": "content",
"tag": "section",
"bounds": {
"x": 0,
"y": 0,
"w": 0,
"h": 0
},
"heading": null,
"buttonCount": 0,
"cardCount": 0,
"className": "ot-host-cnt ot-pc-scrollbar"
}
],
"componentClusters": [
{
"kind": "button",
"structuralHash": "button>span",
"instanceCount": 47,
"variants": [
{
"css": {
"background": "rgb(31, 31, 31)",
"color": "rgb(255, 255, 255)",
"padding": "12px 12px 12px 12px",
"borderRadius": "50%",
"border": "0px none rgb(255, 255, 255)",
"fontSize": "16px",
"fontWeight": "400"
},
"instanceCount": 1
},
{
"css": {
"background": "rgba(0, 0, 0, 0)",
"color": "rgb(179, 179, 179)",
"padding": "12px 12px 12px 12px",
"borderRadius": "9999px",
"border": "0px none rgb(179, 179, 179)",
"fontSize": "16px",
"fontWeight": "400"
},
"instanceCount": 45
},
{
"css": {
"background": "rgba(0, 0, 0, 0)",
"color": "rgb(179, 179, 179)",
"padding": "8px 8px 8px 8px",
"borderRadius": "50%",
"border": "0px none rgb(179, 179, 179)",
"fontSize": "16px",
"fontWeight": "400"
},
"instanceCount": 1
}
]
},
{
"kind": "button",
"structuralHash": "span>svg",
"instanceCount": 45,
"variants": [
{
"css": {
"background": "rgba(0, 0, 0, 0)",
"color": "rgb(255, 255, 255)",
"padding": "0px 0px 0px 0px",
"borderRadius": "0px",
"border": "0px none rgb(255, 255, 255)",
"fontSize": "16px",
"fontWeight": "400"
},
"instanceCount": 10
},
{
"css": {
"background": "rgba(0, 0, 0, 0)",
"color": "rgb(179, 179, 179)",
"padding": "0px 0px 0px 0px",
"borderRadius": "0px",
"border": "0px none rgb(179, 179, 179)",
"fontSize": "14px",
"fontWeight": "700"
},
"instanceCount": 1
},
{
"css": {
"background": "rgba(0, 0, 0, 0)",
"color": "rgb(0, 0, 0)",
"padding": "0px 0px 0px 0px",
"borderRadius": "0px",
"border": "0px none rgb(0, 0, 0)",
"fontSize": "13.3333px",
"fontWeight": "400"
},
"instanceCount": 34
}
]
},
{
"kind": "input",
"structuralHash": "input",
"instanceCount": 1,
"variants": [
{
"css": {
"background": "rgb(31, 31, 31)",
"color": "rgb(255, 255, 255)",
"padding": "12px 96px 12px 48px",
"borderRadius": "500px",
"border": "0px none rgb(255, 255, 255)",
"fontSize": "16px",
"fontWeight": "400"
},
"instanceCount": 1
}
]
},
{
"kind": "button",
"structuralHash": "button",
"instanceCount": 4,
"variants": [
{
"css": {
"background": "rgba(0, 0, 0, 0)",
"color": "rgb(179, 179, 179)",
"padding": "8px 0px 8px 0px",
"borderRadius": "9999px",
"border": "0px none rgb(179, 179, 179)",
"fontSize": "16px",
"fontWeight": "700"
},
"instanceCount": 4
}
]
},
{
"kind": "button",
"structuralHash": "a>span>span",
"instanceCount": 1,
"variants": [
{
"css": {
"background": "rgba(0, 0, 0, 0)",
"color": "rgb(179, 179, 179)",
"padding": "4px 16px 4px 36px",
"borderRadius": "9999px",
"border": "0px none rgb(179, 179, 179)",
"fontSize": "14px",
"fontWeight": "700"
},
"instanceCount": 1
}
]
},
{
"kind": "button",
"structuralHash": "span",
"instanceCount": 4,
"variants": [
{
"css": {
"background": "rgb(255, 255, 255)",
"color": "rgb(0, 0, 0)",
"padding": "8px 32px 8px 32px",
"borderRadius": "9999px",
"border": "0px none rgb(0, 0, 0)",
"fontSize": "16px",
"fontWeight": "700"
},
"instanceCount": 4
}
]
},
{
"kind": "button",
"structuralHash": "button>svg",
"instanceCount": 1,
"variants": [
{
"css": {
"background": "rgb(31, 31, 31)",
"color": "rgb(179, 179, 179)",
"padding": "8px 8px 8px 8px",
"borderRadius": "9999px",
"border": "0px none rgb(179, 179, 179)",
"fontSize": "13.3333px",
"fontWeight": "400"
},
"instanceCount": 1
}
]
},
{
"kind": "button",
"structuralHash": "a>span",
"instanceCount": 1,
"variants": [
{
"css": {
"background": "rgba(0, 0, 0, 0)",
"color": "rgb(0, 0, 238)",
"padding": "0px 0px 0px 0px",
"borderRadius": "9999px",
"border": "0px none rgb(0, 0, 238)",
"fontSize": "14px",
"fontWeight": "700"
},
"instanceCount": 1
}
]
},
{
"kind": "button",
"structuralHash": "span>span",
"instanceCount": 34,
"variants": [
{
"css": {
"background": "rgb(255, 255, 255)",
"color": "rgb(0, 0, 0)",
"padding": "0px 0px 0px 0px",
"borderRadius": "9999px",
"border": "0px none rgb(0, 0, 0)",
"fontSize": "13.3333px",
"fontWeight": "400"
},
"instanceCount": 34
}
]
},
{
"kind": "card",
"structuralHash": "div>div>div>div>div",
"instanceCount": 33,
"variants": [
{
"css": {
"background": "rgba(0, 0, 0, 0)",
"color": "rgb(255, 255, 255)",
"padding": "12px 12px 12px 12px",
"borderRadius": "6px",
"border": "0px none rgb(255, 255, 255)",
"fontSize": "16px",
"fontWeight": "400"
},
"instanceCount": 33
}
]
},
{
"kind": "button",
"structuralHash": "div",
"instanceCount": 33,
"variants": [
{
"css": {
"background": "rgba(0, 0, 0, 0)",
"color": "rgb(255, 255, 255)",
"padding": "0px 0px 0px 0px",
"borderRadius": "0px",
"border": "0px none rgb(255, 255, 255)",
"fontSize": "16px",
"fontWeight": "400"
},
"instanceCount": 33
}
]
},
{
"kind": "card",
"structuralHash": "div>div",
"instanceCount": 32,
"variants": [
{
"css": {
"background": "rgba(0, 0, 0, 0)",
"color": "rgb(255, 255, 255)",
"padding": "0px 0px 0px 0px",
"borderRadius": "0px",
"border": "0px none rgb(255, 255, 255)",
"fontSize": "16px",
"fontWeight": "400"
},
"instanceCount": 32
}
]
},
{
"kind": "card",
"structuralHash": "div>a>div",
"instanceCount": 32,
"variants": [
{
"css": {
"background": "rgba(0, 0, 0, 0)",
"color": "rgb(255, 255, 255)",
"padding": "0px 0px 0px 0px",
"borderRadius": "0px",
"border": "0px none rgb(255, 255, 255)",
"fontSize": "16px",
"fontWeight": "400"
},
"instanceCount": 32
}
]
},
{
"kind": "card",
"structuralHash": "p>span",
"instanceCount": 32,
"variants": [
{
"css": {
"background": "rgba(0, 0, 0, 0)",
"color": "rgb(255, 255, 255)",
"padding": "0px 0px 0px 0px",
"borderRadius": "0px",
"border": "0px none rgb(255, 255, 255)",
"fontSize": "16px",
"fontWeight": "400"
},
"instanceCount": 32
}
]
}
],
"accessibility": {
"remediation": [
{
"fg": "#ffffff",
"bg": "#1db954",
"ratio": 2.59,
"rule": "AA-normal",
"suggestion": {
"replace": "fg",
"color": "#000000",
"newRatio": 8.12
}
}
]
},
"cssHealth": {
"sheets": [
{
"url": "https://open.spotify.com/",
"totalBytes": 46,
"usedBytes": 46,
"unusedBytes": 0,
"unusedPercent": 0
},
{
"url": "https://open.spotifycdn.com/cdn/build/web-player/web-player.abb93a44.css",
"totalBytes": 454293,
"usedBytes": 201932,
"unusedBytes": 252361,
"unusedPercent": 56
},
{
"url": "https://open.spotify.com/",
"totalBytes": 0,
"usedBytes": 0,
"unusedBytes": 0,
"unusedPercent": 0
},
{
"url": "https://www.gstatic.com/recaptcha/releases/Br0hYqpfWeFzYCAXLD4UuCIV/styles__ltr.css",
"totalBytes": 83358,
"usedBytes": 3029,
"unusedBytes": 80329,
"unusedPercent": 96
},
{
"url": "https://www.google.com/recaptcha/enterprise/anchor?ar=1&k=6LfCVLAUAAAAALFwwRnnCJ12DalriUGbj8FW_J39&co=aHR0cHM6Ly9vcGVuLnNwb3RpZnkuY29tOjQ0Mw..&hl=en&v=Br0hYqpfWeFzYCAXLD4UuCIV&size=invisible&anchor-ms=20000&execute-ms=30000&cb=a1pg67b619ua",
"totalBytes": 16160,
"usedBytes": 0,
"unusedBytes": 16160,
"unusedPercent": 100
},
{
"url": "https://open.spotifycdn.com/cdn/build/web-player/dwp-feedback-bar.931ea758.css",
"totalBytes": 1081,
"usedBytes": 0,
"unusedBytes": 1081,
"unusedPercent": 100
},
{
"url": "https://open.spotifycdn.com/cdn/build/web-player/xpui-routes-your-library-x.ea3af739.css",
"totalBytes": 20422,
"usedBytes": 2323,
"unusedBytes": 18099,
"unusedPercent": 89
},
{
"url": "https://open.spotifycdn.com/cdn/build/web-player/dwp-top-bar.0ec3bbd9.css",
"totalBytes": 360,
"usedBytes": 264,
"unusedBytes": 96,
"unusedPercent": 27
},
{
"url": "https://open.spotifycdn.com/cdn/build/web-player/dwp-now-playing-bar.dd8a2e76.css",
"totalBytes": 17057,
"usedBytes": 4020,
"unusedBytes": 13037,
"unusedPercent": 76
},
{
"url": "https://open.spotifycdn.com/cdn/build/web-player/dwp-home-header.0ec3bbd9.css",
"totalBytes": 360,
"usedBytes": 264,
"unusedBytes": 96,
"unusedPercent": 27
},
{
"url": "https://open.spotifycdn.com/cdn/build/web-player/2642.a902f130.css",
"totalBytes": 46139,
"usedBytes": 3513,
"unusedBytes": 42626,
"unusedPercent": 92
},
{
"url": "https://open.spotifycdn.com/cdn/build/web-player/dwp-home-chips-row.fb404ad3.css",
"totalBytes": 7345,
"usedBytes": 530,
"unusedBytes": 6815,
"unusedPercent": 93
},
{
"url": "https://open.spotifycdn.com/cdn/build/web-player/dwp-video-player.e7563948.css",
"totalBytes": 14866,
"usedBytes": 2074,
"unusedBytes": 12792,
"unusedPercent": 86
},
{
"url": "https://open.spotifycdn.com/cdn/build/web-player/dwp-panel-section.d500d742.css",
"totalBytes": 48145,
"usedBytes": 0,
"unusedBytes": 48145,
"unusedPercent": 100
},
{
"url": "https://open.spotifycdn.com/cdn/build/web-player/xpui-root-dialogs.5cb6b120.css",
"totalBytes": 38514,
"usedBytes": 755,
"unusedBytes": 37759,
"unusedPercent": 98
},
{
"url": "https://open.spotifycdn.com/cdn/build/web-player/dwp-watch-feed-view-container.c7fc0b7b.css",
"totalBytes": 10006,
"usedBytes": 0,
"unusedBytes": 10006,
"unusedPercent": 100
},
{
"url": "https://open.spotifycdn.com/cdn/build/web-player/listening-stats-modal.e46fcd5c.css",
"totalBytes": 118,
"usedBytes": 0,
"unusedBytes": 118,
"unusedPercent": 100
}
],
"totalBytes": 758270,
"usedBytes": 218750,
"unusedBytes": 539520,
"unusedPercent": 71,
"importantCount": 175,
"duplicates": 12418,
"vendorPrefixes": {
"webkit": 432,
"moz": 8,
"ms": 21,
"o": 1
},
"keyframes": [],
"specificity": {
"max": [
2,
6,
2
],
"average": [
0,
1.56,
0.12
],
"count": 6679
},
"issues": [
"175 !important rules",
"12418 duplicate declarations",
"71% unused CSS"
]
}
}Prompt pack
Paste-ready prompts pre-loaded with the spotify.com system. Generators (v0, Lovable, Cursor, Claude Artifacts) and per-component recipes (button, card).
Build a landing page with this exact visual language. COLORS: #ffffff #b3b3b3 #000000 #696969 #555555 #1ed760 #121212 #7c7c7c #1f1f1f #333333 #468254 #3860be #346e4a #292929 FONTS: [object Object], [object Object], [object Object] SPACING: 1, 15, 20, 23, 28, 35, 40, 48 RADIUS: 2, 6, 10, 16, 20, 32 SHADOWS: rgb(124, 124, 124) 0px 0px 0px 1px inset | rgb(18, 18, 18) 0px 1px 0px 0px, rgb(124, 124, 124) 0px 0px 0px 1px inset | rgb(128, 128, 128) 0px 0px 5px 0px MATERIAL LANGUAGE: material-you VOICE: Tone: friendly · Headings: Sentence case · CTA verbs: [object Object], [object Object], [object Object], [object Object], [object Object], [object Object] SECTIONS (in order): - cta - pricing — heading: "Home" - testimonials — heading: "Home" - hero — heading: "Trending songs" - hero — heading: "Popular albums and singles" Use Tailwind. Match these tokens exactly. Keep the material language consistent.
Clone the design language of this landing page and build a fresh equivalent. Visual feel: material-you. Tone: friendly · Headings: Sentence case · CTA verbs: [object Object], [object Object], [object Object], [object Object], [object Object], [object Object] Primary palette: #ffffff, #b3b3b3, #000000, #696969, #555555. Typography: [object Object], [object Object], [object Object]. Corner radius vocabulary: 2, 6, 10, 16, 20, 32. Shadow vocabulary: rgb(124, 124, 124) 0px 0px 0px 1px inset | rgb(18, 18, 18) 0px 1px 0px 0px, rgb(124, 124, 124) 0px 0px 0px 1px inset | rgb(128, 128, 128) 0px 0px 5px 0px. Page structure: - cta - pricing — heading: "Home" - testimonials — heading: "Home" - hero — heading: "Trending songs" - hero — heading: "Popular albums and singles"
# Design brief
Page type: **landing**.
Material language: **material-you**.
Voice: Tone: friendly · Headings: Sentence case · CTA verbs: [object Object], [object Object], [object Object], [object Object], [object Object], [object Object].
## Tokens
```ts
export const tokens = {
colors: ['#ffffff', '#b3b3b3', '#000000', '#696969', '#555555', '#1ed760', '#121212', '#7c7c7c', '#1f1f1f', '#333333', '#468254', '#3860be', '#346e4a', '#292929'],
fonts: ['[object Object]', '[object Object]', '[object Object]'],
radii: ['2', '6', '10', '16', '20', '32'],
shadows: ['rgb(124, 124, 124) 0px 0px 0px 1px inset', 'rgb(18, 18, 18) 0px 1px 0px 0px, rgb(124, 124, 124) 0px 0px 0px 1px inset', 'rgb(128, 128, 128) 0px 0px 5px 0px'],
};
```
## Sections
- cta
- pricing — heading: "Home"
- testimonials — heading: "Home"
- hero — heading: "Trending songs"
- hero — heading: "Popular albums and singles"Create a React artifact that reproduces this brand's design language. Page intent: landing. Material language: material-you. Voice: Tone: friendly · Headings: Sentence case · CTA verbs: [object Object], [object Object], [object Object], [object Object], [object Object], [object Object]. Colors to use: #ffffff, #b3b3b3, #000000, #696969, #555555, #1ed760, #121212, #7c7c7c, #1f1f1f, #333333, #468254, #3860be, #346e4a, #292929. Fonts: [object Object], [object Object], [object Object]. Radius vocabulary: 2, 6, 10, 16, 20, 32. Sections: - cta - pricing — heading: "Home" - testimonials — heading: "Home" - hero — heading: "Trending songs" - hero — heading: "Popular albums and singles" Use Tailwind via CDN, lucide-react for icons, and keep the material language consistent across sections. Do not add extra decorative elements outside this vocabulary.
# Recipe: button
Build one button component that matches this brand.
Palette: #ffffff, #b3b3b3, #000000, #696969, #555555, #1ed760
Typography: [object Object], [object Object], [object Object]
Material: material-you
Signals: Radius: 2, 6, 10, 16, 20, 32 · Shadows: rgb(124, 124, 124) 0px 0px 0px 1px inset | rgb(18, 18, 18) 0px 1px 0px 0px, rgb(124, 124, 124) 0px 0px 0px 1px inset | rgb(128, 128, 128) 0px 0px 5px 0px
## Anatomy (detected)
```json
{
"kind": "button",
"structuralHash": "div",
"instanceCount": 33,
"variants": [
{
"css": {
"background": "rgba(0, 0, 0, 0)",
"color": "rgb(255, 255, 255)",
"padding": "0px 0px 0px 0px",
"borderRadius": "0px",
"border": "0px none rgb(255, 255, 255)",
"fontSize": "16px",
"fontWeight": "400"
},
"instanceCount": 33
}
]
}
```# Recipe: card
Build one card component that matches this brand.
Palette: #ffffff, #b3b3b3, #000000, #696969, #555555, #1ed760
Typography: [object Object], [object Object], [object Object]
Material: material-you
Signals: Radius: 2, 6, 10, 16, 20, 32 · Shadows: rgb(124, 124, 124) 0px 0px 0px 1px inset | rgb(18, 18, 18) 0px 1px 0px 0px, rgb(124, 124, 124) 0px 0px 0px 1px inset | rgb(128, 128, 128) 0px 0px 5px 0px
## Anatomy (detected)
```json
{
"kind": "card",
"structuralHash": "div>div",
"instanceCount": 32,
"variants": [
{
"css": {
"background": "rgba(0, 0, 0, 0)",
"color": "rgb(255, 255, 255)",
"padding": "0px 0px 0px 0px",
"borderRadius": "0px",
"border": "0px none rgb(255, 255, 255)",
"fontSize": "16px",
"fontWeight": "400"
},
"instanceCount": 32
}
]
}
```All artefacts
Every file designlang produced for spotify.com — 39 in total. Download anything.
Run designlang on your own URL.
Same 39-artefact depth as the spotify.com extraction above. No signup, no API key.
npx designlang yoursite.comTry it live