From 85b2540118e65bc0110a49f0ba0f009456085b37 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 30 Apr 2026 18:12:52 +0000 Subject: [PATCH] fix: make subscribe email input text visible in light mode The email input on the /whats-new page had its default text color set to white (#fff), which made the typed email invisible against the light background. Switched the default color to a dark slate (#1f2937) so the text is readable in light mode; the existing dark-mode override keeps the text light when the user prefers a dark color scheme. --- fern/changelog/overview.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fern/changelog/overview.mdx b/fern/changelog/overview.mdx index aedfd063f..9821a09b6 100644 --- a/fern/changelog/overview.mdx +++ b/fern/changelog/overview.mdx @@ -37,7 +37,7 @@ slug: whats-new fontSize: '0.875rem', outline: 'none', transition: 'border-color 0.2s ease-in-out', - color: '#fff', + color: '#1f2937', ':focus': { borderColor: '#4f46e5', boxShadow: '0 0 0 1px #4f46e5'