Use CSS variable for border colors in dark mode

Changed hardcoded #eee to var(--border-color) which adapts to
dark mode (#333) automatically.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-12-02 17:14:40 -05:00
parent fc5fb4139d
commit 9c3b43eea8
9 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -11,7 +11,7 @@
}
.angel-section:not(:first-of-type) {
border-top: 1px solid #eee;
border-top: 1px solid var(--border-color);
}
.angel-entry {
@@ -11,7 +11,7 @@
}
.covenant-section:not(:first-of-type) {
border-top: 1px solid #eee;
border-top: 1px solid var(--border-color);
}
.covenant-entry {
@@ -11,7 +11,7 @@
}
.festival-section:not(:first-of-type) {
border-top: 1px solid #eee;
border-top: 1px solid var(--border-color);
}
.festival-entry {
@@ -11,7 +11,7 @@
}
.prophet-section:not(:first-of-type) {
border-top: 1px solid #eee;
border-top: 1px solid var(--border-color);
}
.prophet-entry {
+1 -1
View File
@@ -11,7 +11,7 @@
}
.fruit-section:not(:first-of-type) {
border-top: 1px solid #eee;
border-top: 1px solid var(--border-color);
}
.fruit-entry {
+1 -1
View File
@@ -11,7 +11,7 @@
}
.name-section:not(:first-of-type) {
border-top: 1px solid #eee;
border-top: 1px solid var(--border-color);
}
.name-entry {
+1 -1
View File
@@ -11,7 +11,7 @@
}
.parable-section:not(:first-of-type) {
border-top: 1px solid #eee;
border-top: 1px solid var(--border-color);
}
.parable-entry {
+1 -1
View File
@@ -11,7 +11,7 @@
}
.apostle-section:not(:first-of-type) {
border-top: 1px solid #eee;
border-top: 1px solid var(--border-color);
}
.apostle-entry {
@@ -11,7 +11,7 @@
}
.woman-section:not(:first-of-type) {
border-top: 1px solid #eee;
border-top: 1px solid var(--border-color);
}
.woman-entry {