From e5400316787bcf595428cce992821fce3d1030f7 Mon Sep 17 00:00:00 2001 From: catarak Date: Wed, 14 Sep 2016 12:53:25 -0400 Subject: [PATCH] adjust console colors --- client/styles/components/_console.scss | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/client/styles/components/_console.scss b/client/styles/components/_console.scss index e9f195cb..b8d64be5 100644 --- a/client/styles/components/_console.scss +++ b/client/styles/components/_console.scss @@ -1,7 +1,9 @@ .preview-console { + @include themify() { + background: getThemifyVariable('console-background-color'); + } width: 100%; height: 100%; - background: $console-light-background-color; z-index: 1000; overflow: hidden; display: flex; @@ -14,7 +16,9 @@ // assign styles to different types of console messages .preview-console__log { - color: $dark-secondary-text-color; + @include themify(){ + color: getThemifyVariable('secondary-text-color'); + } flex: 1 0 auto; } @@ -30,7 +34,9 @@ } .preview-console__header { - background-color: $console-header-background-color; + @include themify() { + background-color: getThemifyVariable('console-header-background-color'); + } color: $console-header-color; padding: #{5 / $base-font-size}rem; display: flex;