Color/README.md

11 lines
210 B
Markdown
Raw Normal View History

2024-08-28 09:00:01 -05:00
# Color
2024-09-06 08:29:39 -05:00
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")
```