MozaikaDesign system

Polycam — Design System

light · modern · medium · custom · confidence 90%

Polycam scans reality onto warm paper: GT Planar at 64px/400 — a typeface literally designed on angled planes, perfect for a 3D-capture brand — in ink on putty #F0EDE4, with 4px-radius white buttons and photogrammetry renders doing the showing. The archaeological-catalog calm makes LiDAR tooling feel like fieldwork equipment, not an app.

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

Tokens

Polycam's decoded design system: background #F0EDE4, text #0C0A09, accent #FF8E80, link #0A0021, primary #E7E1D5; type scale h1 64px / h2 48px / body 16px; 4px spacing base; 0px base radius. The single interactive/action color is #FF8E80 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#F0EDE4
surface#E2DFD6
border#CDCAC3
text#0C0A09
text_muted#62605C
primary#E7E1D5
accent#FF8E80
link#0A0021
secondary#FF8E80
button_bg#FF8E80
button_text#0C0A09

Using these colors

Typography

Spacing

Radii

Per-section tokens (11)

Export: DESIGN.md

# Polycam — Design System

> light, modern, medium, custom

Polycam scans reality onto warm paper: GT Planar at 64px/400 — a typeface literally designed on angled planes, perfect for a 3D-capture brand — in ink on putty #F0EDE4, with 4px-radius white buttons and photogrammetry renders doing the showing. The archaeological-catalog calm makes LiDAR tooling feel like fieldwork equipment, not an app.

## Colors

| Role | Value |
|------|-------|
| bg | `#F0EDE4` |
| surface | `#E2DFD6` |
| border | `#CDCAC3` |
| text | `#0C0A09` |
| text_muted | `#62605C` |
| primary | `#E7E1D5` |
| accent | `#FF8E80` |
| link | `#0A0021` |
| secondary | `#FF8E80` |
| button_bg | `#FF8E80` |
| button_text | `#0C0A09` |

**Using these colors**

- **Action color** `#FF8E80` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds.
- `accent`, `secondary`, `button_bg` are all `#FF8E80` — one role, not several (your action color).
- **accent** `#FF8E80` — 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** `#E7E1D5` — a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #FF8E80).
- **link** `#0A0021` — inline text links and link-styled controls.

## Typography

- Heading: **GT Planar** _(free fallback: Newsreader)_
- Body: **GT Planar** _(free fallback: Newsreader)_

| Role | Size / weight · line-height · tracking |
|------|------------------------------------------|
| hero | 64px / 400 · lh 61px · tracking -0.8px |
| h2 | 48px / 400 · lh 46px · tracking -1.2px |
| h3 | 32px / 400 · lh 40px · tracking -0.4px |
| body | 16px / 500 · lh 24px |
| small | 14px / 400 · lh 15px · tracking 1.05px |
| eyebrow | 14px / 400 · tracking 1.05px |

- Weight ladder: 300 · 400 · 500 — use these exact measured weights, not the 400/600 defaults.

> **Fonts —** GT Planar may be proprietary — safe free fallback: Newsreader (Google Fonts).

## Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
- section rhythm: 80px top/bottom padding per section (measured)

## Radius
- base: 0px
- button: 100px
- card: 4px
- pill: 9999px
- sharp: 3px

## Primary button
- bg `#FF8E80` · text `#0C0A09` · radius 100px

## 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.

---

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

Export: Tailwind v4 (@theme)

@theme {
  /* action color #FF8E80 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #F0EDE4;
  --color-surface: #E2DFD6;
  --color-border: #CDCAC3;
  --color-text: #0C0A09;
  --color-text-muted: #62605C;
  --color-primary: #E7E1D5;  /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #FF8E80). */
  --color-accent: #FF8E80;  /* 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: #0A0021;  /* inline text links and link-styled controls. */
  --color-secondary: #FF8E80;  /* same color as the action (see accent). */
  --color-button-bg: #FF8E80;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #0C0A09;
  /* fonts: GT Planar may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "GT Planar", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "GT Planar", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  /* measured weights: 300, 400, 500 — use these, not 400/600 */
  --text-hero: 64px; --font-weight-hero: 400; --leading-hero: 61px; --tracking-hero: -0.8px;
  --text-h2: 48px; --font-weight-h2: 400; --leading-h2: 46px; --tracking-h2: -1.2px;
  --text-h3: 32px; --font-weight-h3: 400; --leading-h3: 40px; --tracking-h3: -0.4px;
  --text-body: 16px; --font-weight-body: 500; --leading-body: 24px;
  --text-small: 14px; --font-weight-small: 400; --leading-small: 15px; --tracking-small: 1.05px;
  --text-eyebrow: 14px; --font-weight-eyebrow: 400; --tracking-eyebrow: 1.05px;
  --radius-base: 0px;
  --radius-button: 100px;
  --radius-card: 4px;
  --radius-pill: 9999px;
  --radius-sharp: 3px;
  --section-y: 80px;  /* per-section vertical padding (measured) */
  --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 #FF8E80 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #F0EDE4;
  --surface: #E2DFD6;
  --border: #CDCAC3;
  --text: #0C0A09;
  --text-muted: #62605C;
  --primary: #E7E1D5;  /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #FF8E80). */
  --accent: #FF8E80;  /* 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: #0A0021;  /* inline text links and link-styled controls. */
  --secondary: #FF8E80;  /* same color as the action (see accent). */
  --button-bg: #FF8E80;  /* primary-button fill — the main call-to-action color. */
  --button-text: #0C0A09;
  --font-heading: "GT Planar", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "GT Planar", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-hero: 64px; --weight-hero: 400; --leading-hero: 61px; --tracking-hero: -0.8px;
  --text-h2: 48px; --weight-h2: 400; --leading-h2: 46px; --tracking-h2: -1.2px;
  --text-h3: 32px; --weight-h3: 400; --leading-h3: 40px; --tracking-h3: -0.4px;
  --text-body: 16px; --weight-body: 500; --leading-body: 24px;
  --text-small: 14px; --weight-small: 400; --leading-small: 15px; --tracking-small: 1.05px;
  --text-eyebrow: 14px; --weight-eyebrow: 400; --tracking-eyebrow: 1.05px;
  --radius: 0px;
  --radius-button: 100px;
  --radius-card: 4px;
  --radius-pill: 9999px;
  --radius-sharp: 3px;
  --section-y: 80px;
}
/* fonts: GT Planar may be proprietary — safe free fallback: Newsreader (Google Fonts). */