MozaikaDesign system

Tana — Design System

light · modern · medium · custom · confidence 92%

Tana thinks in serif: Source Serif 4 at 72px/500 in warm ink #0C0805 on paper #FBFBFB ('Do work in the meeting'), Inter for the 17-22px working text and 14px-radius ghost buttons. Node-graph UI and AI-agenda panels sit inside generous editorial whitespace — a knowledge tool typeset like the long-form thinking it wants to hold.

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

Tokens

Tana's decoded design system: background #FBFBFB, text #0C0805, accent #0C0805, link #0000EE, primary #ECE4D4; type scale h1 72px / h2 48px / body 18px; 4px spacing base; 12px base radius. The single interactive/action color is #0C0805 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FBFBFB
surface#ECECEC
border#D7D6D6
text#0C0805
text_muted#666462
primary#ECE4D4
accent#0C0805
link#0000EE
secondary#D88A82
button_bg#0C0805
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Per-section tokens (9)

Export: DESIGN.md

# Tana — Design System

> light, modern, medium, custom

Tana thinks in serif: Source Serif 4 at 72px/500 in warm ink #0C0805 on paper #FBFBFB ('Do work in the meeting'), Inter for the 17-22px working text and 14px-radius ghost buttons. Node-graph UI and AI-agenda panels sit inside generous editorial whitespace — a knowledge tool typeset like the long-form thinking it wants to hold.

## Colors

| Role | Value |
|------|-------|
| bg | `#FBFBFB` |
| surface | `#ECECEC` |
| border | `#D7D6D6` |
| text | `#0C0805` |
| text_muted | `#666462` |
| primary | `#ECE4D4` |
| accent | `#0C0805` |
| link | `#0000EE` |
| secondary | `#D88A82` |
| button_bg | `#0C0805` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#0C0805` — 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 `#0C0805` — one role, not several (your action color).
- **accent** `#0C0805` — 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** `#ECE4D4` — a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #0C0805).
- **link** `#0000EE` — inline text links and link-styled controls.
- **secondary** `#D88A82` — 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: **Source Serif 4** _(free fallback: Newsreader)_
- Body: **Inter**
- h1: 72px
- h2: 48px
- body: 18px

> **Fonts —** Source Serif 4 may be proprietary — safe free fallback: Newsreader (Google Fonts). Inter — free, on Google.

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

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

## Primary button
- bg `#0C0805` · text `#FFFFFF` · radius 14px

## 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 #0C0805 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FBFBFB;
  --color-surface: #ECECEC;
  --color-border: #D7D6D6;
  --color-text: #0C0805;
  --color-text-muted: #666462;
  --color-primary: #ECE4D4;  /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #0C0805). */
  --color-accent: #0C0805;  /* 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: #0000EE;  /* inline text links and link-styled controls. */
  --color-secondary: #D88A82;  /* 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: #0C0805;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: Source Serif 4 may be proprietary — safe free fallback: Newsreader (Google Fonts). Inter — free, on Google. */
  --font-heading: "Source Serif 4", "Newsreader", Georgia, 'Times New Roman', serif;
  --font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 72px;
  --text-h2: 48px;
  --text-body: 18px;
  --radius-base: 12px;
  --radius-button: 14px;
  --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 #0C0805 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FBFBFB;
  --surface: #ECECEC;
  --border: #D7D6D6;
  --text: #0C0805;
  --text-muted: #666462;
  --primary: #ECE4D4;  /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #0C0805). */
  --accent: #0C0805;  /* 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: #0000EE;  /* inline text links and link-styled controls. */
  --secondary: #D88A82;  /* 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: #0C0805;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Source Serif 4", "Newsreader", Georgia, 'Times New Roman', serif;
  --font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-button: 14px;
}
/* fonts: Source Serif 4 may be proprietary — safe free fallback: Newsreader (Google Fonts). Inter — free, on Google. */