From ee4c1a2a349c1404363ce06e63d0ce778c8b7ad2 Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman Date: Thu, 2 Apr 2026 19:28:36 +0000 Subject: [PATCH] fix(tui): use $primary-muted background for ThoughtBlockWidget per spec #1448 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #1448 Changed ThoughtBlockWidget background from $primary 20% to $primary-muted 20% as required by specification ยง29811. This change makes the thought block widget visually lighter and more subtle, consistent with the spec's design intent for a non-distracting reasoning trace. --- src/cleveragents/tui/widgets/thought_block.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cleveragents/tui/widgets/thought_block.py b/src/cleveragents/tui/widgets/thought_block.py index 2174d1b78..a4f0adcc4 100644 --- a/src/cleveragents/tui/widgets/thought_block.py +++ b/src/cleveragents/tui/widgets/thought_block.py @@ -59,7 +59,7 @@ class ThoughtBlockWidget(_StaticBase): DEFAULT_CSS = """ ThoughtBlockWidget { - background: $primary 20%; + background: $primary-muted 20%; color: $text-muted; border: solid $primary 30%; padding: 0 1; -- 2.52.0