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;