// PrintBodyError will print out a colourful error given a string func PrintBodyError(text string) { color := color.New(color.FgRed) color.Printf(" Error: %s\n", text) }
// PrintBody will print out a colourful body given a string func PrintBody(text string) { color := color.New(color.FgCyan) color.Printf(" %s\n", text) }
// PrintBodyBold will print out a colourful body give a string func PrintBodyBold(text string) { color := color.New(color.FgCyan, color.Bold) color.Printf(" %s\n", text) }
// PrintHeader will print out a colourful header given a string func PrintHeader(text string) { color := color.New(color.FgYellow, color.Bold) color.Printf("==> %s\n", text) }