From 51ea037df3e241f5828b29965c564fb6a795aa6d Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 26 May 2025 14:56:36 -0400 Subject: [PATCH] Update verse reference and commentary text colors Replace CSS variable references with hardcoded colors for verse references, highlight titles, cross-reference headings and list items --- kjvstudy_org/templates/book_commentary.html | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/kjvstudy_org/templates/book_commentary.html b/kjvstudy_org/templates/book_commentary.html index bdad9fb..50298bb 100644 --- a/kjvstudy_org/templates/book_commentary.html +++ b/kjvstudy_org/templates/book_commentary.html @@ -227,12 +227,13 @@ h1, h2, h3, h4, h5, h6 { .verse-reference { font-weight: 500; - color: var(--primary-color); + color: #ff6b6b; text-decoration: none; white-space: nowrap; } .verse-reference:hover { + color: white; text-decoration: underline; } @@ -358,7 +359,7 @@ h1, h2, h3, h4, h5, h6 { .highlight-title { font-weight: 600; margin: 0 0 0.5rem; - color: var(--primary-color); + color: white; } .highlight-desc { @@ -490,7 +491,7 @@ h1, h2, h3, h4, h5, h6 { margin-top: 0; font-size: 1rem; margin-bottom: 0.75rem; - color: var(--primary-color); + color: white; } .cross-ref-list { @@ -507,6 +508,7 @@ h1, h2, h3, h4, h5, h6 { .cross-ref-list li { margin-bottom: 0.5rem; break-inside: avoid; + color: white; } .backdrop-blur {