From 6768482ff5a4d72f8a9ac61dac28a767f8337875 Mon Sep 17 00:00:00 2001 From: Andreas Dieckmann <54552094+diecknet@users.noreply.github.com> Date: Sat, 1 Apr 2023 13:51:20 +0200 Subject: [PATCH] Bugfix: Use --theme variable for .list instead of --code-bg Currently --code-bg controls the background color of the main page/list pages. Individual content pages have the correct color from --theme. This commit fixes that issue. --- assets/css/core/theme-vars.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/css/core/theme-vars.css b/assets/css/core/theme-vars.css index fd0c5ee..863e72b 100644 --- a/assets/css/core/theme-vars.css +++ b/assets/css/core/theme-vars.css @@ -30,7 +30,7 @@ } .list { - background: var(--code-bg); + background: var(--theme); } .dark.list {