Popularity
2.4
Stable
Activity
0.0
Stable
26
3
5

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.

Do you think we are missing an alternative of colourize or a related project?

Add another 'Advanced Console UIs' Package

README

colourize

GoDoc Build Status Coverage Status Go Report
Card

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))
}

Projects Using colourize