Files
LazyPM/internal/style/themes.go
2026-03-18 11:23:10 +01:00

15 lines
225 B
Go

package style
import (
"charm.land/huh/v2"
"charm.land/lipgloss/v2"
)
func HuhCenterTheme() *huh.Styles {
theme := huh.ThemeBase16(true)
theme.Focused.Base = lipgloss.NewStyle().Align(lipgloss.Center)
return theme
}