MozaikaDesign system

Lindy — Design System

light · modern · medium · custom · confidence 92%

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

Tokens

Lindy's decoded design system: background #FCF9F8, text #3E4A56, accent #2A66FF, link #2A66FF, primary #3E4A56; type scale h1 72px / h2 20px / body 20px; 4px spacing base; 12px base radius. The single interactive/action color is #2A66FF — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FCF9F8
surface#F0EEEE
border#DFDEDF
text#3E4A56
text_muted#868C93
primary#3E4A56
accent#2A66FF
link#2A66FF
secondary#0F1E2E
button_bg#2A66FF
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Shadow

rgba(0, 0, 0, 0.1) 0px -1px 1px 0px inset, rgba(20, 21, 26, 0.05) 0px 1px 2px 0px

Per-section tokens (11)

Export: DESIGN.md

# Lindy — Design System

> light, modern, medium, custom

## Colors

| Role | Value |
|------|-------|
| bg | `#FCF9F8` |
| surface | `#F0EEEE` |
| border | `#DFDEDF` |
| text | `#3E4A56` |
| text_muted | `#868C93` |
| primary | `#3E4A56` |
| accent | `#2A66FF` |
| link | `#2A66FF` |
| secondary | `#0F1E2E` |
| button_bg | `#2A66FF` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#2A66FF` — 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 `#2A66FF` — one role, not several (your action color).
- **accent** `#2A66FF` — 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** `#3E4A56` — ≈ the text color — a foreground/text color, not an action color (action = #2A66FF).
- **secondary** `#0F1E2E` — 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: **Manrope**
- Body: **Manrope**
- h1: 72px
- h2: 20px
- body: 20px

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

## Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px

## Radius
- base: 12px
- button: 12px

## Primary button
- bg `#2A66FF` · text `#FFFFFF` · radius 12px

## 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 #2A66FF — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FCF9F8;
  --color-surface: #F0EEEE;
  --color-border: #DFDEDF;
  --color-text: #3E4A56;
  --color-text-muted: #868C93;
  --color-primary: #3E4A56;  /* ≈ the text color — a foreground/text color, not an action color (action = #2A66FF). */
  --color-accent: #2A66FF;  /* 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: #2A66FF;  /* inline text links — shares the action color. */
  --color-secondary: #0F1E2E;  /* 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: #2A66FF;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: Manrope — free, on Google. */
  --font-heading: "Manrope", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 72px;
  --text-h2: 20px;
  --text-body: 20px;
  --radius-base: 12px;
  --radius-button: 12px;
  --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 #2A66FF — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FCF9F8;
  --surface: #F0EEEE;
  --border: #DFDEDF;
  --text: #3E4A56;
  --text-muted: #868C93;
  --primary: #3E4A56;  /* ≈ the text color — a foreground/text color, not an action color (action = #2A66FF). */
  --accent: #2A66FF;  /* 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: #2A66FF;  /* inline text links — shares the action color. */
  --secondary: #0F1E2E;  /* 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: #2A66FF;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Manrope", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-button: 12px;
}
/* fonts: Manrope — free, on Google. */