From b72b81c410c161797eb525a6231b0517b4def993 Mon Sep 17 00:00:00 2001 From: Lukasz Kasprzak Date: Thu, 23 Jul 2026 14:20:18 +0200 Subject: web: HTML render + embedded themes --- internal/web/static/themes/franciscans.css | 49 ++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 internal/web/static/themes/franciscans.css (limited to 'internal/web/static/themes/franciscans.css') diff --git a/internal/web/static/themes/franciscans.css b/internal/web/static/themes/franciscans.css new file mode 100644 index 0000000..fe84034 --- /dev/null +++ b/internal/web/static/themes/franciscans.css @@ -0,0 +1,49 @@ +/* franciscans -- religious-order palette, dark warm. Colour only; see + * docs/THEMES.md. + */ +:root { + --bg: #3a2f26; /* undyed brown */ + --fg: #e0d5c3; + --muted: #9c8b76; + --accent: #a8703a; /* tau/terracotta */ + --link: #7a8a5a; /* olive */ + --refrain: #8a9b6a; /* olive */ + --border: #4d3f33; +} + +.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); +} -- cgit v1.3