From 3bd0334ebe6dcaf141a8dc598a69779f77fe3910 Mon Sep 17 00:00:00 2001 From: Gerrit Kehr Date: Fri, 3 Jul 2026 13:17:34 +0200 Subject: [PATCH] fix(vibe-check): make logo readable in dark mode Co-Authored-By: Claude Fable 5 --- src/pages/vibe-check/index.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/pages/vibe-check/index.tsx b/src/pages/vibe-check/index.tsx index 80526db66487..df2561960ef7 100644 --- a/src/pages/vibe-check/index.tsx +++ b/src/pages/vibe-check/index.tsx @@ -10,6 +10,7 @@ import OSButton from 'components/OSButton' import { DebugContainerQuery } from 'components/DebugContainerQuery' import SuggestedLinksBlock from 'components/SuggestedLinksBlock' +import { useApp } from '../../context/App' const FinalSlide = () => (
@@ -58,6 +59,7 @@ function Slide({ card, slideIndex }: { card: any; slideIndex: number }) { export default function Ick() { const [slideIndex, setSlideIndex] = useState(0) + const { siteSettings } = useApp() const cards = HomepageCards const totalSlides = cards.length + 1 // +1 for the final custom slide @@ -102,7 +104,12 @@ export default function Ick() { {!isFinalSlide && (

- You'll hate if... + You'll hate{' '} + {' '} + if...

)}