Background color of dropdown
I want to know how to change the color of the backgound that present inisde the multiselect , is there any way to do it ?
const valueRenderer = (selected: Option[], options: Option[]) => { return ( <div className={"d-flex" }style={{ color: '#1f1f1f', fontSize: '14px' }}> {selected.map((option) => ( <span key={option.value} style={{ marginRight: '5px' }} className={ "status-" + option.value }> {option.label} </span> ))} </div> ); };
i want to know how can i able to do whole background color change and also border color change for that field
if i use this it will give me this can you suggest me how can i able to do like this