claude-code - 💡(How to fix) Fix [FEATURE] Visually distinguish Claude's questions to the user in the terminal UI [1 comments, 2 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
anthropics/claude-code#46267Fetched 2026-04-11 06:24:49
View on GitHub
Comments
1
Participants
2
Timeline
4
Reactions
0
Author
Timeline (top)
labeled ×2closed ×1commented ×1

Code Example

{
  "theme": {
    "assistantQuestionColor": "cyan"
  }
}
RAW_BUFFERClick to expand / collapse

Preflight Checklist

  • I have searched existing requests and this feature hasn't been requested yet
  • This is a single feature request (not multiple features)

Problem Statement

When Claude asks a question or requests user input during a conversation (e.g., "Are you happy with this plan, or would you like me to adjust anything?"), the text appears in the same white color as the rest of Claude's response.This makes it hard to quickly scan a conversation and find the points where Claude is asking for a decision or confirmation.

Proposed Solution

Render Claude's questions to the user in a distinct color (or allow configuring one). For example, lines ending with ? directed at the user, or explicit prompts like "Would you like to proceed?" could be styled differently.

A configuration option could look like:

{
  "theme": {
    "assistantQuestionColor": "cyan"
  }
}

Alternative Solutions

No response

Priority

High - Significant impact on productivity

Feature Category

CLI commands and flags

Use Case Example

In longer sessions — especially when Claude follows a multi-step workflow — there are many points where Claude pauses to ask for approval, feedback, or a choice. Currently these blend into the rest of the output, making it easy to miss them. A distinct color would allow users to:

  • Quickly scan and find decision points in a long conversation
  • Identify where Claude is blocked waiting for input
  • Reduce time spent re-reading to find the actual question

Additional Context

No response

extent analysis

TL;DR

Implement a configuration option to render Claude's questions in a distinct color to improve conversation scanning and decision point identification.

Guidance

  • Introduce a new theme configuration option, such as assistantQuestionColor, to allow users to specify a custom color for questions.
  • Update the conversation rendering logic to apply the configured color to lines ending with ? or explicit prompts.
  • Consider adding a default color value for users who don't configure this option to ensure a distinct color is used out of the box.
  • Test the implementation with various conversation scenarios to ensure the distinct color is applied correctly and improves the user experience.

Example

{
  "theme": {
    "assistantQuestionColor": "cyan"
  }
}

This example configuration option allows users to specify a custom color, such as cyan, for Claude's questions.

Notes

The implementation details may vary depending on the specific conversation rendering engine and technology stack used by Claude.

Recommendation

Apply workaround by introducing a configuration option for customizing the question color, as this allows for flexibility and user preference while improving the overall user experience.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING