aboutsummaryrefslogtreecommitdiff
path: root/internal/web/static/themes/transfiguration.css
diff options
context:
space:
mode:
authorLukasz Kasprzak <lukas@labunix.xyz>2026-07-23 14:20:18 +0200
committerLukasz Kasprzak <lukas@labunix.xyz>2026-07-23 14:20:18 +0200
commitb72b81c410c161797eb525a6231b0517b4def993 (patch)
treed8b2be9acd30b73be2fb1d3600c7004770da15b3 /internal/web/static/themes/transfiguration.css
parente4ac5326a42e45281ac8cdcf45757330bae007e9 (diff)
downloadlectio-b72b81c410c161797eb525a6231b0517b4def993.tar.gz
lectio-b72b81c410c161797eb525a6231b0517b4def993.zip
web: HTML render + embedded themes
Diffstat (limited to 'internal/web/static/themes/transfiguration.css')
-rw-r--r--internal/web/static/themes/transfiguration.css50
1 files changed, 50 insertions, 0 deletions
diff --git a/internal/web/static/themes/transfiguration.css b/internal/web/static/themes/transfiguration.css
new file mode 100644
index 0000000..bd9cc25
--- /dev/null
+++ b/internal/web/static/themes/transfiguration.css
@@ -0,0 +1,50 @@
+/* transfiguration -- religious-order palette, dark. Colour only; see
+ * docs/THEMES.md. Tokens per /home/lukasz/git/transfiguration-themes/palettes/transfiguration.json.
+ */
+:root {
+ --bg: #262e28;
+ --fg: #e6dec6;
+ --muted: #99a18c;
+ --accent: #d3b380; /* gold */
+ --link: #97ad6e; /* olive */
+ --refrain: #97ad6e; /* olive, same as link for this theme */
+ --border: #4a5347;
+ --vnum: #d3b380; /* gold, not muted, for this theme */
+}
+
+.heading {
+ color: var(--accent);
+}
+
+.citation {
+ color: var(--muted);
+}
+
+.vnum {
+ color: var(--vnum);
+}
+
+.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);
+}