36999cd825
Adds `nib tui` command and `make tui` target. Scrollable entity list with j/k navigation, enter for detail view, `a` to capture new entries using the existing parse grammar, and `d` to delete.
58 lines
1.2 KiB
Go
58 lines
1.2 KiB
Go
package tui
|
||
|
||
import "github.com/charmbracelet/lipgloss"
|
||
|
||
var (
|
||
subtle = lipgloss.AdaptiveColor{Light: "#D9DCCF", Dark: "#383838"}
|
||
highlight = lipgloss.AdaptiveColor{Light: "#874BFD", Dark: "#7D56F4"}
|
||
dim = lipgloss.AdaptiveColor{Light: "#A49FA5", Dark: "#777777"}
|
||
|
||
titleStyle = lipgloss.NewStyle().
|
||
Bold(true).
|
||
Foreground(highlight).
|
||
PaddingLeft(1)
|
||
|
||
statusStyle = lipgloss.NewStyle().
|
||
Foreground(dim).
|
||
PaddingLeft(1)
|
||
|
||
listItemStyle = lipgloss.NewStyle().
|
||
PaddingLeft(2)
|
||
|
||
selectedItemStyle = lipgloss.NewStyle().
|
||
PaddingLeft(1).
|
||
Bold(true).
|
||
Foreground(highlight).
|
||
SetString("›")
|
||
|
||
glyphStyle = lipgloss.NewStyle().
|
||
Width(2)
|
||
|
||
tagStyle = lipgloss.NewStyle().
|
||
Foreground(lipgloss.AdaptiveColor{Light: "#43BF6D", Dark: "#73F59F"})
|
||
|
||
idStyle = lipgloss.NewStyle().
|
||
Foreground(dim)
|
||
|
||
inputPromptStyle = lipgloss.NewStyle().
|
||
Foreground(highlight).
|
||
Bold(true)
|
||
|
||
detailHeaderStyle = lipgloss.NewStyle().
|
||
Bold(true).
|
||
Foreground(highlight).
|
||
MarginBottom(1)
|
||
|
||
detailBodyStyle = lipgloss.NewStyle().
|
||
PaddingLeft(2).
|
||
PaddingTop(1)
|
||
|
||
helpStyle = lipgloss.NewStyle().
|
||
Foreground(dim).
|
||
PaddingLeft(1)
|
||
|
||
errorStyle = lipgloss.NewStyle().
|
||
Foreground(lipgloss.Color("#FF0000")).
|
||
PaddingLeft(1)
|
||
)
|