PierreRambaud / go-color

Add color in your golang scripts

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Go Color

Build Status

Color your console in Golang.

Install

go install github.com/PierreRambaud/go-color

Examples

// Default usage
color.New("green").Print("This is a green message.")
color.New("red", "underline").Print("This is a red message with an underline.")

// Reuse color
success := color.New("green").Add("bold")
success.Print("Great!")
success.Printf("This is %s", "SPARTA")


// Reusable functions
// Func expects as parameter to be a valid method from
// the Color struct.

error := color.New("red").Func("Print")
error("Error during process..")
error("Can connect..")

info := color.New("yellow").Func("Println")
info("Be careful")
info("Something happened, but nobody cares.")

License

see LICENSE.md for more details

About

Add color in your golang scripts

License:MIT License


Languages

Language:Go 100.0%