MozaikaDesign system

Neon — Design System

dark · modern · medium · tailwind · confidence 92%

Neon puts Postgres on a black stage lit by its own green glow: Inter at 68px/400 does the talking without display-font theatrics, 4px-radius buttons stay quiet, and branching diagrams plus autoscaling charts carry the story. The single neon accent against the dark reads as the brand itself — database engineering with just one light on.

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

Tokens

Neon's decoded design system: background #000000, text #ECECEE, accent #34D59A, link #39A57D, primary #34D59A; type scale h1 68px / h2 48px / body 16px; 4px spacing base; 4px base radius. The single interactive/action color is #34D59A — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#000000
surface#0E0E0E
border#232323
text#ECECEE
text_muted#929293
primary#34D59A
accent#34D59A
link#39A57D
button_bg#34D59A
button_text#000000

Using these colors

Typography

Spacing

Radii

Per-section tokens (18)

Export: DESIGN.md

# Neon — Design System

> dark, modern, medium, tailwind

Neon puts Postgres on a black stage lit by its own green glow: Inter at 68px/400 does the talking without display-font theatrics, 4px-radius buttons stay quiet, and branching diagrams plus autoscaling charts carry the story. The single neon accent against the dark reads as the brand itself — database engineering with just one light on.

## Colors

| Role | Value |
|------|-------|
| bg | `#000000` |
| surface | `#0E0E0E` |
| border | `#232323` |
| text | `#ECECEE` |
| text_muted | `#929293` |
| primary | `#34D59A` |
| accent | `#34D59A` |
| link | `#39A57D` |
| button_bg | `#34D59A` |
| button_text | `#000000` |

**Using these colors**

- **Action color** `#34D59A` — 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 `#34D59A` — one role, not several (your action color).
- **accent** `#34D59A` — 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** `#39A57D` — inline text links and link-styled controls.

## Typography

- Heading: **Inter**
- Body: **Inter**
- h1: 68px
- h2: 48px
- body: 16px

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

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

## Radius
- base: 4px
- button: 9999px

## Primary button
- bg `#34D59A` · text `#000000` · radius 9999px

## 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 #34D59A — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #000000;
  --color-surface: #0E0E0E;
  --color-border: #232323;
  --color-text: #ECECEE;
  --color-text-muted: #929293;
  --color-primary: #34D59A;  /* primary brand / action color. */
  --color-accent: #34D59A;  /* 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: #39A57D;  /* inline text links and link-styled controls. */
  --color-button-bg: #34D59A;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #000000;
  /* fonts: Inter — free, on Google. */
  --font-heading: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 68px;
  --text-h2: 48px;
  --text-body: 16px;
  --radius-base: 4px;
  --radius-button: 9999px;
  --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 #34D59A — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #000000;
  --surface: #0E0E0E;
  --border: #232323;
  --text: #ECECEE;
  --text-muted: #929293;
  --primary: #34D59A;  /* primary brand / action color. */
  --accent: #34D59A;  /* 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: #39A57D;  /* inline text links and link-styled controls. */
  --button-bg: #34D59A;  /* primary-button fill — the main call-to-action color. */
  --button-text: #000000;
  --font-heading: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 4px;
  --radius-button: 9999px;
}
/* fonts: Inter — free, on Google. */