From 76c750b057495b8297b71e53aa7e32d0d6ebd617 Mon Sep 17 00:00:00 2001 From: Gregory Chamberlain Date: Tue, 28 Jul 2020 15:48:22 +0100 Subject: [PATCH] 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. --- assets/css/lighttheme.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/assets/css/lighttheme.css b/assets/css/lighttheme.css index 73706bb7..4c2e9d2c 100644 --- a/assets/css/lighttheme.css +++ b/assets/css/lighttheme.css @@ -1,10 +1,11 @@ a:hover, -a:active { - color: #167ac6 !important; +a:focus { + color: #075A9E !important; + text-decoration: underline; } a { - color: #61809b; + color: #335d7a; text-decoration: none; }