MozaikaDesign system

Upstash — Design System

light · modern · medium · tailwind · confidence 92%

Upstash headlines 'Serverless Data Platform' in Inter Tight at a colossal 128px/700 with gradient fills, Inter at 16-20px underneath, and emerald 12px-radius CTAs. Redis/Vector/QStash product tabs with live code panels do the substance — data infrastructure that spends its entire display budget on one enormous, confident line.

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

Tokens

Upstash's decoded design system: background #F5F5F5, text #000000, accent #00BC7D, link #00BC7D, primary #022C22; type scale h1 128px / h2 24px / body 16px; 4px spacing base; 12px base radius. The single interactive/action color is #00BC7D — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#F5F5F5
surface#E6E6E6
border#D0D0D0
text#000000
text_muted#5D5D5D
primary#022C22
accent#00BC7D
link#00BC7D
secondary#007A55
button_bg#00BC7D
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Per-section tokens (7)

Export: DESIGN.md

# Upstash — Design System

> light, modern, medium, tailwind

Upstash headlines 'Serverless Data Platform' in Inter Tight at a colossal 128px/700 with gradient fills, Inter at 16-20px underneath, and emerald 12px-radius CTAs. Redis/Vector/QStash product tabs with live code panels do the substance — data infrastructure that spends its entire display budget on one enormous, confident line.

## Colors

| Role | Value |
|------|-------|
| bg | `#F5F5F5` |
| surface | `#E6E6E6` |
| border | `#D0D0D0` |
| text | `#000000` |
| text_muted | `#5D5D5D` |
| primary | `#022C22` |
| accent | `#00BC7D` |
| link | `#00BC7D` |
| secondary | `#007A55` |
| button_bg | `#00BC7D` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#00BC7D` — 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 `#00BC7D` — one role, not several (your action color).
- **accent** `#00BC7D` — 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** `#022C22` — a brand color — but the call-to-action uses #00BC7D, not this.
- **secondary** `#007A55` — 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: **Inter Tight** _(free fallback: Newsreader)_
- Body: **Inter**
- h1: 128px
- h2: 24px
- body: 16px

> **Fonts —** Inter Tight may be proprietary — safe free fallback: Newsreader (Google Fonts). Inter — free, on Google.

## Spacing
- base unit: 4px
- scale: 2px, 4px, 6px, 8px, 12px, 16px, 24px, 32px

## Radius
- base: 12px
- button: 12px

## Primary button
- bg `#00BC7D` · text `#FFFFFF` · radius 12px

## 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 #00BC7D — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #F5F5F5;
  --color-surface: #E6E6E6;
  --color-border: #D0D0D0;
  --color-text: #000000;
  --color-text-muted: #5D5D5D;
  --color-primary: #022C22;  /* a brand color — but the call-to-action uses #00BC7D, not this. */
  --color-accent: #00BC7D;  /* 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: #00BC7D;  /* inline text links — shares the action color. */
  --color-secondary: #007A55;  /* 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: #00BC7D;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: Inter Tight may be proprietary — safe free fallback: Newsreader (Google Fonts). Inter — free, on Google. */
  --font-heading: "Inter Tight", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 128px;
  --text-h2: 24px;
  --text-body: 16px;
  --radius-base: 12px;
  --radius-button: 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 #00BC7D — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #F5F5F5;
  --surface: #E6E6E6;
  --border: #D0D0D0;
  --text: #000000;
  --text-muted: #5D5D5D;
  --primary: #022C22;  /* a brand color — but the call-to-action uses #00BC7D, not this. */
  --accent: #00BC7D;  /* 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: #00BC7D;  /* inline text links — shares the action color. */
  --secondary: #007A55;  /* 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: #00BC7D;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Inter Tight", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-button: 12px;
}
/* fonts: Inter Tight may be proprietary — safe free fallback: Newsreader (Google Fonts). Inter — free, on Google. */