MozaikaDesign system

Tinybird — Design System

dark · modern · high · tailwind · confidence 92%

Tinybird ships analytics infrastructure in terminal dress: Roboto at 64px/400 white on #0A0A0A, Roboto Mono in the dense 14px body and on the signal-green #27F795 zero-radius buttons. SQL pipes and latency numbers are the imagery — managed ClickHouse presented like a CLI session that happens to have a marketing budget.

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

Tokens

Tinybird's decoded design system: background #0A0A0A, text #FFFFFF, accent #27F795, link #27F795, primary #27F795; type scale h1 64px / h2 64px / body 14px; 4px spacing base; 0px base radius. The single interactive/action color is #27F795 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#0A0A0A
surface#181818
border#2E2E2E
text#FFFFFF
text_muted#A1A1A1
primary#27F795
accent#27F795
link#27F795
button_bg#27F795
button_text#0A0A0A

Using these colors

Typography

Spacing

Radii

Per-section tokens (9)

Export: DESIGN.md

# Tinybird — Design System

> dark, modern, high, tailwind

Tinybird ships analytics infrastructure in terminal dress: Roboto at 64px/400 white on #0A0A0A, Roboto Mono in the dense 14px body and on the signal-green #27F795 zero-radius buttons. SQL pipes and latency numbers are the imagery — managed ClickHouse presented like a CLI session that happens to have a marketing budget.

## Colors

| Role | Value |
|------|-------|
| bg | `#0A0A0A` |
| surface | `#181818` |
| border | `#2E2E2E` |
| text | `#FFFFFF` |
| text_muted | `#A1A1A1` |
| primary | `#27F795` |
| accent | `#27F795` |
| link | `#27F795` |
| button_bg | `#27F795` |
| button_text | `#0A0A0A` |

**Using these colors**

- **Action color** `#27F795` — 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`, `link`, `button_bg` are all `#27F795` — one role, not several (your action color).
- **accent** `#27F795` — 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.

## Typography

- Heading: **Roboto**
- Body: **Roboto**
- Mono: **Roboto Mono**
- h1: 64px
- h2: 64px
- body: 14px

> **Fonts —** Roboto — free, on Google.

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

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

## Primary button
- bg `#27F795` · text `#0A0A0A` · radius 0px

## 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 #27F795 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #0A0A0A;
  --color-surface: #181818;
  --color-border: #2E2E2E;
  --color-text: #FFFFFF;
  --color-text-muted: #A1A1A1;
  --color-primary: #27F795;  /* primary brand / action color. */
  --color-accent: #27F795;  /* 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: #27F795;  /* inline text links — shares the action color. */
  --color-button-bg: #27F795;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #0A0A0A;
  /* fonts: Roboto — free, on Google. */
  --font-heading: "Roboto", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Roboto", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: "Roboto Mono", ui-monospace, monospace;
  --text-h1: 64px;
  --text-h2: 64px;
  --text-body: 14px;
  --radius-base: 0px;
  --radius-button: 0px;
  --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 #27F795 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #0A0A0A;
  --surface: #181818;
  --border: #2E2E2E;
  --text: #FFFFFF;
  --text-muted: #A1A1A1;
  --primary: #27F795;  /* primary brand / action color. */
  --accent: #27F795;  /* 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: #27F795;  /* inline text links — shares the action color. */
  --button-bg: #27F795;  /* primary-button fill — the main call-to-action color. */
  --button-text: #0A0A0A;
  --font-heading: "Roboto", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Roboto", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: "Roboto Mono", ui-monospace, monospace;
  --radius: 0px;
  --radius-button: 0px;
}
/* fonts: Roboto — free, on Google. */