From 449d1cf599300d1ecf583a679af5a21b19966f22 Mon Sep 17 00:00:00 2001 From: Patrick Smith Date: Tue, 12 Feb 2019 18:02:21 -0500 Subject: [PATCH] Make global background a subtle off-white color --- styles/components/_global_layout.scss | 2 +- styles/core/_variables.scss | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/styles/components/_global_layout.scss b/styles/components/_global_layout.scss index b46526b5..e8e8825d 100644 --- a/styles/components/_global_layout.scss +++ b/styles/components/_global_layout.scss @@ -1,5 +1,5 @@ #app-root { - background-color: $color-white; + background-color: $color-offwhite; display: flex; flex-direction: column; justify-content: flex-start; diff --git a/styles/core/_variables.scss b/styles/core/_variables.scss index 3917fa5e..19335b2a 100644 --- a/styles/core/_variables.scss +++ b/styles/core/_variables.scss @@ -58,6 +58,7 @@ $color-red-light: #e59393; $color-red-lightest: #f9dede; $color-white: #ffffff; +$color-offwhite: #fbfbfd; $color-black: #000000; $color-black-light: #212121;