Replicate — Design System
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.
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
| 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; only on things you click or must notice, never large fills. accent,linkare all#EA2804— one role, not several (the action color).- 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
- Body: Basier Square
- Mono: JetBrains Mono
- h1: 24px
- h2: 72px
- body: 16px
Spacing
- base unit: 8px
- scale: 4px, 8px, 12px, 16px, 24px, 32px, 48px, 64px
Radii
- base: 0px
- button: 0px
Per-section tokens (7)
- Hero — light · bg #FDFDFD · text #8F3A78 · 1 col · left
- Gallery / Showcase — light · bg #FFFFFF · text #56383D · 1 col · left
- Steps / How-it-works — light · bg #FDFDFD · text #AE3127 · 2 col · split
- Logo Wall — dark · bg #1F1F1F · text #F6F6F6 · 1 col · left
- Feature — dark · bg #1F1F1F · text #FFFFFF · 1 col · left
- CTA / Sign-up — light · bg #FFFFFF · text #1D1D1D · 1 col · left
- Footer — light · bg #FFFFFF · text #E733DE · 1 col · left
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** | Role | Size / weight · line-height · tracking | |------|------------------------------------------| | hero | 72px / 700 · lh 72px · tracking -1.8px | | h2 | 48px / 400 · lh 48px | | h3 | 30px / 600 · lh 36px | | body | 14px / 400 · lh 20px | | small | 12px / 400 · lh 16px | - Weight ladder: 400 · 600 · 700 — use these exact measured weights, not the 400/600 defaults. > **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 - card: 4px - pill: 9999px ## 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. --- > **Decoded with Mozaika** — measured live, not guessed. Full decoded design system + one-command install: mozaika.design/ds/replicate
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;
/* measured weights: 400, 600, 700 — use these, not 400/600 */
--text-hero: 72px; --font-weight-hero: 700; --leading-hero: 72px; --tracking-hero: -1.8px;
--text-h2: 48px; --font-weight-h2: 400; --leading-h2: 48px;
--text-h3: 30px; --font-weight-h3: 600; --leading-h3: 36px;
--text-body: 14px; --font-weight-body: 400; --leading-body: 20px;
--text-small: 12px; --font-weight-small: 400; --leading-small: 16px;
--radius-base: 0px;
--radius-button: 0px;
--radius-card: 4px;
--radius-pill: 9999px;
--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;
--text-hero: 72px; --weight-hero: 700; --leading-hero: 72px; --tracking-hero: -1.8px;
--text-h2: 48px; --weight-h2: 400; --leading-h2: 48px;
--text-h3: 30px; --weight-h3: 600; --leading-h3: 36px;
--text-body: 14px; --weight-body: 400; --leading-body: 20px;
--text-small: 12px; --weight-small: 400; --leading-small: 16px;
--radius: 0px;
--radius-button: 0px;
--radius-card: 4px;
--radius-pill: 9999px;
}
/* fonts: RB Freigeist Neue may be proprietary — safe free fallback: Newsreader (Google Fonts). Basier Square may be proprietary — safe free fallback: Newsreader (Google Fonts). */