MozaikaDesign system

Factory — Design System

dark · modern · medium · tailwind · confidence 90%

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

Tokens

Factory's decoded design system: background #020202, text #6A7282, accent #1A0D06, link #1A0D06, primary #6A7282; type scale h1 72px / h2 44px / body 12px; 4px spacing base; 0px base radius. The single interactive/action color is #1F1D1C — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#020202
surface#080809
border#111215
text#6A7282
text_muted#424751
primary#6A7282
accent#1A0D06
link#1A0D06
secondary#F6F1E7
button_bg#1F1D1C
button_text#EEEEEE

Using these colors

Typography

Spacing

Radii

Per-section tokens (6)

Export: DESIGN.md

# Factory — Design System

> dark, modern, medium, tailwind

## Colors

| Role | Value |
|------|-------|
| bg | `#020202` |
| surface | `#080809` |
| border | `#111215` |
| text | `#6A7282` |
| text_muted | `#424751` |
| primary | `#6A7282` |
| accent | `#1A0D06` |
| link | `#1A0D06` |
| secondary | `#F6F1E7` |
| button_bg | `#1F1D1C` |
| button_text | `#EEEEEE` |

**Using these colors**

- **Action color** `#1F1D1C` — 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` are all `#1A0D06` — one role, not several.
- **accent** `#1A0D06` — accent for emphasis — keep it rare on the page.
- **primary** `#6A7282` — ≈ the text color — a foreground/text color, not an action color (action = #1F1D1C).
- **secondary** `#F6F1E7` — 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**
- Mono: **Geist Mono**
- h1: 72px
- h2: 44px
- body: 12px

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

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

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

## Primary button
- bg `#1F1D1C` · text `#EEEEEE` · radius 3px

## 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 #1F1D1C — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #020202;
  --color-surface: #080809;
  --color-border: #111215;
  --color-text: #6A7282;
  --color-text-muted: #424751;
  --color-primary: #6A7282;  /* ≈ the text color — a foreground/text color, not an action color (action = #1F1D1C). */
  --color-accent: #1A0D06;  /* accent for emphasis — keep it rare on the page. */
  --color-link: #1A0D06;  /* 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: #F6F1E7;  /* 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: #1F1D1C;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #EEEEEE;
  /* 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;
  --font-mono: "Geist Mono", ui-monospace, monospace;
  --text-h1: 72px;
  --text-h2: 44px;
  --text-body: 12px;
  --radius-base: 0px;
  --radius-button: 3px;
  --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 #1F1D1C — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #020202;
  --surface: #080809;
  --border: #111215;
  --text: #6A7282;
  --text-muted: #424751;
  --primary: #6A7282;  /* ≈ the text color — a foreground/text color, not an action color (action = #1F1D1C). */
  --accent: #1A0D06;  /* accent for emphasis — keep it rare on the page. */
  --link: #1A0D06;  /* 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: #F6F1E7;  /* 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: #1F1D1C;  /* primary-button fill — the main call-to-action color. */
  --button-text: #EEEEEE;
  --font-heading: "Geist", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Geist", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;
  --radius: 0px;
  --radius-button: 3px;
}
/* fonts: Geist — free, on Google. */