fix: Fixed font color for education pages in dark mode (#943)

This commit is contained in:
JYHsu
2024-05-27 20:50:32 +08:00
committed by GitHub
parent 6f318f5480
commit b40f6f85b9
2 changed files with 7 additions and 1 deletions
+2 -1
View File
@@ -72,7 +72,8 @@ html[data-theme='dark'] {
h2, h2,
h3, h3,
h4, h4,
h5 { h5,
h6 {
color: get-dark-color('heading-color'); color: get-dark-color('heading-color');
} }
+5
View File
@@ -229,6 +229,11 @@ html[data-theme='dark'] {
border-left: 2px solid get-dark-color('accent-color'); border-left: 2px solid get-dark-color('accent-color');
} }
} }
.custom-section {
.custom-content {
color: get-dark-color('text-color');
}
}
} }
} }
} }