MozaikaDesign system

Typefully — Design System

light · modern · medium · tailwind · confidence 92%

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

Tokens

Typefully's decoded design system: background #FFFFFF, text #354450, accent #FF9029, link #354450, primary #5C6D7A; type scale h1 44px / h2 36px / body 14.5px; 6px spacing base; 4px base radius. The single interactive/action color is #FF9029 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FFFFFF
surface#F2F3F4
border#E0E2E4
text#354450
text_muted#818B92
primary#5C6D7A
accent#FF9029
link#354450
secondary#199AF5
button_bg#FF9029
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Per-section tokens (3)

Export: DESIGN.md

# Typefully — Design System

> light, modern, medium, tailwind

## Colors

| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#F2F3F4` |
| border | `#E0E2E4` |
| text | `#354450` |
| text_muted | `#818B92` |
| primary | `#5C6D7A` |
| accent | `#FF9029` |
| link | `#354450` |
| secondary | `#199AF5` |
| button_bg | `#FF9029` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#FF9029` — 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 `#FF9029` — one role, not several (your action color).
- **accent** `#FF9029` — 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** `#5C6D7A` — a brand color — but the call-to-action uses #FF9029, not this.
- **link** `#354450` — inline text links and link-styled controls.
- **secondary** `#199AF5` — 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: **Inter**
- Body: **Inter**
- h1: 44px
- h2: 36px
- body: 14.5px

> **Fonts —** Inter — free, on Google.

## Spacing
- base unit: 6px
- scale: 3px, 6px, 9px, 12px, 18px, 24px, 36px, 48px

## Radius
- base: 4px
- button: 9999px

## Primary button
- bg `#FF9029` · text `#FFFFFF` · radius 9999px

## 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 #FF9029 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFFFFF;
  --color-surface: #F2F3F4;
  --color-border: #E0E2E4;
  --color-text: #354450;
  --color-text-muted: #818B92;
  --color-primary: #5C6D7A;  /* a brand color — but the call-to-action uses #FF9029, not this. */
  --color-accent: #FF9029;  /* 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: #354450;  /* inline text links and link-styled controls. */
  --color-secondary: #199AF5;  /* 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: #FF9029;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: Inter — free, on Google. */
  --font-heading: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 44px;
  --text-h2: 36px;
  --text-body: 14.5px;
  --radius-base: 4px;
  --radius-button: 9999px;
  --spacing-1: 3px;
  --spacing-2: 6px;
  --spacing-3: 9px;
  --spacing-4: 12px;
  --spacing-5: 18px;
  --spacing-6: 24px;
  --spacing-7: 36px;
  --spacing-8: 48px;
}

Export: CSS variables

:root {
  /* action color #FF9029 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFFFFF;
  --surface: #F2F3F4;
  --border: #E0E2E4;
  --text: #354450;
  --text-muted: #818B92;
  --primary: #5C6D7A;  /* a brand color — but the call-to-action uses #FF9029, not this. */
  --accent: #FF9029;  /* 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: #354450;  /* inline text links and link-styled controls. */
  --secondary: #199AF5;  /* 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: #FF9029;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 4px;
  --radius-button: 9999px;
}
/* fonts: Inter — free, on Google. */