MozaikaDesign system

Weaviate — Design System

dark · modern · medium · custom · confidence 45%

The full decoded design system for Weaviate: 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/weaviate.

Tokens

Weaviate's decoded design system: background #111111, text #B9C8DE, accent #DDEBF2, link #DDEBF2, primary #130C49; type scale h1 68px / h2 40px / body 19px; 4px spacing base; 14px base radius. The single interactive/action color is #DDEBF2 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#111111
surface#1B1B1D
border#2A2C2F
text#B9C8DE
text_muted#798290
primary#130C49
accent#DDEBF2
link#DDEBF2
secondary#B9C8DE

Using these colors

Typography

Spacing

Radii

Per-section tokens (8)

Export: DESIGN.md

# Weaviate — Design System

> dark, modern, medium, custom

## Colors

| Role | Value |
|------|-------|
| bg | `#111111` |
| surface | `#1B1B1D` |
| border | `#2A2C2F` |
| text | `#B9C8DE` |
| text_muted | `#798290` |
| primary | `#130C49` |
| accent | `#DDEBF2` |
| link | `#DDEBF2` |
| secondary | `#B9C8DE` |

**Using these colors**

- **Action color** `#DDEBF2` — 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` are all `#DDEBF2` — one role, not several (your action color).
- **accent** `#DDEBF2` — 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** `#130C49` — a brand color — but the call-to-action uses #DDEBF2, not this.
- **secondary** `#B9C8DE` — 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: **Plus Jakarta Sans**
- Body: **Inter**
- h1: 68px
- h2: 40px
- body: 19px

> **Fonts —** Plus Jakarta Sans — free, on Google. Inter — free, on Google.

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

## Radius
- base: 14px
- button: 14px

## Primary button
- bg `None` · text `None` · radius None

## 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 #DDEBF2 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #111111;
  --color-surface: #1B1B1D;
  --color-border: #2A2C2F;
  --color-text: #B9C8DE;
  --color-text-muted: #798290;
  --color-primary: #130C49;  /* a brand color — but the call-to-action uses #DDEBF2, not this. */
  --color-accent: #DDEBF2;  /* 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: #DDEBF2;  /* inline text links — shares the action color. */
  --color-secondary: #B9C8DE;  /* 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. */
  /* fonts: Plus Jakarta Sans — free, on Google. Inter — free, on Google. */
  --font-heading: "Plus Jakarta Sans", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 68px;
  --text-h2: 40px;
  --text-body: 19px;
  --radius-base: 14px;
  --radius-button: 14px;
  --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 #DDEBF2 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #111111;
  --surface: #1B1B1D;
  --border: #2A2C2F;
  --text: #B9C8DE;
  --text-muted: #798290;
  --primary: #130C49;  /* a brand color — but the call-to-action uses #DDEBF2, not this. */
  --accent: #DDEBF2;  /* 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: #DDEBF2;  /* inline text links — shares the action color. */
  --secondary: #B9C8DE;  /* 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. */
  --font-heading: "Plus Jakarta Sans", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 14px;
  --radius-button: 14px;
}
/* fonts: Plus Jakarta Sans — free, on Google. Inter — free, on Google. */