From 678bdf3a70e31119e3811b95ed7abc994743f360 Mon Sep 17 00:00:00 2001 From: knight Date: Tue, 4 Nov 2025 23:53:55 -0500 Subject: [PATCH] Dim bright white backgrounds for easier viewing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Change input fields to soft gray (#f5f5f5) - Dim window body background to #f0f0f0 - Soften transcript backgrounds - Maintains XP aesthetic while reducing eye strain 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- static/style.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/static/style.css b/static/style.css index 08ddc4e..779d34e 100644 --- a/static/style.css +++ b/static/style.css @@ -39,6 +39,22 @@ body { margin: 0; } +/* Dim white backgrounds for easier viewing */ +input[type="text"], +textarea, +select { + background: #f5f5f5 !important; +} + +.window-body { + background: #f0f0f0; +} + +.transcript, +.full-transcript { + background: #f5f5f5 !important; +} + /* Channel dropdown custom styling */ .channel-dropdown { position: relative;