March 13th, 2017
3:27 pm
Posted under Ionic
Permalink
Tags Tip
This is described in the theming docs here.
The above mentions using the color function to apply a color to an element.
The $colors defines a sass map of the color variants for Ionic. You can use the sass map-get() function to get colors from the map, as posted here:-
ion-menu ion-item span {
color: map-get($colors, primary);
}
However the correct way uses the color function as per the above theming docs and the comment in the above post:-
ion-menu ion-item span {
color: color($colors, primary, base);
}
Leave a Reply
You must be logged in to post a comment.