cgit

commit 90989369fe4d46855e5f81f764c37ea296452728

Author: Pedro Lucas Porcellis <porcellis@eletrotupi.com>

Forcelly override some text tags

 cgit.css | 8 +++++---


diff --git a/cgit.css b/cgit.css
index f4c7ed9f346ddb9ba07f83b1eb06a531aee63198..e9990042be5a1b58d6b8a7812f6a286179dc2eae 100644
--- a/cgit.css
+++ b/cgit.css
@@ -96,11 +96,11 @@ 		--markdown-body-bg: #131618;
 	}
 
 	.markdown-body {
-		color: var(--text);
+		color: var(--text) !important;
 	}
 
 	.markdown-body h1, .markdown-body h2, .markdown-body h3 {
-		color: var(--text);
+		color: var(--text) !important;
 	}
 
 	.markdown-body code, .markdown-body tt {
@@ -108,8 +108,10 @@ 		border: none;
 	}
 
 	.markdown-body, .markdown-body pre {
-		background-color: var(--markdown-body-bg);
+		background-color: var(--markdown-body-bg) !important;
 	}
+
+
 
 }