Replit — Design System
The full decoded design system for Replit: color roles, type scale, spacing, radii and paste-ready DESIGN.md / Tailwind / CSS exports.
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/replit.
Tokens
Replit's decoded design system: background #FAF6F1, text #2F3034, accent #FF3C00, link #FF3C00, primary #2492FF; type scale h1 64px / h2 60px / body 28px; 4px spacing base; 8px base radius. The single interactive/action color is #FF3C00 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FAF6F1 |
| surface | #EDEAE5 |
| border | #DBD8D4 |
| text | #2F3034 |
| text_muted | #7C7B7B |
| primary | #2492FF |
| accent | #FF3C00 |
| link | #FF3C00 |
| secondary | #FFB199 |
| button_bg | #FF3C00 |
| button_text | #FFFFFF |
Using these colors
- Action color
#FF3C00— the single interactive color; only on things you click or must notice, never large fills. accent,link,button_bgare all#FF3C00— one role, not several (the action color).- accent
#FF3C00— 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
#2492FF— a brand color — but the call-to-action uses #FF3C00, not this. - secondary
#FFB199— 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: ABC Diatype
- Body: ABC Diatype
- h1: 64px
- h2: 60px
- body: 28px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 8px
- button: 90px
Per-section tokens (8)
- Hero — light · bg #FAF6F1 · text #C8BBB5 · 1 col · center
- Logo Wall — light · bg #FAF6F1 · text #9C9DA2 · 1 col · left
- Feature — light · bg #FAF6F1 · text #4D3B37 · 1 col · left
- Bento Grid — light · bg #FAF6F1 · text #BF6144 · 2 col · split
- Testimonial / Social Proof — light · bg #FAF6F1 · text #7A7461 · 3 col · split
- Pricing / Plans — light · bg #FAF4F0 · text #55504E · 4 col · split
- CTA / Sign-up — light · bg #FAF6F1 · text #DE5B32 · 1 col · center
- Footer — light · bg #FAF4F0 · text #ACA19C · 3 col · split
Export: DESIGN.md
# Replit — Design System > light, modern, high, custom ## Colors | Role | Value | |------|-------| | bg | `#FAF6F1` | | surface | `#EDEAE5` | | border | `#DBD8D4` | | text | `#2F3034` | | text_muted | `#7C7B7B` | | primary | `#2492FF` | | accent | `#FF3C00` | | link | `#FF3C00` | | secondary | `#FFB199` | | button_bg | `#FF3C00` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#FF3C00` — 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`, `button_bg` are all `#FF3C00` — one role, not several (your action color). - **accent** `#FF3C00` — 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** `#2492FF` — a brand color — but the call-to-action uses #FF3C00, not this. - **secondary** `#FFB199` — 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: **ABC Diatype** _(free fallback: Space Grotesk)_ - Body: **ABC Diatype** _(free fallback: Space Grotesk)_ - h1: 64px - h2: 60px - body: 28px > **Fonts —** ABC Diatype is proprietary — closest free match: Space Grotesk (Google). Load Space Grotesk; keep ABC Diatype first so licensed users still get it. ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 8px - button: 90px ## Primary button - bg `#FF3C00` · text `#FFFFFF` · radius 90px ## 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 #FF3C00 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FAF6F1;
--color-surface: #EDEAE5;
--color-border: #DBD8D4;
--color-text: #2F3034;
--color-text-muted: #7C7B7B;
--color-primary: #2492FF; /* a brand color — but the call-to-action uses #FF3C00, not this. */
--color-accent: #FF3C00; /* 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: #FF3C00; /* inline text links — shares the action color. */
--color-secondary: #FFB199; /* 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: #FF3C00; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: ABC Diatype is proprietary — closest free match: Space Grotesk (Google). Load Space Grotesk; keep ABC Diatype first so licensed users still get it. */
--font-heading: "ABC Diatype", "Space Grotesk", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "ABC Diatype", "Space Grotesk", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 64px;
--text-h2: 60px;
--text-body: 28px;
--radius-base: 8px;
--radius-button: 90px;
--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 #FF3C00 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FAF6F1;
--surface: #EDEAE5;
--border: #DBD8D4;
--text: #2F3034;
--text-muted: #7C7B7B;
--primary: #2492FF; /* a brand color — but the call-to-action uses #FF3C00, not this. */
--accent: #FF3C00; /* 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: #FF3C00; /* inline text links — shares the action color. */
--secondary: #FFB199; /* 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: #FF3C00; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "ABC Diatype", "Space Grotesk", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "ABC Diatype", "Space Grotesk", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 8px;
--radius-button: 90px;
}
/* fonts: ABC Diatype is proprietary — closest free match: Space Grotesk (Google). Load Space Grotesk; keep ABC Diatype first so licensed users still get it. */