From 95211a8854d2ce4b89c784f0f2393cc921cf0f33 Mon Sep 17 00:00:00 2001 From: Idris Gadi <85882535+IdrisGit@users.noreply.github.com> Date: Wed, 4 Feb 2026 02:39:21 +0530 Subject: feat(tui): allow theme colors in agent customization (#11444) --- packages/web/src/content/docs/agents.mdx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'packages/web') diff --git a/packages/web/src/content/docs/agents.mdx b/packages/web/src/content/docs/agents.mdx index 62957ad91..755c4ba25 100644 --- a/packages/web/src/content/docs/agents.mdx +++ b/packages/web/src/content/docs/agents.mdx @@ -576,18 +576,21 @@ Users can always invoke any subagent directly via the `@` autocomplete menu, eve Customize the agent's visual appearance in the UI with the `color` option. This affects how the agent appears in the interface. +Use a valid hex color (e.g., `#FF5733`) or theme color: `primary`, `secondary`, `accent`, `success`, `warning`, `error`, `info`. + ```json title="opencode.json" { "agent": { "creative": { "color": "#ff6b6b" + }, + "code-reviewer": { + "color": "accent" } } } ``` -Must be a valid hex color code like `#FF5733`. - --- ### Top P -- cgit v1.2.3