diff options
| author | Trey Bastian <trey.bastian@gmail.com> | 2015-05-17 02:23:54 +0100 |
|---|---|---|
| committer | Trey Bastian <trey.bastian@gmail.com> | 2015-05-17 02:23:54 +0100 |
| commit | 11c9eb3f43312d0009dd4856a197c012608901b9 (patch) | |
| tree | 4265b5cc99cb69664534bfe1b9cdcdaee4a7c164 | |
| parent | dce193934a2949967d8af4b2104e90c9fa82f5eb (diff) | |
Update 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! |
