From 1396212d2e95275b293f9291f2d71a90c4cffe71 Mon Sep 17 00:00:00 2001 From: Hikari Date: Tue, 3 Mar 2026 16:58:13 -0800 Subject: [PATCH] fix(style): improve hero tagline contrast Targets the Starlight hero tagline element to use the primary colour variable, ensuring readable contrast in both light and dark modes. --- src/styles/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/styles/style.css b/src/styles/style.css index b64939b..f060ee8 100644 --- a/src/styles/style.css +++ b/src/styles/style.css @@ -146,6 +146,10 @@ starlight-theme-select > label { background-color: var(--witch-plum) !important; } +.hero .tagline { + color: var(--primary-color) !important; +} + #extra-footer-content { display: flex; flex-direction: row;