From d134d3a93cd3e587e699d710243abb9da5b81541 Mon Sep 17 00:00:00 2001 From: Andymick Date: Fri, 17 Jul 2026 22:56:53 +0100 Subject: [PATCH] Fix dark mode text visibility in all form inputs Add bg-paper class to global input/textarea/select styling. Previously text-ink was applied but inputs lacked background color, causing light text on light backgrounds. Now all form inputs globally have: - bg-paper for proper dark mode background - text-ink for readable text in both light and dark modes Fixes visibility issues on custom-request, contact, and all other form pages. Co-Authored-By: Claude Haiku 4.5 --- src/app/globals.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/globals.css b/src/app/globals.css index 4c5357b..e7feeb6 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -27,7 +27,7 @@ input, textarea, select { - @apply text-ink; + @apply bg-paper text-ink; } ::selection { @apply bg-splash-pink text-paper;