MozaikaDesign system

Axiom — Design System

dark · modern · medium · tailwind · confidence 92%

Axiom does observability as a terminal session on pure black: Berkeley Mono headlines at a restrained 32px, ASCII textures and 2.5px-radius buttons that feel machined rather than drawn, and 14px Inter for everything that has to read fast. Color arrives only as data — chart traces and status greens on the void. It is log-file minimalism turned brand: the site itself looks like the tool tailing your events.

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

Tokens

Axiom's decoded design system: background #000000, text #6B7280, accent #DA5C2C, link #569CD6, primary #DA5C2C; type scale h1 32px / h2 24px / body 14px; 4px spacing base; 4px base radius. The single interactive/action color is #DA5C2C — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#000000
surface#060607
border#101113
text#6B7280
text_muted#42464F
primary#DA5C2C
accent#DA5C2C
link#569CD6
secondary#6B7280
button_bg#DA5C2C
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.05) 0px 1px 2px 0px

Per-section tokens (22)

Export: DESIGN.md

# Axiom — Design System

> dark, modern, medium, tailwind

Axiom does observability as a terminal session on pure black: Berkeley Mono headlines at a restrained 32px, ASCII textures and 2.5px-radius buttons that feel machined rather than drawn, and 14px Inter for everything that has to read fast. Color arrives only as data — chart traces and status greens on the void. It is log-file minimalism turned brand: the site itself looks like the tool tailing your events.

## Colors

| Role | Value |
|------|-------|
| bg | `#000000` |
| surface | `#060607` |
| border | `#101113` |
| text | `#6B7280` |
| text_muted | `#42464F` |
| primary | `#DA5C2C` |
| accent | `#DA5C2C` |
| link | `#569CD6` |
| secondary | `#6B7280` |
| button_bg | `#DA5C2C` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#DA5C2C` — 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 `#DA5C2C` — one role, not several (your action color).
- **accent** `#DA5C2C` — 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** `#569CD6` — inline text links and link-styled controls.
- **secondary** `#6B7280` — 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: **Berkeley Mono** _(free fallback: JetBrains Mono)_
- Body: **Inter**
- h1: 32px
- h2: 24px
- body: 14px

> **Fonts —** Berkeley Mono may be proprietary — safe free fallback: JetBrains Mono (Google Fonts). Inter — free, on Google.

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

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

## Primary button
- bg `#DA5C2C` · text `#FFFFFF` · radius 2px

## 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 #DA5C2C — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #000000;
  --color-surface: #060607;
  --color-border: #101113;
  --color-text: #6B7280;
  --color-text-muted: #42464F;
  --color-primary: #DA5C2C;  /* primary brand / action color. */
  --color-accent: #DA5C2C;  /* 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: #569CD6;  /* inline text links and link-styled controls. */
  --color-secondary: #6B7280;  /* 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: #DA5C2C;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: Berkeley Mono may be proprietary — safe free fallback: JetBrains Mono (Google Fonts). Inter — free, on Google. */
  --font-heading: "Berkeley Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 32px;
  --text-h2: 24px;
  --text-body: 14px;
  --radius-base: 4px;
  --radius-button: 2px;
  --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 #DA5C2C — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #000000;
  --surface: #060607;
  --border: #101113;
  --text: #6B7280;
  --text-muted: #42464F;
  --primary: #DA5C2C;  /* primary brand / action color. */
  --accent: #DA5C2C;  /* 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: #569CD6;  /* inline text links and link-styled controls. */
  --secondary: #6B7280;  /* 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: #DA5C2C;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Berkeley Mono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 4px;
  --radius-button: 2px;
}
/* fonts: Berkeley Mono may be proprietary — safe free fallback: JetBrains Mono (Google Fonts). Inter — free, on Google. */