Polycam — Design System
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.
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
| 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; only on things you click or must notice, never large fills. accent,secondary,button_bgare all#FF8E80— one role, not several (the 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
- Body: GT Planar
- h1: 64px
- h2: 48px
- body: 16px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 0px
- button: 100px
Per-section tokens (11)
- Hero
- Gallery / Showcase
- Logo Wall
- Feature
- Feature
- Feature
- Feature
- Feature
- CTA / Sign-up
- Gallery / Showcase
- Footer
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)_ - h1: 64px - h2: 48px - body: 16px > **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 ## Radius - base: 0px - button: 100px ## 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.
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;
--text-h1: 64px;
--text-h2: 48px;
--text-body: 16px;
--radius-base: 0px;
--radius-button: 100px;
--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;
--radius: 0px;
--radius-button: 100px;
}
/* fonts: GT Planar may be proprietary — safe free fallback: Newsreader (Google Fonts). */