Update accent background color in index.scss

This commit is contained in:
dertyp7
2024-01-13 18:32:43 +01:00
parent 55a19dd462
commit 1dbb343afb
2 changed files with 6 additions and 2 deletions

View File

@@ -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);
}

View File

@@ -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;