add $inverse-bg and $inverse-color

This commit is contained in:
Christopher Baker 2016-04-27 19:37:44 -07:00
parent 859c12a044
commit 84f801833d
2 changed files with 6 additions and 4 deletions

View File

@ -99,8 +99,10 @@ $border-width: 1px !default;
//
// Settings for the `<body>` element.
$body-bg: #fff !default;
$body-color: $gray-dark !default;
$body-bg: #fff !default;
$body-color: $gray-dark !default;
$inverse-bg: $gray-dark !default;
$inverse-color: $gray-lighter !default;
// Links

View File

@ -5,8 +5,8 @@
// Inverse
// TODO: redo this as a proper class
.bg-inverse {
color: $body-bg;
background-color: $body-color;
color: $inverse-color;
background-color: $inverse-bg;
}
.bg-faded {