For a while, dark mode on my site wasn’t working that well. Turns out that WordPress was, for some reason, using !important on one of the background color rules. I was able to fix it with some CSS:
html.wp-dark-mode-active {
background-color: #303231 !important;
}
Leave a Reply