From 3fc2257751ccff7f225a9e606b4dcf6380173af8 Mon Sep 17 00:00:00 2001 From: James Coleman Date: Fri, 5 Jun 2026 13:16:37 -0500 Subject: [PATCH] Fix dark mode link color in mirror-description and other non-repo-list areas Add a general a:link, a:visited dark mode rule so links anywhere in the page (e.g. the description block) use the correct color instead of the browser's default purple. --- mirror-file-generator/templates/default/header.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mirror-file-generator/templates/default/header.html b/mirror-file-generator/templates/default/header.html index 9b6e408..133b6e8 100644 --- a/mirror-file-generator/templates/default/header.html +++ b/mirror-file-generator/templates/default/header.html @@ -94,6 +94,10 @@ background-color: #1e1e1e; color: #e0e0e0; } + a:link, + a:visited { + color: #e0e0e0; + } .repo-list a:link, .repo-list a:visited { color: #e0e0e0;