MozaikaDesign system

Tome — Design System

light · professional · medium · unknown

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

Tokens

Tome's decoded design system: background #DDDDDD, text #0A0A0B, accent #0070F3, link #0070F3, primary #79FFE1; type scale h1 16px / h2 16px / body 16px; 4px spacing base; 4px base radius. The single interactive/action color is #0070F3 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#DDDDDD
surface#D0D0D0
border#BDBDBD
text#0A0A0B
text_muted#5A5A5A
primary#79FFE1
accent#0070F3
link#0070F3
secondary#FF0080

Using these colors

Typography

Spacing

Radii

Export: DESIGN.md

# Tome — Design System

> light, professional, medium, unknown

## Colors

| Role | Value |
|------|-------|
| bg | `#DDDDDD` |
| surface | `#D0D0D0` |
| border | `#BDBDBD` |
| text | `#0A0A0B` |
| text_muted | `#5A5A5A` |
| primary | `#79FFE1` |
| accent | `#0070F3` |
| link | `#0070F3` |
| secondary | `#FF0080` |

**Using these colors**

- **Action color** `#0070F3` — 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` are all `#0070F3` — one role, not several (your action color).
- **accent** `#0070F3` — 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** `#79FFE1` — a brand color — but the call-to-action uses #0070F3, not this.
- **secondary** `#FF0080` — 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

- h1: 16px
- h2: 16px
- body: 16px

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

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

## Primary button
- bg `None` · text `None` · radius None

## 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 #0070F3 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #DDDDDD;
  --color-surface: #D0D0D0;
  --color-border: #BDBDBD;
  --color-text: #0A0A0B;
  --color-text-muted: #5A5A5A;
  --color-primary: #79FFE1;  /* a brand color — but the call-to-action uses #0070F3, not this. */
  --color-accent: #0070F3;  /* 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: #0070F3;  /* inline text links — shares the action color. */
  --color-secondary: #FF0080;  /* 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. */
  --text-h1: 16px;
  --text-h2: 16px;
  --text-body: 16px;
  --radius-base: 4px;
  --radius-button: 4px;
  --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 #0070F3 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #DDDDDD;
  --surface: #D0D0D0;
  --border: #BDBDBD;
  --text: #0A0A0B;
  --text-muted: #5A5A5A;
  --primary: #79FFE1;  /* a brand color — but the call-to-action uses #0070F3, not this. */
  --accent: #0070F3;  /* 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: #0070F3;  /* inline text links — shares the action color. */
  --secondary: #FF0080;  /* 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. */
  --radius: 4px;
  --radius-button: 4px;
}