From 93f0f1b7568204204b6fedfce1b806a844808841 Mon Sep 17 00:00:00 2001
From: AsyncBanana <58297401+AsyncBanana@users.noreply.github.com>
Date: Wed, 20 Oct 2021 18:24:48 -0400
Subject: [PATCH] Fix sponsors title contrast (#1590)

---
 docs/src/components/LeftSidebar/LeftSidebar.astro | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/docs/src/components/LeftSidebar/LeftSidebar.astro b/docs/src/components/LeftSidebar/LeftSidebar.astro
index 4c7d52a97f..bfbaa0724f 100644
--- a/docs/src/components/LeftSidebar/LeftSidebar.astro
+++ b/docs/src/components/LeftSidebar/LeftSidebar.astro
@@ -141,9 +141,11 @@ const sidebarSections = SIDEBAR[langCode].reduce((col, item) => {
   .sponsor-logo__vercel {
     width: 90px;
   }
-
+  :global(:root.theme-dark .sponsors-title) {
+    color: hsl(var(--color-base-gray), 75%);
+  }
   .sponsors-title {
-    color: hsl(var(--color-base-gray), 50%);
+    color: hsl(var(--color-base-gray), 25%);
     font-size: 0.8em;
     font-weight: 300;
     letter-spacing: 0.0625em;