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

does not work with ionic 8, even when the docs mention it:

You need to add important! (maybe only in some cases…)

ion-input{
–background: #F00 !important;
}