MozaikaDesign system

Column — Design System

light · professional · medium · custom · confidence 90%

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

Tokens

Column's decoded design system: background #F6F6F8, text #12161E, accent #F6F6F8, link #354A50, primary #167E6C; type scale h1 52px / h2 60px / body 20px; 4px spacing base; 8px base radius. The single interactive/action color is #F6F6F8 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#F6F6F8
surface#E8E8EA
border#D3D4D7
text#12161E
text_muted#686B70
primary#167E6C
accent#F6F6F8
link#354A50
secondary#111A4A
button_bg#F6F6F8
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

Per-section tokens (13)

Export: DESIGN.md

# Column — Design System

> light, professional, medium, custom

## Colors

| Role | Value |
|------|-------|
| bg | `#F6F6F8` |
| surface | `#E8E8EA` |
| border | `#D3D4D7` |
| text | `#12161E` |
| text_muted | `#686B70` |
| primary | `#167E6C` |
| accent | `#F6F6F8` |
| link | `#354A50` |
| secondary | `#111A4A` |
| button_bg | `#F6F6F8` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#F6F6F8` — 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 `#F6F6F8` — one role, not several (your action color).
- **accent** `#F6F6F8` — 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** `#167E6C` — a brand color — but the call-to-action uses #F6F6F8, not this.
- **link** `#354A50` — inline text links and link-styled controls.
- **secondary** `#111A4A` — 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: **SuisseIntl** _(free fallback: Newsreader)_
- Body: **SuisseIntl** _(free fallback: Newsreader)_
- h1: 52px
- h2: 60px
- body: 20px

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

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

## Radius
- base: 8px
- button: 8px

## Primary button
- bg `#F6F6F8` · text `#FFFFFF` · radius 8px

## 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 #F6F6F8 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #F6F6F8;
  --color-surface: #E8E8EA;
  --color-border: #D3D4D7;
  --color-text: #12161E;
  --color-text-muted: #686B70;
  --color-primary: #167E6C;  /* a brand color — but the call-to-action uses #F6F6F8, not this. */
  --color-accent: #F6F6F8;  /* 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: #354A50;  /* inline text links and link-styled controls. */
  --color-secondary: #111A4A;  /* 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: #F6F6F8;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: SuisseIntl may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "SuisseIntl", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "SuisseIntl", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 52px;
  --text-h2: 60px;
  --text-body: 20px;
  --radius-base: 8px;
  --radius-button: 8px;
  --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 #F6F6F8 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #F6F6F8;
  --surface: #E8E8EA;
  --border: #D3D4D7;
  --text: #12161E;
  --text-muted: #686B70;
  --primary: #167E6C;  /* a brand color — but the call-to-action uses #F6F6F8, not this. */
  --accent: #F6F6F8;  /* 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: #354A50;  /* inline text links and link-styled controls. */
  --secondary: #111A4A;  /* 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: #F6F6F8;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "SuisseIntl", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "SuisseIntl", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 8px;
  --radius-button: 8px;
}
/* fonts: SuisseIntl may be proprietary — safe free fallback: Newsreader (Google Fonts). */