Endnote · How this was made

Weather from arithmetic, in three passes

An honest account of how an AI agent designed and built this atlas: the concept, the actual techniques, and how you could prompt one to do it again.

The concept

NIMBUS treats the browser like a bound folio of sky plates. Six full-viewport scenes, each a different weather system generated live, each paired with an original haiku and one line of real meteorology. The design problem was holding six unrelated palettes together, which the type system solves: Newsreader italic for every verse, Instrument Sans light for every label, loaded from fonts.bunny.net. Nothing here is a photograph or an AI-generated image; every pixel is drawn by code.

How the skies are drawn

Each plate owns one 2D <canvas> and a small particle system, written in plain JavaScript with no libraries:

One shared requestAnimationFrame loop drives everything, but an IntersectionObserver gates it so only the visible plate animates. Scroll-snap turns each viewport into a page. As you scroll, the header and nav ink interpolate between per-plate palettes, so the chrome always sits legibly on the sky beneath it. Under prefers-reduced-motion, every scene renders once as a still painting, mid-lightning-strike included.

The three passes

Pass one screenshot of the NIMBUS cover: the wordmark over a twilight gradient
Pass 1 · The cover held up on first render

The build ran a strict loop: serve locally, screenshot six viewports with Playwright, read every image, then fix what the pictures proved. Pass one caught canvases rendering blank before their first scroll (fixed with a primer frame at resize), fog banks showing rectangular seams (fixed by feathering the sprite edges), and haiku lines wrapping mid-phrase. Pass two and three were pure art direction: cloud shapes, snow contrast, spacing rhythm, mobile type.

Pass one screenshot of Plate IV, Fog, with visible rectangular seams in the fog banks
Pass 1 · Plate IV, seams still visible in the fog banks

Prompt it yourself

"Build a one-page atlas of six full-viewport generative skies on 2D canvas: dusk clouds, rain with timed lightning, accumulating snow, drifting fog, sine-ribbon aurora, meteor starfield. Pair each with an original haiku in Newsreader italic and one real meteorological note. Use scroll-snap, per-plate palette interpolation for the chrome, static painted fallbacks for reduced motion, and screenshot every plate at desktop and 390 px before calling anything done."

The last clause is the one that matters.