Go color is a simple golang package for adding color to terminal output.
This library Supports the Following: -> Normal colors -> Bold colors -> Underlined colors -> High Intensity Colors -> Bold High Intensity Colors
commands -> go get github.com/lithDevv/gocolor/
usage :
package main
import (
"fmt"
"github.com/lithDevv/gocolor"
)
func main() {
fmt.Println(gocolor.RedBold("Some Bold Red Text") + gocolor.Blank())
}