From e0ba4ff3fd82df20f615a2308d9ecaa83df19002 Mon Sep 17 00:00:00 2001 From: Alvie Rahman Date: Tue, 12 Apr 2022 18:03:53 +0100 Subject: [PATCH] update buttonlist to support darkmode (hopefully) --- modules/buttonlist.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/buttonlist.css b/modules/buttonlist.css index 535ca02..cf18e5f 100644 --- a/modules/buttonlist.css +++ b/modules/buttonlist.css @@ -10,12 +10,12 @@ } .buttonlist li a { - color: #454545; + color: var(--fg); text-decoration: none; width: 100%; } .buttonlist li > * * { - color: #454545; + color: var(--fg); width: 100%; margin: 0; padding: 0.75em; @@ -24,6 +24,6 @@ } .buttonlist li > a:hover * { - background: #d9d9d9; - color: black; + background: var(--bg); + color: var(--fg); }