Golang : How to add color to string?
Back in the days of DOS ( before GUI was popular), programmers use colors to decorate text based application to enhance usage experience.
Those with in-depth knowledge of assembly language usually ended up creating their own Graphical User Interface components or use third party library. I still remember that I have to invoke the mouse cursor via the DOS interrupt 33 and provide the mouse cursor glyph. Anyway, this tutorial won't be touching on how to use GUI with Golang. (I write another tutorial for that one day), but will show you how to add color to your string.
There is a Golang package that allows you to add color to string easily and you can get it from https://github.com/mgutz/ansi
with go get -u github.com/mgutz/ansi
and once you have included the mgutz/ansi
package...... the code to use them is pretty straightforward.
For example :
package main
import (
"fmt"
"github.com/mgutz/ansi"
"time"
)
func main() {
// style format :
// "foregroundColor+attributes:backgroundColor+attributes"
// For example : red blinking on white background
ansi.Color("%v your text", "red+B:white")
// colorize a string, SLOW
msg := ansi.Color("foo", "red+b:white")
fmt.Println(msg)
msg2 := ansi.Color("foo", "yellow")
fmt.Println(msg2)
underlineRed := ansi.ColorFunc("red+u")
fmt.Printf(underlineRed("text") + "\n")
// add color to log output example
cyan := ansi.ColorFunc("cyan+")
fmt.Printf(cyan("%v ▶ debug ******* \n"), time.Now())
magenta := ansi.ColorFunc("magenta+")
fmt.Printf(magenta("%v ▶ info ******* \n"), time.Now())
yellow := ansi.ColorFunc("yellow+")
fmt.Printf(yellow("%v ▶ notification ******* \n"), time.Now())
red := ansi.ColorFunc("red+")
fmt.Printf(red("%v ▶ WARNING : Crashing soon! \n"), time.Now())
// cache escape codes and build strings manually
lime := ansi.ColorCode("green+h:black")
reset := ansi.ColorCode("reset")
fmt.Println(lime, "Bring back the 80s!", reset)
}
For more color codes, please see the official documentation at https://github.com/mgutz/ansi
UPDATE : Do check out this package as well https://github.com/fatih/color
Reference :
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+7k Golang : Use modern ciphers only in secure connection
+8.5k Golang : Executing and evaluating nested loop in html template
+6.6k Swift : substringWithRange() function example
+15k Golang : Get timezone offset from date or timestamp
+11.3k Golang : Display a text file line by line with line number example
+21.6k Golang : How to reverse slice or array elements order
+10.9k Golang : How to determine a prime number?
+11.4k Golang : Concurrency and goroutine example
+5.1k Javascript : Change page title to get viewer attention
+5.9k Golang : Convert Chinese UTF8 characters to Pin Yin
+29.1k Golang : How to create new XML file ?
+6.8k Golang : constant 20013 overflows byte error message