From fc5fb4139db65713338e76b3cf8b77b0506e9d44 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 2 Dec 2025 17:12:22 -0500 Subject: [PATCH] Fix dark mode verse text contrast across resource templates MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed verse text color from #444 (dark gray, unreadable in dark mode) to #e8e8e8 (near-white) in: - women_of_the_bible.html - biblical_angels.html - biblical_covenants.html - biblical_festivals.html - biblical_prophets.html - fruits_of_spirit.html - names_of_god.html - parables.html - tetragrammaton.html - twelve_apostles.html 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- kjvstudy_org/templates/biblical_angels.html | 2 +- kjvstudy_org/templates/biblical_covenants.html | 2 +- kjvstudy_org/templates/biblical_festivals.html | 6 +++--- kjvstudy_org/templates/biblical_prophets.html | 2 +- kjvstudy_org/templates/fruits_of_spirit.html | 2 +- kjvstudy_org/templates/names_of_god.html | 2 +- kjvstudy_org/templates/parables.html | 2 +- kjvstudy_org/templates/tetragrammaton.html | 2 +- kjvstudy_org/templates/twelve_apostles.html | 2 +- kjvstudy_org/templates/women_of_the_bible.html | 2 +- 10 files changed, 12 insertions(+), 12 deletions(-) diff --git a/kjvstudy_org/templates/biblical_angels.html b/kjvstudy_org/templates/biblical_angels.html index 2b94709..aeb9a6a 100644 --- a/kjvstudy_org/templates/biblical_angels.html +++ b/kjvstudy_org/templates/biblical_angels.html @@ -76,7 +76,7 @@ .verse-text { max-width: 60%; font-style: italic; - color: #444; + color: #e8e8e8; line-height: 1.8; } diff --git a/kjvstudy_org/templates/biblical_covenants.html b/kjvstudy_org/templates/biblical_covenants.html index 433eb72..410fed2 100644 --- a/kjvstudy_org/templates/biblical_covenants.html +++ b/kjvstudy_org/templates/biblical_covenants.html @@ -76,7 +76,7 @@ .verse-text { max-width: 60%; font-style: italic; - color: #444; + color: #e8e8e8; line-height: 1.8; } diff --git a/kjvstudy_org/templates/biblical_festivals.html b/kjvstudy_org/templates/biblical_festivals.html index 1cd9d4c..8b4d21f 100644 --- a/kjvstudy_org/templates/biblical_festivals.html +++ b/kjvstudy_org/templates/biblical_festivals.html @@ -75,9 +75,9 @@ .verse-text { max-width: 60%; - font-style: italic; - color: #444; - line-height: 1.8; + font-style: italic; + color: #e8e8e8; + line-height: 1.8; } .festivals-actions { diff --git a/kjvstudy_org/templates/biblical_prophets.html b/kjvstudy_org/templates/biblical_prophets.html index 9241e84..54dedaa 100644 --- a/kjvstudy_org/templates/biblical_prophets.html +++ b/kjvstudy_org/templates/biblical_prophets.html @@ -105,7 +105,7 @@ .verse-text { max-width: 60%; font-style: italic; - color: #444; + color: #e8e8e8; line-height: 1.8; } diff --git a/kjvstudy_org/templates/fruits_of_spirit.html b/kjvstudy_org/templates/fruits_of_spirit.html index 2c931f7..e2e8abe 100644 --- a/kjvstudy_org/templates/fruits_of_spirit.html +++ b/kjvstudy_org/templates/fruits_of_spirit.html @@ -76,7 +76,7 @@ .verse-text { max-width: 60%; font-style: italic; - color: #444; + color: #e8e8e8; line-height: 1.8; } diff --git a/kjvstudy_org/templates/names_of_god.html b/kjvstudy_org/templates/names_of_god.html index 4dd479b..2f18d24 100644 --- a/kjvstudy_org/templates/names_of_god.html +++ b/kjvstudy_org/templates/names_of_god.html @@ -76,7 +76,7 @@ .verse-text { max-width: 60%; font-style: italic; - color: #444; + color: #e8e8e8; line-height: 1.8; } diff --git a/kjvstudy_org/templates/parables.html b/kjvstudy_org/templates/parables.html index ec0c704..45ea733 100644 --- a/kjvstudy_org/templates/parables.html +++ b/kjvstudy_org/templates/parables.html @@ -109,7 +109,7 @@ .verse-text { max-width: 60%; font-style: italic; - color: #444; + color: #e8e8e8; line-height: 1.8; } diff --git a/kjvstudy_org/templates/tetragrammaton.html b/kjvstudy_org/templates/tetragrammaton.html index 3cc9181..9d811bd 100644 --- a/kjvstudy_org/templates/tetragrammaton.html +++ b/kjvstudy_org/templates/tetragrammaton.html @@ -134,7 +134,7 @@ {% for verse in section.verses %}

{{ verse.reference }}
- {{ verse.text }} + {{ verse.text }}

{% endfor %} {% endif %} diff --git a/kjvstudy_org/templates/twelve_apostles.html b/kjvstudy_org/templates/twelve_apostles.html index 9f501f4..c4f2bfb 100644 --- a/kjvstudy_org/templates/twelve_apostles.html +++ b/kjvstudy_org/templates/twelve_apostles.html @@ -105,7 +105,7 @@ .verse-text { max-width: 60%; font-style: italic; - color: #444; + color: #e8e8e8; line-height: 1.8; } diff --git a/kjvstudy_org/templates/women_of_the_bible.html b/kjvstudy_org/templates/women_of_the_bible.html index 1b57ecc..f2f6421 100644 --- a/kjvstudy_org/templates/women_of_the_bible.html +++ b/kjvstudy_org/templates/women_of_the_bible.html @@ -76,7 +76,7 @@ .verse-text { max-width: 60%; font-style: italic; - color: #444; + color: #e8e8e8; line-height: 1.8; }