MozaikaDesign system

Replicate — Design System

light · modern · medium · custom · confidence 92%

Replicate pairs a swashbuckling display with an engineer's mono-adjacent sans: Freigeist Neue at 72px/700 for the statements, Basier Square at a dense 14px for model cards and API snippets, zero-radius everything. Thousands of community models grid out beneath — an ML marketplace typeset half like a poster, half like a package registry.

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

Tokens

Replicate's decoded design system: background #FFFFFF, text #202020, accent #EA2804, link #EA2804, primary #DD4425; type scale h1 24px / h2 72px / body 16px; 8px spacing base; 0px base radius. The single interactive/action color is #000000 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FFFFFF
surface#F1F1F1
border#DDDDDD
text#202020
text_muted#747474
primary#DD4425
accent#EA2804
link#EA2804
button_bg#000000
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Per-section tokens (7)

Export: DESIGN.md

# Replicate — Design System

> light, modern, medium, custom

Replicate pairs a swashbuckling display with an engineer's mono-adjacent sans: Freigeist Neue at 72px/700 for the statements, Basier Square at a dense 14px for model cards and API snippets, zero-radius everything. Thousands of community models grid out beneath — an ML marketplace typeset half like a poster, half like a package registry.

## Colors

| Role | Value |
|------|-------|
| bg | `#FFFFFF` |
| surface | `#F1F1F1` |
| border | `#DDDDDD` |
| text | `#202020` |
| text_muted | `#747474` |
| primary | `#DD4425` |
| accent | `#EA2804` |
| link | `#EA2804` |
| button_bg | `#000000` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#000000` — 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 `#EA2804` — one role, not several.
- **accent** `#EA2804` — accent for emphasis — keep it rare on the page.
- **primary** `#DD4425` — a brand color — but the call-to-action uses #000000, not this.

## Typography

- Heading: **RB Freigeist Neue** _(free fallback: Newsreader)_
- Body: **Basier Square** _(free fallback: Newsreader)_
- Mono: **JetBrains Mono**
- h1: 24px
- h2: 72px
- body: 16px

> **Fonts —** RB Freigeist Neue may be proprietary — safe free fallback: Newsreader (Google Fonts). Basier Square may be proprietary — safe free fallback: Newsreader (Google Fonts).

## Spacing
- base unit: 8px
- scale: 4px, 8px, 12px, 16px, 24px, 32px, 48px, 64px

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

## Primary button
- bg `#000000` · text `#FFFFFF` · radius 0px

## 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 #000000 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FFFFFF;
  --color-surface: #F1F1F1;
  --color-border: #DDDDDD;
  --color-text: #202020;
  --color-text-muted: #747474;
  --color-primary: #DD4425;  /* a brand color — but the call-to-action uses #000000, not this. */
  --color-accent: #EA2804;  /* accent for emphasis — keep it rare on the page. */
  --color-link: #EA2804;  /* inline text links and link-styled controls. */
  --color-button-bg: #000000;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: RB Freigeist Neue may be proprietary — safe free fallback: Newsreader (Google Fonts). Basier Square may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "RB Freigeist Neue", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Basier Square", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --text-h1: 24px;
  --text-h2: 72px;
  --text-body: 16px;
  --radius-base: 0px;
  --radius-button: 0px;
  --spacing-1: 4px;
  --spacing-2: 8px;
  --spacing-3: 12px;
  --spacing-4: 16px;
  --spacing-5: 24px;
  --spacing-6: 32px;
  --spacing-7: 48px;
  --spacing-8: 64px;
}

Export: CSS variables

:root {
  /* action color #000000 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FFFFFF;
  --surface: #F1F1F1;
  --border: #DDDDDD;
  --text: #202020;
  --text-muted: #747474;
  --primary: #DD4425;  /* a brand color — but the call-to-action uses #000000, not this. */
  --accent: #EA2804;  /* accent for emphasis — keep it rare on the page. */
  --link: #EA2804;  /* inline text links and link-styled controls. */
  --button-bg: #000000;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "RB Freigeist Neue", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Basier Square", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --radius: 0px;
  --radius-button: 0px;
}
/* fonts: RB Freigeist Neue may be proprietary — safe free fallback: Newsreader (Google Fonts). Basier Square may be proprietary — safe free fallback: Newsreader (Google Fonts). */