MozaikaDesign system

Cognition — Design System

light · modern · medium · tailwind · confidence 90%

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

Tokens

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

Color roles

RoleValue
bg#F7F6F5
surface#E8E7E6
border#D1D1D0
text#000000
text_muted#5D5D5D
primary#2200FF
accent#FF0000
link#FF0000
button_bg#191919
button_text#F7F6F5

Using these colors

Typography

Spacing

Radii

Per-section tokens (4)

Export: DESIGN.md

# Cognition — Design System

> light, modern, medium, tailwind

## Colors

| Role | Value |
|------|-------|
| bg | `#F7F6F5` |
| surface | `#E8E7E6` |
| border | `#D1D1D0` |
| text | `#000000` |
| text_muted | `#5D5D5D` |
| primary | `#2200FF` |
| accent | `#FF0000` |
| link | `#FF0000` |
| button_bg | `#191919` |
| button_text | `#F7F6F5` |

**Using these colors**

- **Action color** `#191919` — 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 `#FF0000` — one role, not several.
- **accent** `#FF0000` — accent for emphasis — keep it rare on the page.
- **primary** `#2200FF` — a brand color — but the call-to-action uses #191919, not this.

## Typography

- Heading: **Bureau Serif** _(free fallback: Newsreader)_
- Body: **International** _(free fallback: Newsreader)_
- h1: 36px
- h2: 20px
- body: 10px

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

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

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

## Primary button
- bg `#191919` · text `#F7F6F5` · 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 #191919 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #F7F6F5;
  --color-surface: #E8E7E6;
  --color-border: #D1D1D0;
  --color-text: #000000;
  --color-text-muted: #5D5D5D;
  --color-primary: #2200FF;  /* a brand color — but the call-to-action uses #191919, not this. */
  --color-accent: #FF0000;  /* accent for emphasis — keep it rare on the page. */
  --color-link: #FF0000;  /* inline text links and link-styled controls. */
  --color-button-bg: #191919;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #F7F6F5;
  /* fonts: Bureau Serif may be proprietary — safe free fallback: Newsreader (Google Fonts). International may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "Bureau Serif", "Newsreader", Georgia, 'Times New Roman', serif;
  --font-body: "International", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 36px;
  --text-h2: 20px;
  --text-body: 10px;
  --radius-base: 0px;
  --radius-button: 0px;
  --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 #191919 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #F7F6F5;
  --surface: #E8E7E6;
  --border: #D1D1D0;
  --text: #000000;
  --text-muted: #5D5D5D;
  --primary: #2200FF;  /* a brand color — but the call-to-action uses #191919, not this. */
  --accent: #FF0000;  /* accent for emphasis — keep it rare on the page. */
  --link: #FF0000;  /* inline text links and link-styled controls. */
  --button-bg: #191919;  /* primary-button fill — the main call-to-action color. */
  --button-text: #F7F6F5;
  --font-heading: "Bureau Serif", "Newsreader", Georgia, 'Times New Roman', serif;
  --font-body: "International", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 0px;
  --radius-button: 0px;
}
/* fonts: Bureau Serif may be proprietary — safe free fallback: Newsreader (Google Fonts). International may be proprietary — safe free fallback: Newsreader (Google Fonts). */