/* Dark mode active (invert logo) */
body when (@config-dark-mode = true) {
.Header-logo {
filter: invert(1); /* Change logo color */
}
}
After preparing the previous CSS code, I re-read your first message and noticed:
wylzn The logo for my forum has black text
If your logo is text-only, this CSS will work for you.
With this simple CSS, you can invert the colors in your logo, turning black to white. If you're using a single-color logo, this should be sufficient.