MozaikaDesign system

Craft — Design System

light · modern · medium · tailwind · confidence 92%

Craft writes its own pitch in Klim's Untitled pair: Untitled Serif at 66px/400 in near-black on cream #FCF9F7 for 'Your space for notes, tasks, and big ideas', Untitled Sans on full-pill ink buttons, body at 16-24px. Documents rendered as beautiful artifacts float through every section — a notes app arguing, in book typography, that your writing deserves this.

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

Tokens

Craft's decoded design system: background #FCF9F7, text #030302, accent #030302, link #FF3B30, primary #9BD8A9; type scale h1 66px / h2 54px / body 16px; 4px spacing base; 6px base radius. The single interactive/action color is #030302 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FCF9F7
surface#EDEAE8
border#D6D4D2
text#030302
text_muted#61605F
primary#9BD8A9
accent#030302
link#FF3B30
secondary#3C82F7
button_bg#030302
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.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.1) 0px 1px 2px -1px

Per-section tokens (10)

Export: DESIGN.md

# Craft — Design System

> light, modern, medium, tailwind

Craft writes its own pitch in Klim's Untitled pair: Untitled Serif at 66px/400 in near-black on cream #FCF9F7 for 'Your space for notes, tasks, and big ideas', Untitled Sans on full-pill ink buttons, body at 16-24px. Documents rendered as beautiful artifacts float through every section — a notes app arguing, in book typography, that your writing deserves this.

## Colors

| Role | Value |
|------|-------|
| bg | `#FCF9F7` |
| surface | `#EDEAE8` |
| border | `#D6D4D2` |
| text | `#030302` |
| text_muted | `#61605F` |
| primary | `#9BD8A9` |
| accent | `#030302` |
| link | `#FF3B30` |
| secondary | `#3C82F7` |
| button_bg | `#030302` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#030302` — 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 `#030302` — one role, not several (your action color).
- **accent** `#030302` — 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** `#9BD8A9` — a brand color — but the call-to-action uses #030302, not this.
- **link** `#FF3B30` — inline text links and link-styled controls.
- **secondary** `#3C82F7` — 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: **Untitled Serif** _(free fallback: Newsreader)_
- Body: **Untitled Sans** _(free fallback: Newsreader)_
- h1: 66px
- h2: 54px
- body: 16px

> **Fonts —** Untitled Serif may be proprietary — safe free fallback: Newsreader (Google Fonts). Untitled Sans may be proprietary — safe free fallback: Newsreader (Google Fonts).

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

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

## Primary button
- bg `#030302` · 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 #030302 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FCF9F7;
  --color-surface: #EDEAE8;
  --color-border: #D6D4D2;
  --color-text: #030302;
  --color-text-muted: #61605F;
  --color-primary: #9BD8A9;  /* a brand color — but the call-to-action uses #030302, not this. */
  --color-accent: #030302;  /* 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: #FF3B30;  /* inline text links and link-styled controls. */
  --color-secondary: #3C82F7;  /* 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: #030302;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: Untitled Serif may be proprietary — safe free fallback: Newsreader (Google Fonts). Untitled Sans may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "Untitled Serif", "Newsreader", Georgia, 'Times New Roman', serif;
  --font-body: "Untitled Sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 66px;
  --text-h2: 54px;
  --text-body: 16px;
  --radius-base: 6px;
  --radius-button: 9999px;
  --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 #030302 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FCF9F7;
  --surface: #EDEAE8;
  --border: #D6D4D2;
  --text: #030302;
  --text-muted: #61605F;
  --primary: #9BD8A9;  /* a brand color — but the call-to-action uses #030302, not this. */
  --accent: #030302;  /* 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: #FF3B30;  /* inline text links and link-styled controls. */
  --secondary: #3C82F7;  /* 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: #030302;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Untitled Serif", "Newsreader", Georgia, 'Times New Roman', serif;
  --font-body: "Untitled Sans", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 6px;
  --radius-button: 9999px;
}
/* fonts: Untitled Serif may be proprietary — safe free fallback: Newsreader (Google Fonts). Untitled Sans may be proprietary — safe free fallback: Newsreader (Google Fonts). */