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
This commit is contained in:
2025-05-26 14:56:36 -04:00
parent 6bfbfbdca6
commit 51ea037df3
+5 -3
View File
@@ -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 {