first draft of miasma installer

This commit is contained in:
tumillanino
2025-10-18 17:13:02 +11:00
commit 8f054b63a1
8 changed files with 335 additions and 0 deletions

25
tui/styles/styles.go Normal file
View File

@@ -0,0 +1,25 @@
package styles
import "github.com/charmbracelet/lipgloss"
var (
MainStyle = lipgloss.NewStyle().
Border(lipgloss.RoundedBorder()).
BorderForeground(lipgloss.Color("#7fb4ca")).
Padding(1, 2)
HelpStyle = lipgloss.NewStyle().Foreground(lipgloss.Color("241"))
TitleStyle = lipgloss.NewStyle().
Foreground(lipgloss.Color("#7fb4ca")).
Align(lipgloss.Center).
Bold(true).
PaddingBottom(1)
ActiveItemStyle = lipgloss.NewStyle().
Foreground(lipgloss.Color("#87a987")).
Bold(true)
InactiveItemStyle = lipgloss.NewStyle().
Foreground(lipgloss.Color("240"))
)