/* memento_mori -- bare monospace, no role colours. Colour only; see * docs/THEMES.md. Every reading role resolves to the same plain * foreground -- no accent/muted/refrain distinction, just bare text on a * neutral dark ground. `#7a4a42` (dried blood) is reserved for the * error/alert accent only -- it must not be used for any other role. */ :root { --bg: #121212; /* austere near-black */ --fg: #c9c9c9; /* plain bone-grey */ --muted: #c9c9c9; /* = fg (verse numbers + citation render same as body) */ --accent: #c9c9c9; /* = fg (headings distinguished only by base.css bold/size) */ --link: #c9c9c9; /* = fg */ --refrain: #c9c9c9; /* = fg */ --border: #2a2a2a; --error: #7a4a42; /* dried blood -- the only colour, error role only */ /* the one non-colour override: a monospace reading face (see base.css). */ --theme-font: var(--font-mono); } .heading { color: var(--accent); } .citation { color: var(--muted); } .vnum { color: var(--muted); } .refrain { color: var(--refrain); } a { color: var(--link); } a:hover, a:focus { color: var(--accent); } .controls, .version-label, .reading-section + .reading-section { border-color: var(--border); } .controls input, .controls select, .controls button { border-color: var(--border); } .error { color: var(--error); }