From 651f173a2fb44164f1f2d41d1ecfb722e50816cd Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Mon, 2 Feb 2026 13:08:07 -0500 Subject: [PATCH] fix: reset text styling after thinking output --- packages/opencode/src/cli/cmd/run.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/opencode/src/cli/cmd/run.ts b/packages/opencode/src/cli/cmd/run.ts index 8f1174292d..a34769c6b1 100644 --- a/packages/opencode/src/cli/cmd/run.ts +++ b/packages/opencode/src/cli/cmd/run.ts @@ -423,7 +423,7 @@ export const RunCommand = cmd({ const line = `Thinking: ${text}` if (process.stdout.isTTY) { UI.empty() - UI.println(`\u001b[3m${line}\u001b[0m`) + UI.println(`${UI.Style.TEXT_DIM}\u001b[3m${line}\u001b[0m${UI.Style.TEXT_NORMAL}`) UI.empty() continue }