update text color

This commit is contained in:
Billy Wang
2025-05-05 19:48:18 +08:00
parent 98f8b45f8f
commit 350f3c8b00

View File

@@ -1096,7 +1096,7 @@
width: 100%;
padding: 15px;
text-align: center;
color: #e5e5e5; /* Dark color for text */
color: var(--description-font-dark);
}
.slideshow-text p {
@@ -1133,4 +1133,10 @@
padding: 8px;
font-size: 12px;
}
}
@media (prefers-color-scheme: dark) {
.slideshow-text {
color: var(--description-font-light);
}
}