MozaikaDesign system

Framer — Design System

dark · modern · high · custom · confidence 90%

Framer is show-don't-tell in monochrome: black canvas, white GT Walsheim headlines at 54px, and the product itself as the only color source — canvas screenshots, cursor chips and UI panels glowing against the dark. Body text runs small (12–13px) because the interface is the copy. Corners hold a consistent 8px, primary buttons flip to white with the classic #0000EE link-blue reserved for brand moments. Density is high and motion is implied even in stills — a design tool that markets itself by simply being seen.

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

Tokens

Framer's decoded design system: background #000000, text #ECECEE, accent #0099FF, link #0099FF, primary #0000EE; type scale h1 54px / h2 44px / body 14px; 10px spacing base; 8px base radius. The single interactive/action color is #FFFFFF — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#000000
surface#0E0E0E
border#232323
text#ECECEE
text_muted#929293
primary#0000EE
accent#0099FF
link#0099FF
secondary#0066FF
button_bg#FFFFFF
button_text#0000EE

Using these colors

Typography

Spacing

Radii

Per-section tokens (20)

Export: DESIGN.md

# Framer — Design System

> dark, modern, high, custom

Framer is show-don't-tell in monochrome: black canvas, white GT Walsheim headlines at 54px, and the product itself as the only color source — canvas screenshots, cursor chips and UI panels glowing against the dark. Body text runs small (12–13px) because the interface is the copy. Corners hold a consistent 8px, primary buttons flip to white with the classic #0000EE link-blue reserved for brand moments. Density is high and motion is implied even in stills — a design tool that markets itself by simply being seen.

## Colors

| Role | Value |
|------|-------|
| bg | `#000000` |
| surface | `#0E0E0E` |
| border | `#232323` |
| text | `#ECECEE` |
| text_muted | `#929293` |
| primary | `#0000EE` |
| accent | `#0099FF` |
| link | `#0099FF` |
| secondary | `#0066FF` |
| button_bg | `#FFFFFF` |
| button_text | `#0000EE` |

**Using these colors**

- **Action color** `#FFFFFF` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds.
- `accent`, `link` are all `#0099FF` — one role, not several.
- **accent** `#0099FF` — accent for emphasis — keep it rare on the page.
- **primary** `#0000EE` — a brand color — but the call-to-action uses #FFFFFF, not this.
- **secondary** `#0066FF` — 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: **GT Walsheim** _(free fallback: Poppins)_
- Body: **Inter**
- h1: 54px
- h2: 44px
- body: 14px

> **Fonts —** GT Walsheim is proprietary — closest free match: Poppins (Google). Load Poppins; keep GT Walsheim first so licensed users still get it. Inter — free, on Google.

## Spacing
- base unit: 10px
- scale: 5px, 10px, 15px, 20px, 30px, 40px, 60px, 80px

## Radius
- base: 8px
- button: 8px

## Primary button
- bg `#FFFFFF` · text `#0000EE` · radius 8px

## 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 #FFFFFF — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #000000;
  --color-surface: #0E0E0E;
  --color-border: #232323;
  --color-text: #ECECEE;
  --color-text-muted: #929293;
  --color-primary: #0000EE;  /* a brand color — but the call-to-action uses #FFFFFF, not this. */
  --color-accent: #0099FF;  /* accent for emphasis — keep it rare on the page. */
  --color-link: #0099FF;  /* inline text links and link-styled controls. */
  --color-secondary: #0066FF;  /* 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: #FFFFFF;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #0000EE;
  /* fonts: GT Walsheim is proprietary — closest free match: Poppins (Google). Load Poppins; keep GT Walsheim first so licensed users still get it. Inter — free, on Google. */
  --font-heading: "GT Walsheim", "Poppins", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 54px;
  --text-h2: 44px;
  --text-body: 14px;
  --radius-base: 8px;
  --radius-button: 8px;
  --spacing-1: 5px;
  --spacing-2: 10px;
  --spacing-3: 15px;
  --spacing-4: 20px;
  --spacing-5: 30px;
  --spacing-6: 40px;
  --spacing-7: 60px;
  --spacing-8: 80px;
}

Export: CSS variables

:root {
  /* action color #FFFFFF — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #000000;
  --surface: #0E0E0E;
  --border: #232323;
  --text: #ECECEE;
  --text-muted: #929293;
  --primary: #0000EE;  /* a brand color — but the call-to-action uses #FFFFFF, not this. */
  --accent: #0099FF;  /* accent for emphasis — keep it rare on the page. */
  --link: #0099FF;  /* inline text links and link-styled controls. */
  --secondary: #0066FF;  /* 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: #FFFFFF;  /* primary-button fill — the main call-to-action color. */
  --button-text: #0000EE;
  --font-heading: "GT Walsheim", "Poppins", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 8px;
  --radius-button: 8px;
}
/* fonts: GT Walsheim is proprietary — closest free match: Poppins (Google). Load Poppins; keep GT Walsheim first so licensed users still get it. Inter — free, on Google. */