Files
kage/cli/styles.go
T
wehub-resource-sync 9c9576b5b9
ci / test (macos-latest) (push) Has been cancelled
ci / test (ubuntu-latest) (push) Has been cancelled
ci / lint (push) Has been cancelled
ci / govulncheck (push) Has been cancelled
ci / tidy (push) Has been cancelled
ci / webview (push) Has been cancelled
ci / windows-gui (push) Has been cancelled
release / check (push) Has been cancelled
release / release (push) Has been cancelled
Docs / build (push) Has been cancelled
Docs / deploy-pages (push) Has been cancelled
Docs / deploy-cloudflare (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-14 10:24:05 +08:00

15 lines
570 B
Go

package cli
import "charm.land/lipgloss/v2"
// Styles for the human-readable progress and summary lines. They degrade to
// plain text when the terminal has no colour profile.
var (
styleTitle = lipgloss.NewStyle().Bold(true)
styleAccent = lipgloss.NewStyle().Foreground(lipgloss.Color("12"))
styleOK = lipgloss.NewStyle().Foreground(lipgloss.Color("10"))
styleWarn = lipgloss.NewStyle().Foreground(lipgloss.Color("11"))
styleErr = lipgloss.NewStyle().Foreground(lipgloss.Color("9"))
styleDim = lipgloss.NewStyle().Foreground(lipgloss.Color("8"))
)