# Tomorrow Happens — Style Reference
> typographic whisper on white space
**Theme:** light
Tomorrow Happens employs a stark, editorial white-space aesthetic, prioritizing text and subtle visual cues over heavy graphical elements. The system emphasizes a high-contrast monochromatic palette with light, breathable typography. Interaction is hinted through understated borders and minimal sizing, creating a sense of quiet authority and focus on content.
## Tokens — Colors
| Name | Value | Token | Role |
|------|-------|-------|------|
| Canvas White | `#ffffff` | `--color-canvas-white` | Page backgrounds, large empty spaces – providing a clean, expansive canvas |
| Ink Black | `#000000` | `--color-ink-black` | Dark borders and separators for elevated surfaces and inverted UI. Do not promote it to the primary CTA color |
| Muted Ash | `#808080` | `--color-muted-ash` | Subtle borders and dividers for navigation items, creating a delicate visual structure without harshness |
## Tokens — Typography
### Reckless Neue — Headlines and prominent text – its light 200 weight provides an airy, almost whispered presence that is distinct from typical bold headings. · `--font-reckless-neue`
- **Substitute:** Source Serif Pro
- **Weights:** 200
- **Sizes:** 39px
- **Line height:** 1.00, 1.20, 1.50
- **Role:** Headlines and prominent text – its light 200 weight provides an airy, almost whispered presence that is distinct from typical bold headings.
### ABC Diatype — Body text, navigation labels, and interface elements – its compact nature allows for dense information delivery without feeling crowded. · `--font-abc-diatype`
- **Substitute:** Inter
- **Weights:** 400, 500
- **Sizes:** 9px, 12px
- **Line height:** 1.00, 1.50
- **Role:** Body text, navigation labels, and interface elements – its compact nature allows for dense information delivery without feeling crowded.
### Type Scale
| Role | Size | Line Height | Letter Spacing | Token |
|------|------|-------------|----------------|-------|
| display | 39px | 1 | — | `--text-display` |
## Tokens — Spacing & Shapes
**Base unit:** 6px
**Density:** compact
### Spacing Scale
| Name | Value | Token |
|------|-------|-------|
| 4 | 4px | `--spacing-4` |
| 11 | 11px | `--spacing-11` |
| 60 | 60px | `--spacing-60` |
### Border Radius
| Element | Value |
|---------|-------|
| buttons | 0px |
### Layout
- **Section gap:** 60px
- **Card padding:** 0px
- **Element gap:** 4px
## Components
### Ghost Navigation Link
**Role:** Main navigation links
Ghost button with Ink Black text, a 0px border-radius, and a subtle Muted Ash top border on hover. Padding is 4px top, 0px right, 11px bottom, 0px left. Uses ABC Diatype font.
### Underlined Navigation Link
**Role:** Active or highlighted navigation item
Ghost button with Ink Black text and a solid Ink Black bottom border. No border-radius or padding. Uses ABC Diatype font.
## Do's and Don'ts
### Do
- Prioritize text content and negative space over graphic elements.
- Use Ink Black (#000000) for all primary text and critical borders to maintain high contrast.
- Deploy Reckless Neue at weight 200 for headings to convey a delicate, considered tone.
- Structure interactive elements with subtle borders like Muted Ash (#808080) for visual hierarchy without visual weight.
- Maintain a compact information density for body and navigation text using ABC Diatype, leveraging its tight line heights.
- Employ `0px` border-radius universally for a sharp, angular aesthetic.
- Ensure generous `60px` vertical spacing between major sections for breathability.
### Don't
- Avoid using bold or heavy font weights for headlines; the 200 weight of Reckless Neue is a signature.
- Do not introduce strong accent colors for interactive elements; stick to the monochromatic palette for primary actions.
- Refrain from applying soft shadows or any elevation that disrupts the flat, two-dimensional aesthetic.
- Do not use rounded corners on any component; `0px` radius is central to the visual character.
- Never overcrowd content; allow ample negative space, adhering to the expansive white canvas principle.
- Avoid decorative imagery that competes with the textual focus, maintaining an 'icons-only' approach where necessary.
- Do not use any of the predefined `--wp--preset--color` values, as they are not part of the active brand palette.
## Imagery
The visual language is essentially 'no imagery, pure UI' with text-dominant screens. Icons, when present, are minimal (e.g., a simple '+' sign), outlined, and monochromatic, serving purely functional, navigational roles. There are no photographs, illustrations, product screenshots, or 3D renders. The density is extremely text-dominant, with generous white space around minimal text elements.
## Layout
The page primarily uses a max-width contained model where the main content is centered. The hero pattern features a centered headline with secondary text cascading around it, creating a text-based, editorial focus over a full-bleed white background. Section rhythm is dictated by clear vertical spacing of `60px` between potential content blocks. Content arrangement is primarily centered stacks for large text, and implicit two-column layouts for navigation. The navigation is minimal, appearing as a vertical list of ghost links on the left side, indicating a sidebar or sticky menu approach rather than a traditional top navigation bar. Density is extremely spacious, with ample breathing room between elements and sections.
## Agent Prompt Guide
Quick Color Reference:
text: #000000
background: #ffffff
border: #808080
accent: no distinct accent color
primary action: no distinct CTA color
Example Component Prompts:
1. Create a navigational list item: ABC Diatype, weight 400, size 12px, Ink Black text, a 0.5px solid Muted Ash top border (on hover), and 0px padding left, 0px right, 4px top, 11px bottom.
2. Design a central expressive headline: 'Tomorrow an opportunity slips away' using Reckless Neue, weight 200, size 39px, Ink Black text, centered on a Canvas White background.
3. Create a secondary text block: 'builds on the work of today' using ABC Diatype, weight 400, size 12px, Ink Black text, with a line height of 1.5, slightly lighter color than primary text.
## Similar Brands
- **AIGA Journal** — Prominent use of a serif typeface for primary text and headings, combined with an abundance of white space and a focus on editorial content.
- **The New York Times (digital)** — Strong emphasis on typographic hierarchy, monochromatic color palette, and minimal graphical interference to prioritize information.
- **Various design portfolios (minimalist)** — Often leverage a very limited color palette, ample negative space, and custom typography to create a high-end, editorial feel.
- **Future Fonts** — Focus on showcasing typography with clean layouts, minimal UI, and a high contrast aesthetic.
## Quick Start
### CSS Custom Properties
```css
:root {
/* Colors */
--color-canvas-white: #ffffff;
--color-ink-black: #000000;
--color-muted-ash: #808080;
/* Typography — Font Families */
--font-reckless-neue: 'Reckless Neue', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
--font-abc-diatype: 'ABC Diatype', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
/* Typography — Scale */
--text-display: 39px;
--leading-display: 1;
/* Typography — Weights */
--font-weight-extralight: 200;
--font-weight-regular: 400;
--font-weight-medium: 500;
/* Spacing */
--spacing-unit: 6px;
--spacing-4: 4px;
--spacing-11: 11px;
--spacing-60: 60px;
/* Layout */
--section-gap: 60px;
--card-padding: 0px;
--element-gap: 4px;
/* Named Radii */
--radius-buttons: 0px;
}
```
### Tailwind v4
```css
@theme {
/* Colors */
--color-canvas-white: #ffffff;
--color-ink-black: #000000;
--color-muted-ash: #808080;
/* Typography */
--font-reckless-neue: 'Reckless Neue', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
--font-abc-diatype: 'ABC Diatype', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
/* Typography — Scale */
--text-display: 39px;
--leading-display: 1;
/* Spacing */
--spacing-4: 4px;
--spacing-11: 11px;
--spacing-60: 60px;
}
```
High-contrast editorial publication
Warm parchment elegance.
Gallery of Type on White Canvas
alpine starkness on white canvas
Industrial Print Workshop: stark…
Editorial Minimal Canvas — Large,…
Kinetic typographic canvases

Editorial White Canvas
Raw concrete with meticulous…
Editorial archive, high contrast.
Minimalist editorial canvas; stark…
Minimalist gallery wall. Expansive…
Editorial Art House
Editorial canvas, bold type
Architectural blueprint on white…

High-contrast geometric clarity
Type foundry's bold canvas: white…
Sculpted Minimalism on Canvas. An…
Black & White Blueprint: A stark,…
Architectural blueprint on warm…