# ©Public Image — Style Reference
> Editorial White Space
**Theme:** light
The Public Image design system is a monochrome, high-contrast visual identity centered around the interplay of stark black text on a clean white canvas. Its aesthetic is minimal and editorial, relying heavily on refined typography to convey sophistication. Spacing is comfortable, allowing elements to breathe without feeling sparse, and the overall impression is one of understated luxury and directness.
## Tokens — Colors
| Name | Value | Token | Role |
|------|-------|-------|------|
| Canvas White | `#ffffff` | `--color-canvas-white` | Primary page backgrounds, surface fills, unadorned surfaces |
| Midnight Ink | `#000000` | `--color-midnight-ink` | Primary text, informational icons, ghost button borders, essential outlines |
## Tokens — Typography
### ItalianGaramondW01-Roma — Primary body text, headers, and general content. Its traditional serif form provides an editorial, classic feel. · `--font-italiangaramondw01-roma`
- **Substitute:** Garamond
- **Weights:** 400
- **Sizes:** 22px
- **Line height:** 1.14
- **Letter spacing:** -0.46px at 22px
- **Role:** Primary body text, headers, and general content. Its traditional serif form provides an editorial, classic feel.
### ItalianGaramondW01-Ital — Italic text for links and subtle emphasis, maintaining the traditional serif aesthetic. · `--font-italiangaramondw01-ital`
- **Substitute:** Garamond Italic
- **Weights:** 400
- **Sizes:** 22px
- **Line height:** 1.14
- **Letter spacing:** -0.46px at 22px
- **Role:** Italic text for links and subtle emphasis, maintaining the traditional serif aesthetic.
## Tokens — Spacing & Shapes
**Base unit:** 4px
**Density:** comfortable
### Spacing Scale
| Name | Value | Token |
|------|-------|-------|
| 20 | 20px | `--spacing-20` |
### Border Radius
| Element | Value |
|---------|-------|
| none | 0px |
### Layout
- **Section gap:** 40px
- **Card padding:** 20px
- **Element gap:** 20px
## Components
### Ghost Border Button
**Role:** Interactive elements, secondary actions, navigation items.
Uses Midnight Ink (#000000) for text and border. No background fill. Border thickness is 1px or 2px solid. Text uses ItalianGaramondW01-Roma at 22px, weight 400. Padding of 20px around content is implied.
### Plain Text Link
**Role:** Inline navigation, emphasized text, contact information.
Utilizes ItalianGaramondW01-Ital at 22px, weight 400, in Midnight Ink (#000000) with a letter-spacing of -0.46px. Underline is not consistently present, relying on italics for distinction.
## Do's and Don'ts
### Do
- Always use Canvas White (#ffffff) for dominant page backgrounds.
- Render all text in Midnight Ink (#000000) for high contrast and legibility.
- Prefer ItalianGaramondW01-Roma (or Garamond substitute) weight 400 for all primary typographic content.
- Apply -0.023em letter-spacing to all text elements using ItalianGaramondW01-Roma and ItalianGaramondW01-Ital to enhance the editorial feel.
- Maintain a clear separation between content blocks using implied 20px padding or spacing values.
- Use 1px or 2px solid Midnight Ink (#000000) borders for subtle element definition, eschewing heavy outlines or shadows.
- Emphasize links and interactive elements by switching to ItalianGaramondW01-Ital.
### Don't
- Do not introduce additional saturated colors; maintain the monochrome palette of black and white.
- Avoid using drop shadows or complex elevation; the design relies on flat, border-defined surfaces.
- Do not deviate from the specified Garamond-based typography for headlines or body text.
- Do not use generic sans-serif fonts; the serif identity is central to the brand.
- Do not overcrowd the layout; ensure ample white space for a premium feel.
- Do not use gradients; the system is built on solid, flat colors.
## Layout
The page exhibits a clear full-bleed horizontal structure while reserving a white canvas on the left. Content is primarily centered within the available column, creating a strong vertical axis. The hero section, if present, would likely feature a prominent visual (like the model) against a solid background. Sections appear to flow continuously without explicit dividers, relying on shifts in content type and comfortable spacing to define visual rhythm. The layout suggests a single-column stacking of content, prioritizing large, impactful visuals with concise textual accompaniments. Navigation seems minimal, possibly limited to discrete text links within the primary content area.
## Agent Prompt Guide
Quick Color Reference:
- text: #000000
- background: #ffffff
- border: #000000
- accent: no distinct accent color
- primary action: no distinct CTA color
Example Component Prompts:
- Create a simple header containing copyright text: Black text '#000000' in ItalianGaramondW01-Roma, weight 400, size 22px, line-height 1.14, letter-spacing -0.46px.
- Render a contact link: Text '#000000' in ItalianGaramondW01-Ital, weight 400, size 22px, line-height 1.14, letter-spacing -0.46px. The link text is 'services[at]public-image.co'.
- Design a ghost button for navigation: Border 1px solid #000000, text '#000000' ItalianGaramondW01-Roma, weight 400, size 22px, line-height 1.14, letter-spacing -0.46px. Padding of approximately 20px horizontally and vertically.
## Similar Brands
- **Acne Studios** — Similar high-contrast monochrome aesthetic and reliance on editorial typography.
- **Bottega Veneta (older campaigns)** — Minimalist visual identity with strong emphasis on product and clean backgrounds, little to no ornamentation.
- **The Row** — Understated luxury conveyed through refined typography, ample white space, and a subdued color palette.
- **Figma** — Stark black and white interface with highly functional components and precise typographic hierarchy.
## Quick Start
### CSS Custom Properties
```css
:root {
/* Colors */
--color-canvas-white: #ffffff;
--color-midnight-ink: #000000;
/* Typography — Font Families */
--font-italiangaramondw01-roma: 'ItalianGaramondW01-Roma', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
--font-italiangaramondw01-ital: 'ItalianGaramondW01-Ital', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
/* Typography — Scale */
--text-xl: 22px;
--leading-xl: 1.14;
/* Typography — Weights */
--font-weight-regular: 400;
/* Spacing */
--spacing-unit: 4px;
--spacing-20: 20px;
/* Layout */
--section-gap: 40px;
--card-padding: 20px;
--element-gap: 20px;
/* Named Radii */
--radius-none: 0px;
}
```
### Tailwind v4
```css
@theme {
/* Colors */
--color-canvas-white: #ffffff;
--color-midnight-ink: #000000;
/* Typography */
--font-italiangaramondw01-roma: 'ItalianGaramondW01-Roma', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
--font-italiangaramondw01-ital: 'ItalianGaramondW01-Ital', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
/* Typography — Scale */
--text-xl: 22px;
--leading-xl: 1.14;
/* Spacing */
--spacing-20: 20px;
}
```
Gallery White Box – stark,…
Gallery Wall Catalog: A stark,…
white gallery, black ink
Gallery space, stark and bold.
High Fashion Blank Canvas — a…
Monochromatic gallery exhibit.
monochromatic editorial starkness
Editorial canvas, bold type
Minimalist editorial canvas; stark…
Monochromatic cinematic gallery.
Ethereal canvas with typographic…
Monochromatic architectural…
White canvas, sharp monochrome…
monochrome editorial canvas
Black & White Blueprint: A stark,…
Gallery Canvas, Monochromatic Depth
Industrial Print Workshop: stark…
Minimalist gallery canvas —…
Black canvas, neon spark. A…
monochromatic gallery, precise…