From a833e58d5472398279fd7062b9c1bb7265601401 Mon Sep 17 00:00:00 2001 From: Yiorgis Gozadinos Date: Fri, 24 Apr 2026 10:31:43 +0300 Subject: [PATCH] Tone down the yellow colour in visual highlights --- haiku_rag_slim/haiku/rag/client.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/haiku_rag_slim/haiku/rag/client.py b/haiku_rag_slim/haiku/rag/client.py index 5287e05b..f905c8fc 100644 --- a/haiku_rag_slim/haiku/rag/client.py +++ b/haiku_rag_slim/haiku/rag/client.py @@ -1370,11 +1370,11 @@ class HaikuRAG: y0, y1 = y1, y0 # Draw filled rectangle with transparency - fill_color = (255, 255, 0, 80) # Yellow with transparency - outline_color = (255, 165, 0, 255) # Orange outline + fill_color = (255, 255, 0, 40) # Yellow with transparency + outline_color = (255, 165, 0, 100) # Orange outline draw.rectangle([(x0, y0), (x1, y1)], fill=fill_color, outline=None) - draw.rectangle([(x0, y0), (x1, y1)], outline=outline_color, width=3) + draw.rectangle([(x0, y0), (x1, y1)], outline=outline_color, width=1) images.append(image)