From 6a7d009f3587e8e7e96533f3cb06ba5efe3ba5d4 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Wed, 18 Feb 2026 16:47:57 -0600 Subject: [PATCH] style hr in the main light/dark styles, used in footnotes Signed-off-by: Brian S. Stephan --- incorporealcms/static/css/dark.css | 4 ++++ incorporealcms/static/css/light.css | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/incorporealcms/static/css/dark.css b/incorporealcms/static/css/dark.css index c194867..fed1bab 100644 --- a/incorporealcms/static/css/dark.css +++ b/incorporealcms/static/css/dark.css @@ -14,6 +14,10 @@ body { background: #111; } +hr { + color: #333; +} + h1, h2, h3, h4, h5, h6 { color: #B31D15; } diff --git a/incorporealcms/static/css/light.css b/incorporealcms/static/css/light.css index 0bf9d11..e01ac69 100644 --- a/incorporealcms/static/css/light.css +++ b/incorporealcms/static/css/light.css @@ -14,6 +14,10 @@ body { background: #EEE; } +hr { + color: #CCC; +} + h1, h2, h3, h4, h5, h6 { color: #811610; }