add global style package

This commit is contained in:
Robin Olsen
2026-02-13 10:14:05 +01:00
parent e994c890f4
commit b1a72a5a2e
2 changed files with 42 additions and 0 deletions

14
internal/style/themes.go Normal file
View File

@@ -0,0 +1,14 @@
package style
import (
"github.com/charmbracelet/huh"
"github.com/charmbracelet/lipgloss"
)
func HuhCenterTheme() *huh.Theme {
theme := huh.ThemeBase16()
theme.Focused.Base = lipgloss.NewStyle().Align(lipgloss.Center)
return theme
}