Hi, I was just reminded of the fact that themes ignore the colour variables stored in CSS. Switching to dark mode meant that my
var(--whites1)
thick border still showed the same slightly grey colour, on top of a black background..
I should not need to also add this:
body.dark-portal (other selectors here) {
border-color: var(--black);
}
What is the point of variables if we need to double up CSS work for dark themes?