In my android mobile,
ionic select option is showing dark color for selected option like the image attached below
My html code
<ion-card>
<ion-item>
<ion-label position="floating">Year</ion-label>
<ion-select interface="popover" placeholder="Year" id="year" formControlName="year">
<ion-select-option value="SELECT">SELECT</ion-select-option>
<ion-select-option *ngFor="let post of years" value="{{post.year}}">{{post.year}}</ion-select-option>
</ion-select>
</ion-item>
</ion-card>
How to change the dark color to other color for the selected option?
Please let me know the solution
Thanks in advance.