From 91b19785d656fc6d9f8f66d94a3bd5a841027a9b Mon Sep 17 00:00:00 2001 From: KevinMidboe Date: Thu, 26 Dec 2019 01:17:11 +0100 Subject: [PATCH] Darker colors for background-color for preferred color schema dark --- src/scss/variables.scss | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/scss/variables.scss b/src/scss/variables.scss index b377ffd..09787a2 100644 --- a/src/scss/variables.scss +++ b/src/scss/variables.scss @@ -44,12 +44,12 @@ --text-color-50: rgba(255, 255, 255, 0.5); --text-color-5: rgba(255, 255, 255, 0.05); --text-color-secondary: orange; - --background-color: #1e1f22; - --background-color-secondary: #111111; - --background-95: rgba(30, 31, 34, 0.95); - --background-70: rgba(30, 31, 34, 0.8); - --background-40: rgba(30, 31, 34, 0.4); + --background-color: rgba(17, 17, 17, 1); + --background-color-secondary: rgba(6, 7, 8, 1); --background-ui: #202125; + --background-95: rgba(17, 17, 17, 0.95); + --background-70: rgba(17, 17, 17, 0.8); + --background-40: rgba(17, 17, 17, 0.4); } }