I create my navbar is transparent but I want to change text-color to white color
<ion-header >
<ion-navbar >
<ion-title >log in</ion-title>
</ion-navbar>
</ion-header>
I create my navbar is transparent but I want to change text-color to white color
<ion-header >
<ion-navbar >
<ion-title >log in</ion-title>
</ion-navbar>
</ion-header>
Hello there, fongfuse!
I know this is an old question, but in case anyone comes across this question like I did, it can be done like that:
<ion-header>
<ion-navbar>
<ion-title >
<span text-color="my-custom-color"> log in </span>
</ion-title>
</ion-navbar>
</ion-header>
And in your page.scss file:
[text-color="my-custom-color"] {
color: white;
}
Best regards! 