How to change input item background color ?

How to change input item background colour?

For ionic 4, you can assign to ion-input element wiith CSS variable.

ion-input{
--background: #F00;
}
1 Like