From 3656b7f391eec4ffdadbcf10ee9848c4cdce553d Mon Sep 17 00:00:00 2001 From: OmarMcAdam Date: Tue, 20 Jan 2026 18:13:42 -0700 Subject: [PATCH] fix: improve message contrast in session views --- src/app/components/part-view.tsx | 20 ++++++++++---------- src/app/pages/session.tsx | 4 ++-- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/app/components/part-view.tsx b/src/app/components/part-view.tsx index a7340f92f..5b9d5d05b 100644 --- a/src/app/components/part-view.tsx +++ b/src/app/components/part-view.tsx @@ -60,7 +60,7 @@ export default function PartView(props: Props) { const textClass = () => (tone() === "dark" ? "text-gray-12" : "text-gray-12"); const subtleTextClass = () => (tone() === "dark" ? "text-gray-12/70" : "text-gray-11"); - const panelBgClass = () => (tone() === "dark" ? "bg-gray-1/10" : "bg-gray-1/30"); + const panelBgClass = () => (tone() === "dark" ? "bg-gray-2/10" : "bg-gray-2/30"); const toolOnly = () => developerMode(); const showToolOutput = () => developerMode(); @@ -83,7 +83,7 @@ export default function PartView(props: Props) { Thinking
               {clampText(String((p() as any).text), 2000)}
@@ -97,19 +97,19 @@ export default function PartView(props: Props) {
           
Tool ยท {String((p() as any).tool)}
{String((p() as any).state?.status ?? "unknown")} @@ -123,7 +123,7 @@ export default function PartView(props: Props) {
                 {clampText(String((p() as any).state.output))}
@@ -141,7 +141,7 @@ export default function PartView(props: Props) {
                 Input
                 
                   {safeStringify((p() as any).state.input)}
@@ -167,7 +167,7 @@ export default function PartView(props: Props) {
         
           
             {safeStringify(p())}
diff --git a/src/app/pages/session.tsx b/src/app/pages/session.tsx
index 3a0e09b05..499bcb49e 100644
--- a/src/app/pages/session.tsx
+++ b/src/app/pages/session.tsx
@@ -298,7 +298,7 @@ export default function SessionView(props: SessionViewProps) {