From 5cc56c6253b02668326944ad6e9394e557ba2888 Mon Sep 17 00:00:00 2001 From: Adam Coldrick Date: Fri, 2 Mar 2018 12:13:42 +0000 Subject: [PATCH] Make the page background less bright This commit changes the "$white" variable in the default theme to be slightly off-white, to slightly reduce contrast and brightness of the page in general and attempt to be easier on the eyes. It also makes `body` use this variable to determine background color. Change-Id: I670e569eb749de1e43748cef2625d4bd76ec07d5 --- src/theme/base/_body.scss | 1 + src/theme/storyboard/_bootstrap_overrides.scss | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/theme/base/_body.scss b/src/theme/base/_body.scss index 316c895e..1f180e5e 100644 --- a/src/theme/base/_body.scss +++ b/src/theme/base/_body.scss @@ -18,6 +18,7 @@ */ body { + background-color: $white; margin-top: $navbar-height; margin-bottom: 20px; } diff --git a/src/theme/storyboard/_bootstrap_overrides.scss b/src/theme/storyboard/_bootstrap_overrides.scss index da603a4b..9f14567b 100644 --- a/src/theme/storyboard/_bootstrap_overrides.scss +++ b/src/theme/storyboard/_bootstrap_overrides.scss @@ -1,5 +1,5 @@ // ============================== Custom Variables ============================= -$white: #FFFFFF; +$white: #f7f6f4; $black: #000000; // ============================== Bootstrap Overrides ==========================