Hot to hide background color of messages and modal?

Hot transfer background color of messages and modal?
I try many times but I can`t
image

Can you please help me?

Have you looked in the Themes setting for the colors settings? Look under error or Messages

Hi @eatwa2016_Eissa ,

this is css to remove the background on the modal that i use,
keep in mind that you also have to remove the background on the target application that opens in the modal.

modal:

#TB_window {
border-width: 0 !important;
background-color: transparent !important;
}

target application, if form: (this is body class)

.scFormPage {
	background-color: transparent !important;
}

if grid:

.scGridPage{
    	background-color: transparen !important;
}

maybe this will help you

Thanks you very much.