summaryrefslogtreecommitdiffhomepage
path: root/packages/app/src/components
diff options
context:
space:
mode:
authorDavid Hill <[email protected]>2026-03-08 01:30:55 +0000
committerDavid Hill <[email protected]>2026-03-08 01:30:55 +0000
commitf03288b411b67cd70fbc724d17004543aad88928 (patch)
tree12a58d17ced44c5fbde11ed228c0693aa874ef91 /packages/app/src/components
parent09388c98f3bbf737615845e3d40c2adfe66089f7 (diff)
downloadopencode-f03288b411b67cd70fbc724d17004543aad88928.tar.gz
opencode-f03288b411b67cd70fbc724d17004543aad88928.zip
Revert "tui: use text-base color for prompt selects"
This reverts commit 207ebf4b8cc53b6390ab96f393cbbbbaacd49781.
Diffstat (limited to 'packages/app/src/components')
-rw-r--r--packages/app/src/components/prompt-input.tsx10
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/app/src/components/prompt-input.tsx b/packages/app/src/components/prompt-input.tsx
index 3ae362e6f..ca666ed23 100644
--- a/packages/app/src/components/prompt-input.tsx
+++ b/packages/app/src/components/prompt-input.tsx
@@ -1342,7 +1342,7 @@ export const PromptInput: Component<PromptInputProps> = (props) => {
as="div"
variant="ghost"
size="small"
- class="min-w-0 max-w-[240px] text-13-regular text-text-base group"
+ class="min-w-0 max-w-[240px] text-13-regular group"
style={{
opacity: buttonsSpring(),
transform: `scale(${0.95 + buttonsSpring() * 0.05})`,
@@ -1381,7 +1381,7 @@ export const PromptInput: Component<PromptInputProps> = (props) => {
transform: `scale(${0.95 + buttonsSpring() * 0.05})`,
filter: `blur(${(1 - buttonsSpring()) * 2}px)`,
},
- class: "min-w-0 max-w-[240px] text-13-regular text-text-base group",
+ class: "min-w-0 max-w-[240px] text-13-regular group",
}}
>
<Show when={local.model.current()?.provider?.id}>
@@ -1412,7 +1412,7 @@ export const PromptInput: Component<PromptInputProps> = (props) => {
label={(x) => (x === "default" ? language.t("common.default") : x)}
onSelect={(x) => local.model.variant.set(x === "default" ? undefined : x)}
class="capitalize max-w-[160px]"
- valueClass="truncate text-13-regular text-text-base"
+ valueClass="truncate text-13-regular"
triggerStyle={{
opacity: buttonsSpring(),
transform: `scale(${0.95 + buttonsSpring() * 0.05})`,
@@ -1455,7 +1455,7 @@ export const PromptInput: Component<PromptInputProps> = (props) => {
current={local.agent.current()?.name ?? ""}
onSelect={local.agent.set}
class="capitalize max-w-[160px]"
- valueClass="truncate text-13-regular text-text-base"
+ valueClass="truncate text-13-regular"
triggerStyle={{
height: "28px",
opacity: buttonsSpring(),
@@ -1491,7 +1491,7 @@ export const PromptInput: Component<PromptInputProps> = (props) => {
flip()
}}
class="max-w-[220px]"
- valueClass="truncate text-13-regular text-text-base"
+ valueClass="truncate text-13-regular"
triggerStyle={{
height: "28px",
opacity: buttonsSpring(),