MozaikaDesign system

Dagster — Design System

light · modern · medium · custom · confidence 92%

The full decoded design system for Dagster: color roles, type scale, spacing, radii and paste-ready DESIGN.md / Tailwind / CSS exports.

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

Tokens

Dagster's decoded design system: background #FFFFFF, text #111927, accent #4F43DD, link #111927, primary #1F2A37; type scale h1 64px / h2 48px / body 16px; 4px spacing base; 16px base radius. The single interactive/action color is #4F43DD — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FFFFFF
surface#F0F1F2
border#DBDCDE
text#111927
text_muted#6B7079
primary#1F2A37
accent#4F43DD
link#111927
secondary#030615
button_bg#4F43DD
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Per-section tokens (11)

Export: DESIGN.md

# Dagster — Design System

> light, modern, medium, custom

## Colors

| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#F0F1F2` |
| border | `#DBDCDE` |
| text | `#111927` |
| text_muted | `#6B7079` |
| primary | `#1F2A37` |
| accent | `#4F43DD` |
| link | `#111927` |
| secondary | `#030615` |
| button_bg | `#4F43DD` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#4F43DD` — 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 `#4F43DD` — one role, not several (your action color).
- **accent** `#4F43DD` — 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** `#1F2A37` — a brand color — but the call-to-action uses #4F43DD, not this.
- **link** `#111927` — inline text links and link-styled controls.
- **secondary** `#030615` — 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: **Geist**
- Body: **Geist**
- h1: 64px
- h2: 48px
- body: 16px

> **Fonts —** Geist — free, on Google.

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

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

## Primary button
- bg `#4F43DD` · text `#FFFFFF` · radius 48px

## 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 #4F43DD — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFFFFF;
  --color-surface: #F0F1F2;
  --color-border: #DBDCDE;
  --color-text: #111927;
  --color-text-muted: #6B7079;
  --color-primary: #1F2A37;  /* a brand color — but the call-to-action uses #4F43DD, not this. */
  --color-accent: #4F43DD;  /* 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: #111927;  /* inline text links and link-styled controls. */
  --color-secondary: #030615;  /* 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: #4F43DD;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: Geist — free, on Google. */
  --font-heading: "Geist", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Geist", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 64px;
  --text-h2: 48px;
  --text-body: 16px;
  --radius-base: 16px;
  --radius-button: 48px;
  --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 #4F43DD — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFFFFF;
  --surface: #F0F1F2;
  --border: #DBDCDE;
  --text: #111927;
  --text-muted: #6B7079;
  --primary: #1F2A37;  /* a brand color — but the call-to-action uses #4F43DD, not this. */
  --accent: #4F43DD;  /* 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: #111927;  /* inline text links and link-styled controls. */
  --secondary: #030615;  /* 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: #4F43DD;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Geist", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Geist", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 16px;
  --radius-button: 48px;
}
/* fonts: Geist — free, on Google. */