Ability to choose Bootbox modal header color

Wappler 5.6.1
Bootstrap 5

Ability to choose bootbox modal header color

a86dfa59fd315691a390606d34148b0a1bd853fb_2_

Bootbox dialogs have no selectable color

I previously reported and proposed a solution here:

Another user experienced the same problem:

I’m surprised this request is not a lot more popular, the standard bootbox modals are very plain looking.

In the meantime, there’s help here:
https://bootboxjs.com/examples.html

For dark themes, for bootstrap 5 sites, you can override the bootbox modal header color using css:

#modbox-container .modal-header.bg-white {
    background-color: #333 !important;
}
#modbox-container h5.modal-title.text-dark {
    color: #fff !important;
}

at least until a solution is integrated.

2 Likes