March 13th, 2017
3:27 pm
Using Sass Maps e.g. to get colors for custom components

Posted under Ionic
Tags

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);
}

No Comments »

Comments RSS

Leave a Reply

You must be logged in to post a comment.