MozaikaDesign system

Faire — Design System

light · professional · medium · custom · confidence 92%

Faire wholesales in boutique serif: Nantes at 52px/400 ('Find your next bestseller') in warm grey #333333, Graphik at 14px for the marketplace mechanics, zero-radius text buttons. Shopkeeper photography and product-shelf imagery carry the brand — B2B wholesale styled like the independent stores it supplies, not the warehouses behind them.

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

Tokens

Faire's decoded design system: background #FBF8F6, text #333333, accent #F1F29F, link #FFD0B6, primary #F1F29F; type scale h1 52px / h2 38px / body 14px; 4px spacing base; 4px base radius. The single interactive/action color is #F1F29F — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FBF8F6
surface#EFECEA
border#DDDAD8
text#333333
text_muted#7F7D7D
primary#F1F29F
accent#F1F29F
link#FFD0B6
secondary#1A73E8
button_bg#F1F29F
button_text#333333

Using these colors

Typography

Spacing

Radii

Per-section tokens (10)

Export: DESIGN.md

# Faire — Design System

> light, professional, medium, custom

Faire wholesales in boutique serif: Nantes at 52px/400 ('Find your next bestseller') in warm grey #333333, Graphik at 14px for the marketplace mechanics, zero-radius text buttons. Shopkeeper photography and product-shelf imagery carry the brand — B2B wholesale styled like the independent stores it supplies, not the warehouses behind them.

## Colors

| Role | Value |
|------|-------|
| bg | `#FBF8F6` |
| surface | `#EFECEA` |
| border | `#DDDAD8` |
| text | `#333333` |
| text_muted | `#7F7D7D` |
| primary | `#F1F29F` |
| accent | `#F1F29F` |
| link | `#FFD0B6` |
| secondary | `#1A73E8` |
| button_bg | `#F1F29F` |
| button_text | `#333333` |

**Using these colors**

- **Action color** `#F1F29F` — 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 `#F1F29F` — one role, not several (your action color).
- **accent** `#F1F29F` — 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** `#FFD0B6` — fails contrast on the background (~1.3:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference).
- **secondary** `#1A73E8` — 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: **Nantes** _(free fallback: Newsreader)_
- Body: **Graphik** _(free fallback: Inter)_
- h1: 52px
- h2: 38px
- body: 14px

> **Fonts —** Nantes may be proprietary — safe free fallback: Newsreader (Google Fonts). Graphik is proprietary — closest free match: Inter (Google). Load Inter; keep Graphik first so licensed users still get it.

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

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

## Primary button
- bg `#F1F29F` · text `#333333` · radius 4px

## 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 #F1F29F — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FBF8F6;
  --color-surface: #EFECEA;
  --color-border: #DDDAD8;
  --color-text: #333333;
  --color-text-muted: #7F7D7D;
  --color-primary: #F1F29F;  /* primary brand / action color. */
  --color-accent: #F1F29F;  /* 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: #FFD0B6;  /* fails contrast on the background (~1.3:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
  --color-secondary: #1A73E8;  /* 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: #F1F29F;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #333333;
  /* fonts: Nantes may be proprietary — safe free fallback: Newsreader (Google Fonts). Graphik is proprietary — closest free match: Inter (Google). Load Inter; keep Graphik first so licensed users still get it. */
  --font-heading: "Nantes", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Graphik", "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 52px;
  --text-h2: 38px;
  --text-body: 14px;
  --radius-base: 4px;
  --radius-button: 4px;
  --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 #F1F29F — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FBF8F6;
  --surface: #EFECEA;
  --border: #DDDAD8;
  --text: #333333;
  --text-muted: #7F7D7D;
  --primary: #F1F29F;  /* primary brand / action color. */
  --accent: #F1F29F;  /* 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: #FFD0B6;  /* fails contrast on the background (~1.3:1) — this is a dark UI color, NOT a readable link; use the text or action color for links (verify against the reference). */
  --secondary: #1A73E8;  /* 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: #F1F29F;  /* primary-button fill — the main call-to-action color. */
  --button-text: #333333;
  --font-heading: "Nantes", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "Graphik", "Inter", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 4px;
  --radius-button: 4px;
}
/* fonts: Nantes may be proprietary — safe free fallback: Newsreader (Google Fonts). Graphik is proprietary — closest free match: Inter (Google). Load Inter; keep Graphik first so licensed users still get it. */