Change back-button color

I would like to change the back-button color for nav-bar. Please guide me as to how I can do that. Thanks

Try this…

<ion-nav-back-button style="color: red;">
</ion-nav-back-button>

You could do use the button- class on the back button.

    <ion-nav-bar class="bar-light">
      <ion-nav-back-button class="button-royal">
      </ion-nav-back-button>
    </ion-nav-bar>

@mhartington
This issue didnt work for me.
i write that in my index.html:

      <ion-nav-bar class="bar-calm" align-title="center">
       <ion-nav-back-button class="button-royal">
       </ion-nav-back-button>
      </ion-nav-bar>

And the button back is grey.

if i want another couleur ? please help me out

How can i change the backbutton color on ionic v2RC4?

Just change the style directly in your app.scss:

.back-button {
  color: #f45b5f !important;
}
1 Like

HI ,
I want to change icon of back button on specific page from < to * (cross) .So please guide me