Relume — Design System
Relume pitches AI sitebuilding in Relative: the Faux display cut at 88-96px/400 in ink #161616 on warm greige #F1F0EE, with Relative text weights at 16px and black 8px-radius buttons. Wireframe components cascade through the sections as living spec sheets — a component-library company whose landing page is itself an argument for systematic design.
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/relume.
Tokens
Relume's decoded design system: background #F1F0EE, text #161616, accent #6248FF, link #E0DAEF, primary #6248FF; type scale h1 88px / h2 40px / body 17.6px; 4px spacing base; 8px base radius. The single interactive/action color is #6248FF — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #F1F0EE |
| surface | #E3E2E1 |
| border | #D0CFCD |
| text | #161616 |
| text_muted | #696868 |
| primary | #6248FF |
| accent | #6248FF |
| link | #E0DAEF |
| secondary | #E0DAFF |
| button_bg | #6248FF |
| button_text | #FFFFFF |
Using these colors
- Action color
#6248FF— the single interactive color; only on things you click or must notice, never large fills. primary,accent,button_bgare all#6248FF— one role, not several (the action color).link#E0DAEF,secondary#E0DAFFare visually the same color (Δ16) — treat as one role (the action color).- accent
#6248FF— 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.
Typography
- Heading: Relative
- Body: Relative
- h1: 88px
- h2: 40px
- body: 17.6px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 8px
- button: 10px
Per-section tokens (11)
- Hero
- Feature
- Logo Wall
- Feature
- Feature
- Feature
- Bento Grid
- Gallery / Showcase
- Testimonial / Social Proof
- CTA / Sign-up
- Footer
Export: DESIGN.md
# Relume — Design System > light, modern, high, custom Relume pitches AI sitebuilding in Relative: the Faux display cut at 88-96px/400 in ink #161616 on warm greige #F1F0EE, with Relative text weights at 16px and black 8px-radius buttons. Wireframe components cascade through the sections as living spec sheets — a component-library company whose landing page is itself an argument for systematic design. ## Colors | Role | Value | |------|-------| | bg | `#F1F0EE` | | surface | `#E3E2E1` | | border | `#D0CFCD` | | text | `#161616` | | text_muted | `#696868` | | primary | `#6248FF` | | accent | `#6248FF` | | link | `#E0DAEF` | | secondary | `#E0DAFF` | | button_bg | `#6248FF` | | button_text | `#FFFFFF` | **Using these colors** - **Action color** `#6248FF` — 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 `#6248FF` — one role, not several (your action color). - `link` `#E0DAEF`, `secondary` `#E0DAFF` are visually the same color (Δ16) — treat as one role. - **accent** `#6248FF` — 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. ## Typography - Heading: **Relative** _(free fallback: Newsreader)_ - Body: **Relative** _(free fallback: Newsreader)_ - h1: 88px - h2: 40px - body: 17.6px > **Fonts —** Relative may be proprietary — safe free fallback: Newsreader (Google Fonts). ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 8px - button: 10px ## Primary button - bg `#6248FF` · text `#FFFFFF` · radius 10px ## 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 #6248FF — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #F1F0EE;
--color-surface: #E3E2E1;
--color-border: #D0CFCD;
--color-text: #161616;
--color-text-muted: #696868;
--color-primary: #6248FF; /* primary brand / action color. */
--color-accent: #6248FF; /* 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: #E0DAEF; /* fails contrast on the background (~1.2: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: #E0DAFF; /* 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: #6248FF; /* primary-button fill — the main call-to-action color. */
--color-button-text: #FFFFFF;
/* fonts: Relative may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "Relative", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Relative", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 88px;
--text-h2: 40px;
--text-body: 17.6px;
--radius-base: 8px;
--radius-button: 10px;
--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 #6248FF — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #F1F0EE;
--surface: #E3E2E1;
--border: #D0CFCD;
--text: #161616;
--text-muted: #696868;
--primary: #6248FF; /* primary brand / action color. */
--accent: #6248FF; /* 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: #E0DAEF; /* fails contrast on the background (~1.2:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
--secondary: #E0DAFF; /* 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: #6248FF; /* primary-button fill — the main call-to-action color. */
--button-text: #FFFFFF;
--font-heading: "Relative", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Relative", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 8px;
--radius-button: 10px;
}
/* fonts: Relative may be proprietary — safe free fallback: Newsreader (Google Fonts). */