ion select color code example
Example 1: ion-select background color
/* use normal css for this component */
background-color: #3cb5b7;
Example 2: ion select
<ion-select >
<ion-select-option *ngFor="let country of countries" value="{{ country.name }}">
{{ country.name }}
</ion-select-option>
</ion-select>