From b44080fa49154c4d10510e9623d9baa4cdb0abac Mon Sep 17 00:00:00 2001 From: dragoncoder047 <101021094+dragoncoder047@users.noreply.github.com> Date: Fri, 28 Jul 2023 17:54:28 -0400 Subject: [PATCH] prevent horrible hard to read link in dark mode --- index.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/index.html b/index.html index 6834570..da0a519 100644 --- a/index.html +++ b/index.html @@ -28,11 +28,18 @@ color: red; } + a, a:visited { + color: blue; + } + @media screen and (prefers-color-scheme: dark) { body, textarea { color: white; background: black; } + a, a:visited { + color: magenta; + } }