diff options
author | Jonas Smedegaard <dr@jones.dk> | 2017-04-03 18:34:11 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2017-04-03 18:34:11 +0200 |
commit | 8ad74dc2e0f018833a3013643c26fcee19468994 (patch) | |
tree | ec7b5b25f841c4416e1edb8ec261fdfecbfdf372 | |
parent | 12f9c89d6cbdf933809d67a57c0c39acd586b8b8 (diff) |
Adjust colors.
-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 |