MozaikaDesign system

Hightouch — Design System

light · modern · medium · chakra · confidence 90%

Hightouch runs everything in Nuckle — 47px/700 headlines, 19px standfirsts, 17px body — over sunrise-gradient panels that warm up what is, underneath, data pipeline software. 16px-radius buttons and marquee logo walls (Spotify, Ramp, Chime) give the CDP category a consumer-brand finish: warehouse-native data activation dressed for a marketing keynote.

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

Tokens

Hightouch's decoded design system: background #FFFFFF, text #141213, accent #0F492E, link #0F492E, primary #E3FCEE; type scale h1 47.3px / h2 19.01px / body 9.17px; 12px spacing base; 16px base radius. The single interactive/action color is #302D2E — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FFFFFF
surface#F0F0F0
border#DBDBDB
text#141213
text_muted#6D6C6C
primary#E3FCEE
accent#0F492E
link#0F492E
secondary#29B5E8
button_bg#302D2E
button_text#F5F5F5

Using these colors

Typography

Spacing

Radii

Per-section tokens (13)

Export: DESIGN.md

# Hightouch — Design System

> light, modern, medium, chakra

Hightouch runs everything in Nuckle — 47px/700 headlines, 19px standfirsts, 17px body — over sunrise-gradient panels that warm up what is, underneath, data pipeline software. 16px-radius buttons and marquee logo walls (Spotify, Ramp, Chime) give the CDP category a consumer-brand finish: warehouse-native data activation dressed for a marketing keynote.

## Colors

| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#F0F0F0` |
| border | `#DBDBDB` |
| text | `#141213` |
| text_muted | `#6D6C6C` |
| primary | `#E3FCEE` |
| accent | `#0F492E` |
| link | `#0F492E` |
| secondary | `#29B5E8` |
| button_bg | `#302D2E` |
| button_text | `#F5F5F5` |

**Using these colors**

- **Action color** `#302D2E` — 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 `#0F492E` — one role, not several.
- **accent** `#0F492E` — accent for emphasis — keep it rare on the page.
- **primary** `#E3FCEE` — a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #302D2E).
- **secondary** `#29B5E8` — 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: **DM Mono** _(free fallback: JetBrains Mono)_
- Body: **DM Mono** _(free fallback: JetBrains Mono)_
- Mono: **DM Mono**
- h1: 47.3px
- h2: 19.01px
- body: 9.17px

> **Fonts —** DM Mono may be proprietary — safe free fallback: JetBrains Mono (Google Fonts).

## Spacing
- base unit: 12px
- scale: 6px, 12px, 18px, 24px, 36px, 48px, 72px, 96px

## Radius
- base: 16px
- button: 16px

## Primary button
- bg `#302D2E` · text `#F5F5F5` · radius 16px

## 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 #302D2E — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFFFFF;
  --color-surface: #F0F0F0;
  --color-border: #DBDBDB;
  --color-text: #141213;
  --color-text-muted: #6D6C6C;
  --color-primary: #E3FCEE;  /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #302D2E). */
  --color-accent: #0F492E;  /* accent for emphasis — keep it rare on the page. */
  --color-link: #0F492E;  /* inline text links and link-styled controls. */
  --color-secondary: #29B5E8;  /* 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: #302D2E;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #F5F5F5;
  /* fonts: DM Mono may be proprietary — safe free fallback: JetBrains Mono (Google Fonts). */
  --font-heading: "DM Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-body: "DM Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-mono: "DM Mono", ui-monospace, monospace;
  --text-h1: 47.3px;
  --text-h2: 19.01px;
  --text-body: 9.17px;
  --radius-base: 16px;
  --radius-button: 16px;
  --spacing-1: 6px;
  --spacing-2: 12px;
  --spacing-3: 18px;
  --spacing-4: 24px;
  --spacing-5: 36px;
  --spacing-6: 48px;
  --spacing-7: 72px;
  --spacing-8: 96px;
}

Export: CSS variables

:root {
  /* action color #302D2E — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFFFFF;
  --surface: #F0F0F0;
  --border: #DBDBDB;
  --text: #141213;
  --text-muted: #6D6C6C;
  --primary: #E3FCEE;  /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #302D2E). */
  --accent: #0F492E;  /* accent for emphasis — keep it rare on the page. */
  --link: #0F492E;  /* inline text links and link-styled controls. */
  --secondary: #29B5E8;  /* 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: #302D2E;  /* primary-button fill — the main call-to-action color. */
  --button-text: #F5F5F5;
  --font-heading: "DM Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-body: "DM Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-mono: "DM Mono", ui-monospace, monospace;
  --radius: 16px;
  --radius-button: 16px;
}
/* fonts: DM Mono may be proprietary — safe free fallback: JetBrains Mono (Google Fonts). */