From 4320ff481795a1d9e9fed5c9a9a38551104ab679 Mon Sep 17 00:00:00 2001 From: Naman Sood Date: Sat, 11 Mar 2023 10:33:38 -0500 Subject: [PATCH] css: more changes to the button uwu Signed-off-by: Naman Sood --- css/style.css | 6 +++--- css/style.scss | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/css/style.css b/css/style.css index 061b699..5a86443 100644 --- a/css/style.css +++ b/css/style.css @@ -243,12 +243,12 @@ body.blue-mode { text-align: center; line-height: 3rem; padding: 0; - background: rgba(255, 255, 255, 0.8); - color: rgba(0, 0, 0, 0.6); + background: var(--textColor); + color: var(--bgColor); cursor: pointer; } .main button.change-color-button:hover { - background: white; + background: var(--boldColor); } .main dialog.change-color-dialog { position: fixed; diff --git a/css/style.scss b/css/style.scss index dd57a0d..3c9b7f9 100644 --- a/css/style.scss +++ b/css/style.scss @@ -270,12 +270,12 @@ body { text-align: center; line-height: 3rem; padding: 0; - background: rgba(255, 255, 255, 0.8); - color: rgba(0, 0, 0, 0.6); + background: var(--textColor); + color: var(--bgColor); cursor: pointer; &:hover { - background: white; + background: var(--boldColor); } }