Hello,
It would be wonderful if we could change the table's highlighted row color. At the moment, there only seems to be one color, a very light mauve. If we could change the color with code such as:
Example One:
highlightStyle := lipgloss.NewStyle().
Foreground(lipgloss.Color("7")).
Background(lipgloss.Color("2")).
Bold(true)
WithRowHighlightedStyle(highlightStyle)
Or, Example Two:
tableModel: table.New(rows).
WithRowHighlightedStyle(lipgloss.NewStyle().Foreground(lipgloss.Color("7")).Background(lipgloss.Color("2"))),
}),
}
Probably, there should be a,
WithRowHighlightedStyle(), .... and a,
WithColumnsHighlightedStyle(),
Many thanks,
Hello,
It would be wonderful if we could change the table's highlighted row color. At the moment, there only seems to be one color, a very light mauve. If we could change the color with code such as:
Example One:
Or, Example Two:
Probably, there should be a,
Many thanks,