diff options
-rw-r--r-- | partials/_base.scss | 3 | ||||
-rw-r--r-- | style.scss | 7 |
2 files changed, 8 insertions, 2 deletions
diff --git a/partials/_base.scss b/partials/_base.scss index 6c6ec85..e216f39 100644 --- a/partials/_base.scss +++ b/partials/_base.scss @@ -4,6 +4,9 @@ // Variables // -------------------------------------------------- +$color-jumbotron: #7e9dc2; +$color-well: #dbdcdd; +$color-well-button: #aebdce; //== Colors // @@ -8,11 +8,14 @@ body { } .jumbotron { - background-color: $gray-lighter; + background-color: $color-jumbotron; } .well { - background-color: $brand-info; + background-color: $color-well; + .btn { + background-color: $color-well-button; + } } // fill width and height - with black edges as needed |