From b21bd8bb1e79466be945abfe417e92e52b63ec6f Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Fri, 2 May 2025 22:41:49 -0700 Subject: [PATCH] UI: Invert user/assistant message colors in instruct mode The goal is to make assistant messages more readable. --- css/html_instruct_style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/css/html_instruct_style.css b/css/html_instruct_style.css index 4613b380..b98544a1 100644 --- a/css/html_instruct_style.css +++ b/css/html_instruct_style.css @@ -61,11 +61,11 @@ } .dark .chat .user-message { - background: transparent; + background: var(--light-gray); } .dark .chat .assistant-message { - background: var(--light-gray); + background: transparent; } .chat .user-message .text,