Skip to content

Commit

Permalink
feat(colors): add new primary color, hover color, footer hover color,…
Browse files Browse the repository at this point in the history
… footer visited color
  • Loading branch information
machikoyasuda committed Aug 1, 2023
1 parent afc5117 commit 69c8f66
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions benefits/static/css/styles.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
:root {
--primary-color: #046b99;
--primary-color-rgb: 4, 107, 153;
--primary-color: #045b86;
--primary-color-rgb: 4, 91, 134;
--bs-blue: var(--primary-color);
--bs-primary: var(--primary-color);
--bs-primary-rgb: var(--primary-color-rgb);
Expand All @@ -17,7 +17,7 @@
--bs-body-line-height: 1.5;
--body-letter-spacing: 0.05em;
--dark-color: #212121;
--hover-color: #2f4c65;
--hover-color: #044869;
--error-color: #ea1010;
--selected-color: #562b97;
--error-color-rgb: 234, 16, 16;
Expand Down Expand Up @@ -222,7 +222,8 @@ main {
--footer-background-color: var(--dark-color);
--footer-link-color: #73b3e7;
--footer-link-width: 100%;
--footer-link-hover-color: #9b74d7;
--footer-link-hover-color: #0062ff;
--footer-link-visited-color: #9b74d7;
--footer-link-font-weight: var(--bold-font-weight);
--footer-mobile-underline-color: var(--bs-white);
--main-content-min-height: calc(100vh - 246px);
Expand Down Expand Up @@ -255,11 +256,13 @@ footer .footer-links li a {
line-height: 50px;
}

footer .footer-links li a:hover,
footer .footer-links li a:focus,
footer .footer-links li a:hover {
color: var(--footer-link-hover-color);
}

footer .footer-links li a:active,
footer .footer-links li a:visited {
color: var(--footer-link-hover-color);
color: var(--footer-link-visited-color);
}

/* Custom non-mobile-first code to */
Expand Down

0 comments on commit 69c8f66

Please sign in to comment.