diff options
| author | Lukasz Kasprzak <lukas@labunix.xyz> | 2026-07-23 14:20:18 +0200 |
|---|---|---|
| committer | Lukasz Kasprzak <lukas@labunix.xyz> | 2026-07-23 14:20:18 +0200 |
| commit | b72b81c410c161797eb525a6231b0517b4def993 (patch) | |
| tree | d8b2be9acd30b73be2fb1d3600c7004770da15b3 /internal/web/static/themes/memento_mori.css | |
| parent | e4ac5326a42e45281ac8cdcf45757330bae007e9 (diff) | |
| download | lectio-b72b81c410c161797eb525a6231b0517b4def993.tar.gz lectio-b72b81c410c161797eb525a6231b0517b4def993.zip | |
web: HTML render + embedded themes
Diffstat (limited to 'internal/web/static/themes/memento_mori.css')
| -rw-r--r-- | internal/web/static/themes/memento_mori.css | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/internal/web/static/themes/memento_mori.css b/internal/web/static/themes/memento_mori.css new file mode 100644 index 0000000..518e035 --- /dev/null +++ b/internal/web/static/themes/memento_mori.css @@ -0,0 +1,55 @@ +/* memento_mori -- religious-order palette, dark greyscale. Colour only; + * see docs/THEMES.md. `#7a4a42` (dried blood) is reserved for the + * error/alert accent only -- it must not be used for any other role. + */ +:root { + --bg: #1a1a1a; /* ash */ + --fg: #d8d4cc; /* bone */ + --muted: #6b6862; + --accent: #c4bdb0; /* bone */ + --link: #9a968e; + --refrain: #8a8680; + --border: #333330; + --error: #7a4a42; /* dried blood -- error/alert accent only */ +} + +.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); +} |
