Update readme

This commit is contained in:
Sky Johnson 2024-09-06 08:29:39 -05:00
parent c93f6e0af0
commit 86590435bd

View File

@ -1,3 +1,10 @@
# Color
CLI colors, based on ANSI.
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")
```