|
|
@@ -705,8 +705,8 @@ export function Prompt(props: PromptProps) {
|
|
|
>
|
|
|
<textarea
|
|
|
placeholder={props.sessionID ? undefined : `Ask anything... "${PLACEHOLDERS[store.placeholder]}"`}
|
|
|
- textColor={theme.text}
|
|
|
- focusedTextColor={theme.text}
|
|
|
+ textColor={keybind.leader ? theme.textMuted : theme.text}
|
|
|
+ focusedTextColor={keybind.leader ? theme.textMuted : theme.text}
|
|
|
minHeight={1}
|
|
|
maxHeight={6}
|
|
|
onContentChange={() => {
|
|
|
@@ -850,7 +850,7 @@ export function Prompt(props: PromptProps) {
|
|
|
</text>
|
|
|
<Show when={store.mode === "normal"}>
|
|
|
<box flexDirection="row" gap={1}>
|
|
|
- <text flexShrink={0} fg={theme.text}>
|
|
|
+ <text flexShrink={0} fg={keybind.leader ? theme.textMuted : theme.text}>
|
|
|
{local.model.parsed().model}
|
|
|
</text>
|
|
|
<text fg={theme.textMuted}>{local.model.parsed().provider}</text>
|