How to change background of antd modal to black
Unanswered
Chow Chow posted this in #help-forum
Chow ChowOP
i've tried a lot nothing helped
4 Replies
Is the Modal a component you own? Or does it come from a UI library, and which is it?
Asian swamp eel
antd is a ui library, not part of tailwind either
there should be a theme provider where you should be able to pass a dark mode
@Chow Chow i've tried a lot nothing helped
use on config provider
<ConfigProvider
theme={{
components: {
Modal: {
contentBg: "#f0f2f5",
},
},
}}
>
{children}
</ConfigProvider>