From dc254decad221cebf2bd2f96c6d97b0449de0df7 Mon Sep 17 00:00:00 2001 From: Matt DeCamp Date: Tue, 7 Dec 2021 15:53:28 -0500 Subject: [PATCH] renamed color variables for header title --- src/assets/styles/components/_header.scss | 26 +++++++++++------------ 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/assets/styles/components/_header.scss b/src/assets/styles/components/_header.scss index 65abe83..f2ead22 100644 --- a/src/assets/styles/components/_header.scss +++ b/src/assets/styles/components/_header.scss @@ -13,22 +13,22 @@ header { flex-wrap: wrap; align-items: left; - color: var(--text); - } - - #header--title a { + color: var(--text-primary); +} + +#header--title a { font-size: var(--s3); font-weight: 200; background: linear-gradient( - to right, - var(--text), - var(--text) 63%, - var(--link-color) 63% - ); - background-clip: text; - -webkit-background-clip: text; - -webkit-text-fill-color: transparent; - text-decoration: none; + to right, + var(--primary), + var(--primary) 63%, + var(--secondary) 63% + ); + background-clip: text; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + text-decoration: none; } @media screen and (min-width: 48rem) {