link colors assigned brand variables

This commit is contained in:
spongycake 2022-02-02 01:10:22 +00:00
parent 43a6d0c977
commit 118c32e1f8
1 changed files with 9 additions and 7 deletions

View File

@ -13,11 +13,9 @@ body
@include font-size($font-size-base); @include font-size($font-size-base);
font-family:$font-family-sans-serif; font-family:$font-family-sans-serif;
line-height: 1.4; line-height: 1.4;
color: $body-color; color: $body-text-color;
} }
h1,h2,h3,h4,h5,h6 { h1,h2,h3,h4,h5,h6 {
font-family: inherit; font-family: inherit;
} }
@ -36,13 +34,17 @@ p {
a { a {
text-decoration: none; text-decoration: none;
color: $orange; color: $link-color;
text-decoration:underline; text-decoration:underline;
&:hover { &:hover {
color:darken($orange, 15%); color:$link-hover-color;
} }
&:visited { &:visited {
color: none; color: $link-visited-color;
}
&:active {
color:$link-active-color;
} }
} }