# README
Color
Install Color package
go get github.com/fatih/color
Printing the color output
// Set the color
color.Set(color.FgBlue)
// Print the colored text
fmt.Println("This string is blue")
// Unset the color
color.Unset()
// Print the colored output without Printf
color.Red("We have red")
For more example check https://github.com/fatih/color
# Functions
PrintMessage method prints the colored message.