# Block — Style Reference
> monochromatic minimalist canvas
**Theme:** light
Block's design system embodies unadorned clarity: a stark white canvas serves as the backdrop for precise, centered typography. The visual language centers on minimal distraction, prioritizing content with a clean, almost ascetic aesthetic. Interaction is subtle, with elements distinguished primarily through typography and placement rather than color or elaborate surfacing.
## Tokens — Colors
| Name | Value | Token | Role |
|------|-------|-------|------|
| Canvas White | `#ffffff` | `--color-canvas-white` | Page backgrounds, surface base layer |
| Absolute Black | `#000000` | `--color-absolute-black` | Primary text, navigation links, icons, borders, and decorative elements. This single dark hue defines all foreground content against the white canvas |
## Tokens — Typography
### Cash Sans — Primary brand typeface for all headings and UI elements. Its unique geometry contributes to the brand's distinctive, slightly technical yet approachable feel. The restrained weight maintains the system's lightweight visual character. · `--font-cash-sans`
- **Substitute:** Inter
- **Weights:** 400
- **Sizes:** 12px, 16px, 30px
- **Line height:** 1.20, 1.26, 1.40
- **Letter spacing:** 0.083em at 12px, 0.007em at 16px, normal at 30px
- **Role:** Primary brand typeface for all headings and UI elements. Its unique geometry contributes to the brand's distinctive, slightly technical yet approachable feel. The restrained weight maintains the system's lightweight visual character.
### Times — Limited use for body text, providing a classic counterpoint to the more contemporary Cash Sans. Its use appears highly curated. · `--font-times`
- **Substitute:** Times New Roman
- **Weights:** 400
- **Sizes:** 16px
- **Line height:** 1.20
- **Role:** Limited use for body text, providing a classic counterpoint to the more contemporary Cash Sans. Its use appears highly curated.
### Type Scale
| Role | Size | Line Height | Letter Spacing | Token |
|------|------|-------------|----------------|-------|
| caption | 12px | 1.26 | 0.996px | `--text-caption` |
| body | 16px | 1.2 | 0.112px | `--text-body` |
| heading | 30px | 1.4 | — | `--text-heading` |
## Tokens — Spacing & Shapes
**Density:** comfortable
### Spacing Scale
| Name | Value | Token |
|------|-------|-------|
| 10 | 10px | `--spacing-10` |
| 17 | 17px | `--spacing-17` |
| 30 | 30px | `--spacing-30` |
| 35 | 35px | `--spacing-35` |
| 100 | 100px | `--spacing-100` |
### Border Radius
| Element | Value |
|---------|-------|
| none | 0px |
### Layout
- **Card padding:** 0px
- **Element gap:** 30-35px
## Components
### Navigation Link
**Role:** Top and bottom navigation items.
Uses Cash Sans, size 12px for primary nav and 16px for footer sub-nav, weight 400, color Absolute Black (#000000). Padding is 17px horizontal for top nav items. No visible borders or backgrounds.
### Centred Brand Headline
**Role:** Central page headline for brand messaging.
Centered text using Cash Sans, size 30px, weight 400, color Absolute Black (#000000), line-height 1.4. This is a prominent focal point for key messages.
## Do's and Don'ts
### Do
- Use Canvas White (#ffffff) for all primary backgrounds and surfaces.
- Apply Absolute Black (#000000) for all text, icons, and borders.
- Prioritize Cash Sans for all headings and UI text content.
- Center-align primary headlines and section content where appropriate to reinforce the focused aesthetic.
- Maintain generous vertical spacing between sections, following the 215-675px range.
- Ensure navigation links use 17px horizontal padding with no background or border.
- Avoid any border-radius; elements should have sharp, rectangular edges.
### Don't
- Do not introduce any additional colors for UI elements; strictly adhere to the white and black palette.
- Avoid decorative gradients or shadows; the design relies on flatness and strong contrast.
- Do not use Times for prominent headings or UI elements; restrict its use to specific body text instances.
- Do not vary font weights; Cash Sans and Times should consistently use weight 400.
- Avoid dense, packed layouts; embrace generous negative space around elements.
- Do not use border-radius for any component; all corners should be 0px.
## Imagery
This site uses no visible imagery on the main page. The visual system is purely typographic and layout-driven, relying on a content-first, minimalist approach that directs full attention to the text.
## Layout
The page maintains a full-bleed layout with a centered content approach rather than a fixed max-width container, especially for the main content areas. The hero features a large, centered headline accompanied by a simple icon, dominating the initial view. Sections are vertically distinct with significant spacing (215-675px), creating a calm rhythm. Content is primarily stacked and centered, with a clear hierarchy driven by font size and placement. Navigation is handled by a minimal top bar and a similar footer, both text-based and centered to the content axis.
## 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 top navigation bar: Canvas White background, links in Cash Sans 12px, weight 400, Absolute Black (#000000) color, with 17px horizontal padding on each link.
Create a central brand statement: 'block builds technology for economic empowerment' using Cash Sans 30px, weight 400, line-height 1.4, Absolute Black (#000000) color, centered on the page.
Create a footer navigation: Cash Sans 16px, weight 400, Absolute Black (#000000) color, centered, with 35px horizontal spacing between items.
## Similar Brands
- **Apple** — Shares a monochromatic palette, extensive use of white space, and a focus on clean typography to convey premium simplicity.
- **Stripe** — Employs a minimalist UI, strong typographic hierarchy, and a highly restrained color palette to emphasize clarity and content.
- **Linear** — Known for its clean, efficient UI dominated by dark neutrals and sharp typography, similar to Block's precision-first approach.
- **Substack** — Simple, text-focused design with stark black and white contrast and minimal UI chrome to prioritize content.
## Quick Start
### CSS Custom Properties
```css
:root {
/* Colors */
--color-canvas-white: #ffffff;
--color-absolute-black: #000000;
/* Typography — Font Families */
--font-cash-sans: 'Cash Sans', 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-caption: 12px;
--leading-caption: 1.26;
--tracking-caption: 0.996px;
--text-body: 16px;
--leading-body: 1.2;
--tracking-body: 0.112px;
--text-heading: 30px;
--leading-heading: 1.4;
/* Typography — Weights */
--font-weight-regular: 400;
/* Spacing */
--spacing-10: 10px;
--spacing-17: 17px;
--spacing-30: 30px;
--spacing-35: 35px;
--spacing-100: 100px;
/* Layout */
--card-padding: 0px;
--element-gap: 30-35px;
/* Named Radii */
--radius-none: 0px;
}
```
### Tailwind v4
```css
@theme {
/* Colors */
--color-canvas-white: #ffffff;
--color-absolute-black: #000000;
/* Typography */
--font-cash-sans: 'Cash Sans', 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-caption: 12px;
--leading-caption: 1.26;
--tracking-caption: 0.996px;
--text-body: 16px;
--leading-body: 1.2;
--tracking-body: 0.112px;
--text-heading: 30px;
--leading-heading: 1.4;
/* Spacing */
--spacing-10: 10px;
--spacing-17: 17px;
--spacing-30: 30px;
--spacing-35: 35px;
--spacing-100: 100px;
}
```
Monochromatic Precision, Neon Pulse
Monochrome Grid Authority: a…
gallery wall contrast
Midnight data stream. Dark…
High-contrast precision blueprint.
Architectural Blueprint on White…
Monochromatic architectural…
Crisp monochrome canvas.
monochrome gallery canvas
Photographic Contact Sheet — a…

monochrome financial ledger
Type Foundry Blueprint: precision…
Minimalist editorial canvas; stark…
Crisp digital workbench
High-contrast monochrome blueprint
Architectural Blueprint Canvas
monochrome digital canvas,…
High-contrast typographic canvas
Black canvas, vivid pixel shimmer
Monochrome Gallery Canvas – a…