Add support for setting lightness for primary color

This commit is contained in:
Attila Greguss
2024-10-10 10:53:07 +01:00
parent 94624bcac6
commit 875ccc58c2
3 changed files with 50 additions and 39 deletions

View File

@ -26,6 +26,7 @@ body {
:root {
--primary-hue: 212deg;
--primary-saturation: 100%;
--primary-lightness: 50%;
--navbar-height: 4rem;
--menu-height: 3.75rem;
}
@ -33,4 +34,5 @@ body {
.dark {
--primary-hue: 204deg;
--primary-saturation: 100%;
--primary-lightness: 50%;
}