MozaikaDesign system

Colophon — Design System

light · professional · medium · custom · confidence 90%

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

Tokens

Colophon's decoded design system: background #F8F8F8, text #000000, accent #FFEE3B, link #FFEE3B, primary #FFEE3B; type scale h1 24px / h2 24px / body 24px; 4px spacing base; 0px base radius. The single interactive/action color is #000000 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#F8F8F8
surface#E9E9E9
border#D2D2D2
text#000000
text_muted#5E5E5E
primary#FFEE3B
accent#FFEE3B
link#FFEE3B
button_bg#000000
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Per-section tokens (3)

Export: DESIGN.md

# Colophon — Design System

> light, professional, medium, custom

## Colors

| Role | Value |
|------|-------|
| bg | `#F8F8F8` |
| surface | `#E9E9E9` |
| border | `#D2D2D2` |
| text | `#000000` |
| text_muted | `#5E5E5E` |
| primary | `#FFEE3B` |
| accent | `#FFEE3B` |
| link | `#FFEE3B` |
| button_bg | `#000000` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#000000` — 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 `#FFEE3B` — one role, not several.
- **accent** `#FFEE3B` — accent for emphasis — keep it rare on the page.

## Typography

- h1: 24px
- h2: 24px
- body: 24px

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

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

## Primary button
- bg `#000000` · text `#FFFFFF` · radius 50px

## 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 #000000 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #F8F8F8;
  --color-surface: #E9E9E9;
  --color-border: #D2D2D2;
  --color-text: #000000;
  --color-text-muted: #5E5E5E;
  --color-primary: #FFEE3B;  /* a brand color — but the call-to-action uses #000000, not this. */
  --color-accent: #FFEE3B;  /* accent for emphasis — keep it rare on the page. */
  --color-link: #FFEE3B;  /* fails contrast on the background (~1.1:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
  --color-button-bg: #000000;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  --text-h1: 24px;
  --text-h2: 24px;
  --text-body: 24px;
  --radius-base: 0px;
  --radius-button: 50px;
  --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 #000000 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #F8F8F8;
  --surface: #E9E9E9;
  --border: #D2D2D2;
  --text: #000000;
  --text-muted: #5E5E5E;
  --primary: #FFEE3B;  /* a brand color — but the call-to-action uses #000000, not this. */
  --accent: #FFEE3B;  /* accent for emphasis — keep it rare on the page. */
  --link: #FFEE3B;  /* fails contrast on the background (~1.1:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
  --button-bg: #000000;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --radius: 0px;
  --radius-button: 50px;
}