We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68e504b commit ae77ef3Copy full SHA for ae77ef3
packages/opencode/src/cli/cmd/tui/routes/session/question.tsx
@@ -272,7 +272,15 @@ export function QuestionPrompt(props: { request: QuestionRequest }) {
272
backgroundColor={isActive() ? theme.accent : theme.backgroundElement}
273
onMouseUp={() => selectTab(index())}
274
>
275
- <text fg={isActive() ? selectedForeground(theme, theme.accent) : isAnswered() ? theme.text : theme.textMuted}>
+ <text
276
+ fg={
277
+ isActive()
278
+ ? selectedForeground(theme, theme.accent)
279
+ : isAnswered()
280
+ ? theme.text
281
+ : theme.textMuted
282
+ }
283
+ >
284
{q.header}
285
</text>
286
</box>
0 commit comments