diff --git a/README.md b/README.md index cc1b4f9..f976e8e 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,10 @@ # Color -CLI colors, based on ANSI. \ No newline at end of file +Supported colors: black, white, red, green, blue, yellow, magenta, cyan + +```go +color.Blue.Print("Blue") +color.Blue.Printf("%s", "Blue") +color.Blue.Println("Blue") +blue := color.Blue.String("Blue") +```