mirror of
https://github.com/anotherhadi/ilovetui.git
synced 2026-08-21 03:55:48 +02:00
21b574eb6f
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
18 lines
377 B
Go
18 lines
377 B
Go
package bubbles
|
|
|
|
import (
|
|
"charm.land/bubbles/v2/table"
|
|
|
|
"github.com/anotherhadi/ilovetui/style"
|
|
)
|
|
|
|
func NewTable(opts ...table.Option) table.Model {
|
|
t := table.New(opts...)
|
|
s := table.DefaultStyles()
|
|
s.Header = s.Header.Foreground(style.S.Primary)
|
|
s.Cell = s.Cell.Foreground(style.S.Text)
|
|
s.Selected = s.Selected.Foreground(style.S.Primary)
|
|
t.SetStyles(s)
|
|
return t
|
|
}
|