simplifying and segmenting color variables

This commit is contained in:
Kris Aubuchon
2014-05-06 01:50:51 -04:00
parent 63c4f24319
commit 8ea63006e4
48 changed files with 766 additions and 920 deletions

View File

@@ -6,9 +6,9 @@
// --------------------------------------------------
html {
color: $primary_text_color;
color: $primary;
font: #{$base-font-size}/#{$base-line-height} $base-font-family;
background-color: $primary_background_color;
background-color: $secondary;
overflow-y: scroll;
-webkit-font-smoothing: subpixel-antialiased;
}
@@ -17,17 +17,17 @@ html {
// --------------------------------------------------
a {
color: $link-color;
color: $tertiary;
text-decoration: none;
cursor: pointer;
&:visited {
color: $link-color-visited;
color: $tertiary;
}
&:hover {
color: $link-color-hover;
color: $tertiary;
}
&:active {
color: $link-color-active;
color: $tertiary;
}
}
@@ -39,7 +39,7 @@ hr {
height: 1px;
margin: 1em 0;
border: 0;
border-top: 1px solid $primary_border_color;
border-top: 1px solid scale-color($primary, $lightness: 90%);
padding: 0;
}