Gatsu
I think it doesn't work with a custom CSS theme.
It works.
I had change background's color and if I active night mode, I see only a widget (welcome statics widget) in black, not other.
Just as you configured a custom theme for your current design, you need to also create another style for what happens when it is in night mode.
For example;
Let's say I have a custom CSS
.body {
background: #FFF;
}
Which means if I want this colour to change in Night Mode, I would the add another rule to the custom CSS
body when (@config-dark-mode = true) {
.body {
background: #000;
}
}
My Final CSS would then have 2 Rules to the same class name at different instances.
My custom CSS
.body {
background: #FFF;
}
body when (@config-dark-mode = true) {
.body {
background: #000;
}
}
The above code would display a white (#FFF) background in Day Mode and a black (#000) background in Night Mode.