From b658289d59e2154540a55ca25c970d2e010247f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivo=20Ili=C4=87?= <3476570+ivoilic@users.noreply.github.com> Date: Sat, 12 Feb 2022 12:14:13 -0500 Subject: [PATCH] Increased contrast on the sidebar text in darkmode Currently the sidebar text in darmode is text-gray-500 which does not contrast well against the background compared to lightmode and other text in darkmode. --- docs/nextra-theme-docs/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/nextra-theme-docs/styles.css b/docs/nextra-theme-docs/styles.css index f19b495d29f18..5148e129c0286 100644 --- a/docs/nextra-theme-docs/styles.css +++ b/docs/nextra-theme-docs/styles.css @@ -105,7 +105,7 @@ article a code { } .dark .sidebar button, .dark .sidebar a { - @apply text-gray-500; + @apply text-gray-400; } .sidebar a:hover, .sidebar button:hover {