MozaikaDesign system

Letterboxd — Design System

dark · modern · medium · custom · confidence 92%

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

Tokens

Letterboxd's decoded design system: background #14181C, text #ECECEE, accent #00AC1C, link #99AABB, primary #445566; type scale h1 24px / h2 36px / body 12px; 4px spacing base; 3px base radius. The single interactive/action color is #00AC1C — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#14181C
surface#202428
border#34373B
text#ECECEE
text_muted#999B9E
primary#445566
accent#00AC1C
link#99AABB
secondary#667788
button_bg#00AC1C
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Shadow

rgba(255, 255, 255, 0.1) 0px 1px 0px 0px inset

Export: DESIGN.md

# Letterboxd — Design System

> dark, modern, medium, custom

## Colors

| Role | Value |
|------|-------|
| bg | `#14181C` |
| surface | `#202428` |
| border | `#34373B` |
| text | `#ECECEE` |
| text_muted | `#999B9E` |
| primary | `#445566` |
| accent | `#00AC1C` |
| link | `#99AABB` |
| secondary | `#667788` |
| button_bg | `#00AC1C` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#00AC1C` — 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 `#00AC1C` — one role, not several (your action color).
- **accent** `#00AC1C` — 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** `#445566` — a brand color — but the call-to-action uses #00AC1C, not this.
- **link** `#99AABB` — reads as a neutral UI color, not a link accent — verify against the reference (action = #00AC1C).
- **secondary** `#667788` — 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: **TiemposHeadlineWeb** _(free fallback: Newsreader)_
- Body: **GraphikWeb** _(free fallback: Newsreader)_
- h1: 24px
- h2: 36px
- body: 12px

> **Fonts —** TiemposHeadlineWeb may be proprietary — safe free fallback: Newsreader (Google Fonts). GraphikWeb 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: 4px

## Primary button
- bg `#00AC1C` · text `#FFFFFF` · radius 4px

## 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 #00AC1C — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #14181C;
  --color-surface: #202428;
  --color-border: #34373B;
  --color-text: #ECECEE;
  --color-text-muted: #999B9E;
  --color-primary: #445566;  /* a brand color — but the call-to-action uses #00AC1C, not this. */
  --color-accent: #00AC1C;  /* 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: #99AABB;  /* reads as a neutral UI color, not a link accent — verify against the reference (action = #00AC1C). */
  --color-secondary: #667788;  /* 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: #00AC1C;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: TiemposHeadlineWeb may be proprietary — safe free fallback: Newsreader (Google Fonts). GraphikWeb may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "TiemposHeadlineWeb", "Newsreader", Georgia, 'Times New Roman', serif;
  --font-body: "GraphikWeb", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 24px;
  --text-h2: 36px;
  --text-body: 12px;
  --radius-base: 3px;
  --radius-button: 4px;
  --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 #00AC1C — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #14181C;
  --surface: #202428;
  --border: #34373B;
  --text: #ECECEE;
  --text-muted: #999B9E;
  --primary: #445566;  /* a brand color — but the call-to-action uses #00AC1C, not this. */
  --accent: #00AC1C;  /* 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: #99AABB;  /* reads as a neutral UI color, not a link accent — verify against the reference (action = #00AC1C). */
  --secondary: #667788;  /* 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: #00AC1C;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "TiemposHeadlineWeb", "Newsreader", Georgia, 'Times New Roman', serif;
  --font-body: "GraphikWeb", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 3px;
  --radius-button: 4px;
}
/* fonts: TiemposHeadlineWeb may be proprietary — safe free fallback: Newsreader (Google Fonts). GraphikWeb may be proprietary — safe free fallback: Newsreader (Google Fonts). */