From 14224adc5a62bb4384efe36c9c3829f9b478ffb1 Mon Sep 17 00:00:00 2001 From: Gal Schlezinger Date: Thu, 23 Oct 2025 21:11:15 +0300 Subject: [PATCH] docs: improve dark mode readability for info callouts --- docs/components/ui/callout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/components/ui/callout.tsx b/docs/components/ui/callout.tsx index e07f942495..33fb3714f7 100644 --- a/docs/components/ui/callout.tsx +++ b/docs/components/ui/callout.tsx @@ -13,7 +13,7 @@ export function Callout({ children, type = 'info' }: CalloutProps) { 'bg-fd-error/25 text-fd-error border border-fd-error/20', type === 'wip' && 'bg-primary/5 border-primary/25 text-primary', type === 'info' && - 'bg-primary-blue/10 text-blue-900 border border-primary-blue/25', + 'bg-primary-blue/10 dark:text-blue-100 text-blue-900 border border-primary-blue/25', type === 'warn' && 'bg-amber-600/15 text-amber-600 border border-amber-600/30', 'rounded-md px-4 py-2 [&_p]:m-0 [&_p]:text-current flex items-start gap-2'