From 3f13ac28c4c9efb954cfcf99f06c97990140c279 Mon Sep 17 00:00:00 2001 From: Ayo Date: Sat, 2 Aug 2025 11:02:21 +0200 Subject: [PATCH] a11y: increase contrast ratio of link colors in dark mode --- src/layouts/Layout.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index e5c6d63..e9a9ba9 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -103,7 +103,7 @@ const { title, description, ogImage } = Astro.props @media (prefers-color-scheme: dark) { a { - color: var(--color-brand-blue-3); + color: var(--text-color-light); } }