aboutsummaryrefslogtreecommitdiff
path: root/scss/utilities
diff options
context:
space:
mode:
authorChristopher Baker <[email protected]>2016-04-17 18:56:09 -0700
committerChristopher Baker <[email protected]>2016-04-17 18:56:09 -0700
commitbae54aa8fc22451bbb2c898dafb22d2f86d15e85 (patch)
treec95a6bd1b63154c502716015eecccf2f4274852c /scss/utilities
parent0d5b6aa4e8ad24f77c5d777fe0fa27da3601c9ee (diff)
downloadbootstrap-bae54aa8fc22451bbb2c898dafb22d2f86d15e85.tar.xz
bootstrap-bae54aa8fc22451bbb2c898dafb22d2f86d15e85.zip
remove references to -* outside _variables.scss
Diffstat (limited to 'scss/utilities')
-rw-r--r--scss/utilities/_background.scss6
1 files changed, 3 insertions, 3 deletions
diff --git a/scss/utilities/_background.scss b/scss/utilities/_background.scss
index 4bbf7318d..737731c95 100644
--- a/scss/utilities/_background.scss
+++ b/scss/utilities/_background.scss
@@ -5,12 +5,12 @@
// Inverse
// TODO: redo this as a proper class
.bg-inverse {
- color: $gray-lighter;
- background-color: $gray-dark;
+ color: $body-bg;
+ background-color: $body-color;
}
.bg-faded {
- background-color: $gray-lightest;
+ background-color: darken($body-bg, 3%);
}
@include bg-variant('.bg-primary', $brand-primary);