From a5c6fdbbf45c1ad0d3c5e48a7933027058c0443f Mon Sep 17 00:00:00 2001 From: Jake Fulmine Date: Sat, 3 Jun 2023 12:35:13 +0200 Subject: [PATCH] fix(dashboard): increase contrast of text in code blocks --- dashboard/styles/themes.scss | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/dashboard/styles/themes.scss b/dashboard/styles/themes.scss index d37c238d..179413c2 100644 --- a/dashboard/styles/themes.scss +++ b/dashboard/styles/themes.scss @@ -6,4 +6,12 @@ $primary-alt: #da9317; // dark mode. dark.scss extends nightshade @import "bootstrap-nightshade.scss"; -@import "dark.scss"; \ No newline at end of file +@import "dark.scss"; + +code { + color: #000000; +} + +html.dark code { + color: #ffffff; +} \ No newline at end of file