feat: change default color, add color for dark mode

This commit is contained in:
Sebin Nyshkim 2022-01-29 00:06:14 +01:00
parent c783797a99
commit c9396c3bed

View file

@ -35,12 +35,16 @@ export default {
transition: all 0.1s ease-out; transition: all 0.1s ease-out;
font-weight: bold; font-weight: bold;
background-color: $sebin-hair-primary; background-color: $bg-color-light;
text-decoration: none; text-decoration: none;
text-align: center; text-align: center;
@include button($sebin-hair-primary); @include button($bg-color-light);
@include theme(dark) {
@include button($bg-color-dark);
}
&:hover { &:hover {
top: -0.25em; top: -0.25em;