package ccolor

/*************************************************************
 * quick use color print message
 *************************************************************/

// Redp print message with Red color
func ( ...any) { Red.Print(...) }

// Redf print message with Red color
func ( string,  ...any) { Red.Printf(, ...) }

// Redln print message line with Red color
func ( ...any) { Red.Println(...) }

// Bluep print message with Blue color
func ( ...any) { Blue.Print(...) }

// Bluef print message with Blue color
func ( string,  ...any) { Blue.Printf(, ...) }

// Blueln print message line with Blue color
func ( ...any) { Blue.Println(...) }

// Cyanp print message with Cyan color
func ( ...any) { Cyan.Print(...) }

// Cyanf print message with Cyan color
func ( string,  ...any) { Cyan.Printf(, ...) }

// Cyanln print message line with Cyan color
func ( ...any) { Cyan.Println(...) }

// Grayp print message with gray color
func ( ...any) { Gray.Print(...) }

// Grayf print message with gray color
func ( string,  ...any) { Gray.Printf(, ...) }

// Grayln print message line with gray color
func ( ...any) { Gray.Println(...) }

// Greenp print message with green color
func ( ...any) { Green.Print(...) }

// Greenf print message with green color
func ( string,  ...any) { Green.Printf(, ...) }

// Greenln print message line with green color
func ( ...any) { Green.Println(...) }

// Yellowp print message with yellow color
func ( ...any) { Yellow.Print(...) }

// Yellowf print message with yellow color
func ( string,  ...any) { Yellow.Printf(, ...) }

// Yellowln print message line with yellow color
func ( ...any) { Yellow.Println(...) }

// Magentap print message with magenta color
func ( ...any) { Magenta.Print(...) }

// Magentaf print message with magenta color
func ( string,  ...any) { Magenta.Printf(, ...) }

// Magentaln print message line with magenta color
func ( ...any) { Magenta.Println(...) }

/*************************************************************
 * quick use style print message
 *************************************************************/

// Infop print message with info color
func ( ...any) { Info.Print(...) }

// Infof print message with info style
func ( string,  ...any) { Info.Printf(, ...) }

// Infoln print message with info style
func ( ...any) { Info.Println(...) }

// Successp print message with success color
func ( ...any) { Success.Print(...) }

// Successf print message with success style
func ( string,  ...any) { Success.Printf(, ...) }

// Successln print message with success style
func ( ...any) { Success.Println(...) }

// Errorp print message with error color
func ( ...any) { Error.Print(...) }

// Errorf print message with error style
func ( string,  ...any) { Error.Printf(, ...) }

// Errorln print message with error style
func ( ...any) { Error.Println(...) }

// Warnp print message with warn color
func ( ...any) { Warn.Print(...) }

// Warnf print message with warn style
func ( string,  ...any) { Warn.Printf(, ...) }

// Warnln print message with warn style
func ( ...any) { Warn.Println(...) }