change colors slightly

This commit is contained in:
Vri 🌈 2023-03-15 15:21:31 +01:00
parent 168405713a
commit 55bdfc1d50
Signed by: vrifox
GPG key ID: D40098E5B60B2197
2 changed files with 3 additions and 3 deletions

View file

@ -10,7 +10,7 @@
&::-webkit-scrollbar-thumb { background: var(--vriish-rose); }
&::selection {
color: var(--text);
background-color: var(--vriish-rose);
background-color: var(--link-underline);
}
}

View file

@ -3,7 +3,7 @@
$counter: $i * 50;
$saturation: 20% + $i * 2.5%;
$lightness: $i * 5%;
--primary-dark-#{$counter}: hsl(320, #{$saturation}, #{$lightness});
--primary-dark-#{$counter}: hsl(340, #{$saturation}, #{$lightness});
}
@for $i from 1 to 20 {
@ -17,7 +17,7 @@
$counter: $i * 50;
$saturation: 10% + $i * 2.5%;
$lightness: $i * 4%;
--text-accent-#{$counter}: hsl(320, #{$saturation}, #{$lightness});
--text-accent-#{$counter}: hsl(340, #{$saturation}, #{$lightness});
}
--background: var(--primary-dark-150);