color/Color.go

43 lines
965 B
Go

package color
import (
"fmt"
)
// Color represents an sRGB color.
type Color struct {
R byte
G byte
B byte
}
// Print writes the text in the given color to standard output.
func (c Color) Print(args ...any) {
if !Terminal || !TrueColor {
fmt.Print(args...)
return
}
fmt.Printf("\x1b[38;2;%d;%d;%dm%s\x1b[0m", c.R, c.G, c.B, fmt.Sprint(args...))
}
// Printf formats according to a format specifier and writes the text in the given color to standard output.
func (c Color) Printf(format string, args ...any) {
if !Terminal || !TrueColor {
fmt.Printf(format, args...)
return
}
fmt.Printf("\x1b[38;2;%d;%d;%dm%s\x1b[0m", c.R, c.G, c.B, fmt.Sprintf(format, args...))
}
// Println writes the text in the given color to standard output and appends a newline.
func (c Color) Println(args ...any) {
if !Terminal || !TrueColor {
fmt.Println(args...)
return
}
fmt.Printf("\x1b[38;2;%d;%d;%dm%s\n\x1b[0m", c.R, c.G, c.B, fmt.Sprint(args...))
}