diff options
| author | Paul Bütow <1224732+snonux@users.noreply.github.com> | 2025-06-20 21:41:21 +0300 |
|---|---|---|
| committer | Paul Bütow <1224732+snonux@users.noreply.github.com> | 2025-06-20 21:41:21 +0300 |
| commit | f759adaae1a30426e1ede734dc7f408887cfd89f (patch) | |
| tree | 61a862441e91625490922a5a1d38ab2b0b3de59e /internal/atable | |
| parent | f857a5fc9790b3841ab3f43020f755021a4c0003 (diff) | |
Set default table cell colors
Diffstat (limited to 'internal/atable')
| -rw-r--r-- | internal/atable/table.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/internal/atable/table.go b/internal/atable/table.go index d6ea99d..615666b 100644 --- a/internal/atable/table.go +++ b/internal/atable/table.go @@ -128,7 +128,10 @@ func DefaultStyles() Styles { return Styles{ Selected: lipgloss.NewStyle().Bold(true).Foreground(lipgloss.Color("212")), Header: lipgloss.NewStyle().Bold(true).Padding(0, 1), - Cell: lipgloss.NewStyle().Padding(0, 1), + Cell: lipgloss.NewStyle(). + Padding(0, 1). + Foreground(lipgloss.Color("226")). + Background(lipgloss.Color("21")), } } |
