Skip to content

Commit

Permalink
Fix color mixins
Browse files Browse the repository at this point in the history
  • Loading branch information
giulianobg committed Apr 7, 2016
1 parent 5cdc88d commit 04ebbec
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 17 deletions.
18 changes: 9 additions & 9 deletions css/polvo.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions scss/polvo/_scaffolding.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@

body {
font-family: $polvo-font-family-base;
color: $polvo-text;
background-color: $polvo-bg;
color: color('neutral', 'polvo');
background-color: color('neutral', 'white');
}


// Horizontal rules
// -------------------------
hr {
.hr {
margin: 20px 0;
border: 0;
border-top: 1px solid color('grey', '100');
Expand All @@ -22,11 +22,11 @@ hr {
}

&-sm {
width: 480px;
width: 280px;
}

&-md {
width: 280px;
width: 480px;
}

&-thick {
Expand Down
4 changes: 1 addition & 3 deletions scss/polvo/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -341,9 +341,7 @@ $material-colors: (
$polvo-brand: #328095;
$polvo-brand-secondary: #392139;
$polvo-cta: #41724d;
$polvo-text: color('neutral', 'polvo');
$polvo-text-inverse: color('neutral', 'clouds');
$polvo-bg: color('neutral', 'white');
//$polvo-text-inverse: $color('neutral', 'clouds');


//== Typography
Expand Down

0 comments on commit 04ebbec

Please sign in to comment.