Ramp — Design System
The full decoded design system for Ramp: 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/ramp.
Tokens
Ramp's decoded design system: background #FFFFFF, text #0C0A08, accent #E4F222, link #0066FF, primary #E4F222; type scale h1 64px / h2 28px / body 14px; 4px spacing base; 4px base radius. The single interactive/action color is #E4F222 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.
Color roles
| Role | Value |
|---|---|
| bg | #FFFFFF |
| surface | #F0F0F0 |
| border | #DADAD9 |
| text | #0C0A08 |
| text_muted | #686765 |
| primary | #E4F222 |
| accent | #E4F222 |
| link | #0066FF |
| button_bg | #E4F222 |
| button_text | #0C0A08 |
Using these colors
- Action color
#E4F222— the single interactive color; only on things you click or must notice, never large fills. primary,accent,button_bgare all#E4F222— one role, not several (the action color).- accent
#E4F222— 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
#0066FF— inline text links and link-styled controls.
Typography
- Heading: Lausanne
- Body: Lausanne
- h1: 64px
- h2: 28px
- body: 14px
Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px
Radii
- base: 4px
- button: 6px
Per-section tokens (17)
- Hero
- Hero
- Logo Wall
- Stats / Metrics
- Comparison
- Bento Grid
- Feature
- Feature
- Feature
- Feature
- Feature
- CTA / Sign-up
- Stats / Metrics
- Testimonial / Social Proof
- FAQ
- CTA / Sign-up
- Footer
Export: DESIGN.md
# Ramp — Design System > light, modern, high, tailwind ## Colors | Role | Value | |------|-------| | bg | `#FFFFFF` | | surface | `#F0F0F0` | | border | `#DADAD9` | | text | `#0C0A08` | | text_muted | `#686765` | | primary | `#E4F222` | | accent | `#E4F222` | | link | `#0066FF` | | button_bg | `#E4F222` | | button_text | `#0C0A08` | **Using these colors** - **Action color** `#E4F222` — 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 `#E4F222` — one role, not several (your action color). - **accent** `#E4F222` — 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** `#0066FF` — inline text links and link-styled controls. ## Typography - Heading: **Lausanne** _(free fallback: Newsreader)_ - Body: **Lausanne** _(free fallback: Newsreader)_ - h1: 64px - h2: 28px - body: 14px > **Fonts —** Lausanne may be proprietary — safe free fallback: Newsreader (Google Fonts). ## Spacing - base unit: 4px - scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px ## Radius - base: 4px - button: 6px ## Primary button - bg `#E4F222` · text `#0C0A08` · radius 6px ## 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 #E4F222 — the one interactive color; buttons/links/emphasis only, never large fills. */
--color-bg: #FFFFFF;
--color-surface: #F0F0F0;
--color-border: #DADAD9;
--color-text: #0C0A08;
--color-text-muted: #686765;
--color-primary: #E4F222; /* primary brand / action color. */
--color-accent: #E4F222; /* 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: #0066FF; /* inline text links and link-styled controls. */
--color-button-bg: #E4F222; /* primary-button fill — the main call-to-action color. */
--color-button-text: #0C0A08;
/* fonts: Lausanne may be proprietary — safe free fallback: Newsreader (Google Fonts). */
--font-heading: "Lausanne", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Lausanne", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--text-h1: 64px;
--text-h2: 28px;
--text-body: 14px;
--radius-base: 4px;
--radius-button: 6px;
--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 #E4F222 — the one interactive color; buttons/links/emphasis only, never large fills. */
--bg: #FFFFFF;
--surface: #F0F0F0;
--border: #DADAD9;
--text: #0C0A08;
--text-muted: #686765;
--primary: #E4F222; /* primary brand / action color. */
--accent: #E4F222; /* 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: #0066FF; /* inline text links and link-styled controls. */
--button-bg: #E4F222; /* primary-button fill — the main call-to-action color. */
--button-text: #0C0A08;
--font-heading: "Lausanne", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--font-body: "Lausanne", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
--radius: 4px;
--radius-button: 6px;
}
/* fonts: Lausanne may be proprietary — safe free fallback: Newsreader (Google Fonts). */