MozaikaDesign system

Ramp — Design System

light · modern · high · tailwind · confidence 92% · deep decode

The full decoded design system for Ramp: color roles, type scale, spacing, radii and paste-ready DESIGN.md / Tailwind / CSS exports.

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

RoleValue
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

Typography

Spacing

Radii

Responsive (measured)

Per-section tokens (17)

Export: DESIGN.md

# Ramp — Design System

> light, modern, high, tailwind — deep decode (measured live)

## 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.
- **Page coverage** (full-page screenshot pixels): `#FFFFFF` 89.3% · `#E1E1E1` 2.4% · `#EFEFEE` 2.1% · `#AFAFAF` 1.7%

## Typography

- Heading: **Lausanne** _(free fallback: Newsreader)_
- Body: **Lausanne** _(free fallback: Newsreader)_

| Role | Size / weight · line-height · tracking |
|------|------------------------------------------|
| hero | 64px / 400 · lh 64px · tracking -0.01px |
| h2 | 48px / 400 · lh 50px · tracking -0.01px |
| h3 | 40px / 400 · lh 42px · tracking -0.01px |
| body | 24px / 400 · lh 28px |
| small | 18px / 400 · lh 24px |

- Weight ladder: 400 — use these exact measured weights, not the 400/600 defaults.

> **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
- card: 12px

## Primary button
- bg `#E4F222` · text `#0C0A08` · radius 6px

## Responsive (measured)
- mobile (390px): body 16px · nav: inline

## 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.
Hover/focus states, shadows and motion timings above are measured from the live page — match them exactly, don't re-guess them.

---

> **Decoded with Mozaika** — measured live, not guessed. Full decoded design system + one-command install: mozaika.design/ds/ramp

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;
  /* measured weights: 400 — use these, not 400/600 */
  --text-hero: 64px; --font-weight-hero: 400; --leading-hero: 64px; --tracking-hero: -0.01px;
  --text-h2: 48px; --font-weight-h2: 400; --leading-h2: 50px; --tracking-h2: -0.01px;
  --text-h3: 40px; --font-weight-h3: 400; --leading-h3: 42px; --tracking-h3: -0.01px;
  --text-body: 24px; --font-weight-body: 400; --leading-body: 28px;
  --text-small: 18px; --font-weight-small: 400; --leading-small: 24px;
  --radius-base: 4px;
  --radius-button: 6px;
  --radius-card: 12px;
  --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;
  --text-hero: 64px; --weight-hero: 400; --leading-hero: 64px; --tracking-hero: -0.01px;
  --text-h2: 48px; --weight-h2: 400; --leading-h2: 50px; --tracking-h2: -0.01px;
  --text-h3: 40px; --weight-h3: 400; --leading-h3: 42px; --tracking-h3: -0.01px;
  --text-body: 24px; --weight-body: 400; --leading-body: 28px;
  --text-small: 18px; --weight-small: 400; --leading-small: 24px;
  --radius: 4px;
  --radius-button: 6px;
  --radius-card: 12px;
}
/* fonts: Lausanne may be proprietary — safe free fallback: Newsreader (Google Fonts). */