fix: Fixed font color for education pages in dark mode

This commit is contained in:
JY Hsu 2024-05-27 19:40:31 +08:00
parent 6f318f5480
commit d049b4c539
2 changed files with 7 additions and 1 deletions

View file

@ -72,7 +72,8 @@ html[data-theme='dark'] {
h2,
h3,
h4,
h5 {
h5,
h6 {
color: get-dark-color('heading-color');
}

View file

@ -229,6 +229,11 @@ html[data-theme='dark'] {
border-left: 2px solid get-dark-color('accent-color');
}
}
.custom-section {
.custom-content {
color: get-dark-color('text-color');
}
}
}
}
}