add task system and task model for viewing task details

This commit is contained in:
Robin Olsen
2026-02-12 20:40:55 +01:00
parent da8ab0833e
commit 183f13895b
7 changed files with 234 additions and 0 deletions

14
cmd/survey/ui/style.go Normal file
View File

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