Css getting overwritten after reload

I am trying to override the following css

ion-tabs.tabs-color-active-positive .tab-item {
color: #444; }

how ever when i reload the with ionic serve it changes back to the default.

I want the change the grey look to white non active tabs.

is there a better way or does any one know why is this been overwritten.

ion-tabs.tabs-color-active-positive .tab-item {
color: #444 !important; }

this silved my problem