MozaikaDesign system

Dagger — Design System

light · modern · medium · custom · confidence 92%

Dagger ships CI in General Sans at 68px/600, deep ink #131226 on warm bone #F8F4EF, 20px body, and solid 8px-radius buttons. Pipeline DAGs and terminal panels supply the engineering texture — the container-native CI from Docker's founder, styled warmer than the category expects because its pitch is that pipelines shouldn't hurt.

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

Tokens

Dagger's decoded design system: background #F8F4EF, text #131226, accent #131226, link #131226, primary #000000; type scale h1 68px / h2 44px / body 20px; 4px spacing base; 0px base radius. The single interactive/action color is #131226 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#F8F4EF
surface#EAE6E2
border#D5D2D0
text#131226
text_muted#6A6772
primary#000000
accent#131226
link#131226
button_bg#131226
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Per-section tokens (9)

Export: DESIGN.md

# Dagger — Design System

> light, modern, medium, custom

Dagger ships CI in General Sans at 68px/600, deep ink #131226 on warm bone #F8F4EF, 20px body, and solid 8px-radius buttons. Pipeline DAGs and terminal panels supply the engineering texture — the container-native CI from Docker's founder, styled warmer than the category expects because its pitch is that pipelines shouldn't hurt.

## Colors

| Role | Value |
|------|-------|
| bg | `#F8F4EF` |
| surface | `#EAE6E2` |
| border | `#D5D2D0` |
| text | `#131226` |
| text_muted | `#6A6772` |
| primary | `#000000` |
| accent | `#131226` |
| link | `#131226` |
| button_bg | `#131226` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#131226` — 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`, `button_bg` are all `#131226` — one role, not several (your action color).
- **accent** `#131226` — 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** `#000000` — a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #131226).

## Typography

- Heading: **General Sans**
- Body: **Inter**
- h1: 68px
- h2: 44px
- body: 20px

> **Fonts —** General Sans — free, on Fontshare. Inter — free, on Google.

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

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

## Primary button
- bg `#131226` · 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 #131226 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #F8F4EF;
  --color-surface: #EAE6E2;
  --color-border: #D5D2D0;
  --color-text: #131226;
  --color-text-muted: #6A6772;
  --color-primary: #000000;  /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #131226). */
  --color-accent: #131226;  /* 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: #131226;  /* inline text links — shares the action color. */
  --color-button-bg: #131226;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: General Sans — free, on Fontshare. Inter — free, on Google. */
  --font-heading: "General Sans", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 68px;
  --text-h2: 44px;
  --text-body: 20px;
  --radius-base: 0px;
  --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 #131226 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #F8F4EF;
  --surface: #EAE6E2;
  --border: #D5D2D0;
  --text: #131226;
  --text-muted: #6A6772;
  --primary: #000000;  /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #131226). */
  --accent: #131226;  /* 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: #131226;  /* inline text links — shares the action color. */
  --button-bg: #131226;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "General Sans", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 0px;
  --radius-button: 8px;
}
/* fonts: General Sans — free, on Fontshare. Inter — free, on Google. */