1
0
Fork 0
mirror of https://github.com/GuerillaStudio/vanillalist.git synced 2024-12-21 08:31:55 +00:00

Improve text contrast

This commit is contained in:
Tixie 2021-03-01 04:02:47 +01:00
parent fb478ded93
commit 6601c22bd7
3 changed files with 3 additions and 3 deletions

View file

@ -86,7 +86,7 @@ $btn-shadow: 0 .1rem .2rem #0f0f0f1a;
.btn--tertiary, .btn--tertiary,
.btn--tertiary:link, .btn--tertiary:link,
.btn--tertiary:visited { .btn--tertiary:visited {
color: lighten($color-primary, 3); color: $color-primary;
background-color: #fff; background-color: #fff;
border: .1rem solid lighten($color-primary, 22); border: .1rem solid lighten($color-primary, 22);
} }

View file

@ -35,7 +35,7 @@
} }
.header__slogan { .header__slogan {
color: desaturate($color-primary, 40); color: darken(desaturate($color-primary, 40), 7);
font-size: 1.7rem; font-size: 1.7rem;
} }

View file

@ -4,7 +4,7 @@
.footer { .footer {
padding: 6rem 0; padding: 6rem 0;
color: lighten($color-dark-text, 10); color: lighten($color-dark-text, 5);
text-align: center; text-align: center;
} }