From 5ecfd85cbb097edde04a442ed275ec0ae29448a9 Mon Sep 17 00:00:00 2001 From: Igor Date: Thu, 3 Dec 2020 18:51:46 +0300 Subject: [PATCH] fix squid theme (#166) --- components/layout/Footer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/layout/Footer.tsx b/components/layout/Footer.tsx index 32b31090e..3b2be8f87 100644 --- a/components/layout/Footer.tsx +++ b/components/layout/Footer.tsx @@ -8,7 +8,7 @@ const Footer: React.FC = () => { const species = useRouter().asPath.charCodeAt(1) % 2 === 0 ? "squid" : "octo"; const { themeColorHex: themeColor } = useMyTheme(); const footerImageSrc = useColorModeValue( - { octo: "b8ing_light", squid: "boing_dark" }, + { octo: "b8ing_light", squid: "boing_light" }, { octo: "b8ing_dark", squid: "boing_dark" } )[species];