MozaikaDesign system

Motion — Design System

light · modern · high · tailwind · confidence 92%

Motion pitches AI productivity at billboard volume: Albert Sans at 88px/600 ('Get an unfair advantage...') in black on white, Inter at 14-16px for the dense feature grids, 8px-radius buttons. Calendar and project UI screenshots tile every section — an app that promises to double productivity and sets its headline at double scale to match.

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

Tokens

Motion's decoded design system: background #FFFFFF, text #475467, accent #2C77E7, link #2C77E7, primary #475467; type scale h1 88px / h2 34px / body 12px; 8px spacing base; 0px base radius. The single interactive/action color is #2C77E7 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FFFFFF
surface#F3F4F5
border#E3E5E8
text#475467
text_muted#8C94A0
primary#475467
accent#2C77E7
link#2C77E7
secondary#101828
button_bg#2C77E7
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Shadow

rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.2) 0px 2px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 0px 1px inset, rgba(255, 255, 255, 0.2) 0px 2px 0px 0px inset

Per-section tokens (10)

Export: DESIGN.md

# Motion — Design System

> light, modern, high, tailwind

Motion pitches AI productivity at billboard volume: Albert Sans at 88px/600 ('Get an unfair advantage...') in black on white, Inter at 14-16px for the dense feature grids, 8px-radius buttons. Calendar and project UI screenshots tile every section — an app that promises to double productivity and sets its headline at double scale to match.

## Colors

| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#F3F4F5` |
| border | `#E3E5E8` |
| text | `#475467` |
| text_muted | `#8C94A0` |
| primary | `#475467` |
| accent | `#2C77E7` |
| link | `#2C77E7` |
| secondary | `#101828` |
| button_bg | `#2C77E7` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#2C77E7` — 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`, `button_bg` are all `#2C77E7` — one role, not several (your action color).
- **accent** `#2C77E7` — 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** `#475467` — ≈ the text color — a foreground/text color, not an action color (action = #2C77E7).
- **secondary** `#101828` — 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: **Albert Sans** _(free fallback: Newsreader)_
- Body: **Inter**
- h1: 88px
- h2: 34px
- body: 12px

> **Fonts —** Albert Sans may be proprietary — safe free fallback: Newsreader (Google Fonts). Inter — free, on Google.

## Spacing
- base unit: 8px
- scale: 4px, 8px, 12px, 16px, 24px, 32px, 48px, 64px

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

## Primary button
- bg `#2C77E7` · text `#FFFFFF` · 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 #2C77E7 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFFFFF;
  --color-surface: #F3F4F5;
  --color-border: #E3E5E8;
  --color-text: #475467;
  --color-text-muted: #8C94A0;
  --color-primary: #475467;  /* ≈ the text color — a foreground/text color, not an action color (action = #2C77E7). */
  --color-accent: #2C77E7;  /* 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: #2C77E7;  /* inline text links — shares the action color. */
  --color-secondary: #101828;  /* 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: #2C77E7;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: Albert Sans may be proprietary — safe free fallback: Newsreader (Google Fonts). Inter — free, on Google. */
  --font-heading: "Albert Sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 88px;
  --text-h2: 34px;
  --text-body: 12px;
  --radius-base: 0px;
  --radius-button: 8px;
  --spacing-1: 4px;
  --spacing-2: 8px;
  --spacing-3: 12px;
  --spacing-4: 16px;
  --spacing-5: 24px;
  --spacing-6: 32px;
  --spacing-7: 48px;
  --spacing-8: 64px;
}

Export: CSS variables

:root {
  /* action color #2C77E7 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFFFFF;
  --surface: #F3F4F5;
  --border: #E3E5E8;
  --text: #475467;
  --text-muted: #8C94A0;
  --primary: #475467;  /* ≈ the text color — a foreground/text color, not an action color (action = #2C77E7). */
  --accent: #2C77E7;  /* 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: #2C77E7;  /* inline text links — shares the action color. */
  --secondary: #101828;  /* 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: #2C77E7;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Albert Sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 0px;
  --radius-button: 8px;
}
/* fonts: Albert Sans may be proprietary — safe free fallback: Newsreader (Google Fonts). Inter — free, on Google. */