Initial commit

This commit is contained in:
2024-08-30 11:25:28 +12:00
commit 0cd89c0707
31 changed files with 1470 additions and 0 deletions

12
internal/style/style.go Normal file
View File

@@ -0,0 +1,12 @@
package style
import (
"github.com/charmbracelet/lipgloss"
"hub.cybercinch.nz/guisea/go-template/internal/color"
)
var (
Success = lipgloss.NewStyle().Foreground(color.Green).Render
Failure = lipgloss.NewStyle().Foreground(color.Red).Render
Warning = lipgloss.NewStyle().Foreground(color.Yellow).Render
)