Здравствуйте, я пытаюсь изменить цвет фона выпадающего списка множественного выбора в реагировать родной.Нет атрибута для изменения цвета в списке.
Вот мой код:
<MultiSelect
hideTags
style={{backgroundColor:'rgba(52, 52, 52, 0.1)',color:'#d1d0cf'}}
items={this.state.serviceCategories}
uniqueKey="id"
ref={(component) => { this.multiSelect = component }}
onSelectedItemsChange={selectedCategory => this.setState({ selectedCategory })}
selectedItems={this.state.selectedCategory}
selectText="Pick Items"
searchInputPlaceholderText="Search Items..."
onChangeInput={ (text)=> console.log(text)}
altFontFamily="ProximaNova-Light"
tagRemoveIconColor="#CCC"
tagBorderColor="#CCC"
tagTextColor="#CCC"
selectedItemTextColor="#f673d7"
selectedItemIconColor="#f673d7"
itemTextColor="#d1d0cf"
displayKey="name"
searchInputStyle={{ backgroundColor:'rgba(52, 52, 52, 0.1)',color:'#d1d0cf' }}
submitButtonColor="#f673d7"
submitButtonText="Submit"
/>