colourize
CategoryCommand Line
SubcategoryLibraries for building Console Applications and Console User Interfaces.
Stars27
Go library for ANSI colour text in terminals.
About colourize
colourize
An ANSI colour terminal package for Go. Supports all ANSI colours and emphasis. Not compatible with Windows systems.
Project is no longer maintained.
This project is no longer maintained. However it's also complete. It has not and will not be updated with new Go features.
Installation
go get github.com/TreyBastian/colourize
Usage
package main
import (
c "github.com/TreyBastian/colourize"
"fmt"
)
func main() {
fmt.Println(c.Colourize("Hello World!", c.Green, c.Whitebg, c.Bold))
}
Projects Using colourize
Frequently Asked Questions
What is colourize?
colourize is a Command Line library for the Go programming language. Go library for ANSI colour text in terminals.
How do I install colourize?
Install colourize with the Go module system using `go get TreyBastian/colourize`. Check the repository for the current installation instructions.
What category does colourize belong to?
colourize is listed under Command Line, specifically Libraries for building Console Applications and Console User Interfaces..