From 93d4dc7dac9460b4530b78a91cd199965140f9db Mon Sep 17 00:00:00 2001 From: Basia Baldwin Date: Tue, 8 Oct 2024 14:22:26 -0400 Subject: [PATCH] changing link colors for accessibility test --- css/index.css | 7 +++++-- less/index.less | 6 +++--- less/shared/mixins-and-vars.less | 4 ++-- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/css/index.css b/css/index.css index 2d244664..1e3867d8 100644 --- a/css/index.css +++ b/css/index.css @@ -3,7 +3,7 @@ main { width: 100%; } a { - color: #FF9F1C; + color: #A76000; } .homepage__hero { color: #301414; @@ -111,7 +111,7 @@ a { text-align: justify; } .homepage__intro--section p a { - color: #FF9F1C; + color: #A76000; } @media only screen and (min-width: 720px) { .homepage__intro--section { @@ -246,6 +246,9 @@ a { .homepage__bottom-copy.background-tertiary { background: #17183B; } +.homepage__bottom-copy.background-tertiary a { + color: #FF9F1C; +} .background-secondary .homepage__bottom-copy--heading { color: #17183B; } diff --git a/less/index.less b/less/index.less index cf0570a6..ff0f6a51 100644 --- a/less/index.less +++ b/less/index.less @@ -117,9 +117,6 @@ a { a { color: @orange; } - // a:visited { - // color: @dark-orange; - // } } @media @tablet-up { @@ -278,6 +275,9 @@ a { &.background-tertiary { background: @blue; + a { + color: @light-orange; + } } .background-secondary &--heading { diff --git a/less/shared/mixins-and-vars.less b/less/shared/mixins-and-vars.less index d1746a31..bfef62de 100644 --- a/less/shared/mixins-and-vars.less +++ b/less/shared/mixins-and-vars.less @@ -2,8 +2,8 @@ @pink: #CF1744; @teal: #05A8AA; @blue: #17183B; -@orange: #FF9F1C; -@dark-orange: #AE5A0C; +@orange: #A76000; +@light-orange: #FF9F1C; @light-grey: #F4F7F5; @grey: #5d5c5c; @dark-grey: #2b2929;