From 3584ff617966af35ddd0fd45ef2df7cdfb8f5071 Mon Sep 17 00:00:00 2001 From: Haishan Date: Tue, 4 Dec 2018 23:39:26 +0800 Subject: feat: initial theming support --- src/components/Root.module.scss | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/components/Root.module.scss') diff --git a/src/components/Root.module.scss b/src/components/Root.module.scss index e4a0e87..5ecd02e 100644 --- a/src/components/Root.module.scss +++ b/src/components/Root.module.scss @@ -1,8 +1,8 @@ .app { display: flex; - color: #ddd; - background: #202020; + background: var(--color-background); + color: var(--color-text); min-height: 300px; height: 100vh; } @@ -10,6 +10,7 @@ .content { flex-grow: 1; overflow: scroll; + // background: #202020; // $w: 7px; // &::-webkit-scrollbar { -- cgit v1.3.1