From 1dbb343afb0123af2ee2af1804a16bae0e4c7520 Mon Sep 17 00:00:00 2001 From: dertyp7 Date: Sat, 13 Jan 2024 18:32:43 +0100 Subject: [PATCH] Update accent background color in index.scss --- src/styles/index.scss | 6 +++++- src/styles/variables_colors.scss | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/styles/index.scss b/src/styles/index.scss index 4970883..aa05abd 100644 --- a/src/styles/index.scss +++ b/src/styles/index.scss @@ -89,6 +89,10 @@ body, } ::-webkit-scrollbar-thumb { - background: var(--color-accent); + background: var(--color-accent-background); border-radius: 5px; } + +::-webkit-scrollbar-thumb:hover { + background: var(--color-accent); +} diff --git a/src/styles/variables_colors.scss b/src/styles/variables_colors.scss index 3751229..418ce0d 100644 --- a/src/styles/variables_colors.scss +++ b/src/styles/variables_colors.scss @@ -18,7 +18,7 @@ --color-svg-header: #363636; --color-accent: #22eb97; - --color-accent-background: #85f2c631; + --color-accent-background: #165a3f; --color-font-link: var(--color-accent); --color-font-link-hover: #7dffc9;