MozaikaDesign system

Inngest — Design System

dark · modern · high · tailwind · confidence 92%

Inngest engraves reliability into the type itself: Whyte Inktrap at up to 115px — 'Unbreakable' with visible ink wells cut into every joint — over near-black #0C0A09, CircularXX at 18px for the engineering, and WhyteMono button labels. The inktrap detail at that scale reads as machined tolerance; durable execution sold through a typeface that looks stress-tested.

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

Tokens

Inngest's decoded design system: background #0C0A09, text #64748B, accent #FB5536, link #1E293B, primary #FB5536; type scale h1 115px / h2 64px / body 18px; 4px spacing base; 6px base radius. The single interactive/action color is #FB5536 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#0C0A09
surface#111010
border#19191C
text#64748B
text_muted#424B59
primary#FB5536
accent#FB5536
link#1E293B
secondary#64748B
button_bg#FB5536
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Per-section tokens (11)

Export: DESIGN.md

# Inngest — Design System

> dark, modern, high, tailwind

Inngest engraves reliability into the type itself: Whyte Inktrap at up to 115px — 'Unbreakable' with visible ink wells cut into every joint — over near-black #0C0A09, CircularXX at 18px for the engineering, and WhyteMono button labels. The inktrap detail at that scale reads as machined tolerance; durable execution sold through a typeface that looks stress-tested.

## Colors

| Role | Value |
|------|-------|
| bg | `#0C0A09` |
| surface | `#111010` |
| border | `#19191C` |
| text | `#64748B` |
| text_muted | `#424B59` |
| primary | `#FB5536` |
| accent | `#FB5536` |
| link | `#1E293B` |
| secondary | `#64748B` |
| button_bg | `#FB5536` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#FB5536` — 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`, `button_bg` are all `#FB5536` — one role, not several (your action color).
- **accent** `#FB5536` — 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** `#1E293B` — fails contrast on the background (~1.4:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference).
- **secondary** `#64748B` — 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: **Whyte Inktrap** _(free fallback: Newsreader)_
- Body: **CircularXX** _(free fallback: Newsreader)_
- h1: 115px
- h2: 64px
- body: 18px

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

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

## Radius
- base: 6px
- button: 6px

## Primary button
- bg `#FB5536` · text `#FFFFFF` · radius 6px

## 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 #FB5536 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #0C0A09;
  --color-surface: #111010;
  --color-border: #19191C;
  --color-text: #64748B;
  --color-text-muted: #424B59;
  --color-primary: #FB5536;  /* primary brand / action color. */
  --color-accent: #FB5536;  /* 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: #1E293B;  /* fails contrast on the background (~1.4:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
  --color-secondary: #64748B;  /* 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: #FB5536;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: Whyte Inktrap may be proprietary — safe free fallback: Newsreader (Google Fonts). CircularXX may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "Whyte Inktrap", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "CircularXX", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 115px;
  --text-h2: 64px;
  --text-body: 18px;
  --radius-base: 6px;
  --radius-button: 6px;
  --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 #FB5536 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #0C0A09;
  --surface: #111010;
  --border: #19191C;
  --text: #64748B;
  --text-muted: #424B59;
  --primary: #FB5536;  /* primary brand / action color. */
  --accent: #FB5536;  /* 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: #1E293B;  /* fails contrast on the background (~1.4:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
  --secondary: #64748B;  /* 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: #FB5536;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Whyte Inktrap", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "CircularXX", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 6px;
  --radius-button: 6px;
}
/* fonts: Whyte Inktrap may be proprietary — safe free fallback: Newsreader (Google Fonts). CircularXX may be proprietary — safe free fallback: Newsreader (Google Fonts). */