This commit is contained in:
Adam Bradley
2015-12-04 14:34:24 -06:00
parent 4f125354cc
commit 8148927c88
11 changed files with 106 additions and 48 deletions

View File

@ -6,6 +6,15 @@
$outer-content-md-background-color: #efeff4 !default;
body,
ion-content {
background-color: $background-ios-color;
}
a {
color: $link-ios-color;
}
.outer-content {
background: $outer-content-md-background-color;
}
@ -14,3 +23,22 @@ ion-nav.has-views,
ion-tab.has-views {
background: #000;
}
@each $color-name, $color-value in $colors {
h1, h2, h3, h4, h5, h6,
p,
span,
a:not([button]),
small,
b,
i,
u,
strong,
em,
sub,
sup {
&[#{$color-name}] {
color: $color-value !important;
}
}
}