/**
 * The brand, in one place.
 *
 * The navy, the gold, the muted ink and the hairline were declared three times
 * over — once in landing.css, once in hub.css, once in activity.css — with the
 * same six hex values written out each time under three different variable
 * names. Changing the accent meant three edits, and two of them would
 * eventually be forgotten.
 *
 * Declared on the module roots rather than on :root, because :root is the
 * document and this stylesheet loads onto a page the theme is also rendering.
 * A plugin that sets a custom property on :root has reached outside its own
 * subtree and can be read by anything in the theme that happens to use the
 * same name.
 *
 * One accent override exists, applied inline when the site has chosen an
 * accent colour in settings. It sets --wptm-gold on the same selectors, so
 * every module follows a single setting.
 */

.wptm-lp,
.wptm-hub,
.wptm-act {
	--wptm-navy: #001e53;
	--wptm-gold: #f5a500;
	--wptm-ink: #5b6478;
	--wptm-muted: #6b7590;
	--wptm-faint: #8b93a6;
	--wptm-line: rgba(0, 30, 83, 0.1);
	--wptm-cream: #f5f1e8;
	--wptm-radius: 16px;
}
