summaryrefslogtreecommitdiffhomepage
path: root/packages
diff options
context:
space:
mode:
authorSebastian <[email protected]>2026-03-28 17:20:37 +0100
committerGitHub <[email protected]>2026-03-28 17:20:37 +0100
commit77d4f994976d838a2649caba4e781046d3faccda (patch)
treef12f6fbab44eebb00dff550054c0f66388185e80 /packages
parentaa2d753e7edbf323baf635aec7972b673d2b64a3 (diff)
downloadopencode-77d4f994976d838a2649caba4e781046d3faccda.tar.gz
opencode-77d4f994976d838a2649caba4e781046d3faccda.zip
use theme color for prompt placeholder (#19535)
Diffstat (limited to 'packages')
-rw-r--r--packages/opencode/src/cli/cmd/tui/component/prompt/index.tsx1
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/opencode/src/cli/cmd/tui/component/prompt/index.tsx b/packages/opencode/src/cli/cmd/tui/component/prompt/index.tsx
index 29e09f64c..d88747e4c 100644
--- a/packages/opencode/src/cli/cmd/tui/component/prompt/index.tsx
+++ b/packages/opencode/src/cli/cmd/tui/component/prompt/index.tsx
@@ -870,6 +870,7 @@ export function Prompt(props: PromptProps) {
>
<textarea
placeholder={placeholderText()}
+ placeholderColor={theme.textMuted}
textColor={keybind.leader ? theme.textMuted : theme.text}
focusedTextColor={keybind.leader ? theme.textMuted : theme.text}
minHeight={1}