A Go implementation of project colorama to get terminal colored characters
https://github.com/helioloureiro/golorama.git
First import the module to use:
go mod init
go import github.com/helioloureiro/golorama@latest
Next use it in your code like this:
package main
import (
"fmt"
"github/helioloureiro/golorama"
)
func main() {
fmt.Println(golorama.GetCSI(golorama.GREEN) + "Hello Green World" + golorama.Reset())
golorama.PrintColorln(golorama.RED, "Hello Red World")
}