MozaikaDesign system

Xata — Design System

dark · modern · medium · tailwind · confidence 90%

Xata pitches 'Postgres for agentic workloads' in Geist at 72px/600 with gradient-masked letterfills on true black, Geist Mono on the 6px-radius CTAs, and a dense 14px body befitting database documentation. Branching diagrams and terminal panels are the imagery — a data platform whose page could pass a code review.

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

Tokens

Xata's decoded design system: background #09090B, text #ECECEE, accent #735ADC, link #735ADC, primary #272435; type scale h1 72px / h2 14px / body 14px; 8px spacing base; 0px base radius. The single interactive/action color is #09090B — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#09090B
surface#161618
border#2B2B2D
text#ECECEE
text_muted#959597
primary#272435
accent#735ADC
link#735ADC
secondary#060010
button_bg#09090B
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Shadow

oklab(0.999994 0.0000455678 0.0000200868 / 0.25) 0px 1px 0px 0px inset, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, lab(100 0 0) 0px 0px 0px 0px, oklab(0.141 0.00136173 -0.00480696 / 0.2) 0px 4px 6px -1px, oklab(0.141 0.00136173 -0.00480696 / 0.2) 0px 2px 4px -2px

Per-section tokens (10)

Export: DESIGN.md

# Xata — Design System

> dark, modern, medium, tailwind

Xata pitches 'Postgres for agentic workloads' in Geist at 72px/600 with gradient-masked letterfills on true black, Geist Mono on the 6px-radius CTAs, and a dense 14px body befitting database documentation. Branching diagrams and terminal panels are the imagery — a data platform whose page could pass a code review.

## Colors

| Role | Value |
|------|-------|
| bg | `#09090B` |
| surface | `#161618` |
| border | `#2B2B2D` |
| text | `#ECECEE` |
| text_muted | `#959597` |
| primary | `#272435` |
| accent | `#735ADC` |
| link | `#735ADC` |
| secondary | `#060010` |
| button_bg | `#09090B` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#09090B` — 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 `#735ADC` — one role, not several.
- **accent** `#735ADC` — accent for emphasis — keep it rare on the page.
- **primary** `#272435` — a brand color — but the call-to-action uses #09090B, not this.
- **secondary** `#060010` — 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: **GeistMono** _(free fallback: JetBrains Mono)_
- Body: **GeistMono** _(free fallback: JetBrains Mono)_
- Mono: **GeistMono**
- h1: 72px
- h2: 14px
- body: 14px

> **Fonts —** GeistMono may be proprietary — safe free fallback: JetBrains Mono (Google Fonts).

## Spacing
- base unit: 8px
- scale: 4px, 8px, 12px, 16px, 24px, 32px, 48px, 64px

## Radius
- base: 0px
- button: 8px

## Primary button
- bg `#09090B` · text `#FFFFFF` · radius 8px

## 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 #09090B — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #09090B;
  --color-surface: #161618;
  --color-border: #2B2B2D;
  --color-text: #ECECEE;
  --color-text-muted: #959597;
  --color-primary: #272435;  /* a brand color — but the call-to-action uses #09090B, not this. */
  --color-accent: #735ADC;  /* accent for emphasis — keep it rare on the page. */
  --color-link: #735ADC;  /* inline text links and link-styled controls. */
  --color-secondary: #060010;  /* 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: #09090B;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* fonts: GeistMono may be proprietary — safe free fallback: JetBrains Mono (Google Fonts). */
  --font-heading: "GeistMono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-body: "GeistMono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-mono: "GeistMono", ui-monospace, monospace;
  --text-h1: 72px;
  --text-h2: 14px;
  --text-body: 14px;
  --radius-base: 0px;
  --radius-button: 8px;
  --spacing-1: 4px;
  --spacing-2: 8px;
  --spacing-3: 12px;
  --spacing-4: 16px;
  --spacing-5: 24px;
  --spacing-6: 32px;
  --spacing-7: 48px;
  --spacing-8: 64px;
}

Export: CSS variables

:root {
  /* action color #09090B — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #09090B;
  --surface: #161618;
  --border: #2B2B2D;
  --text: #ECECEE;
  --text-muted: #959597;
  --primary: #272435;  /* a brand color — but the call-to-action uses #09090B, not this. */
  --accent: #735ADC;  /* accent for emphasis — keep it rare on the page. */
  --link: #735ADC;  /* inline text links and link-styled controls. */
  --secondary: #060010;  /* 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: #09090B;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "GeistMono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-body: "GeistMono", "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-mono: "GeistMono", ui-monospace, monospace;
  --radius: 0px;
  --radius-button: 8px;
}
/* fonts: GeistMono may be proprietary — safe free fallback: JetBrains Mono (Google Fonts). */