From 9107adbfac94c90b3a49c694ed754fa59d9ff22e Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Fri, 28 Nov 2025 15:14:39 -0500 Subject: [PATCH] Prevent word definitions from inheriting red letter color MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add CSS rules to prevent interlinear word analysis elements (original text, transliteration, Strong's numbers, English, parsing, and definitions) from inheriting red color when nested within red letter text spans. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- kjvstudy_org/templates/verse.html | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/kjvstudy_org/templates/verse.html b/kjvstudy_org/templates/verse.html index 632f6aa..fe783b2 100644 --- a/kjvstudy_org/templates/verse.html +++ b/kjvstudy_org/templates/verse.html @@ -61,6 +61,25 @@ color: inherit; } +/* Prevent word definitions from inheriting red color */ +.words-of-christ .word-original, +.words-of-christ .word-transliteration, +.words-of-christ .word-strongs, +.words-of-christ .word-english, +.words-of-christ .word-parsing, +.words-of-christ .word-definition { + color: inherit; +} + +[data-theme="dark"] .words-of-christ .word-original, +[data-theme="dark"] .words-of-christ .word-transliteration, +[data-theme="dark"] .words-of-christ .word-strongs, +[data-theme="dark"] .words-of-christ .word-english, +[data-theme="dark"] .words-of-christ .word-parsing, +[data-theme="dark"] .words-of-christ .word-definition { + color: inherit; +} + .verse-text { font-size: 1.8rem; line-height: 2.4rem;