From 2a57c8db78da4f7b0d431131559900486b338936 Mon Sep 17 00:00:00 2001 From: Dave Page Date: Thu, 20 Oct 2022 14:06:13 +0100 Subject: [PATCH] Match link highlight color to the main project website. --- static/css/pgcac.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/static/css/pgcac.css b/static/css/pgcac.css index 70b8c31..ba11576 100644 --- a/static/css/pgcac.css +++ b/static/css/pgcac.css @@ -5,6 +5,7 @@ /** STANDARD COLOR DEFINITIONS (complete list) **/ :root { --a-fg-color: #336791; + --a-highlight-fg-color: #193145; --body-bg-color: #fff; --body-fg-color: #515151; --h-fg-color: #515151; @@ -17,6 +18,7 @@ /** DARK COLOR (overrides only) **/ @media (prefers-color-scheme: dark) { :root { + --a-highlight-fg-color: #50b0f0; --body-bg-color: #212121; --body-fg-color: #f3f5f9; --h-fg-color: #2b6da3; @@ -53,6 +55,7 @@ a { } a:hover, a:active { + color: var(--a-highlight-fg-color); text-decoration: none; } -- 2.39.5