Categorygithub.com/alecthomas/colour
repositorypackage
0.1.0
Repository: https://github.com/alecthomas/colour.git
Documentation: pkg.go.dev

# README

Colour terminal text for Go (Golang) Build Status

Package colour provides Quake-style colour formatting for Unix terminals.

The package level functions can be used to write to stdout (or strings or other files). If stdout is not a terminal, colour formatting will be stripped.

eg.

colour.Printf("^0black ^1red ^2green ^3yellow ^4blue ^5magenta ^6cyan ^7white^R\n")

For more control a Printer object can be created with various helper functions. This can be used to do useful things such as strip formatting, write to strings, and so on.

The following sequences are converted to their equivalent ANSI colours:

SequenceEffect
^0Black
^1Red
^2Green
^3Yellow
^4Blue
^5Cyan (light blue)
^6Magenta (purple)
^7White
^8Black Background
^9Red Background
^aGreen Background
^bYellow Background
^cBlue Background
^dCyan (light blue) Background
^eMagenta (purple) Background
^fWhite Background
^RReset
^UUnderline
^DDim
^BBold
^SStrikethrough