MozaikaDesign system

Napkin — Design System

light · modern · medium · custom · confidence 90%

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

Tokens

Napkin's decoded design system: background #FFFFFF, text #1A1A1A, accent #2D68F5, link #2D68F5, primary #2D68F5; type scale h1 80px / body 18px; 8px spacing base; 8px base radius. The single interactive/action color is #1A1A1A — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FFFFFF
surface#F1F1F1
border#DCDCDC
text#1A1A1A
text_muted#717171
primary#2D68F5
accent#2D68F5
link#2D68F5
secondary#EAF1FF
button_bg#1A1A1A
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Per-section tokens (8)

Export: DESIGN.md

# Napkin — Design System

> light, modern, medium, custom

## Colors

| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#F1F1F1` |
| border | `#DCDCDC` |
| text | `#1A1A1A` |
| text_muted | `#717171` |
| primary | `#2D68F5` |
| accent | `#2D68F5` |
| link | `#2D68F5` |
| secondary | `#EAF1FF` |
| button_bg | `#1A1A1A` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#1A1A1A` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds.
- `primary`, `accent`, `link` are all `#2D68F5` — one role, not several.
- **accent** `#2D68F5` — accent for emphasis — keep it rare on the page.
- **secondary** `#EAF1FF` — 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: **Geomanist** _(free fallback: Newsreader)_
- Body: **Plus Jakarta Sans**
- h1: 80px
- body: 18px

> **Fonts —** Geomanist may be proprietary — safe free fallback: Newsreader (Google Fonts). Plus Jakarta Sans — free, on Google.

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

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

## Primary button
- bg `#1A1A1A` · text `#FFFFFF` · radius 0px

## 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 #1A1A1A — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFFFFF;
  --color-surface: #F1F1F1;
  --color-border: #DCDCDC;
  --color-text: #1A1A1A;
  --color-text-muted: #717171;
  --color-primary: #2D68F5;  /* a brand color — but the call-to-action uses #1A1A1A, not this. */
  --color-accent: #2D68F5;  /* accent for emphasis — keep it rare on the page. */
  --color-link: #2D68F5;  /* inline text links and link-styled controls. */
  --color-secondary: #EAF1FF;  /* 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: #1A1A1A;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: Geomanist may be proprietary — safe free fallback: Newsreader (Google Fonts). Plus Jakarta Sans — free, on Google. */
  --font-heading: "Geomanist", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 80px;
  --text-body: 18px;
  --radius-base: 8px;
  --radius-button: 0px;
  --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 #1A1A1A — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFFFFF;
  --surface: #F1F1F1;
  --border: #DCDCDC;
  --text: #1A1A1A;
  --text-muted: #717171;
  --primary: #2D68F5;  /* a brand color — but the call-to-action uses #1A1A1A, not this. */
  --accent: #2D68F5;  /* accent for emphasis — keep it rare on the page. */
  --link: #2D68F5;  /* inline text links and link-styled controls. */
  --secondary: #EAF1FF;  /* 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: #1A1A1A;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Geomanist", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 8px;
  --radius-button: 0px;
}
/* fonts: Geomanist may be proprietary — safe free fallback: Newsreader (Google Fonts). Plus Jakarta Sans — free, on Google. */