Background color bug in OBS - Zariep-Software/WiPersona GitHub Wiki

in some scenarios, OBS will not let you choose a background color in the browser source, you can use this CSS rule:

html {
    background-color: #91a666; /*replace #91a666 with your preferred color*/
}

If you want transparency as background, try this:

html {
    background-color: rgb(0 0 0 / 1%) !important;
}