MozaikaDesign system

Doppler — Design System

dark · modern · high · tailwind · confidence 92%

Doppler secures secrets in Repro at up to 96px/450 — 'Securing the world's secrets' in bone white on deep aubergine #1C1624 — with lilac #B997FF section markers and zero-radius ghost CTAs. Vault UI and rotation diagrams glow against the dark; secrets management styled with the quiet drama its subject deserves.

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

Tokens

Doppler's decoded design system: background #1C1624, text #ECECEE, accent #00F575, link #B997FF, primary #00F575; type scale h1 48px / h2 32px / body 14px; 4px spacing base; 12px base radius. The single interactive/action color is #00F575 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#1C1624
surface#282230
border#3B3642
text#ECECEE
text_muted#9C9AA1
primary#00F575
accent#00F575
link#B997FF
secondary#F55C15
button_bg#00F575
button_text#1C1624

Using these colors

Typography

Spacing

Radii

Per-section tokens (8)

Export: DESIGN.md

# Doppler — Design System

> dark, modern, high, tailwind

Doppler secures secrets in Repro at up to 96px/450 — 'Securing the world's secrets' in bone white on deep aubergine #1C1624 — with lilac #B997FF section markers and zero-radius ghost CTAs. Vault UI and rotation diagrams glow against the dark; secrets management styled with the quiet drama its subject deserves.

## Colors

| Role | Value |
|------|-------|
| bg | `#1C1624` |
| surface | `#282230` |
| border | `#3B3642` |
| text | `#ECECEE` |
| text_muted | `#9C9AA1` |
| primary | `#00F575` |
| accent | `#00F575` |
| link | `#B997FF` |
| secondary | `#F55C15` |
| button_bg | `#00F575` |
| button_text | `#1C1624` |

**Using these colors**

- **Action color** `#00F575` — 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 `#00F575` — one role, not several (your action color).
- **accent** `#00F575` — 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** `#B997FF` — inline text links and link-styled controls.
- **secondary** `#F55C15` — 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

- h1: 48px
- h2: 32px
- body: 14px

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

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

## Primary button
- bg `#00F575` · text `#1C1624` · 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 #00F575 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #1C1624;
  --color-surface: #282230;
  --color-border: #3B3642;
  --color-text: #ECECEE;
  --color-text-muted: #9C9AA1;
  --color-primary: #00F575;  /* primary brand / action color. */
  --color-accent: #00F575;  /* 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: #B997FF;  /* inline text links and link-styled controls. */
  --color-secondary: #F55C15;  /* 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: #00F575;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #1C1624;
  --text-h1: 48px;
  --text-h2: 32px;
  --text-body: 14px;
  --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 #00F575 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #1C1624;
  --surface: #282230;
  --border: #3B3642;
  --text: #ECECEE;
  --text-muted: #9C9AA1;
  --primary: #00F575;  /* primary brand / action color. */
  --accent: #00F575;  /* 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: #B997FF;  /* inline text links and link-styled controls. */
  --secondary: #F55C15;  /* 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: #00F575;  /* primary-button fill — the main call-to-action color. */
  --button-text: #1C1624;
  --radius: 12px;
  --radius-button: 12px;
}