Home > front end >  Vaadin Flow dark mode Dialog
Vaadin Flow dark mode Dialog

Time:12-01

How can i set my dialog theme from light to dark? When i'm doing

dialog.setAttribute("theme", Lumo.DARK);

then background under dialog have solid colour and i can't see what is benath it like in normal theme. I changed dialog theme on the official vaadin page and there isthis same problem. I`m using Vaadin 14.7.6.

enter image description here

CodePudding user response:

There’s no out-of-the-box support for a dark variant for Dialog specifically. You can set the whole application to use the dark theme, though.

If you only want a dark themed Dialog, you need to do what you already did, but override the background color of the <vaadin-dialog-overlay> element.

  • Related