Any errors in the logs?
Not seeing anything in the way of errors or warnings in the logs of node red that look to be related. only a GPIO warn for raspberry pi specific node set.
What platform is it running on?
What do you see when you access https://<your-home-assistant-ip-or-url>:1880/theme
?
Running on a Rpi 4. This is what I get
{"page":{"title":"Node-RED","favicon":"favicon.ico","tabicon":"red/images/node-red-icon-black.svg"},"header":{"title":"Node-RED","image":"red/images/node-red.svg"},"asset":{"red":"red/red.min.js","main":"red/main.min.js","vendorMonaco":""},"themes":["dark","dark-scroll","midnight-red","midnight-red-scroll","oled","oled-scroll","solarized-dark","solarized-dark-scroll","solarized-light","solarized-light-scroll"]}
Dark Mode is also set to “true” in the configuration portion of the add-on.
There’s your issue. The dark_mode
config option was removed and replaced by the theme
option. With this new option, you can choose which theme to use.
You can read more about it here.
1 Like
I spent a hour to find where to config as mentioned above. Your comment save my life! Thank you.