From 2ebeef01ba691c6d43c6ad79132ce97d202a29fb Mon Sep 17 00:00:00 2001 From: Steve Landey Date: Mon, 26 Aug 2024 22:06:07 -0700 Subject: [PATCH] Fix visited link color in dark mode --- templates/html/static/dj-variables.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/html/static/dj-variables.css b/templates/html/static/dj-variables.css index 54a787c..24190d2 100644 --- a/templates/html/static/dj-variables.css +++ b/templates/html/static/dj-variables.css @@ -110,6 +110,6 @@ /* Accents */ --c-linkblue: lightblue; - --c-linkpurple: purple; + --c-linkpurple: rgb(232, 120, 232); } }