|
@@ -23,14 +23,17 @@ import (
|
|
|
// [lipgloss] style definitions, stores the currently displayed "widget"
|
|
// [lipgloss] style definitions, stores the currently displayed "widget"
|
|
|
var (
|
|
var (
|
|
|
titleStyle = lipgloss.NewStyle().
|
|
titleStyle = lipgloss.NewStyle().
|
|
|
|
|
+ Width(80).
|
|
|
Bold(true).
|
|
Bold(true).
|
|
|
Underline(true)
|
|
Underline(true)
|
|
|
|
|
|
|
|
statusStyle = lipgloss.NewStyle().
|
|
statusStyle = lipgloss.NewStyle().
|
|
|
|
|
+ Width(80).
|
|
|
Faint(true).
|
|
Faint(true).
|
|
|
Italic(true)
|
|
Italic(true)
|
|
|
|
|
|
|
|
variadicTitleStyle = lipgloss.NewStyle().
|
|
variadicTitleStyle = lipgloss.NewStyle().
|
|
|
|
|
+ Width(80).
|
|
|
Align(lipgloss.Left).
|
|
Align(lipgloss.Left).
|
|
|
Italic(true)
|
|
Italic(true)
|
|
|
|
|
|
|
@@ -39,6 +42,7 @@ var (
|
|
|
BorderStyle(lipgloss.ASCIIBorder())
|
|
BorderStyle(lipgloss.ASCIIBorder())
|
|
|
|
|
|
|
|
borderStyle = lipgloss.NewStyle().
|
|
borderStyle = lipgloss.NewStyle().
|
|
|
|
|
+ Width(80).
|
|
|
Padding(1, 2).
|
|
Padding(1, 2).
|
|
|
Margin(1).
|
|
Margin(1).
|
|
|
BorderStyle(lipgloss.NormalBorder())
|
|
BorderStyle(lipgloss.NormalBorder())
|
|
@@ -50,6 +54,7 @@ var (
|
|
|
Faint(true)
|
|
Faint(true)
|
|
|
|
|
|
|
|
collectionStyleLeft = lipgloss.NewStyle().
|
|
collectionStyleLeft = lipgloss.NewStyle().
|
|
|
|
|
+ Width(80).
|
|
|
Align(lipgloss.Left)
|
|
Align(lipgloss.Left)
|
|
|
)
|
|
)
|
|
|
|
|
|