From 89eeef7877dc9b7e1136db23c019290e6981d8e8 Mon Sep 17 00:00:00 2001
From: Jake <j.vondoemming@stud.uni-goettingen.de>
Date: Sun, 1 Oct 2023 17:56:16 +0200
Subject: [PATCH] fixed bugs with dark contrast color

---
 config.json               | 2 +-
 theme/static/css/main.css | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/config.json b/config.json
index 21cc72c..4dbdd14 100644
--- a/config.json
+++ b/config.json
@@ -2,7 +2,7 @@
 	"relative_urls": true,
 	"homepage": { "page": "index" },
 	"theme": {
-		"default_tag_color": "#000000",
+		"default_tag_color": "#DDDDDD",
 		"static_dir": "theme",
 		"css_file": "main.css",
 		"default_template": "page.html",
diff --git a/theme/static/css/main.css b/theme/static/css/main.css
index 0a94313..43728bd 100644
--- a/theme/static/css/main.css
+++ b/theme/static/css/main.css
@@ -808,7 +808,8 @@ ul.cards li a.has-image span {
 	}
 	#sitemenu-container nav > ul > li {
 		width: 100%;
-		background-color: var(--category-contrast-color);
+		/* background-color: var(--category-contrast-color); */
+		background-color: var(--body-bg-color);
 	}
 	#sitemenu-container .show-header-menu {
 		display: inline-block;
-- 
GitLab