Ionic 2 - ion-tab tabBadge custom color?

Hey everyone,

I figured out how to add badges to an ion-tab element, but I haven’t quite figured out how to change the color, for example to set it to danger.

Here is my ion-tab code:

<ion-tab [root]="tab3Root" tabIcon="ios-chatbubbles-outline" tabBadge="3"></ion-tab>

Is there something I can do that’s similar to color="danger"?

Thanks in advance!

Solved in #2

Solved it. examples on how to use badges are found here: https://github.com/driftyco/ionic/issues/5007

I just needed to add tabBadgeStyle="color"

Full code: <ion-tab [root]="tab3Root" tabIcon="ios-chatbubbles-outline" tabBadgeStyle="danger" tabBadge="3"></ion-tab>