From: Rito Rhymes Date: Thu, 2 Apr 2026 23:00:48 +0000 (-0400) Subject: css: adjust lightmode input bg colors for improved visibility X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;ds=inline;p=thirdparty%2Fpublic-inbox.git css: adjust lightmode input bg colors for improved visibility In the light theme, form controls using browser defaults often lack contrast with the page background, making them less easy to identify as interactive fields. Give inputs and textareas a distinct background so they are visually identifiable from surrounding content without being distracting. #cfc is salient enough to stand out across low-to-high brightness settings consistently. It is not intense. It fits naturally within a light mode palette and does not require inverting the text color to maintain readability (no extra CSS). Signed-off-by: Rito Rhymes --- diff --git a/contrib/css/216light.css b/contrib/css/216light.css index 0c781d535..c428e81f3 100644 --- a/contrib/css/216light.css +++ b/contrib/css/216light.css @@ -6,6 +6,8 @@ */ * { font-size: 100%; font-family: monospace; background:#fff; color:#003 } pre { white-space: pre-wrap } +input, +textarea { background:#cfc } /* * Underlined links add visual noise which make them hard-to-read.