MozaikaDesign system

Photoroom — Design System

light · modern · medium · tailwind · confidence 92%

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

Tokens

Photoroom's decoded design system: background #F5F4F0, text #1A1A1A, accent #492FFB, link #155DFC, primary #492FFB; type scale h1 72px / h2 42px / body 17px; 4px spacing base; 10px base radius. The single interactive/action color is #492FFB — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#F5F4F0
surface#E7E6E3
border#D4D3CF
text#1A1A1A
text_muted#6D6C6B
primary#492FFB
accent#492FFB
link#155DFC
secondary#6A7282
button_bg#492FFB
button_text#FFFFFF

Using these colors

Typography

Spacing

Radii

Per-section tokens (11)

Export: DESIGN.md

# Photoroom — Design System

> light, modern, medium, tailwind

## Colors

| Role | Value |
|------|-------|
| bg | `#F5F4F0` |
| surface | `#E7E6E3` |
| border | `#D4D3CF` |
| text | `#1A1A1A` |
| text_muted | `#6D6C6B` |
| primary | `#492FFB` |
| accent | `#492FFB` |
| link | `#155DFC` |
| secondary | `#6A7282` |
| button_bg | `#492FFB` |
| button_text | `#FFFFFF` |

**Using these colors**

- **Action color** `#492FFB` — 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 `#492FFB` — one role, not several (your action color).
- **accent** `#492FFB` — 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** `#155DFC` — inline text links and link-styled controls.
- **secondary** `#6A7282` — 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: 42px
- body: 17px

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

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

## Radius
- base: 10px
- button: 10px

## Primary button
- bg `#492FFB` · text `#FFFFFF` · radius 10px

## 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 #492FFB — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #F5F4F0;
  --color-surface: #E7E6E3;
  --color-border: #D4D3CF;
  --color-text: #1A1A1A;
  --color-text-muted: #6D6C6B;
  --color-primary: #492FFB;  /* primary brand / action color. */
  --color-accent: #492FFB;  /* 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: #155DFC;  /* inline text links and link-styled controls. */
  --color-secondary: #6A7282;  /* 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: #492FFB;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FFFFFF;
  /* 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: 42px;
  --text-body: 17px;
  --radius-base: 10px;
  --radius-button: 10px;
  --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 #492FFB — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #F5F4F0;
  --surface: #E7E6E3;
  --border: #D4D3CF;
  --text: #1A1A1A;
  --text-muted: #6D6C6B;
  --primary: #492FFB;  /* primary brand / action color. */
  --accent: #492FFB;  /* 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: #155DFC;  /* inline text links and link-styled controls. */
  --secondary: #6A7282;  /* 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: #492FFB;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FFFFFF;
  --font-heading: "Roboto", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Roboto", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 10px;
  --radius-button: 10px;
}
/* fonts: Roboto — free, on Google. */