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 <noreply@anthropic.com>
This commit is contained in:
Andymick
2026-07-17 22:56:53 +01:00
co-authored by Claude Haiku 4.5
parent b7379e379b
commit d134d3a93c
+1 -1
View File
@@ -27,7 +27,7 @@
input, input,
textarea, textarea,
select { select {
@apply text-ink; @apply bg-paper text-ink;
} }
::selection { ::selection {
@apply bg-splash-pink text-paper; @apply bg-splash-pink text-paper;