MozaikaDesign system

Ghia — Design System

light · modern · medium · tailwind · confidence 92%

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

Tokens

Ghia's decoded design system: background #FEF6EE, text #0A0A0B, accent #EF6079, link #651C32, primary #FEF6EE; type scale h1 72px / h2 37.6px / body 12px; 4px spacing base; 9px base radius. The single interactive/action color is #EF6079 — used only on interactive or must-notice elements (buttons, links, key highlights), never on large fills.

Color roles

RoleValue
bg#FEF6EE
surface#EFE7E0
border#D9D2CB
text#0A0A0B
text_muted#666361
primary#FEF6EE
accent#EF6079
link#651C32
secondary#EF6079
button_bg#EF6079
button_text#FEF6EE

Using these colors

Typography

Spacing

Radii

Per-section tokens (10)

Export: DESIGN.md

# Ghia — Design System

> light, modern, medium, tailwind

## Colors

| Role | Value |
|------|-------|
| bg | `#FEF6EE` |
| surface | `#EFE7E0` |
| border | `#D9D2CB` |
| text | `#0A0A0B` |
| text_muted | `#666361` |
| primary | `#FEF6EE` |
| accent | `#EF6079` |
| link | `#651C32` |
| secondary | `#EF6079` |
| button_bg | `#EF6079` |
| button_text | `#FEF6EE` |

**Using these colors**

- **Action color** `#EF6079` — the single interactive color; it appears only on things you click or must notice (buttons, key highlights), never on large fills or backgrounds.
- `accent`, `secondary`, `button_bg` are all `#EF6079` — one role, not several (your action color).
- **accent** `#EF6079` — 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** `#FEF6EE` — a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #EF6079).
- **link** `#651C32` — inline text links and link-styled controls.

## Typography

- Heading: **FHA Condensed French** _(free fallback: Newsreader)_
- Body: **FHA Condensed French** _(free fallback: Newsreader)_
- h1: 72px
- h2: 37.6px
- body: 12px

> **Fonts —** FHA Condensed French may be proprietary — safe free fallback: Newsreader (Google Fonts).

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

## Radius
- base: 9px
- button: 16px

## Primary button
- bg `#EF6079` · text `#FEF6EE` · radius 16px

## 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 #EF6079 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --color-bg: #FEF6EE;
  --color-surface: #EFE7E0;
  --color-border: #D9D2CB;
  --color-text: #0A0A0B;
  --color-text-muted: #666361;
  --color-primary: #FEF6EE;  /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #EF6079). */
  --color-accent: #EF6079;  /* 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: #651C32;  /* inline text links and link-styled controls. */
  --color-secondary: #EF6079;  /* same color as the action (see accent). */
  --color-button-bg: #EF6079;  /* primary-button fill — the main call-to-action color. */
  --color-button-text: #FEF6EE;
  /* fonts: FHA Condensed French may be proprietary — safe free fallback: Newsreader (Google Fonts). */
  --font-heading: "FHA Condensed French", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "FHA Condensed French", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --text-h1: 72px;
  --text-h2: 37.6px;
  --text-body: 12px;
  --radius-base: 9px;
  --radius-button: 16px;
  --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 #EF6079 — the one interactive color; buttons/links/emphasis only, never large fills. */
  --bg: #FEF6EE;
  --surface: #EFE7E0;
  --border: #D9D2CB;
  --text: #0A0A0B;
  --text-muted: #666361;
  --primary: #FEF6EE;  /* a neutral UI color (chips, tags, icon fills, chrome), not the action color (action = #EF6079). */
  --accent: #EF6079;  /* 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: #651C32;  /* inline text links and link-styled controls. */
  --secondary: #EF6079;  /* same color as the action (see accent). */
  --button-bg: #EF6079;  /* primary-button fill — the main call-to-action color. */
  --button-text: #FEF6EE;
  --font-heading: "FHA Condensed French", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: "FHA Condensed French", "Newsreader", system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 9px;
  --radius-button: 16px;
}
/* fonts: FHA Condensed French may be proprietary — safe free fallback: Newsreader (Google Fonts). */