diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 18 |
1 files changed, 12 insertions, 6 deletions
@@ -1,8 +1,13 @@ # colourize -An ANSI colour terminal package for Go - [](https://godoc.org/github.com/TreyBastian/colourize) [](https://travis-ci.org/TreyBastian/colourize) [](https://coveralls.io/r/TreyBastian/colourize?branch=master) +An ANSI colour terminal package for Go. +Supports all ANSI colours and emphasis. Not compatible with Windows systems. + +# Installation + + go get github.com/TreyBastian/colourize + # Usage package main @@ -12,9 +17,10 @@ An ANSI colour terminal package for Go ) func main() { - fmt.Println(colourize("Hello World!", Green, Whitebg, Bold) + fmt.Println(c.colourize("Hello World!", c.Green, c.Whitebg, c.Bold) } - -Supports all ANSI colours and emphasis. Not compatible with Windows systems. -I'm not expecting anyone to actually use this package or even find it, but if you do end up using it drop me a line and let me know! + +# Projects Using colourize + +Nothing Yet, but if you use it let me know! |
