summaryrefslogtreecommitdiff
path: root/internal/atable
diff options
context:
space:
mode:
Diffstat (limited to 'internal/atable')
-rw-r--r--internal/atable/table.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/internal/atable/table.go b/internal/atable/table.go
index 7251b11..03e946f 100644
--- a/internal/atable/table.go
+++ b/internal/atable/table.go
@@ -482,6 +482,12 @@ func (m *Model) renderRow(r int) string {
continue
}
style := m.styles.Cell
+ if r == m.cursor {
+ style = style.
+ Background(lipgloss.Color("57")).
+ Foreground(lipgloss.Color("0")).
+ Bold(false)
+ }
if r == m.cursor && i == m.colCursor {
style = m.styles.Selected
}