aboutsummaryrefslogtreecommitdiff
path: root/internal/web/static/themes/advent.css
diff options
context:
space:
mode:
Diffstat (limited to 'internal/web/static/themes/advent.css')
-rw-r--r--internal/web/static/themes/advent.css49
1 files changed, 49 insertions, 0 deletions
diff --git a/internal/web/static/themes/advent.css b/internal/web/static/themes/advent.css
new file mode 100644
index 0000000..0378d7c
--- /dev/null
+++ b/internal/web/static/themes/advent.css
@@ -0,0 +1,49 @@
+/* advent -- liturgical season palette, dark violet. Colour only; see
+ * docs/THEMES.md.
+ */
+:root {
+ --bg: #241b33;
+ --fg: #e6e0ef;
+ --muted: #7a7088;
+ --accent: #8a6db0; /* violet */
+ --link: #9a86c0;
+ --refrain: #b0708a; /* rose */
+ --border: #372c4a;
+}
+
+.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);
+}