MozaikaDesign system

Reflect — Design System

dark · modern · medium · custom · confidence 90%

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

Tokens

Reflect's decoded design system: background #030014, text #F4F0FF, accent #030014, link #030014, primary #9382FF; type scale h1 72px / h2 56px / body 18px; 4px spacing base; 8px base radius. The single interactive/action color is #030014 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#030014
surface#110E22
border#272437
text#F4F0FF
text_muted#9894A5
primary#9382FF
accent#030014
link#030014
secondary#F4F0FF
button_bg#030014
button_text#F4F0FF

Using these colors

Typography

Spacing

Radii

Per-section tokens (5)

Export: DESIGN.md

# Reflect — Design System

> dark, modern, medium, custom

## Colors

| Role | Value |
|------|-------|
| bg | `#030014` |
| surface | `#110E22` |
| border | `#272437` |
| text | `#F4F0FF` |
| text_muted | `#9894A5` |
| primary | `#9382FF` |
| accent | `#030014` |
| link | `#030014` |
| secondary | `#F4F0FF` |
| button_bg | `#030014` |
| button_text | `#F4F0FF` |

**Using these colors**

- **Action color** `#030014` — 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`, `button_bg` are all `#030014` — one role, not several (your action color).
- **accent** `#030014` — 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** `#9382FF` — a brand color — but the call-to-action uses #030014, not this.
- **secondary** `#F4F0FF` — 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: **Roboto**
- Body: **Roboto**
- h1: 72px
- h2: 56px
- body: 18px

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

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

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

## Primary button
- bg `#030014` · text `#F4F0FF` · 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 #030014 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #030014;
  --color-surface: #110E22;
  --color-border: #272437;
  --color-text: #F4F0FF;
  --color-text-muted: #9894A5;
  --color-primary: #9382FF;  /* a brand color — but the call-to-action uses #030014, not this. */
  --color-accent: #030014;  /* 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: #030014;  /* inline text links — shares the action color. */
  --color-secondary: #F4F0FF;  /* 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: #030014;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #F4F0FF;
  /* 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;
  --text-h1: 72px;
  --text-h2: 56px;
  --text-body: 18px;
  --radius-base: 8px;
  --radius-button: 8px;
  --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 #030014 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #030014;
  --surface: #110E22;
  --border: #272437;
  --text: #F4F0FF;
  --text-muted: #9894A5;
  --primary: #9382FF;  /* a brand color — but the call-to-action uses #030014, not this. */
  --accent: #030014;  /* 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: #030014;  /* inline text links — shares the action color. */
  --secondary: #F4F0FF;  /* 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: #030014;  /* primary-button fill — the main call-to-action color. */
  --button-text: #F4F0FF;
  --font-heading: "Roboto", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Roboto", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 8px;
  --radius-button: 8px;
}
/* fonts: Roboto — free, on Google. */