Popularity
2.3
Growing
Activity
0.0
Stable
23
3
3
Programming language: Go
License: MIT License
colourize alternatives and similar packages
Based on the "Advanced Console UIs" category.
Alternatively, view colourize alternatives based on common mentions on social networks and blogs.
-
Rich Interactive Widgets for Terminal UIs
Rich interactive widgets for terminal-based UIs written in Go -
tcell
Tcell is an alternate terminal package, similar in some ways to termbox, but better in others. -
asciigraph
Go package to make lightweight ASCII line graph ╭┈╯ in command line apps with no other dependencies. -
termtables
A Go port of the Ruby library terminal-tables for simple ASCII table generation as well as providing markdown and HTML output -
tabular
Print ASCII tables from command line utilities without the need to pass large sets of data to the API. -
ctc
The non-invasive cross-platform terminal color library does not need to modify the Print method.
Get performance insights in less than 4 minutes
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Sponsored
scoutapm.com
Do you think we are missing an alternative of colourize or a related project?
README
colourize
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
import (
c "github.com/TreyBastian/colourize"
"fmt"
)
func main() {
fmt.Println(c.Colourize("Hello World!", c.Green, c.Whitebg, c.Bold))
}