mirror of
https://github.com/kennethreitz/kjvstudy.org.git
synced 2026-06-05 23:00:16 +00:00
Fix dark mode verse text contrast across resource templates
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 <noreply@anthropic.com>
This commit is contained in:
@@ -76,7 +76,7 @@
|
||||
.verse-text {
|
||||
max-width: 60%;
|
||||
font-style: italic;
|
||||
color: #444;
|
||||
color: #e8e8e8;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
|
||||
@@ -76,7 +76,7 @@
|
||||
.verse-text {
|
||||
max-width: 60%;
|
||||
font-style: italic;
|
||||
color: #444;
|
||||
color: #e8e8e8;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -105,7 +105,7 @@
|
||||
.verse-text {
|
||||
max-width: 60%;
|
||||
font-style: italic;
|
||||
color: #444;
|
||||
color: #e8e8e8;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
|
||||
@@ -76,7 +76,7 @@
|
||||
.verse-text {
|
||||
max-width: 60%;
|
||||
font-style: italic;
|
||||
color: #444;
|
||||
color: #e8e8e8;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
|
||||
@@ -76,7 +76,7 @@
|
||||
.verse-text {
|
||||
max-width: 60%;
|
||||
font-style: italic;
|
||||
color: #444;
|
||||
color: #e8e8e8;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
|
||||
@@ -109,7 +109,7 @@
|
||||
.verse-text {
|
||||
max-width: 60%;
|
||||
font-style: italic;
|
||||
color: #444;
|
||||
color: #e8e8e8;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
|
||||
@@ -134,7 +134,7 @@
|
||||
{% for verse in section.verses %}
|
||||
<p style="margin: 1rem 0; padding-left: 1.5rem; border-left: 2px solid var(--border-color-dark);">
|
||||
<strong><a href="/book/{{ verse.reference.rsplit(' ', 1)[0] }}/chapter/{{ verse.reference.rsplit(' ', 1)[1].split(':')[0] }}/verse/{{ verse.reference.rsplit(' ', 1)[1].split(':')[1] if ':' in verse.reference else '1' }}">{{ verse.reference }}</a></strong><br/>
|
||||
<em style="color: #444;">{{ verse.text }}</em>
|
||||
<em style="color: #e8e8e8;">{{ verse.text }}</em>
|
||||
</p>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
@@ -105,7 +105,7 @@
|
||||
.verse-text {
|
||||
max-width: 60%;
|
||||
font-style: italic;
|
||||
color: #444;
|
||||
color: #e8e8e8;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
|
||||
@@ -76,7 +76,7 @@
|
||||
.verse-text {
|
||||
max-width: 60%;
|
||||
font-style: italic;
|
||||
color: #444;
|
||||
color: #e8e8e8;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user