Published
May 27, 2025
The Webflow Designer is darkmode, however the dashboard where you configure sites is not.
It's not difficult to modify your browser to display darkmode here.
Use a CSS-applying extensions like Stylebot
https://stylebot.dev/
Plus this CSS;
@media (prefers-color-scheme: dark) {
html {
filter: invert(100%) hue-rotate(180deg);
}
img {
filter: invert(100%) hue-rotate(180deg);
}
}