From 1d37509b9b951e755de73c3fc2aa90f1178bc69f Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Thu, 12 Nov 2015 20:27:14 -0500 Subject: [PATCH] feat(typography): added text colors for basic html tags closes #430 --- ionic/components/app/typography.scss | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/ionic/components/app/typography.scss b/ionic/components/app/typography.scss index ad115b472a..99afdcd7e4 100644 --- a/ionic/components/app/typography.scss +++ b/ionic/components/app/typography.scss @@ -100,3 +100,17 @@ sup { sub { bottom: -0.25em; } + +@each $color, $value in $colors { + h1, h2, h3, h4, h5, h6, + p, + span, + a, + small, + sub, + sup { + &[#{$color}] { + color: $value !important; + } + } +}