A document's entire look — typography, colors, spacing, even where pages break — lives in one portable .mdpdfstyle file. And inside that file is nothing exotic: it's CSS.
The same document, restyled with one click in the inspector. Here are four of them — the content never changes, only the stylesheet.
Also in the library — and new releases keep adding more.
Open any style and you'll find ordinary, commented CSS — no proprietary syntax to learn.
.vaelora-doc, so your CSS styles the page, never the app.:root. Change a variable once and the whole document re-tones, alerts and all./* Compact — extends default.css. Dense, sans-serif, tight leading. */ .vaelora-doc { font-family: -apple-system, "SF Pro Text", "Helvetica Neue", sans-serif; line-height: 1.35; --heading-color: #111114; --link-color: #0a6cff; } .vaelora-doc h1 { font-size: 1.6em; } .vaelora-doc p { margin: 0 0 0.5em; } .vaelora-doc table { font-size: 0.85em; }
/* Chapters start on a fresh page… */ .vaelora-doc h1 { break-before: page; } /* …tables never split in half… */ .vaelora-doc table { break-inside: avoid; } /* …and headings keep their text. */ .vaelora-doc h2 { break-after: avoid; }
Vaelora's paginator honors the standard CSS fragmentation properties — break-before, break-after, and break-inside — in the live preview and the exported PDF alike.
The stylesheet menu is the whole library. Built-in styles are read-only, so there's always a known-good baseline — duplicate one and make it yours.
.mdpdfstyle file. Send it to a teammate and their exports match yours, pixel for pixel.Every style opens in a dedicated editor: your CSS on the left, live pages on the right. Preview against a specimen that exercises every element — or against your own open document, exactly as shown here.
This custom style is 38 lines long. It extends the Default, so it only says what's different — blue accents, ruled headings, a tinted table header. That's a complete, shareable document design.
Download Vaelora, duplicate a built-in, and nudge a variable. You'll have the idea in about a minute.
Free download · Requires macOS 14 Sonoma or later · Apple silicon & Intel