MozaikaDesign system

Temporal — Design System

dark · professional · medium · custom · confidence 90%

Temporal styles durable execution as an engineering manifesto: Aeonik at a feather-light 68px/300 on #141414, body copy at a lecture-slide 24px, and zero-radius everything. NVIDIA-to-Salesforce case cards and a '100% open-source' seal do the credentialing while the oversized light type gives workflow infrastructure the calm of a keynote diagram — heavy tech, weightless voice.

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

Tokens

Temporal's decoded design system: background #141414, text #ECECEE, accent #07090D, link #7C8FB1, primary #DBFF4B; type scale h1 68px / h2 68px / body 14px; 4px spacing base; 4px base radius. The single interactive/action color is #07090D — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#141414
surface#202021
border#343434
text#ECECEE
text_muted#99999B
primary#DBFF4B
accent#07090D
link#7C8FB1
secondary#CACBF9
button_bg#07090D
button_text#141414

Using these colors

Typography

Spacing

Radii

Per-section tokens (12)

Export: DESIGN.md

# Temporal — Design System

> dark, professional, medium, custom

Temporal styles durable execution as an engineering manifesto: Aeonik at a feather-light 68px/300 on #141414, body copy at a lecture-slide 24px, and zero-radius everything. NVIDIA-to-Salesforce case cards and a '100% open-source' seal do the credentialing while the oversized light type gives workflow infrastructure the calm of a keynote diagram — heavy tech, weightless voice.

## Colors

| Role | Value |
|------|-------|
| bg | `#141414` |
| surface | `#202021` |
| border | `#343434` |
| text | `#ECECEE` |
| text_muted | `#99999B` |
| primary | `#DBFF4B` |
| accent | `#07090D` |
| link | `#7C8FB1` |
| secondary | `#CACBF9` |
| button_bg | `#07090D` |
| button_text | `#141414` |

**Using these colors**

- **Action color** `#07090D` — 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 `#07090D` — one role, not several (your action color).
- **accent** `#07090D` — 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** `#DBFF4B` — a brand color — but the call-to-action uses #07090D, not this.
- **link** `#7C8FB1` — inline text links and link-styled controls.
- **secondary** `#CACBF9` — 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: **Noto Sans Mono** _(free fallback: JetBrains Mono)_
- Body: **Noto Sans Mono** _(free fallback: JetBrains Mono)_
- Mono: **Noto Sans Mono**
- h1: 68px
- h2: 68px
- body: 14px

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

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

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

## Primary button
- bg `#07090D` · text `#141414` · 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 #07090D — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #141414;
  --color-surface: #202021;
  --color-border: #343434;
  --color-text: #ECECEE;
  --color-text-muted: #99999B;
  --color-primary: #DBFF4B;  /* a brand color — but the call-to-action uses #07090D, not this. */
  --color-accent: #07090D;  /* 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: #7C8FB1;  /* inline text links and link-styled controls. */
  --color-secondary: #CACBF9;  /* 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: #07090D;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #141414;
  /* fonts: Noto Sans Mono may be proprietary — safe free fallback: JetBrains Mono (Google Fonts). */
  --font-heading: "Noto Sans Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-body: "Noto Sans Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-mono: "Noto Sans Mono", ui-monospace, monospace;
  --text-h1: 68px;
  --text-h2: 68px;
  --text-body: 14px;
  --radius-base: 4px;
  --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 #07090D — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #141414;
  --surface: #202021;
  --border: #343434;
  --text: #ECECEE;
  --text-muted: #99999B;
  --primary: #DBFF4B;  /* a brand color — but the call-to-action uses #07090D, not this. */
  --accent: #07090D;  /* 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: #7C8FB1;  /* inline text links and link-styled controls. */
  --secondary: #CACBF9;  /* 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: #07090D;  /* primary-button fill — the main call-to-action color. */
  --button-text: #141414;
  --font-heading: "Noto Sans Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-body: "Noto Sans Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-mono: "Noto Sans Mono", ui-monospace, monospace;
  --radius: 4px;
  --radius-button: 0px;
}
/* fonts: Noto Sans Mono may be proprietary — safe free fallback: JetBrains Mono (Google Fonts). */