From 118c32e1f855ad142c1722e661dce712de3c4eed Mon Sep 17 00:00:00 2001 From: spongycake Date: Wed, 2 Feb 2022 01:10:22 +0000 Subject: [PATCH] link colors assigned brand variables --- src/scss/_global.scss | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/src/scss/_global.scss b/src/scss/_global.scss index d884bac..c396b62 100644 --- a/src/scss/_global.scss +++ b/src/scss/_global.scss @@ -13,11 +13,9 @@ body @include font-size($font-size-base); font-family:$font-family-sans-serif; line-height: 1.4; - color: $body-color; + color: $body-text-color; } - - h1,h2,h3,h4,h5,h6 { font-family: inherit; } @@ -36,13 +34,17 @@ p { a { text-decoration: none; - color: $orange; + color: $link-color; text-decoration:underline; &:hover { -color:darken($orange, 15%); -} + color:$link-hover-color; + } &:visited { - color: none; + color: $link-visited-color; + } + + &:active { + color:$link-active-color; } }