# Marx Design — Style Reference
> monochrome cinematic canvas
**Theme:** dark
Marx Design uses a stark, high-contrast visual language with a focus on bold typography and achromatic tones. The design system emphasizes clarity and directness through prominent text elements on a predominantly black background. Visual interest is derived from strong typographic presence and the occasional use of black-and-white imagery, creating an atmosphere that is both authoritative and understated.
## Tokens — Colors
| Name | Value | Token | Role |
|------|-------|-------|------|
| Obsidian Black | `#000000` | `--color-obsidian-black` | Page backgrounds, prominent text, button borders |
| Canvas White | `#ffffff` | `--color-canvas-white` | Major headings, interactive text (links, buttons), text on black backgrounds |
| Ash Gray | `#ece8e7` | `--color-ash-gray` | Subtle border elements, secondary text, muted links |
## Tokens — Typography
### untitled — General body text, navigation items, secondary information. Its consistent weight contributes to the system's sense of calm authority. · `--font-untitled`
- **Substitute:** Inter
- **Weights:** 400
- **Sizes:** 17px, 19px
- **Line height:** 1.29, 1.37
- **Letter spacing:** normal
- **OpenType features:** `"kern"`
- **Role:** General body text, navigation items, secondary information. Its consistent weight contributes to the system's sense of calm authority.
### black — Primary headings and display text. Its large size and tight tracking make a strong, unmissable statement. · `--font-black`
- **Substitute:** Anton
- **Weights:** 400
- **Sizes:** 108px
- **Line height:** 1.00
- **Letter spacing:** -0.0250em
- **OpenType features:** `"kern"`
- **Role:** Primary headings and display text. Its large size and tight tracking make a strong, unmissable statement.
### medium — Specific button text, often for interactive elements requiring emphasis without increased weight. · `--font-medium`
- **Substitute:** Inter
- **Weights:** 400
- **Sizes:** 19px
- **Line height:** 1.37
- **Letter spacing:** -0.0350em
- **OpenType features:** `"kern"`
- **Role:** Specific button text, often for interactive elements requiring emphasis without increased weight.
### Type Scale
| Role | Size | Line Height | Letter Spacing | Token |
|------|------|-------------|----------------|-------|
| body | 17px | 1.29 | — | `--text-body` |
| body-lg | 19px | 1.37 | — | `--text-body-lg` |
| display | 108px | 1 | -1.08px | `--text-display` |
## Tokens — Spacing & Shapes
**Base unit:** 6px
**Density:** comfortable
### Spacing Scale
| Name | Value | Token |
|------|-------|-------|
| 18 | 18px | `--spacing-18` |
### Border Radius
| Element | Value |
|---------|-------|
| cards | 0px |
| buttons | 0px for ghost, 50% for filled |
### Layout
- **Card padding:** 18px
- **Element gap:** 6px
## Components
### Ghost Navigation Button
**Role:** Primary navigation and menu items.
Text in Canvas White (#ffffff) on an Obsidian Black (#000000) background, with a 'border' that is essentially the text itself. No padding or border-radius, maintaining a direct, stark appearance. Inherits the base font style for navigation clarity.
### Filled Circular Button
**Role:** Call to action or prominent interaction.
A contrasting button with an Obsidian Black (#000000) background and Canvas White (#ffffff) text, featuring a border-radius of 50% to create a distinct circular shape. No explicit padding is defined, relying on text size and shape for visual weight.
### Body Text Container
**Role:** Wrapping descriptive content and secondary information.
Displays text in Ash Gray (#ece8e7) on an Obsidian Black (#000000) background. It uses a base font at sizes like 17px or 19px with default line spacing. This container ensures readability for longer passages while maintaining the monochrome theme.
## Do's and Don'ts
### Do
- Prioritize Obsidian Black (#000000) for backgrounds and main body text to create a high-contrast foundation.
- Use Canvas White (#ffffff) exclusively for primary headings and interactive text on dark backgrounds to ensure maximum prominence.
- Apply the 'black' font at 108px with -0.0250em letter-spacing for all significant hero headlines.
- Utilize Ash Gray (#ece8e7) for all subtle UI text, borders on neutral elements, and secondary content.
- Employ a border-radius of 0px for all non-interactive elements and informational blocks to maintain a sharp, architectural edge.
- Ensure all text (except headings) uses 'untitled' font with 'kern' feature settings for consistent body typography.
- For primary navigation, use link-styled text in Canvas White (#ffffff) on Obsidian Black (#000000) without explicit padding or borders.
### Don't
- Avoid using highly saturated colors for functional UI elements; color is reserved for content or specific brand applications outside general UI.
- Do not introduce gradients into core UI components; the system relies on flat colors and strong contrast.
- Refrain from using any borders with a radius greater than 0px on cards or section dividers; maintain sharp, defined edges.
- Do not stack multiple shadow layers; the system intentionally avoids depth through elevation for a flat aesthetic.
- Do not deviate from the specified letter-spacing for headlines and button text; precise tracking is key to the typographic identity.
- Avoid mixed alignment or playful spacing; maintain a sense of order and directness through consistent grid-like structures and centered content.
- Do not use font weights other than 400; the system achieves distinctiveness through size and tracking rather than varied weight.
## Imagery
This design system primarily utilizes black-and-white photography, often historical or abstract, serving as a decorative and atmospheric element rather than explanatory content. Images are contained within the layout, not full-bleed, and generally appear without rounded corners, maintaining the sharp aesthetic. The imagery density is low, making text the dominant visual element on the page.
## Layout
The page structure is full-bleed, dominated by a stark Obsidian Black (#000000) background. Content, including the hero section, is centrally aligned. Headings utilize extremely large typography for immediate impact. The design avoids complex grids for content presentation, favoring stacked, centered elements with generous vertical spacing between sections. Navigation is minimal, presented as a 'Menu' link in the top right corner.
## Agent Prompt Guide
**Quick Color Reference:**
text: #ffffff
background: #000000
border: #000000
accent: no distinct accent color
primary action: no distinct CTA color
**3-5 Example Component Prompts:**
1. Create a hero section: Obsidian Black (#000000) background. Heading 'black' font, 108px, Canvas White (#ffffff), letter-spacing -0.0250em. Subtext 'untitled' font, 19px, Ash Gray (#ece8e7), normal letter-spacing, line-height 1.37.
2. Create a ghost navigation link: 'untitled' font, 19px, Canvas White (#ffffff), normal letter-spacing, line-height 1.37. No background, no border, no radius. Element should be in the top right of the section.
3. Create a circular interaction button: Obsidian Black (#000000) background. Canvas White (#ffffff) text, 'medium' font, 19px, letter-spacing -0.0350em. Border-radius 50%, no border color initially visible, no padding.
## Similar Brands
- **AIGA** — Similar high-contrast black-on-white/white-on-black aesthetic with bold, direct typography.
- **Pentagram** — Employs a stark, minimal design with emphasis on strong photographic elements and crisp typography.
- **Verlet** — Relies on a monochrome palette and confident, large-scale typography to establish a serious and design-focused presence.
## Quick Start
### CSS Custom Properties
```css
:root {
/* Colors */
--color-obsidian-black: #000000;
--color-canvas-white: #ffffff;
--color-ash-gray: #ece8e7;
/* Typography — Font Families */
--font-untitled: 'untitled', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
--font-black: 'black', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
--font-medium: 'medium', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
/* Typography — Scale */
--text-body: 17px;
--leading-body: 1.29;
--text-body-lg: 19px;
--leading-body-lg: 1.37;
--text-display: 108px;
--leading-display: 1;
--tracking-display: -1.08px;
/* Typography — Weights */
--font-weight-regular: 400;
/* Spacing */
--spacing-unit: 6px;
--spacing-18: 18px;
/* Layout */
--card-padding: 18px;
--element-gap: 6px;
/* Named Radii */
--radius-cards: 0px;
--radius-buttons: 0px for ghost, 50% for filled;
}
```
### Tailwind v4
```css
@theme {
/* Colors */
--color-obsidian-black: #000000;
--color-canvas-white: #ffffff;
--color-ash-gray: #ece8e7;
/* Typography */
--font-untitled: 'untitled', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
--font-black: 'black', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
--font-medium: 'medium', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
/* Typography — Scale */
--text-body: 17px;
--leading-body: 1.29;
--text-body-lg: 19px;
--leading-body-lg: 1.37;
--text-display: 108px;
--leading-display: 1;
--tracking-display: -1.08px;
/* Spacing */
--spacing-18: 18px;
}
```
Graphic Monochrome Canvas: crisp,…
Black canvas, stark typography
High-contrast digital canvas – a…
monochrome digital canvas, refined…
Minimalist canvas, bold typography.
Minimalist editorial canvas; stark…
Black & White Blueprint: A stark,…
Black & White Manifesto
High-contrast monochrome blueprint
Black canvas, typographic drama
High-contrast theatrical canvas

Minimalist digital gallery
Midnight canvas, silver thread
Black canvas, precise type
Dark canvas, bold blobs
Monochrome typographic canvas
monochrome gallery canvas
Photographic Contact Sheet — a…
Monochrome Gallery Canvas – a…
Architectural Blueprint on White…