We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c236959 + 5019c19 commit fdfa268Copy full SHA for fdfa268
1 file changed
pkg/tui/styles/styles.go
@@ -57,6 +57,9 @@ const (
57
// Interactive element colors
58
ColorSelected = "#364A82" // Dark blue for selected items
59
ColorHover = "#2D3F5F" // Slightly lighter than selected
60
+
61
+ // AutoCompleteGhost colors
62
+ ColorSuggestionGhost = "#6B6B6B"
63
)
64
65
// Chroma syntax highlighting colors (Monokai theme)
@@ -349,7 +352,8 @@ var (
349
352
}
350
353
EditorStyle = BaseStyle.Padding(2, 0, 0, 0)
351
354
// SuggestionGhostStyle renders inline auto-complete hints in a muted tone.
- SuggestionGhostStyle = BaseStyle.Foreground(TextMuted)
355
+ // Use a distinct grey so suggestion text is visually separate from the user's input.
356
+ SuggestionGhostStyle = BaseStyle.Foreground(lipgloss.Color(ColorSuggestionGhost))
357
358
359
// Scrollbar
0 commit comments