From 0b282965b8535a4b016b5307347d162b9d8f6e24 Mon Sep 17 00:00:00 2001 From: checktheroads Date: Mon, 2 Mar 2020 07:32:41 -0700 Subject: [PATCH] logo color fix --- docs/src/theme/Navbar/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/theme/Navbar/index.js b/docs/src/theme/Navbar/index.js index 7c9c5ed..1fbe05a 100644 --- a/docs/src/theme/Navbar/index.js +++ b/docs/src/theme/Navbar/index.js @@ -87,7 +87,7 @@ function Navbar() { : null; const logoSrc = logo.srcDark && isDarkTheme ? logo.srcDark : logo.src; - const logoColor = isDarkTheme ? "#ff5e5b" : "inherit"; + const logoColor = isDarkTheme ? "#ff5e5b" : "#000"; return (