From 48f4d85f18795619035ad00f14f9e1c743275801 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Mon, 23 Sep 2024 06:07:26 +0200 Subject: Don’t have visited links be purple MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/style.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/style.css b/src/style.css index 15cfb5a..62e3db5 100644 --- a/src/style.css +++ b/src/style.css @@ -12,6 +12,10 @@ --bg: white; --faint: rgba(0, 0, 0, 0.75); } + + a, a:visited { + color: blue; + } } @media (prefers-color-scheme: dark) { @@ -21,7 +25,7 @@ --faint: rgba(255, 255, 255, 0.75); } - a { + a, a:visited { color: #AAF; } } -- cgit v1.2.3