URI: 
       CSS dark mode: make links blue - gopherproxy-c - Gopher HTTP proxy in C (CGI)
  HTML git clone git://git.codemadness.org/gopherproxy-c
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit b4fcf2516500e0d3979721cae7d91f430e72fa41
   DIR parent 838e8638e0f943519b4575b30175eae223483f9d
  HTML Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Sat, 19 Mar 2022 11:51:26 +0100
       
       CSS dark mode: make links blue
       
       Diffstat:
         M gopherproxy.c                       |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/gopherproxy.c b/gopherproxy.c
       @@ -700,7 +700,7 @@ main(void)
                        "Gopher HTTP proxy</title>\n"
                        "<style type=\"text/css\">\n"
                        "a { text-decoration: none; } a:hover { text-decoration: underline; }\n"
       -                "@media (prefers-color-scheme: dark) { body { background-color: #000; color: #bdbdbd; } a { color: #bdbdbd; } }\n"
       +                "@media (prefers-color-scheme: dark) { body { background-color: #000; color: #bdbdbd; } a { color: #56c8ff; } }\n"
                        "</style>\n"
                        "<meta name=\"robots\" content=\"noindex, nofollow\" />\n"
                        "<meta name=\"robots\" content=\"none\" />\n"