I would change the color of the ion tab, I could change the color of the icons and the text, but the tab itself can not modify, I am very beginner in IONIC 3. I will show the code until then. >
home-delivery.html
<ion-tabs selectedIndex="2" class="teste" >
<ion-tab [root]="entregas" tabIcon="cube" tabTitle="Entrega"></ion-tab>
<ion-tab [root]="perfil" tabIcon="person" tabTitle="perfil" ></ion-tab>
<ion-tab [root]="configuracao" tabIcon="settings" tabTitle="configuracao"></ion-tab>
</ion-tabs>
home-delivery.scss
page-home-entregador {
.teste{
background: #545454;
}
}
I tried other methods but they did not work so I started to try anything. If anyone can help, thank you.