# Interaction — Style Reference
> Minimalist digital folio
**Theme:** light
The Isaac Powell system conveys a stark, almost monastic minimalism, using an extreme black-on-white polarity. Typography is consistently small and tracked tightly. The design is devoid of significant color or elevation, directing focus entirely onto content framed by sharp, unornamented boundaries. Interaction elements are subtle ghost outlines or simple text links, maintaining a subdued aesthetic.
## Tokens — Colors
| Name | Value | Token | Role |
|------|-------|-------|------|
| Canvas White | `#e5e7eb` | `--color-canvas-white` | Page backgrounds, subtle borders, inactive elements |
| Ink Black | `#000000` | `--color-ink-black` | Primary headings, body text, and icon fills on light surfaces. Do not promote it to the primary CTA color |
## Tokens — Typography
### Antique Legacy — All textual content, embodying a precise, almost engraved quality. · `--font-antique-legacy`
- **Substitute:** Times New Roman
- **Weights:** 400
- **Sizes:** 17px
- **Line height:** 1.25
- **Letter spacing:** -0.0250em
- **Role:** All textual content, embodying a precise, almost engraved quality.
### Times — Times — detected in extracted data but not described by AI · `--font-times`
- **Weights:** 400
- **Sizes:** 17px
- **Line height:** 1.25
- **Letter spacing:** -0.025
- **Role:** Times — detected in extracted data but not described by AI
## Tokens — Spacing & Shapes
**Base unit:** 4px
**Density:** comfortable
### Spacing Scale
| Name | Value | Token |
|------|-------|-------|
| 5 | 5px | `--spacing-5` |
| 12 | 12px | `--spacing-12` |
| 16 | 16px | `--spacing-16` |
| 48 | 48px | `--spacing-48` |
### Border Radius
| Element | Value |
|---------|-------|
| buttons | 9999px |
| navItems | 9999px |
### Layout
- **Section gap:** 48px
- **Card padding:** 0px
- **Element gap:** 12px
## Components
### Ghost Navigation Item
**Role:** Navigation links (e.g., 'Reel', 'Info')
Text link with `Ink Black` text. Inactive state: `Canvas White` background, no border. Active state: uses a small round `Ink Black` dot to indicate selection. Padding is minimal.
### Footer Text Link
**Role:** Informational links in the footer
Plain text link in `Ink Black` on `Canvas White` background, with no additional styling beyond underline on hover (not specified, but common for text links).
### Content Image Card
**Role:** Visual content display
Images are displayed without padding, borders, or shadows, directly on an `Ink Black` panel, creating a stark contrast and graphic separation from the `Canvas White` page background.
## Do's and Don'ts
### Do
- Prioritize stark black-on-white contrast across all UI elements.
- Apply Antique Legacy (or Times New Roman substitute) at 17px with -0.0250em letter-spacing for all text roles.
- Use 9999px border-radius for all interactive navigation elements and similar tags.
- Maintain a comfortable density with 12px for small element gaps and 48px for general section padding.
- Present content images flush within an `Ink Black` background, without borders or padding.
### Don't
- Do not introduce overt colors; restrict the palette to `Ink Black` and `Canvas White`.
- Avoid shadows or complex elevation; maintain a flat, two-dimensional aesthetic.
- Do not vary font sizes or weights for hierarchy; rely on layout and context.
- Refrain from using gradients or decorative backgrounds.
- Do not add extra padding or borders to content images; they should sit precisely on their `Ink Black` panel.
## Imagery
This site features product photography and graphic design mockups presented as content. The imagery is primarily monochromatic or desaturated, aligning with the minimal color palette. Images are treated as flat, rectangular blocks, often displayed against `Ink Black` panels that project them forward from the `Canvas White` page. There is no usage of rounded corners, abstract graphics, or decorative illustrations; the imagery is functional and directly showcases portfolio work.
## Layout
The page follows a centered, max-width layout with substantial whitespace. The header features minimalist, horizontally aligned navigation elements. Content sections are composed of large `Ink Black` rectangular blocks, each housing an image or graphic, contrasting sharply with the dominant `Canvas White` background. The footer is minimal, mirroring the header's text-based links. Vertical rhythm is established by significant visual separation between the header, image gallery section, and footer.
## Agent Prompt Guide
Quick Color Reference:
text: #000000
background: #e5e7eb
border: #e5e7eb
accent: no distinct accent color
primary action: no distinct CTA color
Example Component Prompts:
1. Create a primary navigation link titled 'Reel': use 'Antique Legacy' (or 'Times New Roman') at 17px, weight 400, color #000000, letter-spacing -0.0250em. Include a border on hover using #e5e7eb (1px solid) and a 9999px border-radius.
2. Design a footer information link 'Send An Email': use 'Antique Legacy' (or 'Times New Roman') at 17px, weight 400, color #000000, letter-spacing -0.0250em.
3. Build an image content block: set background to #000000. Place an image flush within, no padding or border, ensuring it is grayscale(1).
## Similar Brands
- **AIGA** — Similar focus on minimalist black-and-white typography and stark content presentation.
- **Dieter Rams' design principles documentation** — Adherence to an extremely stripped-down functional aesthetic, emphasizing stark contrast and content.
- **Are.na** — Content-focused, grid-like presentation with minimal UI chrome and a strong emphasis on visuals framed by clean lines.
## Quick Start
### CSS Custom Properties
```css
:root {
/* Colors */
--color-canvas-white: #e5e7eb;
--color-ink-black: #000000;
/* Typography — Font Families */
--font-antique-legacy: 'Antique Legacy', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
--font-times: 'Times', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
/* Typography — Scale */
--text-lg: 17px;
--leading-lg: 1.25;
/* Typography — Weights */
--font-weight-regular: 400;
/* Spacing */
--spacing-unit: 4px;
--spacing-5: 5px;
--spacing-12: 12px;
--spacing-16: 16px;
--spacing-48: 48px;
/* Layout */
--section-gap: 48px;
--card-padding: 0px;
--element-gap: 12px;
/* Border Radius */
--radius-full: 9999px;
/* Named Radii */
--radius-buttons: 9999px;
--radius-navitems: 9999px;
}
```
### Tailwind v4
```css
@theme {
/* Colors */
--color-canvas-white: #e5e7eb;
--color-ink-black: #000000;
/* Typography */
--font-antique-legacy: 'Antique Legacy', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
--font-times: 'Times', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
/* Typography — Scale */
--text-lg: 17px;
--leading-lg: 1.25;
/* Spacing */
--spacing-5: 5px;
--spacing-12: 12px;
--spacing-16: 16px;
--spacing-48: 48px;
/* Border Radius */
--radius-full: 9999px;
}
```

Minimalist digital gallery

White gallery canvas.
Minimalist digital canvas
Minimalist editorial canvas; stark…
Photographic Contact Sheet — a…
Academic monograph on a clean…
Gallery wall of stark contrasts
Minimalist Dark Canvas
Brutalism meets engineered…
monochromatic scholarly text
Archival Text on White. A single…
High-contrast monochrome blueprint
gallery wall contrast
Minimalist gallery wall. Expansive…
Minimalist textual canvas.…
Minimalist digital console.
alpine starkness on white canvas
Architectural Blueprint Precision
Architectural blueprint on…
Photographic gallery on parchment