small style changes

This commit is contained in:
Lobo 2025-10-12 20:40:01 -03:00
parent 7d28b3b3e0
commit 080a8d5e47
3 changed files with 9 additions and 3 deletions

View file

@ -170,7 +170,7 @@ func (app *App) AppendMessage(data string) {
}
func (app *App) AppendSystemMessage(format string, args ...any) {
st := vaxis.Style{Attribute: vaxis.AttrDim | vaxis.AttrItalic}
st := vaxis.Style{Foreground: vaxis.ColorGray, Attribute: vaxis.AttrDim}
app.pager.Segments = append(app.pager.Segments,
vaxis.Segment{Text: "* ", Style: st},
vaxis.Segment{Text: fmt.Sprintf(format, args...), Style: st},