From 30990f7f5961a4767e0a429eff3758ba6cc7788a Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Wed, 4 Feb 2026 11:44:56 +0900 Subject: [PATCH] style(agents): update Hephaestus and Prometheus colors MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Hephaestus: #FF4500 (Magma Orange) → #708090 (Slate Gray) Blacksmith's hammer/iron theme, visible in both light and dark modes - Prometheus: #9D4EDD (Amethyst Purple) → #FF5722 (Deep Orange) Fire/flame theme, restoring the original fire color concept --- src/agents/hephaestus.ts | 2 +- src/plugin-handlers/config-handler.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/agents/hephaestus.ts b/src/agents/hephaestus.ts index f936de47..fd54c361 100644 --- a/src/agents/hephaestus.ts +++ b/src/agents/hephaestus.ts @@ -584,7 +584,7 @@ export function createHephaestusAgent( model, maxTokens: 32000, prompt, - color: "#FF4500", // Magma Orange - forge heat, distinct from Prometheus purple + color: "#708090", // Slate Gray - Iron/Steel, blacksmith's hammer theme permission: { question: "allow", call_omo_agent: "deny" } as AgentConfig["permission"], reasoningEffort: "medium", } diff --git a/src/plugin-handlers/config-handler.ts b/src/plugin-handlers/config-handler.ts index 457e8069..f809e5d5 100644 --- a/src/plugin-handlers/config-handler.ts +++ b/src/plugin-handlers/config-handler.ts @@ -305,7 +305,7 @@ export function createConfigHandler(deps: ConfigHandlerDeps) { prompt: PROMETHEUS_SYSTEM_PROMPT, permission: PROMETHEUS_PERMISSION, description: `${configAgent?.plan?.description ?? "Plan agent"} (Prometheus - OhMyOpenCode)`, - color: (configAgent?.plan?.color as string) ?? "#9D4EDD", // Amethyst Purple - wisdom/foresight + color: (configAgent?.plan?.color as string) ?? "#FF5722", // Deep Orange - Fire/Flame theme ...(temperatureToUse !== undefined ? { temperature: temperatureToUse } : {}), ...(topPToUse !== undefined ? { top_p: topPToUse } : {}), ...(maxTokensToUse !== undefined ? { maxTokens: maxTokensToUse } : {}),