Increase color contrast of light theme links

These darker shades of blue have at minimum 7:1 contrast ratio against
a white background, conforming to WCAG AAA. Also links are now underlined
when hovered or focused.
This commit is contained in:
Gregory Chamberlain 2020-07-28 15:48:22 +01:00
parent 62f015fc34
commit 76c750b057

View File

@ -1,10 +1,11 @@
a:hover, a:hover,
a:active { a:focus {
color: #167ac6 !important; color: #075A9E !important;
text-decoration: underline;
} }
a { a {
color: #61809b; color: #335d7a;
text-decoration: none; text-decoration: none;
} }