From 98007cccd7e7d1fe0456ab69281e7104716cbaf9 Mon Sep 17 00:00:00 2001 From: sora <2075279110@qq.com> Date: Fri, 11 Sep 2026 03:18:52 +0000 Subject: [PATCH] Color scheme: green for facts/phrases/scores, blue for paths Co-Authored-By: Claude --- evalharness/cli.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/evalharness/cli.py b/evalharness/cli.py index 3458cf9..6c54150 100644 --- a/evalharness/cli.py +++ b/evalharness/cli.py @@ -236,7 +236,7 @@ def _narration(msg: str) -> str: import re as _re2 tail = _re2.sub(r'(? str: import re as _re0 msg = _re0.sub(r'(?' or 'to' (only absolute paths) for sep in ('-> ', 'to '): head, _, tail = msg.rpartition(sep) if head and tail.startswith('/'): - return f'{icon}{head}{sep}[cyan]{tail}[/cyan]' + return f'{icon}{head}{sep}[blue]{tail}[/blue]' return f'{icon}{msg}'