theme/font/style.go

Functions

Functions

func String

String returns the human-readable name for the font style.

func (s Style) String() string {
	if int(s) < len(styleNames) {
		return styleNames[s]
	}
	return "Unknown"
}