MozaikaDesign system

Dust — Design System

light · modern · high · tailwind · confidence 92%

The full decoded design system for Dust: 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/dust.

Tokens

Dust's decoded design system: background #FFFFFF, text #585B5D, accent #1C91FF, link #E9F7FF, primary #1C91FF; type scale h1 76px / h2 24px / body 18px; 6px spacing base; 0px base radius. The single interactive/action color is #1C91FF — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FFFFFF
surface#F4F5F5
border#E5E6E6
text#585B5D
text_muted#97999A
primary#1C91FF
accent#1C91FF
link#E9F7FF
secondary#596170
button_bg#1C91FF
button_text#E9F7FF

Using these colors

Typography

Spacing

Radii

Per-section tokens (11)

Export: DESIGN.md

# Dust — Design System

> light, modern, high, tailwind

## Colors

| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#F4F5F5` |
| border | `#E5E6E6` |
| text | `#585B5D` |
| text_muted | `#97999A` |
| primary | `#1C91FF` |
| accent | `#1C91FF` |
| link | `#E9F7FF` |
| secondary | `#596170` |
| button_bg | `#1C91FF` |
| button_text | `#E9F7FF` |

**Using these colors**

- **Action color** `#1C91FF` — 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 `#1C91FF` — one role, not several (your action color).
- **accent** `#1C91FF` — 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** `#E9F7FF` — fails contrast on the background (~1.1:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference).
- **secondary** `#596170` — 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: 76px
- h2: 24px
- body: 18px

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

## Spacing
- base unit: 6px
- scale: 3px, 6px, 9px, 12px, 18px, 24px, 36px, 48px

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

## Primary button
- bg `#1C91FF` · text `#E9F7FF` · radius 16px

## 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 #1C91FF — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFFFFF;
  --color-surface: #F4F5F5;
  --color-border: #E5E6E6;
  --color-text: #585B5D;
  --color-text-muted: #97999A;
  --color-primary: #1C91FF;  /* primary brand / action color. */
  --color-accent: #1C91FF;  /* 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: #E9F7FF;  /* fails contrast on the background (~1.1: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: #596170;  /* 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: #1C91FF;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #E9F7FF;
  /* 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: 76px;
  --text-h2: 24px;
  --text-body: 18px;
  --radius-base: 0px;
  --radius-button: 16px;
  --spacing-1: 3px;
  --spacing-2: 6px;
  --spacing-3: 9px;
  --spacing-4: 12px;
  --spacing-5: 18px;
  --spacing-6: 24px;
  --spacing-7: 36px;
  --spacing-8: 48px;
}

Export: CSS variables

:root {
  /* action color #1C91FF — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFFFFF;
  --surface: #F4F5F5;
  --border: #E5E6E6;
  --text: #585B5D;
  --text-muted: #97999A;
  --primary: #1C91FF;  /* primary brand / action color. */
  --accent: #1C91FF;  /* 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: #E9F7FF;  /* fails contrast on the background (~1.1:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
  --secondary: #596170;  /* 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: #1C91FF;  /* primary-button fill — the main call-to-action color. */
  --button-text: #E9F7FF;
  --font-heading: "Geist", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Geist", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 0px;
  --radius-button: 16px;
}
/* fonts: Geist — free, on Google. */