Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 642 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 642 Bytes

color

ANSI EscapeCodes

Install

go get github.com/sweetpotato0/color

Usage

package main
     
import "github.com/sweetpotato0/color"

func main() {
    color.Common("Common, %s", "JackieZhang")
    color.Red("Red, %s", "JackieZhang")
    color.Blue("Blue, , %s", "JackieZhang")
    color.Yellow("Yellow, %s", "JackieZhang")
    color.Green("Green%s", "JackieZhang")
    color.Black("Black, %s", "JackieZhang")
    color.Purple("Purple, %s", "JackieZhang")
    color.HiGreen("HiGreen, %s", "JackieZhang")
    color.White("White, %s", "JackieZhang")
}