hilighter

package module
v1.6.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 10, 2020 License: GPL-3.0 Imports: 7 Imported by: 23

README

Hilighter

What is this?

This go package provides color methods for strings. It also provides a method for wrapping strings that accounts for color escape codes.

How to install

Open a terminal and run the following:

$ go get -u gitlab.com/mjwhitta/hilighter/cmd/hl

Usage

In a terminal you can do things like the following:

$ cat some_file | hl green on_blue
$ cat some_file | hl rainbow on_white dim
$ cat some_file | hl rainbow on_rainbow
$ hl rainbow on_rainbow <some_file
$ echo "Hex color codes!" | hl ffffff on_ff0000
$ cat some_file | hl wrap
$ cat some_file | hl wrap_64

In Golang you can do things like the following:

package main

import (
    "fmt"

    hl "gitlab.com/mjwhitta/hilighter"
)

func main() {
    // Example 1 (single color)
    var greenStr = hl.Green("1. Hello, %s!\n", "world")
    fmt.Print(greenStr)

    // or

    hl.PrintGreen("1. Hello, %s!\n", "world")

    // or

    hl.PrintlnGreen("1. Hello, world!")

    // Example 2 (multiple colors)
    var multiColored = hl.Hilights(
        []string{"white", "on_green"},
        "2. Hello, %s!\n",
        "world",
    )
    fmt.Print(multiColored)

    // or

    multiColored = hl.Hilights(
        []string{"white", "on_green"},
        "2. Hello, world!",
    )
    fmt.Println(multiColored)

    // or

    hl.PrintHilights(
        []string{"white", "on_green"},
        "2. Hello, %s!\n",
        "world",
    )

    // or

    hl.PrintlnHilights(
        []string{"white", "on_green"},
        "2. Hello, world!",
    )

    // Example 3 (8-bit)
    var eightBit = hl.Color002("3. 8-bit color codes!")
    fmt.Println(eightBit)

    // or

    hl.PrintColor002("3. 8-bit color codes!\n")

    // or

    hl.PrintlnColor002("3. 8-bit color codes!")

    // Example 4 (hex)

    var hex = hl.Hex("5f8700", "4. Hex color codes!")
    fmt.Println(hex)

    // or

    hl.PrintHex("5f8700", "4. Hex color codes!\n")

    // or

    hl.PrintlnHex("5f8700", "4. Hex color codes!")

    // Example 5 (text wrapping)
    var long_var = "5."
    var word = "hilight"
    for i := 0; i < 32; i++ {
        long_var += " " + word
    }

    fmt.Println(hl.Wrap(80, hl.Hilight("green", long_var)))

    // or

    hl.PrintWrap(80, hl.Green("%s\n", long_var))

    // or

    hl.PrintlnWrap(80, hl.Green(long_var))

    // Example 6 (rainbow)
    long_var = "6."
    for i := 0; i < 8; i++ {
        long_var += " " + word
    }

    fmt.Println(hl.Rainbow(long_var))

    // or

    hl.PrintRainbow("%s\n", long_var)

    // or

    hl.PrintlnRainbow(long_var)

    // or

    hl.PrintlnOnRainbow(hl.White(long_var))

    // or

    hl.PrintlnRainbow(hl.OnRainbow(long_var))
}

The following colors are supported:

Foreground Background
black on_black
red on_red
green on_green
yellow on_yellow
blue on_blue
magenta on_magenta
cyan on_cyan
white on_white
light_black on_light_black
light_red on_light_red
light_green on_light_green
light_yellow on_light_yellow
light_blue on_light_blue
light_magenta on_light_magenta
light_cyan on_light_cyan
light_white on_light_white
default on_default
color000 to color255 on_color000 to on_color255
000000 to ffffff on_000000 to on_ffffff

The following modes are supported:

On Off Description
normal Same as default
reset Same as default
bold no_bold Turn on/off bold
dim no_dim Turn on/off dim. Not widely supported
faint no_faint Same as dim
italic no_italic Turn on/off italics. Sometimes treated as inverse. Not widely supported.
underline no_underline Turn on/off underline
blink no_blink Turn on/off blink. Less than 150/min.
blink_slow no_blink_slow Same as blink
blink_rapid no_blink_rapid Same as blink. 150+/min. Not widely supported.
inverse no_inverse Reverse foreground/background
negative no_negative Same as inverse
swap no_swap Same as inverse
conceal no_conceal Turn on/off conceal. Useful for passwords. Not widely supported.
hide no_hide Same as conceal
crossed_out no_crossed_out Characters legible, but marked for deletion. Not widely supported.
strikethrough no_strikethrough Same as CrossedOut
fraktur no_fraktur Hardly ever supported

TODO

  • Better README

Documentation

Overview

Code generated by scripts/generate_go_funcs; DO NOT EDIT.

Index

Constants

View Source
const Version = "1.6.3"

Version is the package version

Variables

View Source
var Colors = map[string]string{
	"black":         "30",
	"red":           "31",
	"green":         "32",
	"yellow":        "33",
	"blue":          "34",
	"magenta":       "35",
	"cyan":          "36",
	"white":         "37",
	"light_black":   "90",
	"light_red":     "91",
	"light_green":   "92",
	"light_yellow":  "93",
	"light_blue":    "94",
	"light_magenta": "95",
	"light_cyan":    "96",
	"light_white":   "97",

	"on_black":         "40",
	"on_red":           "41",
	"on_green":         "42",
	"on_yellow":        "43",
	"on_blue":          "44",
	"on_magenta":       "45",
	"on_cyan":          "46",
	"on_white":         "47",
	"on_light_black":   "100",
	"on_light_red":     "101",
	"on_light_green":   "102",
	"on_light_yellow":  "103",
	"on_light_blue":    "104",
	"on_light_magenta": "105",
	"on_light_cyan":    "106",
	"on_light_white":   "107",

	"default":    "39",
	"on_default": "49",
}

Colors maps color names to color codes

View Source
var Modes = map[string]string{
	"reset":         "0",
	"normal":        "0",
	"bold":          "1",
	"dim":           "2",
	"faint":         "2",
	"italic":        "3",
	"underline":     "4",
	"blink":         "5",
	"blink_slow":    "5",
	"blink_rapid":   "6",
	"inverse":       "7",
	"negative":      "7",
	"swap":          "7",
	"hide":          "8",
	"conceal":       "8",
	"crossed_out":   "9",
	"strikethrough": "9",
	"fraktur":       "20",

	"no_bold":          "21",
	"no_dim":           "22",
	"no_faint":         "22",
	"no_italic":        "23",
	"no_fraktur":       "23",
	"no_underline":     "24",
	"no_blink":         "25",
	"no_blink_slow":    "25",
	"no_blink_rapid":   "26",
	"no_inverse":       "27",
	"no_negative":      "27",
	"no_swap":          "27",
	"no_hide":          "28",
	"no_conceal":       "28",
	"no_crossed_out":   "29",
	"no_strikethrough": "29",
}

Modes maps mode names to mode codes

Functions

func Black

func Black(str string) string

Black will Hilight() the provided string with the specified ANSI code.

func Blackf added in v1.6.0

func Blackf(str string, args ...interface{}) string

Blackf wraps Black and works with format strings.

func Blink(str string) string

Blink will Hilight() the provided string with the specified ANSI code.

func BlinkRapid

func BlinkRapid(str string) string

BlinkRapid will Hilight() the provided string with the specified ANSI code.

func BlinkRapidf added in v1.6.0

func BlinkRapidf(str string, args ...interface{}) string

BlinkRapidf wraps BlinkRapid and works with format strings.

func BlinkSlow

func BlinkSlow(str string) string

BlinkSlow will Hilight() the provided string with the specified ANSI code.

func BlinkSlowf added in v1.6.0

func BlinkSlowf(str string, args ...interface{}) string

BlinkSlowf wraps BlinkSlow and works with format strings.

func Blinkf added in v1.6.0

func Blinkf(str string, args ...interface{}) string

Blinkf wraps Blink and works with format strings.

func Blue

func Blue(str string) string

Blue will Hilight() the provided string with the specified ANSI code.

func Bluef added in v1.6.0

func Bluef(str string, args ...interface{}) string

Bluef wraps Blue and works with format strings.

func Bold

func Bold(str string) string

Bold will Hilight() the provided string with the specified ANSI code.

func Boldf added in v1.6.0

func Boldf(str string, args ...interface{}) string

Boldf wraps Bold and works with format strings.

func Color000

func Color000(str string) string

Color000 will Hilight() the provided string with the specified ANSI code.

func Color000f added in v1.6.0

func Color000f(str string, args ...interface{}) string

Color000f wraps Color000 and works with format strings.

func Color001

func Color001(str string) string

Color001 will Hilight() the provided string with the specified ANSI code.

func Color001f added in v1.6.0

func Color001f(str string, args ...interface{}) string

Color001f wraps Color001 and works with format strings.

func Color002

func Color002(str string) string

Color002 will Hilight() the provided string with the specified ANSI code.

func Color002f added in v1.6.0

func Color002f(str string, args ...interface{}) string

Color002f wraps Color002 and works with format strings.

func Color003

func Color003(str string) string

Color003 will Hilight() the provided string with the specified ANSI code.

func Color003f added in v1.6.0

func Color003f(str string, args ...interface{}) string

Color003f wraps Color003 and works with format strings.

func Color004

func Color004(str string) string

Color004 will Hilight() the provided string with the specified ANSI code.

func Color004f added in v1.6.0

func Color004f(str string, args ...interface{}) string

Color004f wraps Color004 and works with format strings.

func Color005

func Color005(str string) string

Color005 will Hilight() the provided string with the specified ANSI code.

func Color005f added in v1.6.0

func Color005f(str string, args ...interface{}) string

Color005f wraps Color005 and works with format strings.

func Color006

func Color006(str string) string

Color006 will Hilight() the provided string with the specified ANSI code.

func Color006f added in v1.6.0

func Color006f(str string, args ...interface{}) string

Color006f wraps Color006 and works with format strings.

func Color007

func Color007(str string) string

Color007 will Hilight() the provided string with the specified ANSI code.

func Color007f added in v1.6.0

func Color007f(str string, args ...interface{}) string

Color007f wraps Color007 and works with format strings.

func Color008

func Color008(str string) string

Color008 will Hilight() the provided string with the specified ANSI code.

func Color008f added in v1.6.0

func Color008f(str string, args ...interface{}) string

Color008f wraps Color008 and works with format strings.

func Color009

func Color009(str string) string

Color009 will Hilight() the provided string with the specified ANSI code.

func Color009f added in v1.6.0

func Color009f(str string, args ...interface{}) string

Color009f wraps Color009 and works with format strings.

func Color010

func Color010(str string) string

Color010 will Hilight() the provided string with the specified ANSI code.

func Color010f added in v1.6.0

func Color010f(str string, args ...interface{}) string

Color010f wraps Color010 and works with format strings.

func Color011

func Color011(str string) string

Color011 will Hilight() the provided string with the specified ANSI code.

func Color011f added in v1.6.0

func Color011f(str string, args ...interface{}) string

Color011f wraps Color011 and works with format strings.

func Color012

func Color012(str string) string

Color012 will Hilight() the provided string with the specified ANSI code.

func Color012f added in v1.6.0

func Color012f(str string, args ...interface{}) string

Color012f wraps Color012 and works with format strings.

func Color013

func Color013(str string) string

Color013 will Hilight() the provided string with the specified ANSI code.

func Color013f added in v1.6.0

func Color013f(str string, args ...interface{}) string

Color013f wraps Color013 and works with format strings.

func Color014

func Color014(str string) string

Color014 will Hilight() the provided string with the specified ANSI code.

func Color014f added in v1.6.0

func Color014f(str string, args ...interface{}) string

Color014f wraps Color014 and works with format strings.

func Color015

func Color015(str string) string

Color015 will Hilight() the provided string with the specified ANSI code.

func Color015f added in v1.6.0

func Color015f(str string, args ...interface{}) string

Color015f wraps Color015 and works with format strings.

func Color016

func Color016(str string) string

Color016 will Hilight() the provided string with the specified ANSI code.

func Color016f added in v1.6.0

func Color016f(str string, args ...interface{}) string

Color016f wraps Color016 and works with format strings.

func Color017

func Color017(str string) string

Color017 will Hilight() the provided string with the specified ANSI code.

func Color017f added in v1.6.0

func Color017f(str string, args ...interface{}) string

Color017f wraps Color017 and works with format strings.

func Color018

func Color018(str string) string

Color018 will Hilight() the provided string with the specified ANSI code.

func Color018f added in v1.6.0

func Color018f(str string, args ...interface{}) string

Color018f wraps Color018 and works with format strings.

func Color019

func Color019(str string) string

Color019 will Hilight() the provided string with the specified ANSI code.

func Color019f added in v1.6.0

func Color019f(str string, args ...interface{}) string

Color019f wraps Color019 and works with format strings.

func Color020

func Color020(str string) string

Color020 will Hilight() the provided string with the specified ANSI code.

func Color020f added in v1.6.0

func Color020f(str string, args ...interface{}) string

Color020f wraps Color020 and works with format strings.

func Color021

func Color021(str string) string

Color021 will Hilight() the provided string with the specified ANSI code.

func Color021f added in v1.6.0

func Color021f(str string, args ...interface{}) string

Color021f wraps Color021 and works with format strings.

func Color022

func Color022(str string) string

Color022 will Hilight() the provided string with the specified ANSI code.

func Color022f added in v1.6.0

func Color022f(str string, args ...interface{}) string

Color022f wraps Color022 and works with format strings.

func Color023

func Color023(str string) string

Color023 will Hilight() the provided string with the specified ANSI code.

func Color023f added in v1.6.0

func Color023f(str string, args ...interface{}) string

Color023f wraps Color023 and works with format strings.

func Color024

func Color024(str string) string

Color024 will Hilight() the provided string with the specified ANSI code.

func Color024f added in v1.6.0

func Color024f(str string, args ...interface{}) string

Color024f wraps Color024 and works with format strings.

func Color025

func Color025(str string) string

Color025 will Hilight() the provided string with the specified ANSI code.

func Color025f added in v1.6.0

func Color025f(str string, args ...interface{}) string

Color025f wraps Color025 and works with format strings.

func Color026

func Color026(str string) string

Color026 will Hilight() the provided string with the specified ANSI code.

func Color026f added in v1.6.0

func Color026f(str string, args ...interface{}) string

Color026f wraps Color026 and works with format strings.

func Color027

func Color027(str string) string

Color027 will Hilight() the provided string with the specified ANSI code.

func Color027f added in v1.6.0

func Color027f(str string, args ...interface{}) string

Color027f wraps Color027 and works with format strings.

func Color028

func Color028(str string) string

Color028 will Hilight() the provided string with the specified ANSI code.

func Color028f added in v1.6.0

func Color028f(str string, args ...interface{}) string

Color028f wraps Color028 and works with format strings.

func Color029

func Color029(str string) string

Color029 will Hilight() the provided string with the specified ANSI code.

func Color029f added in v1.6.0

func Color029f(str string, args ...interface{}) string

Color029f wraps Color029 and works with format strings.

func Color030

func Color030(str string) string

Color030 will Hilight() the provided string with the specified ANSI code.

func Color030f added in v1.6.0

func Color030f(str string, args ...interface{}) string

Color030f wraps Color030 and works with format strings.

func Color031

func Color031(str string) string

Color031 will Hilight() the provided string with the specified ANSI code.

func Color031f added in v1.6.0

func Color031f(str string, args ...interface{}) string

Color031f wraps Color031 and works with format strings.

func Color032

func Color032(str string) string

Color032 will Hilight() the provided string with the specified ANSI code.

func Color032f added in v1.6.0

func Color032f(str string, args ...interface{}) string

Color032f wraps Color032 and works with format strings.

func Color033

func Color033(str string) string

Color033 will Hilight() the provided string with the specified ANSI code.

func Color033f added in v1.6.0

func Color033f(str string, args ...interface{}) string

Color033f wraps Color033 and works with format strings.

func Color034

func Color034(str string) string

Color034 will Hilight() the provided string with the specified ANSI code.

func Color034f added in v1.6.0

func Color034f(str string, args ...interface{}) string

Color034f wraps Color034 and works with format strings.

func Color035

func Color035(str string) string

Color035 will Hilight() the provided string with the specified ANSI code.

func Color035f added in v1.6.0

func Color035f(str string, args ...interface{}) string

Color035f wraps Color035 and works with format strings.

func Color036

func Color036(str string) string

Color036 will Hilight() the provided string with the specified ANSI code.

func Color036f added in v1.6.0

func Color036f(str string, args ...interface{}) string

Color036f wraps Color036 and works with format strings.

func Color037

func Color037(str string) string

Color037 will Hilight() the provided string with the specified ANSI code.

func Color037f added in v1.6.0

func Color037f(str string, args ...interface{}) string

Color037f wraps Color037 and works with format strings.

func Color038

func Color038(str string) string

Color038 will Hilight() the provided string with the specified ANSI code.

func Color038f added in v1.6.0

func Color038f(str string, args ...interface{}) string

Color038f wraps Color038 and works with format strings.

func Color039

func Color039(str string) string

Color039 will Hilight() the provided string with the specified ANSI code.

func Color039f added in v1.6.0

func Color039f(str string, args ...interface{}) string

Color039f wraps Color039 and works with format strings.

func Color040

func Color040(str string) string

Color040 will Hilight() the provided string with the specified ANSI code.

func Color040f added in v1.6.0

func Color040f(str string, args ...interface{}) string

Color040f wraps Color040 and works with format strings.

func Color041

func Color041(str string) string

Color041 will Hilight() the provided string with the specified ANSI code.

func Color041f added in v1.6.0

func Color041f(str string, args ...interface{}) string

Color041f wraps Color041 and works with format strings.

func Color042

func Color042(str string) string

Color042 will Hilight() the provided string with the specified ANSI code.

func Color042f added in v1.6.0

func Color042f(str string, args ...interface{}) string

Color042f wraps Color042 and works with format strings.

func Color043

func Color043(str string) string

Color043 will Hilight() the provided string with the specified ANSI code.

func Color043f added in v1.6.0

func Color043f(str string, args ...interface{}) string

Color043f wraps Color043 and works with format strings.

func Color044

func Color044(str string) string

Color044 will Hilight() the provided string with the specified ANSI code.

func Color044f added in v1.6.0

func Color044f(str string, args ...interface{}) string

Color044f wraps Color044 and works with format strings.

func Color045

func Color045(str string) string

Color045 will Hilight() the provided string with the specified ANSI code.

func Color045f added in v1.6.0

func Color045f(str string, args ...interface{}) string

Color045f wraps Color045 and works with format strings.

func Color046

func Color046(str string) string

Color046 will Hilight() the provided string with the specified ANSI code.

func Color046f added in v1.6.0

func Color046f(str string, args ...interface{}) string

Color046f wraps Color046 and works with format strings.

func Color047

func Color047(str string) string

Color047 will Hilight() the provided string with the specified ANSI code.

func Color047f added in v1.6.0

func Color047f(str string, args ...interface{}) string

Color047f wraps Color047 and works with format strings.

func Color048

func Color048(str string) string

Color048 will Hilight() the provided string with the specified ANSI code.

func Color048f added in v1.6.0

func Color048f(str string, args ...interface{}) string

Color048f wraps Color048 and works with format strings.

func Color049

func Color049(str string) string

Color049 will Hilight() the provided string with the specified ANSI code.

func Color049f added in v1.6.0

func Color049f(str string, args ...interface{}) string

Color049f wraps Color049 and works with format strings.

func Color050

func Color050(str string) string

Color050 will Hilight() the provided string with the specified ANSI code.

func Color050f added in v1.6.0

func Color050f(str string, args ...interface{}) string

Color050f wraps Color050 and works with format strings.

func Color051

func Color051(str string) string

Color051 will Hilight() the provided string with the specified ANSI code.

func Color051f added in v1.6.0

func Color051f(str string, args ...interface{}) string

Color051f wraps Color051 and works with format strings.

func Color052

func Color052(str string) string

Color052 will Hilight() the provided string with the specified ANSI code.

func Color052f added in v1.6.0

func Color052f(str string, args ...interface{}) string

Color052f wraps Color052 and works with format strings.

func Color053

func Color053(str string) string

Color053 will Hilight() the provided string with the specified ANSI code.

func Color053f added in v1.6.0

func Color053f(str string, args ...interface{}) string

Color053f wraps Color053 and works with format strings.

func Color054

func Color054(str string) string

Color054 will Hilight() the provided string with the specified ANSI code.

func Color054f added in v1.6.0

func Color054f(str string, args ...interface{}) string

Color054f wraps Color054 and works with format strings.

func Color055

func Color055(str string) string

Color055 will Hilight() the provided string with the specified ANSI code.

func Color055f added in v1.6.0

func Color055f(str string, args ...interface{}) string

Color055f wraps Color055 and works with format strings.

func Color056

func Color056(str string) string

Color056 will Hilight() the provided string with the specified ANSI code.

func Color056f added in v1.6.0

func Color056f(str string, args ...interface{}) string

Color056f wraps Color056 and works with format strings.

func Color057

func Color057(str string) string

Color057 will Hilight() the provided string with the specified ANSI code.

func Color057f added in v1.6.0

func Color057f(str string, args ...interface{}) string

Color057f wraps Color057 and works with format strings.

func Color058

func Color058(str string) string

Color058 will Hilight() the provided string with the specified ANSI code.

func Color058f added in v1.6.0

func Color058f(str string, args ...interface{}) string

Color058f wraps Color058 and works with format strings.

func Color059

func Color059(str string) string

Color059 will Hilight() the provided string with the specified ANSI code.

func Color059f added in v1.6.0

func Color059f(str string, args ...interface{}) string

Color059f wraps Color059 and works with format strings.

func Color060

func Color060(str string) string

Color060 will Hilight() the provided string with the specified ANSI code.

func Color060f added in v1.6.0

func Color060f(str string, args ...interface{}) string

Color060f wraps Color060 and works with format strings.

func Color061

func Color061(str string) string

Color061 will Hilight() the provided string with the specified ANSI code.

func Color061f added in v1.6.0

func Color061f(str string, args ...interface{}) string

Color061f wraps Color061 and works with format strings.

func Color062

func Color062(str string) string

Color062 will Hilight() the provided string with the specified ANSI code.

func Color062f added in v1.6.0

func Color062f(str string, args ...interface{}) string

Color062f wraps Color062 and works with format strings.

func Color063

func Color063(str string) string

Color063 will Hilight() the provided string with the specified ANSI code.

func Color063f added in v1.6.0

func Color063f(str string, args ...interface{}) string

Color063f wraps Color063 and works with format strings.

func Color064

func Color064(str string) string

Color064 will Hilight() the provided string with the specified ANSI code.

func Color064f added in v1.6.0

func Color064f(str string, args ...interface{}) string

Color064f wraps Color064 and works with format strings.

func Color065

func Color065(str string) string

Color065 will Hilight() the provided string with the specified ANSI code.

func Color065f added in v1.6.0

func Color065f(str string, args ...interface{}) string

Color065f wraps Color065 and works with format strings.

func Color066

func Color066(str string) string

Color066 will Hilight() the provided string with the specified ANSI code.

func Color066f added in v1.6.0

func Color066f(str string, args ...interface{}) string

Color066f wraps Color066 and works with format strings.

func Color067

func Color067(str string) string

Color067 will Hilight() the provided string with the specified ANSI code.

func Color067f added in v1.6.0

func Color067f(str string, args ...interface{}) string

Color067f wraps Color067 and works with format strings.

func Color068

func Color068(str string) string

Color068 will Hilight() the provided string with the specified ANSI code.

func Color068f added in v1.6.0

func Color068f(str string, args ...interface{}) string

Color068f wraps Color068 and works with format strings.

func Color069

func Color069(str string) string

Color069 will Hilight() the provided string with the specified ANSI code.

func Color069f added in v1.6.0

func Color069f(str string, args ...interface{}) string

Color069f wraps Color069 and works with format strings.

func Color070

func Color070(str string) string

Color070 will Hilight() the provided string with the specified ANSI code.

func Color070f added in v1.6.0

func Color070f(str string, args ...interface{}) string

Color070f wraps Color070 and works with format strings.

func Color071

func Color071(str string) string

Color071 will Hilight() the provided string with the specified ANSI code.

func Color071f added in v1.6.0

func Color071f(str string, args ...interface{}) string

Color071f wraps Color071 and works with format strings.

func Color072

func Color072(str string) string

Color072 will Hilight() the provided string with the specified ANSI code.

func Color072f added in v1.6.0

func Color072f(str string, args ...interface{}) string

Color072f wraps Color072 and works with format strings.

func Color073

func Color073(str string) string

Color073 will Hilight() the provided string with the specified ANSI code.

func Color073f added in v1.6.0

func Color073f(str string, args ...interface{}) string

Color073f wraps Color073 and works with format strings.

func Color074

func Color074(str string) string

Color074 will Hilight() the provided string with the specified ANSI code.

func Color074f added in v1.6.0

func Color074f(str string, args ...interface{}) string

Color074f wraps Color074 and works with format strings.

func Color075

func Color075(str string) string

Color075 will Hilight() the provided string with the specified ANSI code.

func Color075f added in v1.6.0

func Color075f(str string, args ...interface{}) string

Color075f wraps Color075 and works with format strings.

func Color076

func Color076(str string) string

Color076 will Hilight() the provided string with the specified ANSI code.

func Color076f added in v1.6.0

func Color076f(str string, args ...interface{}) string

Color076f wraps Color076 and works with format strings.

func Color077

func Color077(str string) string

Color077 will Hilight() the provided string with the specified ANSI code.

func Color077f added in v1.6.0

func Color077f(str string, args ...interface{}) string

Color077f wraps Color077 and works with format strings.

func Color078

func Color078(str string) string

Color078 will Hilight() the provided string with the specified ANSI code.

func Color078f added in v1.6.0

func Color078f(str string, args ...interface{}) string

Color078f wraps Color078 and works with format strings.

func Color079

func Color079(str string) string

Color079 will Hilight() the provided string with the specified ANSI code.

func Color079f added in v1.6.0

func Color079f(str string, args ...interface{}) string

Color079f wraps Color079 and works with format strings.

func Color080

func Color080(str string) string

Color080 will Hilight() the provided string with the specified ANSI code.

func Color080f added in v1.6.0

func Color080f(str string, args ...interface{}) string

Color080f wraps Color080 and works with format strings.

func Color081

func Color081(str string) string

Color081 will Hilight() the provided string with the specified ANSI code.

func Color081f added in v1.6.0

func Color081f(str string, args ...interface{}) string

Color081f wraps Color081 and works with format strings.

func Color082

func Color082(str string) string

Color082 will Hilight() the provided string with the specified ANSI code.

func Color082f added in v1.6.0

func Color082f(str string, args ...interface{}) string

Color082f wraps Color082 and works with format strings.

func Color083

func Color083(str string) string

Color083 will Hilight() the provided string with the specified ANSI code.

func Color083f added in v1.6.0

func Color083f(str string, args ...interface{}) string

Color083f wraps Color083 and works with format strings.

func Color084

func Color084(str string) string

Color084 will Hilight() the provided string with the specified ANSI code.

func Color084f added in v1.6.0

func Color084f(str string, args ...interface{}) string

Color084f wraps Color084 and works with format strings.

func Color085

func Color085(str string) string

Color085 will Hilight() the provided string with the specified ANSI code.

func Color085f added in v1.6.0

func Color085f(str string, args ...interface{}) string

Color085f wraps Color085 and works with format strings.

func Color086

func Color086(str string) string

Color086 will Hilight() the provided string with the specified ANSI code.

func Color086f added in v1.6.0

func Color086f(str string, args ...interface{}) string

Color086f wraps Color086 and works with format strings.

func Color087

func Color087(str string) string

Color087 will Hilight() the provided string with the specified ANSI code.

func Color087f added in v1.6.0

func Color087f(str string, args ...interface{}) string

Color087f wraps Color087 and works with format strings.

func Color088

func Color088(str string) string

Color088 will Hilight() the provided string with the specified ANSI code.

func Color088f added in v1.6.0

func Color088f(str string, args ...interface{}) string

Color088f wraps Color088 and works with format strings.

func Color089

func Color089(str string) string

Color089 will Hilight() the provided string with the specified ANSI code.

func Color089f added in v1.6.0

func Color089f(str string, args ...interface{}) string

Color089f wraps Color089 and works with format strings.

func Color090

func Color090(str string) string

Color090 will Hilight() the provided string with the specified ANSI code.

func Color090f added in v1.6.0

func Color090f(str string, args ...interface{}) string

Color090f wraps Color090 and works with format strings.

func Color091

func Color091(str string) string

Color091 will Hilight() the provided string with the specified ANSI code.

func Color091f added in v1.6.0

func Color091f(str string, args ...interface{}) string

Color091f wraps Color091 and works with format strings.

func Color092

func Color092(str string) string

Color092 will Hilight() the provided string with the specified ANSI code.

func Color092f added in v1.6.0

func Color092f(str string, args ...interface{}) string

Color092f wraps Color092 and works with format strings.

func Color093

func Color093(str string) string

Color093 will Hilight() the provided string with the specified ANSI code.

func Color093f added in v1.6.0

func Color093f(str string, args ...interface{}) string

Color093f wraps Color093 and works with format strings.

func Color094

func Color094(str string) string

Color094 will Hilight() the provided string with the specified ANSI code.

func Color094f added in v1.6.0

func Color094f(str string, args ...interface{}) string

Color094f wraps Color094 and works with format strings.

func Color095

func Color095(str string) string

Color095 will Hilight() the provided string with the specified ANSI code.

func Color095f added in v1.6.0

func Color095f(str string, args ...interface{}) string

Color095f wraps Color095 and works with format strings.

func Color096

func Color096(str string) string

Color096 will Hilight() the provided string with the specified ANSI code.

func Color096f added in v1.6.0

func Color096f(str string, args ...interface{}) string

Color096f wraps Color096 and works with format strings.

func Color097

func Color097(str string) string

Color097 will Hilight() the provided string with the specified ANSI code.

func Color097f added in v1.6.0

func Color097f(str string, args ...interface{}) string

Color097f wraps Color097 and works with format strings.

func Color098

func Color098(str string) string

Color098 will Hilight() the provided string with the specified ANSI code.

func Color098f added in v1.6.0

func Color098f(str string, args ...interface{}) string

Color098f wraps Color098 and works with format strings.

func Color099

func Color099(str string) string

Color099 will Hilight() the provided string with the specified ANSI code.

func Color099f added in v1.6.0

func Color099f(str string, args ...interface{}) string

Color099f wraps Color099 and works with format strings.

func Color100

func Color100(str string) string

Color100 will Hilight() the provided string with the specified ANSI code.

func Color100f added in v1.6.0

func Color100f(str string, args ...interface{}) string

Color100f wraps Color100 and works with format strings.

func Color101

func Color101(str string) string

Color101 will Hilight() the provided string with the specified ANSI code.

func Color101f added in v1.6.0

func Color101f(str string, args ...interface{}) string

Color101f wraps Color101 and works with format strings.

func Color102

func Color102(str string) string

Color102 will Hilight() the provided string with the specified ANSI code.

func Color102f added in v1.6.0

func Color102f(str string, args ...interface{}) string

Color102f wraps Color102 and works with format strings.

func Color103

func Color103(str string) string

Color103 will Hilight() the provided string with the specified ANSI code.

func Color103f added in v1.6.0

func Color103f(str string, args ...interface{}) string

Color103f wraps Color103 and works with format strings.

func Color104

func Color104(str string) string

Color104 will Hilight() the provided string with the specified ANSI code.

func Color104f added in v1.6.0

func Color104f(str string, args ...interface{}) string

Color104f wraps Color104 and works with format strings.

func Color105

func Color105(str string) string

Color105 will Hilight() the provided string with the specified ANSI code.

func Color105f added in v1.6.0

func Color105f(str string, args ...interface{}) string

Color105f wraps Color105 and works with format strings.

func Color106

func Color106(str string) string

Color106 will Hilight() the provided string with the specified ANSI code.

func Color106f added in v1.6.0

func Color106f(str string, args ...interface{}) string

Color106f wraps Color106 and works with format strings.

func Color107

func Color107(str string) string

Color107 will Hilight() the provided string with the specified ANSI code.

func Color107f added in v1.6.0

func Color107f(str string, args ...interface{}) string

Color107f wraps Color107 and works with format strings.

func Color108

func Color108(str string) string

Color108 will Hilight() the provided string with the specified ANSI code.

func Color108f added in v1.6.0

func Color108f(str string, args ...interface{}) string

Color108f wraps Color108 and works with format strings.

func Color109

func Color109(str string) string

Color109 will Hilight() the provided string with the specified ANSI code.

func Color109f added in v1.6.0

func Color109f(str string, args ...interface{}) string

Color109f wraps Color109 and works with format strings.

func Color110

func Color110(str string) string

Color110 will Hilight() the provided string with the specified ANSI code.

func Color110f added in v1.6.0

func Color110f(str string, args ...interface{}) string

Color110f wraps Color110 and works with format strings.

func Color111

func Color111(str string) string

Color111 will Hilight() the provided string with the specified ANSI code.

func Color111f added in v1.6.0

func Color111f(str string, args ...interface{}) string

Color111f wraps Color111 and works with format strings.

func Color112

func Color112(str string) string

Color112 will Hilight() the provided string with the specified ANSI code.

func Color112f added in v1.6.0

func Color112f(str string, args ...interface{}) string

Color112f wraps Color112 and works with format strings.

func Color113

func Color113(str string) string

Color113 will Hilight() the provided string with the specified ANSI code.

func Color113f added in v1.6.0

func Color113f(str string, args ...interface{}) string

Color113f wraps Color113 and works with format strings.

func Color114

func Color114(str string) string

Color114 will Hilight() the provided string with the specified ANSI code.

func Color114f added in v1.6.0

func Color114f(str string, args ...interface{}) string

Color114f wraps Color114 and works with format strings.

func Color115

func Color115(str string) string

Color115 will Hilight() the provided string with the specified ANSI code.

func Color115f added in v1.6.0

func Color115f(str string, args ...interface{}) string

Color115f wraps Color115 and works with format strings.

func Color116

func Color116(str string) string

Color116 will Hilight() the provided string with the specified ANSI code.

func Color116f added in v1.6.0

func Color116f(str string, args ...interface{}) string

Color116f wraps Color116 and works with format strings.

func Color117

func Color117(str string) string

Color117 will Hilight() the provided string with the specified ANSI code.

func Color117f added in v1.6.0

func Color117f(str string, args ...interface{}) string

Color117f wraps Color117 and works with format strings.

func Color118

func Color118(str string) string

Color118 will Hilight() the provided string with the specified ANSI code.

func Color118f added in v1.6.0

func Color118f(str string, args ...interface{}) string

Color118f wraps Color118 and works with format strings.

func Color119

func Color119(str string) string

Color119 will Hilight() the provided string with the specified ANSI code.

func Color119f added in v1.6.0

func Color119f(str string, args ...interface{}) string

Color119f wraps Color119 and works with format strings.

func Color120

func Color120(str string) string

Color120 will Hilight() the provided string with the specified ANSI code.

func Color120f added in v1.6.0

func Color120f(str string, args ...interface{}) string

Color120f wraps Color120 and works with format strings.

func Color121

func Color121(str string) string

Color121 will Hilight() the provided string with the specified ANSI code.

func Color121f added in v1.6.0

func Color121f(str string, args ...interface{}) string

Color121f wraps Color121 and works with format strings.

func Color122

func Color122(str string) string

Color122 will Hilight() the provided string with the specified ANSI code.

func Color122f added in v1.6.0

func Color122f(str string, args ...interface{}) string

Color122f wraps Color122 and works with format strings.

func Color123

func Color123(str string) string

Color123 will Hilight() the provided string with the specified ANSI code.

func Color123f added in v1.6.0

func Color123f(str string, args ...interface{}) string

Color123f wraps Color123 and works with format strings.

func Color124

func Color124(str string) string

Color124 will Hilight() the provided string with the specified ANSI code.

func Color124f added in v1.6.0

func Color124f(str string, args ...interface{}) string

Color124f wraps Color124 and works with format strings.

func Color125

func Color125(str string) string

Color125 will Hilight() the provided string with the specified ANSI code.

func Color125f added in v1.6.0

func Color125f(str string, args ...interface{}) string

Color125f wraps Color125 and works with format strings.

func Color126

func Color126(str string) string

Color126 will Hilight() the provided string with the specified ANSI code.

func Color126f added in v1.6.0

func Color126f(str string, args ...interface{}) string

Color126f wraps Color126 and works with format strings.

func Color127

func Color127(str string) string

Color127 will Hilight() the provided string with the specified ANSI code.

func Color127f added in v1.6.0

func Color127f(str string, args ...interface{}) string

Color127f wraps Color127 and works with format strings.

func Color128

func Color128(str string) string

Color128 will Hilight() the provided string with the specified ANSI code.

func Color128f added in v1.6.0

func Color128f(str string, args ...interface{}) string

Color128f wraps Color128 and works with format strings.

func Color129

func Color129(str string) string

Color129 will Hilight() the provided string with the specified ANSI code.

func Color129f added in v1.6.0

func Color129f(str string, args ...interface{}) string

Color129f wraps Color129 and works with format strings.

func Color130

func Color130(str string) string

Color130 will Hilight() the provided string with the specified ANSI code.

func Color130f added in v1.6.0

func Color130f(str string, args ...interface{}) string

Color130f wraps Color130 and works with format strings.

func Color131

func Color131(str string) string

Color131 will Hilight() the provided string with the specified ANSI code.

func Color131f added in v1.6.0

func Color131f(str string, args ...interface{}) string

Color131f wraps Color131 and works with format strings.

func Color132

func Color132(str string) string

Color132 will Hilight() the provided string with the specified ANSI code.

func Color132f added in v1.6.0

func Color132f(str string, args ...interface{}) string

Color132f wraps Color132 and works with format strings.

func Color133

func Color133(str string) string

Color133 will Hilight() the provided string with the specified ANSI code.

func Color133f added in v1.6.0

func Color133f(str string, args ...interface{}) string

Color133f wraps Color133 and works with format strings.

func Color134

func Color134(str string) string

Color134 will Hilight() the provided string with the specified ANSI code.

func Color134f added in v1.6.0

func Color134f(str string, args ...interface{}) string

Color134f wraps Color134 and works with format strings.

func Color135

func Color135(str string) string

Color135 will Hilight() the provided string with the specified ANSI code.

func Color135f added in v1.6.0

func Color135f(str string, args ...interface{}) string

Color135f wraps Color135 and works with format strings.

func Color136

func Color136(str string) string

Color136 will Hilight() the provided string with the specified ANSI code.

func Color136f added in v1.6.0

func Color136f(str string, args ...interface{}) string

Color136f wraps Color136 and works with format strings.

func Color137

func Color137(str string) string

Color137 will Hilight() the provided string with the specified ANSI code.

func Color137f added in v1.6.0

func Color137f(str string, args ...interface{}) string

Color137f wraps Color137 and works with format strings.

func Color138

func Color138(str string) string

Color138 will Hilight() the provided string with the specified ANSI code.

func Color138f added in v1.6.0

func Color138f(str string, args ...interface{}) string

Color138f wraps Color138 and works with format strings.

func Color139

func Color139(str string) string

Color139 will Hilight() the provided string with the specified ANSI code.

func Color139f added in v1.6.0

func Color139f(str string, args ...interface{}) string

Color139f wraps Color139 and works with format strings.

func Color140

func Color140(str string) string

Color140 will Hilight() the provided string with the specified ANSI code.

func Color140f added in v1.6.0

func Color140f(str string, args ...interface{}) string

Color140f wraps Color140 and works with format strings.

func Color141

func Color141(str string) string

Color141 will Hilight() the provided string with the specified ANSI code.

func Color141f added in v1.6.0

func Color141f(str string, args ...interface{}) string

Color141f wraps Color141 and works with format strings.

func Color142

func Color142(str string) string

Color142 will Hilight() the provided string with the specified ANSI code.

func Color142f added in v1.6.0

func Color142f(str string, args ...interface{}) string

Color142f wraps Color142 and works with format strings.

func Color143

func Color143(str string) string

Color143 will Hilight() the provided string with the specified ANSI code.

func Color143f added in v1.6.0

func Color143f(str string, args ...interface{}) string

Color143f wraps Color143 and works with format strings.

func Color144

func Color144(str string) string

Color144 will Hilight() the provided string with the specified ANSI code.

func Color144f added in v1.6.0

func Color144f(str string, args ...interface{}) string

Color144f wraps Color144 and works with format strings.

func Color145

func Color145(str string) string

Color145 will Hilight() the provided string with the specified ANSI code.

func Color145f added in v1.6.0

func Color145f(str string, args ...interface{}) string

Color145f wraps Color145 and works with format strings.

func Color146

func Color146(str string) string

Color146 will Hilight() the provided string with the specified ANSI code.

func Color146f added in v1.6.0

func Color146f(str string, args ...interface{}) string

Color146f wraps Color146 and works with format strings.

func Color147

func Color147(str string) string

Color147 will Hilight() the provided string with the specified ANSI code.

func Color147f added in v1.6.0

func Color147f(str string, args ...interface{}) string

Color147f wraps Color147 and works with format strings.

func Color148

func Color148(str string) string

Color148 will Hilight() the provided string with the specified ANSI code.

func Color148f added in v1.6.0

func Color148f(str string, args ...interface{}) string

Color148f wraps Color148 and works with format strings.

func Color149

func Color149(str string) string

Color149 will Hilight() the provided string with the specified ANSI code.

func Color149f added in v1.6.0

func Color149f(str string, args ...interface{}) string

Color149f wraps Color149 and works with format strings.

func Color150

func Color150(str string) string

Color150 will Hilight() the provided string with the specified ANSI code.

func Color150f added in v1.6.0

func Color150f(str string, args ...interface{}) string

Color150f wraps Color150 and works with format strings.

func Color151

func Color151(str string) string

Color151 will Hilight() the provided string with the specified ANSI code.

func Color151f added in v1.6.0

func Color151f(str string, args ...interface{}) string

Color151f wraps Color151 and works with format strings.

func Color152

func Color152(str string) string

Color152 will Hilight() the provided string with the specified ANSI code.

func Color152f added in v1.6.0

func Color152f(str string, args ...interface{}) string

Color152f wraps Color152 and works with format strings.

func Color153

func Color153(str string) string

Color153 will Hilight() the provided string with the specified ANSI code.

func Color153f added in v1.6.0

func Color153f(str string, args ...interface{}) string

Color153f wraps Color153 and works with format strings.

func Color154

func Color154(str string) string

Color154 will Hilight() the provided string with the specified ANSI code.

func Color154f added in v1.6.0

func Color154f(str string, args ...interface{}) string

Color154f wraps Color154 and works with format strings.

func Color155

func Color155(str string) string

Color155 will Hilight() the provided string with the specified ANSI code.

func Color155f added in v1.6.0

func Color155f(str string, args ...interface{}) string

Color155f wraps Color155 and works with format strings.

func Color156

func Color156(str string) string

Color156 will Hilight() the provided string with the specified ANSI code.

func Color156f added in v1.6.0

func Color156f(str string, args ...interface{}) string

Color156f wraps Color156 and works with format strings.

func Color157

func Color157(str string) string

Color157 will Hilight() the provided string with the specified ANSI code.

func Color157f added in v1.6.0

func Color157f(str string, args ...interface{}) string

Color157f wraps Color157 and works with format strings.

func Color158

func Color158(str string) string

Color158 will Hilight() the provided string with the specified ANSI code.

func Color158f added in v1.6.0

func Color158f(str string, args ...interface{}) string

Color158f wraps Color158 and works with format strings.

func Color159

func Color159(str string) string

Color159 will Hilight() the provided string with the specified ANSI code.

func Color159f added in v1.6.0

func Color159f(str string, args ...interface{}) string

Color159f wraps Color159 and works with format strings.

func Color160

func Color160(str string) string

Color160 will Hilight() the provided string with the specified ANSI code.

func Color160f added in v1.6.0

func Color160f(str string, args ...interface{}) string

Color160f wraps Color160 and works with format strings.

func Color161

func Color161(str string) string

Color161 will Hilight() the provided string with the specified ANSI code.

func Color161f added in v1.6.0

func Color161f(str string, args ...interface{}) string

Color161f wraps Color161 and works with format strings.

func Color162

func Color162(str string) string

Color162 will Hilight() the provided string with the specified ANSI code.

func Color162f added in v1.6.0

func Color162f(str string, args ...interface{}) string

Color162f wraps Color162 and works with format strings.

func Color163

func Color163(str string) string

Color163 will Hilight() the provided string with the specified ANSI code.

func Color163f added in v1.6.0

func Color163f(str string, args ...interface{}) string

Color163f wraps Color163 and works with format strings.

func Color164

func Color164(str string) string

Color164 will Hilight() the provided string with the specified ANSI code.

func Color164f added in v1.6.0

func Color164f(str string, args ...interface{}) string

Color164f wraps Color164 and works with format strings.

func Color165

func Color165(str string) string

Color165 will Hilight() the provided string with the specified ANSI code.

func Color165f added in v1.6.0

func Color165f(str string, args ...interface{}) string

Color165f wraps Color165 and works with format strings.

func Color166

func Color166(str string) string

Color166 will Hilight() the provided string with the specified ANSI code.

func Color166f added in v1.6.0

func Color166f(str string, args ...interface{}) string

Color166f wraps Color166 and works with format strings.

func Color167

func Color167(str string) string

Color167 will Hilight() the provided string with the specified ANSI code.

func Color167f added in v1.6.0

func Color167f(str string, args ...interface{}) string

Color167f wraps Color167 and works with format strings.

func Color168

func Color168(str string) string

Color168 will Hilight() the provided string with the specified ANSI code.

func Color168f added in v1.6.0

func Color168f(str string, args ...interface{}) string

Color168f wraps Color168 and works with format strings.

func Color169

func Color169(str string) string

Color169 will Hilight() the provided string with the specified ANSI code.

func Color169f added in v1.6.0

func Color169f(str string, args ...interface{}) string

Color169f wraps Color169 and works with format strings.

func Color170

func Color170(str string) string

Color170 will Hilight() the provided string with the specified ANSI code.

func Color170f added in v1.6.0

func Color170f(str string, args ...interface{}) string

Color170f wraps Color170 and works with format strings.

func Color171

func Color171(str string) string

Color171 will Hilight() the provided string with the specified ANSI code.

func Color171f added in v1.6.0

func Color171f(str string, args ...interface{}) string

Color171f wraps Color171 and works with format strings.

func Color172

func Color172(str string) string

Color172 will Hilight() the provided string with the specified ANSI code.

func Color172f added in v1.6.0

func Color172f(str string, args ...interface{}) string

Color172f wraps Color172 and works with format strings.

func Color173

func Color173(str string) string

Color173 will Hilight() the provided string with the specified ANSI code.

func Color173f added in v1.6.0

func Color173f(str string, args ...interface{}) string

Color173f wraps Color173 and works with format strings.

func Color174

func Color174(str string) string

Color174 will Hilight() the provided string with the specified ANSI code.

func Color174f added in v1.6.0

func Color174f(str string, args ...interface{}) string

Color174f wraps Color174 and works with format strings.

func Color175

func Color175(str string) string

Color175 will Hilight() the provided string with the specified ANSI code.

func Color175f added in v1.6.0

func Color175f(str string, args ...interface{}) string

Color175f wraps Color175 and works with format strings.

func Color176

func Color176(str string) string

Color176 will Hilight() the provided string with the specified ANSI code.

func Color176f added in v1.6.0

func Color176f(str string, args ...interface{}) string

Color176f wraps Color176 and works with format strings.

func Color177

func Color177(str string) string

Color177 will Hilight() the provided string with the specified ANSI code.

func Color177f added in v1.6.0

func Color177f(str string, args ...interface{}) string

Color177f wraps Color177 and works with format strings.

func Color178

func Color178(str string) string

Color178 will Hilight() the provided string with the specified ANSI code.

func Color178f added in v1.6.0

func Color178f(str string, args ...interface{}) string

Color178f wraps Color178 and works with format strings.

func Color179

func Color179(str string) string

Color179 will Hilight() the provided string with the specified ANSI code.

func Color179f added in v1.6.0

func Color179f(str string, args ...interface{}) string

Color179f wraps Color179 and works with format strings.

func Color180

func Color180(str string) string

Color180 will Hilight() the provided string with the specified ANSI code.

func Color180f added in v1.6.0

func Color180f(str string, args ...interface{}) string

Color180f wraps Color180 and works with format strings.

func Color181

func Color181(str string) string

Color181 will Hilight() the provided string with the specified ANSI code.

func Color181f added in v1.6.0

func Color181f(str string, args ...interface{}) string

Color181f wraps Color181 and works with format strings.

func Color182

func Color182(str string) string

Color182 will Hilight() the provided string with the specified ANSI code.

func Color182f added in v1.6.0

func Color182f(str string, args ...interface{}) string

Color182f wraps Color182 and works with format strings.

func Color183

func Color183(str string) string

Color183 will Hilight() the provided string with the specified ANSI code.

func Color183f added in v1.6.0

func Color183f(str string, args ...interface{}) string

Color183f wraps Color183 and works with format strings.

func Color184

func Color184(str string) string

Color184 will Hilight() the provided string with the specified ANSI code.

func Color184f added in v1.6.0

func Color184f(str string, args ...interface{}) string

Color184f wraps Color184 and works with format strings.

func Color185

func Color185(str string) string

Color185 will Hilight() the provided string with the specified ANSI code.

func Color185f added in v1.6.0

func Color185f(str string, args ...interface{}) string

Color185f wraps Color185 and works with format strings.

func Color186

func Color186(str string) string

Color186 will Hilight() the provided string with the specified ANSI code.

func Color186f added in v1.6.0

func Color186f(str string, args ...interface{}) string

Color186f wraps Color186 and works with format strings.

func Color187

func Color187(str string) string

Color187 will Hilight() the provided string with the specified ANSI code.

func Color187f added in v1.6.0

func Color187f(str string, args ...interface{}) string

Color187f wraps Color187 and works with format strings.

func Color188

func Color188(str string) string

Color188 will Hilight() the provided string with the specified ANSI code.

func Color188f added in v1.6.0

func Color188f(str string, args ...interface{}) string

Color188f wraps Color188 and works with format strings.

func Color189

func Color189(str string) string

Color189 will Hilight() the provided string with the specified ANSI code.

func Color189f added in v1.6.0

func Color189f(str string, args ...interface{}) string

Color189f wraps Color189 and works with format strings.

func Color190

func Color190(str string) string

Color190 will Hilight() the provided string with the specified ANSI code.

func Color190f added in v1.6.0

func Color190f(str string, args ...interface{}) string

Color190f wraps Color190 and works with format strings.

func Color191

func Color191(str string) string

Color191 will Hilight() the provided string with the specified ANSI code.

func Color191f added in v1.6.0

func Color191f(str string, args ...interface{}) string

Color191f wraps Color191 and works with format strings.

func Color192

func Color192(str string) string

Color192 will Hilight() the provided string with the specified ANSI code.

func Color192f added in v1.6.0

func Color192f(str string, args ...interface{}) string

Color192f wraps Color192 and works with format strings.

func Color193

func Color193(str string) string

Color193 will Hilight() the provided string with the specified ANSI code.

func Color193f added in v1.6.0

func Color193f(str string, args ...interface{}) string

Color193f wraps Color193 and works with format strings.

func Color194

func Color194(str string) string

Color194 will Hilight() the provided string with the specified ANSI code.

func Color194f added in v1.6.0

func Color194f(str string, args ...interface{}) string

Color194f wraps Color194 and works with format strings.

func Color195

func Color195(str string) string

Color195 will Hilight() the provided string with the specified ANSI code.

func Color195f added in v1.6.0

func Color195f(str string, args ...interface{}) string

Color195f wraps Color195 and works with format strings.

func Color196

func Color196(str string) string

Color196 will Hilight() the provided string with the specified ANSI code.

func Color196f added in v1.6.0

func Color196f(str string, args ...interface{}) string

Color196f wraps Color196 and works with format strings.

func Color197

func Color197(str string) string

Color197 will Hilight() the provided string with the specified ANSI code.

func Color197f added in v1.6.0

func Color197f(str string, args ...interface{}) string

Color197f wraps Color197 and works with format strings.

func Color198

func Color198(str string) string

Color198 will Hilight() the provided string with the specified ANSI code.

func Color198f added in v1.6.0

func Color198f(str string, args ...interface{}) string

Color198f wraps Color198 and works with format strings.

func Color199

func Color199(str string) string

Color199 will Hilight() the provided string with the specified ANSI code.

func Color199f added in v1.6.0

func Color199f(str string, args ...interface{}) string

Color199f wraps Color199 and works with format strings.

func Color200

func Color200(str string) string

Color200 will Hilight() the provided string with the specified ANSI code.

func Color200f added in v1.6.0

func Color200f(str string, args ...interface{}) string

Color200f wraps Color200 and works with format strings.

func Color201

func Color201(str string) string

Color201 will Hilight() the provided string with the specified ANSI code.

func Color201f added in v1.6.0

func Color201f(str string, args ...interface{}) string

Color201f wraps Color201 and works with format strings.

func Color202

func Color202(str string) string

Color202 will Hilight() the provided string with the specified ANSI code.

func Color202f added in v1.6.0

func Color202f(str string, args ...interface{}) string

Color202f wraps Color202 and works with format strings.

func Color203

func Color203(str string) string

Color203 will Hilight() the provided string with the specified ANSI code.

func Color203f added in v1.6.0

func Color203f(str string, args ...interface{}) string

Color203f wraps Color203 and works with format strings.

func Color204

func Color204(str string) string

Color204 will Hilight() the provided string with the specified ANSI code.

func Color204f added in v1.6.0

func Color204f(str string, args ...interface{}) string

Color204f wraps Color204 and works with format strings.

func Color205

func Color205(str string) string

Color205 will Hilight() the provided string with the specified ANSI code.

func Color205f added in v1.6.0

func Color205f(str string, args ...interface{}) string

Color205f wraps Color205 and works with format strings.

func Color206

func Color206(str string) string

Color206 will Hilight() the provided string with the specified ANSI code.

func Color206f added in v1.6.0

func Color206f(str string, args ...interface{}) string

Color206f wraps Color206 and works with format strings.

func Color207

func Color207(str string) string

Color207 will Hilight() the provided string with the specified ANSI code.

func Color207f added in v1.6.0

func Color207f(str string, args ...interface{}) string

Color207f wraps Color207 and works with format strings.

func Color208

func Color208(str string) string

Color208 will Hilight() the provided string with the specified ANSI code.

func Color208f added in v1.6.0

func Color208f(str string, args ...interface{}) string

Color208f wraps Color208 and works with format strings.

func Color209

func Color209(str string) string

Color209 will Hilight() the provided string with the specified ANSI code.

func Color209f added in v1.6.0

func Color209f(str string, args ...interface{}) string

Color209f wraps Color209 and works with format strings.

func Color210

func Color210(str string) string

Color210 will Hilight() the provided string with the specified ANSI code.

func Color210f added in v1.6.0

func Color210f(str string, args ...interface{}) string

Color210f wraps Color210 and works with format strings.

func Color211

func Color211(str string) string

Color211 will Hilight() the provided string with the specified ANSI code.

func Color211f added in v1.6.0

func Color211f(str string, args ...interface{}) string

Color211f wraps Color211 and works with format strings.

func Color212

func Color212(str string) string

Color212 will Hilight() the provided string with the specified ANSI code.

func Color212f added in v1.6.0

func Color212f(str string, args ...interface{}) string

Color212f wraps Color212 and works with format strings.

func Color213

func Color213(str string) string

Color213 will Hilight() the provided string with the specified ANSI code.

func Color213f added in v1.6.0

func Color213f(str string, args ...interface{}) string

Color213f wraps Color213 and works with format strings.

func Color214

func Color214(str string) string

Color214 will Hilight() the provided string with the specified ANSI code.

func Color214f added in v1.6.0

func Color214f(str string, args ...interface{}) string

Color214f wraps Color214 and works with format strings.

func Color215

func Color215(str string) string

Color215 will Hilight() the provided string with the specified ANSI code.

func Color215f added in v1.6.0

func Color215f(str string, args ...interface{}) string

Color215f wraps Color215 and works with format strings.

func Color216

func Color216(str string) string

Color216 will Hilight() the provided string with the specified ANSI code.

func Color216f added in v1.6.0

func Color216f(str string, args ...interface{}) string

Color216f wraps Color216 and works with format strings.

func Color217

func Color217(str string) string

Color217 will Hilight() the provided string with the specified ANSI code.

func Color217f added in v1.6.0

func Color217f(str string, args ...interface{}) string

Color217f wraps Color217 and works with format strings.

func Color218

func Color218(str string) string

Color218 will Hilight() the provided string with the specified ANSI code.

func Color218f added in v1.6.0

func Color218f(str string, args ...interface{}) string

Color218f wraps Color218 and works with format strings.

func Color219

func Color219(str string) string

Color219 will Hilight() the provided string with the specified ANSI code.

func Color219f added in v1.6.0

func Color219f(str string, args ...interface{}) string

Color219f wraps Color219 and works with format strings.

func Color220

func Color220(str string) string

Color220 will Hilight() the provided string with the specified ANSI code.

func Color220f added in v1.6.0

func Color220f(str string, args ...interface{}) string

Color220f wraps Color220 and works with format strings.

func Color221

func Color221(str string) string

Color221 will Hilight() the provided string with the specified ANSI code.

func Color221f added in v1.6.0

func Color221f(str string, args ...interface{}) string

Color221f wraps Color221 and works with format strings.

func Color222

func Color222(str string) string

Color222 will Hilight() the provided string with the specified ANSI code.

func Color222f added in v1.6.0

func Color222f(str string, args ...interface{}) string

Color222f wraps Color222 and works with format strings.

func Color223

func Color223(str string) string

Color223 will Hilight() the provided string with the specified ANSI code.

func Color223f added in v1.6.0

func Color223f(str string, args ...interface{}) string

Color223f wraps Color223 and works with format strings.

func Color224

func Color224(str string) string

Color224 will Hilight() the provided string with the specified ANSI code.

func Color224f added in v1.6.0

func Color224f(str string, args ...interface{}) string

Color224f wraps Color224 and works with format strings.

func Color225

func Color225(str string) string

Color225 will Hilight() the provided string with the specified ANSI code.

func Color225f added in v1.6.0

func Color225f(str string, args ...interface{}) string

Color225f wraps Color225 and works with format strings.

func Color226

func Color226(str string) string

Color226 will Hilight() the provided string with the specified ANSI code.

func Color226f added in v1.6.0

func Color226f(str string, args ...interface{}) string

Color226f wraps Color226 and works with format strings.

func Color227

func Color227(str string) string

Color227 will Hilight() the provided string with the specified ANSI code.

func Color227f added in v1.6.0

func Color227f(str string, args ...interface{}) string

Color227f wraps Color227 and works with format strings.

func Color228

func Color228(str string) string

Color228 will Hilight() the provided string with the specified ANSI code.

func Color228f added in v1.6.0

func Color228f(str string, args ...interface{}) string

Color228f wraps Color228 and works with format strings.

func Color229

func Color229(str string) string

Color229 will Hilight() the provided string with the specified ANSI code.

func Color229f added in v1.6.0

func Color229f(str string, args ...interface{}) string

Color229f wraps Color229 and works with format strings.

func Color230

func Color230(str string) string

Color230 will Hilight() the provided string with the specified ANSI code.

func Color230f added in v1.6.0

func Color230f(str string, args ...interface{}) string

Color230f wraps Color230 and works with format strings.

func Color231

func Color231(str string) string

Color231 will Hilight() the provided string with the specified ANSI code.

func Color231f added in v1.6.0

func Color231f(str string, args ...interface{}) string

Color231f wraps Color231 and works with format strings.

func Color232

func Color232(str string) string

Color232 will Hilight() the provided string with the specified ANSI code.

func Color232f added in v1.6.0

func Color232f(str string, args ...interface{}) string

Color232f wraps Color232 and works with format strings.

func Color233

func Color233(str string) string

Color233 will Hilight() the provided string with the specified ANSI code.

func Color233f added in v1.6.0

func Color233f(str string, args ...interface{}) string

Color233f wraps Color233 and works with format strings.

func Color234

func Color234(str string) string

Color234 will Hilight() the provided string with the specified ANSI code.

func Color234f added in v1.6.0

func Color234f(str string, args ...interface{}) string

Color234f wraps Color234 and works with format strings.

func Color235

func Color235(str string) string

Color235 will Hilight() the provided string with the specified ANSI code.

func Color235f added in v1.6.0

func Color235f(str string, args ...interface{}) string

Color235f wraps Color235 and works with format strings.

func Color236

func Color236(str string) string

Color236 will Hilight() the provided string with the specified ANSI code.

func Color236f added in v1.6.0

func Color236f(str string, args ...interface{}) string

Color236f wraps Color236 and works with format strings.

func Color237

func Color237(str string) string

Color237 will Hilight() the provided string with the specified ANSI code.

func Color237f added in v1.6.0

func Color237f(str string, args ...interface{}) string

Color237f wraps Color237 and works with format strings.

func Color238

func Color238(str string) string

Color238 will Hilight() the provided string with the specified ANSI code.

func Color238f added in v1.6.0

func Color238f(str string, args ...interface{}) string

Color238f wraps Color238 and works with format strings.

func Color239

func Color239(str string) string

Color239 will Hilight() the provided string with the specified ANSI code.

func Color239f added in v1.6.0

func Color239f(str string, args ...interface{}) string

Color239f wraps Color239 and works with format strings.

func Color240

func Color240(str string) string

Color240 will Hilight() the provided string with the specified ANSI code.

func Color240f added in v1.6.0

func Color240f(str string, args ...interface{}) string

Color240f wraps Color240 and works with format strings.

func Color241

func Color241(str string) string

Color241 will Hilight() the provided string with the specified ANSI code.

func Color241f added in v1.6.0

func Color241f(str string, args ...interface{}) string

Color241f wraps Color241 and works with format strings.

func Color242

func Color242(str string) string

Color242 will Hilight() the provided string with the specified ANSI code.

func Color242f added in v1.6.0

func Color242f(str string, args ...interface{}) string

Color242f wraps Color242 and works with format strings.

func Color243

func Color243(str string) string

Color243 will Hilight() the provided string with the specified ANSI code.

func Color243f added in v1.6.0

func Color243f(str string, args ...interface{}) string

Color243f wraps Color243 and works with format strings.

func Color244

func Color244(str string) string

Color244 will Hilight() the provided string with the specified ANSI code.

func Color244f added in v1.6.0

func Color244f(str string, args ...interface{}) string

Color244f wraps Color244 and works with format strings.

func Color245

func Color245(str string) string

Color245 will Hilight() the provided string with the specified ANSI code.

func Color245f added in v1.6.0

func Color245f(str string, args ...interface{}) string

Color245f wraps Color245 and works with format strings.

func Color246

func Color246(str string) string

Color246 will Hilight() the provided string with the specified ANSI code.

func Color246f added in v1.6.0

func Color246f(str string, args ...interface{}) string

Color246f wraps Color246 and works with format strings.

func Color247

func Color247(str string) string

Color247 will Hilight() the provided string with the specified ANSI code.

func Color247f added in v1.6.0

func Color247f(str string, args ...interface{}) string

Color247f wraps Color247 and works with format strings.

func Color248

func Color248(str string) string

Color248 will Hilight() the provided string with the specified ANSI code.

func Color248f added in v1.6.0

func Color248f(str string, args ...interface{}) string

Color248f wraps Color248 and works with format strings.

func Color249

func Color249(str string) string

Color249 will Hilight() the provided string with the specified ANSI code.

func Color249f added in v1.6.0

func Color249f(str string, args ...interface{}) string

Color249f wraps Color249 and works with format strings.

func Color250

func Color250(str string) string

Color250 will Hilight() the provided string with the specified ANSI code.

func Color250f added in v1.6.0

func Color250f(str string, args ...interface{}) string

Color250f wraps Color250 and works with format strings.

func Color251

func Color251(str string) string

Color251 will Hilight() the provided string with the specified ANSI code.

func Color251f added in v1.6.0

func Color251f(str string, args ...interface{}) string

Color251f wraps Color251 and works with format strings.

func Color252

func Color252(str string) string

Color252 will Hilight() the provided string with the specified ANSI code.

func Color252f added in v1.6.0

func Color252f(str string, args ...interface{}) string

Color252f wraps Color252 and works with format strings.

func Color253

func Color253(str string) string

Color253 will Hilight() the provided string with the specified ANSI code.

func Color253f added in v1.6.0

func Color253f(str string, args ...interface{}) string

Color253f wraps Color253 and works with format strings.

func Color254

func Color254(str string) string

Color254 will Hilight() the provided string with the specified ANSI code.

func Color254f added in v1.6.0

func Color254f(str string, args ...interface{}) string

Color254f wraps Color254 and works with format strings.

func Color255

func Color255(str string) string

Color255 will Hilight() the provided string with the specified ANSI code.

func Color255f added in v1.6.0

func Color255f(str string, args ...interface{}) string

Color255f wraps Color255 and works with format strings.

func Conceal

func Conceal(str string) string

Conceal will Hilight() the provided string with the specified ANSI code.

func Concealf added in v1.6.0

func Concealf(str string, args ...interface{}) string

Concealf wraps Conceal and works with format strings.

func CrossedOut

func CrossedOut(str string) string

CrossedOut will Hilight() the provided string with the specified ANSI code.

func CrossedOutf added in v1.6.0

func CrossedOutf(str string, args ...interface{}) string

CrossedOutf wraps CrossedOut and works with format strings.

func Cyan

func Cyan(str string) string

Cyan will Hilight() the provided string with the specified ANSI code.

func Cyanf added in v1.6.0

func Cyanf(str string, args ...interface{}) string

Cyanf wraps Cyan and works with format strings.

func Default

func Default(str string) string

Default will Hilight() the provided string with the specified ANSI code.

func Defaultf added in v1.6.0

func Defaultf(str string, args ...interface{}) string

Defaultf wraps Default and works with format strings.

func Dim

func Dim(str string) string

Dim will Hilight() the provided string with the specified ANSI code.

func Dimf added in v1.6.0

func Dimf(str string, args ...interface{}) string

Dimf wraps Dim and works with format strings.

func Disable

func Disable(b bool)

Disable will prevent color codes from being used.

func Faint

func Faint(str string) string

Faint will Hilight() the provided string with the specified ANSI code.

func Faintf added in v1.6.0

func Faintf(str string, args ...interface{}) string

Faintf wraps Faint and works with format strings.

func Fraktur

func Fraktur(str string) string

Fraktur will Hilight() the provided string with the specified ANSI code.

func Frakturf added in v1.6.0

func Frakturf(str string, args ...interface{}) string

Frakturf wraps Fraktur and works with format strings.

func Green

func Green(str string) string

Green will Hilight() the provided string with the specified ANSI code.

func Greenf added in v1.6.0

func Greenf(str string, args ...interface{}) string

Greenf wraps Green and works with format strings.

func Hex

func Hex(hex string, str string) string

Hex will take a hex color code and add the appropriate ANSI color codes to the provided string.

func HexToXterm256 added in v1.6.3

func HexToXterm256(hex string) string

HexToXterm256 will convert hex to xterm-256 8-bit value https://stackoverflow.com/questions/11765623/convert-hex-hex_to_256bitto-closest-x11-color-number

func Hexf added in v1.6.0

func Hexf(hex string, str string, args ...interface{}) string

Hexf wraps Hex and works with format strings.

func Hide

func Hide(str string) string

Hide will Hilight() the provided string with the specified ANSI code.

func Hidef added in v1.6.0

func Hidef(str string, args ...interface{}) string

Hidef wraps Hide and works with format strings.

func Hilight

func Hilight(code string, str string) string

Hilight will add the appropriate ANSI code to the specified string.

func Hilightf added in v1.6.0

func Hilightf(code string, str string, args ...interface{}) string

Hilightf wraps Hilight and works with format strings.

func Hilights

func Hilights(codes []string, str string) string

Hilights will add the appropriate ANSI codes to the specified string.

func Hilightsf added in v1.6.0

func Hilightsf(codes []string, str string, args ...interface{}) string

Hilightsf wraps Hilights and works with format strings.

func Inverse

func Inverse(str string) string

Inverse will Hilight() the provided string with the specified ANSI code.

func Inversef added in v1.6.0

func Inversef(str string, args ...interface{}) string

Inversef wraps Inverse and works with format strings.

func IsDisabled added in v1.6.2

func IsDisabled() bool

IsDisabled will return whether or not color codes are disabled. Will always return true if GOOS is windows.

func Italic

func Italic(str string) string

Italic will Hilight() the provided string with the specified ANSI code.

func Italicf added in v1.6.0

func Italicf(str string, args ...interface{}) string

Italicf wraps Italic and works with format strings.

func LightBlack

func LightBlack(str string) string

LightBlack will Hilight() the provided string with the specified ANSI code.

func LightBlackf added in v1.6.0

func LightBlackf(str string, args ...interface{}) string

LightBlackf wraps LightBlack and works with format strings.

func LightBlue

func LightBlue(str string) string

LightBlue will Hilight() the provided string with the specified ANSI code.

func LightBluef added in v1.6.0

func LightBluef(str string, args ...interface{}) string

LightBluef wraps LightBlue and works with format strings.

func LightCyan

func LightCyan(str string) string

LightCyan will Hilight() the provided string with the specified ANSI code.

func LightCyanf added in v1.6.0

func LightCyanf(str string, args ...interface{}) string

LightCyanf wraps LightCyan and works with format strings.

func LightGreen

func LightGreen(str string) string

LightGreen will Hilight() the provided string with the specified ANSI code.

func LightGreenf added in v1.6.0

func LightGreenf(str string, args ...interface{}) string

LightGreenf wraps LightGreen and works with format strings.

func LightMagenta

func LightMagenta(str string) string

LightMagenta will Hilight() the provided string with the specified ANSI code.

func LightMagentaf added in v1.6.0

func LightMagentaf(str string, args ...interface{}) string

LightMagentaf wraps LightMagenta and works with format strings.

func LightRed

func LightRed(str string) string

LightRed will Hilight() the provided string with the specified ANSI code.

func LightRedf added in v1.6.0

func LightRedf(str string, args ...interface{}) string

LightRedf wraps LightRed and works with format strings.

func LightWhite

func LightWhite(str string) string

LightWhite will Hilight() the provided string with the specified ANSI code.

func LightWhitef added in v1.6.0

func LightWhitef(str string, args ...interface{}) string

LightWhitef wraps LightWhite and works with format strings.

func LightYellow

func LightYellow(str string) string

LightYellow will Hilight() the provided string with the specified ANSI code.

func LightYellowf added in v1.6.0

func LightYellowf(str string, args ...interface{}) string

LightYellowf wraps LightYellow and works with format strings.

func Magenta

func Magenta(str string) string

Magenta will Hilight() the provided string with the specified ANSI code.

func Magentaf added in v1.6.0

func Magentaf(str string, args ...interface{}) string

Magentaf wraps Magenta and works with format strings.

func Negative

func Negative(str string) string

Negative will Hilight() the provided string with the specified ANSI code.

func Negativef added in v1.6.0

func Negativef(str string, args ...interface{}) string

Negativef wraps Negative and works with format strings.

func NoBlink(str string) string

NoBlink will Hilight() the provided string with the specified ANSI code.

func NoBlinkRapid

func NoBlinkRapid(str string) string

NoBlinkRapid will Hilight() the provided string with the specified ANSI code.

func NoBlinkRapidf added in v1.6.0

func NoBlinkRapidf(str string, args ...interface{}) string

NoBlinkRapidf wraps NoBlinkRapid and works with format strings.

func NoBlinkSlow

func NoBlinkSlow(str string) string

NoBlinkSlow will Hilight() the provided string with the specified ANSI code.

func NoBlinkSlowf added in v1.6.0

func NoBlinkSlowf(str string, args ...interface{}) string

NoBlinkSlowf wraps NoBlinkSlow and works with format strings.

func NoBlinkf added in v1.6.0

func NoBlinkf(str string, args ...interface{}) string

NoBlinkf wraps NoBlink and works with format strings.

func NoBold

func NoBold(str string) string

NoBold will Hilight() the provided string with the specified ANSI code.

func NoBoldf added in v1.6.0

func NoBoldf(str string, args ...interface{}) string

NoBoldf wraps NoBold and works with format strings.

func NoConceal

func NoConceal(str string) string

NoConceal will Hilight() the provided string with the specified ANSI code.

func NoConcealf added in v1.6.0

func NoConcealf(str string, args ...interface{}) string

NoConcealf wraps NoConceal and works with format strings.

func NoCrossedOut

func NoCrossedOut(str string) string

NoCrossedOut will Hilight() the provided string with the specified ANSI code.

func NoCrossedOutf added in v1.6.0

func NoCrossedOutf(str string, args ...interface{}) string

NoCrossedOutf wraps NoCrossedOut and works with format strings.

func NoDim

func NoDim(str string) string

NoDim will Hilight() the provided string with the specified ANSI code.

func NoDimf added in v1.6.0

func NoDimf(str string, args ...interface{}) string

NoDimf wraps NoDim and works with format strings.

func NoFaint

func NoFaint(str string) string

NoFaint will Hilight() the provided string with the specified ANSI code.

func NoFaintf added in v1.6.0

func NoFaintf(str string, args ...interface{}) string

NoFaintf wraps NoFaint and works with format strings.

func NoFraktur

func NoFraktur(str string) string

NoFraktur will Hilight() the provided string with the specified ANSI code.

func NoFrakturf added in v1.6.0

func NoFrakturf(str string, args ...interface{}) string

NoFrakturf wraps NoFraktur and works with format strings.

func NoHide

func NoHide(str string) string

NoHide will Hilight() the provided string with the specified ANSI code.

func NoHidef added in v1.6.0

func NoHidef(str string, args ...interface{}) string

NoHidef wraps NoHide and works with format strings.

func NoInverse

func NoInverse(str string) string

NoInverse will Hilight() the provided string with the specified ANSI code.

func NoInversef added in v1.6.0

func NoInversef(str string, args ...interface{}) string

NoInversef wraps NoInverse and works with format strings.

func NoItalic

func NoItalic(str string) string

NoItalic will Hilight() the provided string with the specified ANSI code.

func NoItalicf added in v1.6.0

func NoItalicf(str string, args ...interface{}) string

NoItalicf wraps NoItalic and works with format strings.

func NoNegative

func NoNegative(str string) string

NoNegative will Hilight() the provided string with the specified ANSI code.

func NoNegativef added in v1.6.0

func NoNegativef(str string, args ...interface{}) string

NoNegativef wraps NoNegative and works with format strings.

func NoStrikethrough

func NoStrikethrough(str string) string

NoStrikethrough will Hilight() the provided string with the specified ANSI code.

func NoStrikethroughf added in v1.6.0

func NoStrikethroughf(str string, args ...interface{}) string

NoStrikethroughf wraps NoStrikethrough and works with format strings.

func NoSwap

func NoSwap(str string) string

NoSwap will Hilight() the provided string with the specified ANSI code.

func NoSwapf added in v1.6.0

func NoSwapf(str string, args ...interface{}) string

NoSwapf wraps NoSwap and works with format strings.

func NoUnderline

func NoUnderline(str string) string

NoUnderline will Hilight() the provided string with the specified ANSI code.

func NoUnderlinef added in v1.6.0

func NoUnderlinef(str string, args ...interface{}) string

NoUnderlinef wraps NoUnderline and works with format strings.

func Normal

func Normal(str string) string

Normal will Hilight() the provided string with the specified ANSI code.

func Normalf added in v1.6.0

func Normalf(str string, args ...interface{}) string

Normalf wraps Normal and works with format strings.

func OnBlack

func OnBlack(str string) string

OnBlack will Hilight() the provided string with the specified ANSI code.

func OnBlackf added in v1.6.0

func OnBlackf(str string, args ...interface{}) string

OnBlackf wraps OnBlack and works with format strings.

func OnBlue

func OnBlue(str string) string

OnBlue will Hilight() the provided string with the specified ANSI code.

func OnBluef added in v1.6.0

func OnBluef(str string, args ...interface{}) string

OnBluef wraps OnBlue and works with format strings.

func OnColor000

func OnColor000(str string) string

OnColor000 will Hilight() the provided string with the specified ANSI code.

func OnColor000f added in v1.6.0

func OnColor000f(str string, args ...interface{}) string

OnColor000f wraps OnColor000 and works with format strings.

func OnColor001

func OnColor001(str string) string

OnColor001 will Hilight() the provided string with the specified ANSI code.

func OnColor001f added in v1.6.0

func OnColor001f(str string, args ...interface{}) string

OnColor001f wraps OnColor001 and works with format strings.

func OnColor002

func OnColor002(str string) string

OnColor002 will Hilight() the provided string with the specified ANSI code.

func OnColor002f added in v1.6.0

func OnColor002f(str string, args ...interface{}) string

OnColor002f wraps OnColor002 and works with format strings.

func OnColor003

func OnColor003(str string) string

OnColor003 will Hilight() the provided string with the specified ANSI code.

func OnColor003f added in v1.6.0

func OnColor003f(str string, args ...interface{}) string

OnColor003f wraps OnColor003 and works with format strings.

func OnColor004

func OnColor004(str string) string

OnColor004 will Hilight() the provided string with the specified ANSI code.

func OnColor004f added in v1.6.0

func OnColor004f(str string, args ...interface{}) string

OnColor004f wraps OnColor004 and works with format strings.

func OnColor005

func OnColor005(str string) string

OnColor005 will Hilight() the provided string with the specified ANSI code.

func OnColor005f added in v1.6.0

func OnColor005f(str string, args ...interface{}) string

OnColor005f wraps OnColor005 and works with format strings.

func OnColor006

func OnColor006(str string) string

OnColor006 will Hilight() the provided string with the specified ANSI code.

func OnColor006f added in v1.6.0

func OnColor006f(str string, args ...interface{}) string

OnColor006f wraps OnColor006 and works with format strings.

func OnColor007

func OnColor007(str string) string

OnColor007 will Hilight() the provided string with the specified ANSI code.

func OnColor007f added in v1.6.0

func OnColor007f(str string, args ...interface{}) string

OnColor007f wraps OnColor007 and works with format strings.

func OnColor008

func OnColor008(str string) string

OnColor008 will Hilight() the provided string with the specified ANSI code.

func OnColor008f added in v1.6.0

func OnColor008f(str string, args ...interface{}) string

OnColor008f wraps OnColor008 and works with format strings.

func OnColor009

func OnColor009(str string) string

OnColor009 will Hilight() the provided string with the specified ANSI code.

func OnColor009f added in v1.6.0

func OnColor009f(str string, args ...interface{}) string

OnColor009f wraps OnColor009 and works with format strings.

func OnColor010

func OnColor010(str string) string

OnColor010 will Hilight() the provided string with the specified ANSI code.

func OnColor010f added in v1.6.0

func OnColor010f(str string, args ...interface{}) string

OnColor010f wraps OnColor010 and works with format strings.

func OnColor011

func OnColor011(str string) string

OnColor011 will Hilight() the provided string with the specified ANSI code.

func OnColor011f added in v1.6.0

func OnColor011f(str string, args ...interface{}) string

OnColor011f wraps OnColor011 and works with format strings.

func OnColor012

func OnColor012(str string) string

OnColor012 will Hilight() the provided string with the specified ANSI code.

func OnColor012f added in v1.6.0

func OnColor012f(str string, args ...interface{}) string

OnColor012f wraps OnColor012 and works with format strings.

func OnColor013

func OnColor013(str string) string

OnColor013 will Hilight() the provided string with the specified ANSI code.

func OnColor013f added in v1.6.0

func OnColor013f(str string, args ...interface{}) string

OnColor013f wraps OnColor013 and works with format strings.

func OnColor014

func OnColor014(str string) string

OnColor014 will Hilight() the provided string with the specified ANSI code.

func OnColor014f added in v1.6.0

func OnColor014f(str string, args ...interface{}) string

OnColor014f wraps OnColor014 and works with format strings.

func OnColor015

func OnColor015(str string) string

OnColor015 will Hilight() the provided string with the specified ANSI code.

func OnColor015f added in v1.6.0

func OnColor015f(str string, args ...interface{}) string

OnColor015f wraps OnColor015 and works with format strings.

func OnColor016

func OnColor016(str string) string

OnColor016 will Hilight() the provided string with the specified ANSI code.

func OnColor016f added in v1.6.0

func OnColor016f(str string, args ...interface{}) string

OnColor016f wraps OnColor016 and works with format strings.

func OnColor017

func OnColor017(str string) string

OnColor017 will Hilight() the provided string with the specified ANSI code.

func OnColor017f added in v1.6.0

func OnColor017f(str string, args ...interface{}) string

OnColor017f wraps OnColor017 and works with format strings.

func OnColor018

func OnColor018(str string) string

OnColor018 will Hilight() the provided string with the specified ANSI code.

func OnColor018f added in v1.6.0

func OnColor018f(str string, args ...interface{}) string

OnColor018f wraps OnColor018 and works with format strings.

func OnColor019

func OnColor019(str string) string

OnColor019 will Hilight() the provided string with the specified ANSI code.

func OnColor019f added in v1.6.0

func OnColor019f(str string, args ...interface{}) string

OnColor019f wraps OnColor019 and works with format strings.

func OnColor020

func OnColor020(str string) string

OnColor020 will Hilight() the provided string with the specified ANSI code.

func OnColor020f added in v1.6.0

func OnColor020f(str string, args ...interface{}) string

OnColor020f wraps OnColor020 and works with format strings.

func OnColor021

func OnColor021(str string) string

OnColor021 will Hilight() the provided string with the specified ANSI code.

func OnColor021f added in v1.6.0

func OnColor021f(str string, args ...interface{}) string

OnColor021f wraps OnColor021 and works with format strings.

func OnColor022

func OnColor022(str string) string

OnColor022 will Hilight() the provided string with the specified ANSI code.

func OnColor022f added in v1.6.0

func OnColor022f(str string, args ...interface{}) string

OnColor022f wraps OnColor022 and works with format strings.

func OnColor023

func OnColor023(str string) string

OnColor023 will Hilight() the provided string with the specified ANSI code.

func OnColor023f added in v1.6.0

func OnColor023f(str string, args ...interface{}) string

OnColor023f wraps OnColor023 and works with format strings.

func OnColor024

func OnColor024(str string) string

OnColor024 will Hilight() the provided string with the specified ANSI code.

func OnColor024f added in v1.6.0

func OnColor024f(str string, args ...interface{}) string

OnColor024f wraps OnColor024 and works with format strings.

func OnColor025

func OnColor025(str string) string

OnColor025 will Hilight() the provided string with the specified ANSI code.

func OnColor025f added in v1.6.0

func OnColor025f(str string, args ...interface{}) string

OnColor025f wraps OnColor025 and works with format strings.

func OnColor026

func OnColor026(str string) string

OnColor026 will Hilight() the provided string with the specified ANSI code.

func OnColor026f added in v1.6.0

func OnColor026f(str string, args ...interface{}) string

OnColor026f wraps OnColor026 and works with format strings.

func OnColor027

func OnColor027(str string) string

OnColor027 will Hilight() the provided string with the specified ANSI code.

func OnColor027f added in v1.6.0

func OnColor027f(str string, args ...interface{}) string

OnColor027f wraps OnColor027 and works with format strings.

func OnColor028

func OnColor028(str string) string

OnColor028 will Hilight() the provided string with the specified ANSI code.

func OnColor028f added in v1.6.0

func OnColor028f(str string, args ...interface{}) string

OnColor028f wraps OnColor028 and works with format strings.

func OnColor029

func OnColor029(str string) string

OnColor029 will Hilight() the provided string with the specified ANSI code.

func OnColor029f added in v1.6.0

func OnColor029f(str string, args ...interface{}) string

OnColor029f wraps OnColor029 and works with format strings.

func OnColor030

func OnColor030(str string) string

OnColor030 will Hilight() the provided string with the specified ANSI code.

func OnColor030f added in v1.6.0

func OnColor030f(str string, args ...interface{}) string

OnColor030f wraps OnColor030 and works with format strings.

func OnColor031

func OnColor031(str string) string

OnColor031 will Hilight() the provided string with the specified ANSI code.

func OnColor031f added in v1.6.0

func OnColor031f(str string, args ...interface{}) string

OnColor031f wraps OnColor031 and works with format strings.

func OnColor032

func OnColor032(str string) string

OnColor032 will Hilight() the provided string with the specified ANSI code.

func OnColor032f added in v1.6.0

func OnColor032f(str string, args ...interface{}) string

OnColor032f wraps OnColor032 and works with format strings.

func OnColor033

func OnColor033(str string) string

OnColor033 will Hilight() the provided string with the specified ANSI code.

func OnColor033f added in v1.6.0

func OnColor033f(str string, args ...interface{}) string

OnColor033f wraps OnColor033 and works with format strings.

func OnColor034

func OnColor034(str string) string

OnColor034 will Hilight() the provided string with the specified ANSI code.

func OnColor034f added in v1.6.0

func OnColor034f(str string, args ...interface{}) string

OnColor034f wraps OnColor034 and works with format strings.

func OnColor035

func OnColor035(str string) string

OnColor035 will Hilight() the provided string with the specified ANSI code.

func OnColor035f added in v1.6.0

func OnColor035f(str string, args ...interface{}) string

OnColor035f wraps OnColor035 and works with format strings.

func OnColor036

func OnColor036(str string) string

OnColor036 will Hilight() the provided string with the specified ANSI code.

func OnColor036f added in v1.6.0

func OnColor036f(str string, args ...interface{}) string

OnColor036f wraps OnColor036 and works with format strings.

func OnColor037

func OnColor037(str string) string

OnColor037 will Hilight() the provided string with the specified ANSI code.

func OnColor037f added in v1.6.0

func OnColor037f(str string, args ...interface{}) string

OnColor037f wraps OnColor037 and works with format strings.

func OnColor038

func OnColor038(str string) string

OnColor038 will Hilight() the provided string with the specified ANSI code.

func OnColor038f added in v1.6.0

func OnColor038f(str string, args ...interface{}) string

OnColor038f wraps OnColor038 and works with format strings.

func OnColor039

func OnColor039(str string) string

OnColor039 will Hilight() the provided string with the specified ANSI code.

func OnColor039f added in v1.6.0

func OnColor039f(str string, args ...interface{}) string

OnColor039f wraps OnColor039 and works with format strings.

func OnColor040

func OnColor040(str string) string

OnColor040 will Hilight() the provided string with the specified ANSI code.

func OnColor040f added in v1.6.0

func OnColor040f(str string, args ...interface{}) string

OnColor040f wraps OnColor040 and works with format strings.

func OnColor041

func OnColor041(str string) string

OnColor041 will Hilight() the provided string with the specified ANSI code.

func OnColor041f added in v1.6.0

func OnColor041f(str string, args ...interface{}) string

OnColor041f wraps OnColor041 and works with format strings.

func OnColor042

func OnColor042(str string) string

OnColor042 will Hilight() the provided string with the specified ANSI code.

func OnColor042f added in v1.6.0

func OnColor042f(str string, args ...interface{}) string

OnColor042f wraps OnColor042 and works with format strings.

func OnColor043

func OnColor043(str string) string

OnColor043 will Hilight() the provided string with the specified ANSI code.

func OnColor043f added in v1.6.0

func OnColor043f(str string, args ...interface{}) string

OnColor043f wraps OnColor043 and works with format strings.

func OnColor044

func OnColor044(str string) string

OnColor044 will Hilight() the provided string with the specified ANSI code.

func OnColor044f added in v1.6.0

func OnColor044f(str string, args ...interface{}) string

OnColor044f wraps OnColor044 and works with format strings.

func OnColor045

func OnColor045(str string) string

OnColor045 will Hilight() the provided string with the specified ANSI code.

func OnColor045f added in v1.6.0

func OnColor045f(str string, args ...interface{}) string

OnColor045f wraps OnColor045 and works with format strings.

func OnColor046

func OnColor046(str string) string

OnColor046 will Hilight() the provided string with the specified ANSI code.

func OnColor046f added in v1.6.0

func OnColor046f(str string, args ...interface{}) string

OnColor046f wraps OnColor046 and works with format strings.

func OnColor047

func OnColor047(str string) string

OnColor047 will Hilight() the provided string with the specified ANSI code.

func OnColor047f added in v1.6.0

func OnColor047f(str string, args ...interface{}) string

OnColor047f wraps OnColor047 and works with format strings.

func OnColor048

func OnColor048(str string) string

OnColor048 will Hilight() the provided string with the specified ANSI code.

func OnColor048f added in v1.6.0

func OnColor048f(str string, args ...interface{}) string

OnColor048f wraps OnColor048 and works with format strings.

func OnColor049

func OnColor049(str string) string

OnColor049 will Hilight() the provided string with the specified ANSI code.

func OnColor049f added in v1.6.0

func OnColor049f(str string, args ...interface{}) string

OnColor049f wraps OnColor049 and works with format strings.

func OnColor050

func OnColor050(str string) string

OnColor050 will Hilight() the provided string with the specified ANSI code.

func OnColor050f added in v1.6.0

func OnColor050f(str string, args ...interface{}) string

OnColor050f wraps OnColor050 and works with format strings.

func OnColor051

func OnColor051(str string) string

OnColor051 will Hilight() the provided string with the specified ANSI code.

func OnColor051f added in v1.6.0

func OnColor051f(str string, args ...interface{}) string

OnColor051f wraps OnColor051 and works with format strings.

func OnColor052

func OnColor052(str string) string

OnColor052 will Hilight() the provided string with the specified ANSI code.

func OnColor052f added in v1.6.0

func OnColor052f(str string, args ...interface{}) string

OnColor052f wraps OnColor052 and works with format strings.

func OnColor053

func OnColor053(str string) string

OnColor053 will Hilight() the provided string with the specified ANSI code.

func OnColor053f added in v1.6.0

func OnColor053f(str string, args ...interface{}) string

OnColor053f wraps OnColor053 and works with format strings.

func OnColor054

func OnColor054(str string) string

OnColor054 will Hilight() the provided string with the specified ANSI code.

func OnColor054f added in v1.6.0

func OnColor054f(str string, args ...interface{}) string

OnColor054f wraps OnColor054 and works with format strings.

func OnColor055

func OnColor055(str string) string

OnColor055 will Hilight() the provided string with the specified ANSI code.

func OnColor055f added in v1.6.0

func OnColor055f(str string, args ...interface{}) string

OnColor055f wraps OnColor055 and works with format strings.

func OnColor056

func OnColor056(str string) string

OnColor056 will Hilight() the provided string with the specified ANSI code.

func OnColor056f added in v1.6.0

func OnColor056f(str string, args ...interface{}) string

OnColor056f wraps OnColor056 and works with format strings.

func OnColor057

func OnColor057(str string) string

OnColor057 will Hilight() the provided string with the specified ANSI code.

func OnColor057f added in v1.6.0

func OnColor057f(str string, args ...interface{}) string

OnColor057f wraps OnColor057 and works with format strings.

func OnColor058

func OnColor058(str string) string

OnColor058 will Hilight() the provided string with the specified ANSI code.

func OnColor058f added in v1.6.0

func OnColor058f(str string, args ...interface{}) string

OnColor058f wraps OnColor058 and works with format strings.

func OnColor059

func OnColor059(str string) string

OnColor059 will Hilight() the provided string with the specified ANSI code.

func OnColor059f added in v1.6.0

func OnColor059f(str string, args ...interface{}) string

OnColor059f wraps OnColor059 and works with format strings.

func OnColor060

func OnColor060(str string) string

OnColor060 will Hilight() the provided string with the specified ANSI code.

func OnColor060f added in v1.6.0

func OnColor060f(str string, args ...interface{}) string

OnColor060f wraps OnColor060 and works with format strings.

func OnColor061

func OnColor061(str string) string

OnColor061 will Hilight() the provided string with the specified ANSI code.

func OnColor061f added in v1.6.0

func OnColor061f(str string, args ...interface{}) string

OnColor061f wraps OnColor061 and works with format strings.

func OnColor062

func OnColor062(str string) string

OnColor062 will Hilight() the provided string with the specified ANSI code.

func OnColor062f added in v1.6.0

func OnColor062f(str string, args ...interface{}) string

OnColor062f wraps OnColor062 and works with format strings.

func OnColor063

func OnColor063(str string) string

OnColor063 will Hilight() the provided string with the specified ANSI code.

func OnColor063f added in v1.6.0

func OnColor063f(str string, args ...interface{}) string

OnColor063f wraps OnColor063 and works with format strings.

func OnColor064

func OnColor064(str string) string

OnColor064 will Hilight() the provided string with the specified ANSI code.

func OnColor064f added in v1.6.0

func OnColor064f(str string, args ...interface{}) string

OnColor064f wraps OnColor064 and works with format strings.

func OnColor065

func OnColor065(str string) string

OnColor065 will Hilight() the provided string with the specified ANSI code.

func OnColor065f added in v1.6.0

func OnColor065f(str string, args ...interface{}) string

OnColor065f wraps OnColor065 and works with format strings.

func OnColor066

func OnColor066(str string) string

OnColor066 will Hilight() the provided string with the specified ANSI code.

func OnColor066f added in v1.6.0

func OnColor066f(str string, args ...interface{}) string

OnColor066f wraps OnColor066 and works with format strings.

func OnColor067

func OnColor067(str string) string

OnColor067 will Hilight() the provided string with the specified ANSI code.

func OnColor067f added in v1.6.0

func OnColor067f(str string, args ...interface{}) string

OnColor067f wraps OnColor067 and works with format strings.

func OnColor068

func OnColor068(str string) string

OnColor068 will Hilight() the provided string with the specified ANSI code.

func OnColor068f added in v1.6.0

func OnColor068f(str string, args ...interface{}) string

OnColor068f wraps OnColor068 and works with format strings.

func OnColor069

func OnColor069(str string) string

OnColor069 will Hilight() the provided string with the specified ANSI code.

func OnColor069f added in v1.6.0

func OnColor069f(str string, args ...interface{}) string

OnColor069f wraps OnColor069 and works with format strings.

func OnColor070

func OnColor070(str string) string

OnColor070 will Hilight() the provided string with the specified ANSI code.

func OnColor070f added in v1.6.0

func OnColor070f(str string, args ...interface{}) string

OnColor070f wraps OnColor070 and works with format strings.

func OnColor071

func OnColor071(str string) string

OnColor071 will Hilight() the provided string with the specified ANSI code.

func OnColor071f added in v1.6.0

func OnColor071f(str string, args ...interface{}) string

OnColor071f wraps OnColor071 and works with format strings.

func OnColor072

func OnColor072(str string) string

OnColor072 will Hilight() the provided string with the specified ANSI code.

func OnColor072f added in v1.6.0

func OnColor072f(str string, args ...interface{}) string

OnColor072f wraps OnColor072 and works with format strings.

func OnColor073

func OnColor073(str string) string

OnColor073 will Hilight() the provided string with the specified ANSI code.

func OnColor073f added in v1.6.0

func OnColor073f(str string, args ...interface{}) string

OnColor073f wraps OnColor073 and works with format strings.

func OnColor074

func OnColor074(str string) string

OnColor074 will Hilight() the provided string with the specified ANSI code.

func OnColor074f added in v1.6.0

func OnColor074f(str string, args ...interface{}) string

OnColor074f wraps OnColor074 and works with format strings.

func OnColor075

func OnColor075(str string) string

OnColor075 will Hilight() the provided string with the specified ANSI code.

func OnColor075f added in v1.6.0

func OnColor075f(str string, args ...interface{}) string

OnColor075f wraps OnColor075 and works with format strings.

func OnColor076

func OnColor076(str string) string

OnColor076 will Hilight() the provided string with the specified ANSI code.

func OnColor076f added in v1.6.0

func OnColor076f(str string, args ...interface{}) string

OnColor076f wraps OnColor076 and works with format strings.

func OnColor077

func OnColor077(str string) string

OnColor077 will Hilight() the provided string with the specified ANSI code.

func OnColor077f added in v1.6.0

func OnColor077f(str string, args ...interface{}) string

OnColor077f wraps OnColor077 and works with format strings.

func OnColor078

func OnColor078(str string) string

OnColor078 will Hilight() the provided string with the specified ANSI code.

func OnColor078f added in v1.6.0

func OnColor078f(str string, args ...interface{}) string

OnColor078f wraps OnColor078 and works with format strings.

func OnColor079

func OnColor079(str string) string

OnColor079 will Hilight() the provided string with the specified ANSI code.

func OnColor079f added in v1.6.0

func OnColor079f(str string, args ...interface{}) string

OnColor079f wraps OnColor079 and works with format strings.

func OnColor080

func OnColor080(str string) string

OnColor080 will Hilight() the provided string with the specified ANSI code.

func OnColor080f added in v1.6.0

func OnColor080f(str string, args ...interface{}) string

OnColor080f wraps OnColor080 and works with format strings.

func OnColor081

func OnColor081(str string) string

OnColor081 will Hilight() the provided string with the specified ANSI code.

func OnColor081f added in v1.6.0

func OnColor081f(str string, args ...interface{}) string

OnColor081f wraps OnColor081 and works with format strings.

func OnColor082

func OnColor082(str string) string

OnColor082 will Hilight() the provided string with the specified ANSI code.

func OnColor082f added in v1.6.0

func OnColor082f(str string, args ...interface{}) string

OnColor082f wraps OnColor082 and works with format strings.

func OnColor083

func OnColor083(str string) string

OnColor083 will Hilight() the provided string with the specified ANSI code.

func OnColor083f added in v1.6.0

func OnColor083f(str string, args ...interface{}) string

OnColor083f wraps OnColor083 and works with format strings.

func OnColor084

func OnColor084(str string) string

OnColor084 will Hilight() the provided string with the specified ANSI code.

func OnColor084f added in v1.6.0

func OnColor084f(str string, args ...interface{}) string

OnColor084f wraps OnColor084 and works with format strings.

func OnColor085

func OnColor085(str string) string

OnColor085 will Hilight() the provided string with the specified ANSI code.

func OnColor085f added in v1.6.0

func OnColor085f(str string, args ...interface{}) string

OnColor085f wraps OnColor085 and works with format strings.

func OnColor086

func OnColor086(str string) string

OnColor086 will Hilight() the provided string with the specified ANSI code.

func OnColor086f added in v1.6.0

func OnColor086f(str string, args ...interface{}) string

OnColor086f wraps OnColor086 and works with format strings.

func OnColor087

func OnColor087(str string) string

OnColor087 will Hilight() the provided string with the specified ANSI code.

func OnColor087f added in v1.6.0

func OnColor087f(str string, args ...interface{}) string

OnColor087f wraps OnColor087 and works with format strings.

func OnColor088

func OnColor088(str string) string

OnColor088 will Hilight() the provided string with the specified ANSI code.

func OnColor088f added in v1.6.0

func OnColor088f(str string, args ...interface{}) string

OnColor088f wraps OnColor088 and works with format strings.

func OnColor089

func OnColor089(str string) string

OnColor089 will Hilight() the provided string with the specified ANSI code.

func OnColor089f added in v1.6.0

func OnColor089f(str string, args ...interface{}) string

OnColor089f wraps OnColor089 and works with format strings.

func OnColor090

func OnColor090(str string) string

OnColor090 will Hilight() the provided string with the specified ANSI code.

func OnColor090f added in v1.6.0

func OnColor090f(str string, args ...interface{}) string

OnColor090f wraps OnColor090 and works with format strings.

func OnColor091

func OnColor091(str string) string

OnColor091 will Hilight() the provided string with the specified ANSI code.

func OnColor091f added in v1.6.0

func OnColor091f(str string, args ...interface{}) string

OnColor091f wraps OnColor091 and works with format strings.

func OnColor092

func OnColor092(str string) string

OnColor092 will Hilight() the provided string with the specified ANSI code.

func OnColor092f added in v1.6.0

func OnColor092f(str string, args ...interface{}) string

OnColor092f wraps OnColor092 and works with format strings.

func OnColor093

func OnColor093(str string) string

OnColor093 will Hilight() the provided string with the specified ANSI code.

func OnColor093f added in v1.6.0

func OnColor093f(str string, args ...interface{}) string

OnColor093f wraps OnColor093 and works with format strings.

func OnColor094

func OnColor094(str string) string

OnColor094 will Hilight() the provided string with the specified ANSI code.

func OnColor094f added in v1.6.0

func OnColor094f(str string, args ...interface{}) string

OnColor094f wraps OnColor094 and works with format strings.

func OnColor095

func OnColor095(str string) string

OnColor095 will Hilight() the provided string with the specified ANSI code.

func OnColor095f added in v1.6.0

func OnColor095f(str string, args ...interface{}) string

OnColor095f wraps OnColor095 and works with format strings.

func OnColor096

func OnColor096(str string) string

OnColor096 will Hilight() the provided string with the specified ANSI code.

func OnColor096f added in v1.6.0

func OnColor096f(str string, args ...interface{}) string

OnColor096f wraps OnColor096 and works with format strings.

func OnColor097

func OnColor097(str string) string

OnColor097 will Hilight() the provided string with the specified ANSI code.

func OnColor097f added in v1.6.0

func OnColor097f(str string, args ...interface{}) string

OnColor097f wraps OnColor097 and works with format strings.

func OnColor098

func OnColor098(str string) string

OnColor098 will Hilight() the provided string with the specified ANSI code.

func OnColor098f added in v1.6.0

func OnColor098f(str string, args ...interface{}) string

OnColor098f wraps OnColor098 and works with format strings.

func OnColor099

func OnColor099(str string) string

OnColor099 will Hilight() the provided string with the specified ANSI code.

func OnColor099f added in v1.6.0

func OnColor099f(str string, args ...interface{}) string

OnColor099f wraps OnColor099 and works with format strings.

func OnColor100

func OnColor100(str string) string

OnColor100 will Hilight() the provided string with the specified ANSI code.

func OnColor100f added in v1.6.0

func OnColor100f(str string, args ...interface{}) string

OnColor100f wraps OnColor100 and works with format strings.

func OnColor101

func OnColor101(str string) string

OnColor101 will Hilight() the provided string with the specified ANSI code.

func OnColor101f added in v1.6.0

func OnColor101f(str string, args ...interface{}) string

OnColor101f wraps OnColor101 and works with format strings.

func OnColor102

func OnColor102(str string) string

OnColor102 will Hilight() the provided string with the specified ANSI code.

func OnColor102f added in v1.6.0

func OnColor102f(str string, args ...interface{}) string

OnColor102f wraps OnColor102 and works with format strings.

func OnColor103

func OnColor103(str string) string

OnColor103 will Hilight() the provided string with the specified ANSI code.

func OnColor103f added in v1.6.0

func OnColor103f(str string, args ...interface{}) string

OnColor103f wraps OnColor103 and works with format strings.

func OnColor104

func OnColor104(str string) string

OnColor104 will Hilight() the provided string with the specified ANSI code.

func OnColor104f added in v1.6.0

func OnColor104f(str string, args ...interface{}) string

OnColor104f wraps OnColor104 and works with format strings.

func OnColor105

func OnColor105(str string) string

OnColor105 will Hilight() the provided string with the specified ANSI code.

func OnColor105f added in v1.6.0

func OnColor105f(str string, args ...interface{}) string

OnColor105f wraps OnColor105 and works with format strings.

func OnColor106

func OnColor106(str string) string

OnColor106 will Hilight() the provided string with the specified ANSI code.

func OnColor106f added in v1.6.0

func OnColor106f(str string, args ...interface{}) string

OnColor106f wraps OnColor106 and works with format strings.

func OnColor107

func OnColor107(str string) string

OnColor107 will Hilight() the provided string with the specified ANSI code.

func OnColor107f added in v1.6.0

func OnColor107f(str string, args ...interface{}) string

OnColor107f wraps OnColor107 and works with format strings.

func OnColor108

func OnColor108(str string) string

OnColor108 will Hilight() the provided string with the specified ANSI code.

func OnColor108f added in v1.6.0

func OnColor108f(str string, args ...interface{}) string

OnColor108f wraps OnColor108 and works with format strings.

func OnColor109

func OnColor109(str string) string

OnColor109 will Hilight() the provided string with the specified ANSI code.

func OnColor109f added in v1.6.0

func OnColor109f(str string, args ...interface{}) string

OnColor109f wraps OnColor109 and works with format strings.

func OnColor110

func OnColor110(str string) string

OnColor110 will Hilight() the provided string with the specified ANSI code.

func OnColor110f added in v1.6.0

func OnColor110f(str string, args ...interface{}) string

OnColor110f wraps OnColor110 and works with format strings.

func OnColor111

func OnColor111(str string) string

OnColor111 will Hilight() the provided string with the specified ANSI code.

func OnColor111f added in v1.6.0

func OnColor111f(str string, args ...interface{}) string

OnColor111f wraps OnColor111 and works with format strings.

func OnColor112

func OnColor112(str string) string

OnColor112 will Hilight() the provided string with the specified ANSI code.

func OnColor112f added in v1.6.0

func OnColor112f(str string, args ...interface{}) string

OnColor112f wraps OnColor112 and works with format strings.

func OnColor113

func OnColor113(str string) string

OnColor113 will Hilight() the provided string with the specified ANSI code.

func OnColor113f added in v1.6.0

func OnColor113f(str string, args ...interface{}) string

OnColor113f wraps OnColor113 and works with format strings.

func OnColor114

func OnColor114(str string) string

OnColor114 will Hilight() the provided string with the specified ANSI code.

func OnColor114f added in v1.6.0

func OnColor114f(str string, args ...interface{}) string

OnColor114f wraps OnColor114 and works with format strings.

func OnColor115

func OnColor115(str string) string

OnColor115 will Hilight() the provided string with the specified ANSI code.

func OnColor115f added in v1.6.0

func OnColor115f(str string, args ...interface{}) string

OnColor115f wraps OnColor115 and works with format strings.

func OnColor116

func OnColor116(str string) string

OnColor116 will Hilight() the provided string with the specified ANSI code.

func OnColor116f added in v1.6.0

func OnColor116f(str string, args ...interface{}) string

OnColor116f wraps OnColor116 and works with format strings.

func OnColor117

func OnColor117(str string) string

OnColor117 will Hilight() the provided string with the specified ANSI code.

func OnColor117f added in v1.6.0

func OnColor117f(str string, args ...interface{}) string

OnColor117f wraps OnColor117 and works with format strings.

func OnColor118

func OnColor118(str string) string

OnColor118 will Hilight() the provided string with the specified ANSI code.

func OnColor118f added in v1.6.0

func OnColor118f(str string, args ...interface{}) string

OnColor118f wraps OnColor118 and works with format strings.

func OnColor119

func OnColor119(str string) string

OnColor119 will Hilight() the provided string with the specified ANSI code.

func OnColor119f added in v1.6.0

func OnColor119f(str string, args ...interface{}) string

OnColor119f wraps OnColor119 and works with format strings.

func OnColor120

func OnColor120(str string) string

OnColor120 will Hilight() the provided string with the specified ANSI code.

func OnColor120f added in v1.6.0

func OnColor120f(str string, args ...interface{}) string

OnColor120f wraps OnColor120 and works with format strings.

func OnColor121

func OnColor121(str string) string

OnColor121 will Hilight() the provided string with the specified ANSI code.

func OnColor121f added in v1.6.0

func OnColor121f(str string, args ...interface{}) string

OnColor121f wraps OnColor121 and works with format strings.

func OnColor122

func OnColor122(str string) string

OnColor122 will Hilight() the provided string with the specified ANSI code.

func OnColor122f added in v1.6.0

func OnColor122f(str string, args ...interface{}) string

OnColor122f wraps OnColor122 and works with format strings.

func OnColor123

func OnColor123(str string) string

OnColor123 will Hilight() the provided string with the specified ANSI code.

func OnColor123f added in v1.6.0

func OnColor123f(str string, args ...interface{}) string

OnColor123f wraps OnColor123 and works with format strings.

func OnColor124

func OnColor124(str string) string

OnColor124 will Hilight() the provided string with the specified ANSI code.

func OnColor124f added in v1.6.0

func OnColor124f(str string, args ...interface{}) string

OnColor124f wraps OnColor124 and works with format strings.

func OnColor125

func OnColor125(str string) string

OnColor125 will Hilight() the provided string with the specified ANSI code.

func OnColor125f added in v1.6.0

func OnColor125f(str string, args ...interface{}) string

OnColor125f wraps OnColor125 and works with format strings.

func OnColor126

func OnColor126(str string) string

OnColor126 will Hilight() the provided string with the specified ANSI code.

func OnColor126f added in v1.6.0

func OnColor126f(str string, args ...interface{}) string

OnColor126f wraps OnColor126 and works with format strings.

func OnColor127

func OnColor127(str string) string

OnColor127 will Hilight() the provided string with the specified ANSI code.

func OnColor127f added in v1.6.0

func OnColor127f(str string, args ...interface{}) string

OnColor127f wraps OnColor127 and works with format strings.

func OnColor128

func OnColor128(str string) string

OnColor128 will Hilight() the provided string with the specified ANSI code.

func OnColor128f added in v1.6.0

func OnColor128f(str string, args ...interface{}) string

OnColor128f wraps OnColor128 and works with format strings.

func OnColor129

func OnColor129(str string) string

OnColor129 will Hilight() the provided string with the specified ANSI code.

func OnColor129f added in v1.6.0

func OnColor129f(str string, args ...interface{}) string

OnColor129f wraps OnColor129 and works with format strings.

func OnColor130

func OnColor130(str string) string

OnColor130 will Hilight() the provided string with the specified ANSI code.

func OnColor130f added in v1.6.0

func OnColor130f(str string, args ...interface{}) string

OnColor130f wraps OnColor130 and works with format strings.

func OnColor131

func OnColor131(str string) string

OnColor131 will Hilight() the provided string with the specified ANSI code.

func OnColor131f added in v1.6.0

func OnColor131f(str string, args ...interface{}) string

OnColor131f wraps OnColor131 and works with format strings.

func OnColor132

func OnColor132(str string) string

OnColor132 will Hilight() the provided string with the specified ANSI code.

func OnColor132f added in v1.6.0

func OnColor132f(str string, args ...interface{}) string

OnColor132f wraps OnColor132 and works with format strings.

func OnColor133

func OnColor133(str string) string

OnColor133 will Hilight() the provided string with the specified ANSI code.

func OnColor133f added in v1.6.0

func OnColor133f(str string, args ...interface{}) string

OnColor133f wraps OnColor133 and works with format strings.

func OnColor134

func OnColor134(str string) string

OnColor134 will Hilight() the provided string with the specified ANSI code.

func OnColor134f added in v1.6.0

func OnColor134f(str string, args ...interface{}) string

OnColor134f wraps OnColor134 and works with format strings.

func OnColor135

func OnColor135(str string) string

OnColor135 will Hilight() the provided string with the specified ANSI code.

func OnColor135f added in v1.6.0

func OnColor135f(str string, args ...interface{}) string

OnColor135f wraps OnColor135 and works with format strings.

func OnColor136

func OnColor136(str string) string

OnColor136 will Hilight() the provided string with the specified ANSI code.

func OnColor136f added in v1.6.0

func OnColor136f(str string, args ...interface{}) string

OnColor136f wraps OnColor136 and works with format strings.

func OnColor137

func OnColor137(str string) string

OnColor137 will Hilight() the provided string with the specified ANSI code.

func OnColor137f added in v1.6.0

func OnColor137f(str string, args ...interface{}) string

OnColor137f wraps OnColor137 and works with format strings.

func OnColor138

func OnColor138(str string) string

OnColor138 will Hilight() the provided string with the specified ANSI code.

func OnColor138f added in v1.6.0

func OnColor138f(str string, args ...interface{}) string

OnColor138f wraps OnColor138 and works with format strings.

func OnColor139

func OnColor139(str string) string

OnColor139 will Hilight() the provided string with the specified ANSI code.

func OnColor139f added in v1.6.0

func OnColor139f(str string, args ...interface{}) string

OnColor139f wraps OnColor139 and works with format strings.

func OnColor140

func OnColor140(str string) string

OnColor140 will Hilight() the provided string with the specified ANSI code.

func OnColor140f added in v1.6.0

func OnColor140f(str string, args ...interface{}) string

OnColor140f wraps OnColor140 and works with format strings.

func OnColor141

func OnColor141(str string) string

OnColor141 will Hilight() the provided string with the specified ANSI code.

func OnColor141f added in v1.6.0

func OnColor141f(str string, args ...interface{}) string

OnColor141f wraps OnColor141 and works with format strings.

func OnColor142

func OnColor142(str string) string

OnColor142 will Hilight() the provided string with the specified ANSI code.

func OnColor142f added in v1.6.0

func OnColor142f(str string, args ...interface{}) string

OnColor142f wraps OnColor142 and works with format strings.

func OnColor143

func OnColor143(str string) string

OnColor143 will Hilight() the provided string with the specified ANSI code.

func OnColor143f added in v1.6.0

func OnColor143f(str string, args ...interface{}) string

OnColor143f wraps OnColor143 and works with format strings.

func OnColor144

func OnColor144(str string) string

OnColor144 will Hilight() the provided string with the specified ANSI code.

func OnColor144f added in v1.6.0

func OnColor144f(str string, args ...interface{}) string

OnColor144f wraps OnColor144 and works with format strings.

func OnColor145

func OnColor145(str string) string

OnColor145 will Hilight() the provided string with the specified ANSI code.

func OnColor145f added in v1.6.0

func OnColor145f(str string, args ...interface{}) string

OnColor145f wraps OnColor145 and works with format strings.

func OnColor146

func OnColor146(str string) string

OnColor146 will Hilight() the provided string with the specified ANSI code.

func OnColor146f added in v1.6.0

func OnColor146f(str string, args ...interface{}) string

OnColor146f wraps OnColor146 and works with format strings.

func OnColor147

func OnColor147(str string) string

OnColor147 will Hilight() the provided string with the specified ANSI code.

func OnColor147f added in v1.6.0

func OnColor147f(str string, args ...interface{}) string

OnColor147f wraps OnColor147 and works with format strings.

func OnColor148

func OnColor148(str string) string

OnColor148 will Hilight() the provided string with the specified ANSI code.

func OnColor148f added in v1.6.0

func OnColor148f(str string, args ...interface{}) string

OnColor148f wraps OnColor148 and works with format strings.

func OnColor149

func OnColor149(str string) string

OnColor149 will Hilight() the provided string with the specified ANSI code.

func OnColor149f added in v1.6.0

func OnColor149f(str string, args ...interface{}) string

OnColor149f wraps OnColor149 and works with format strings.

func OnColor150

func OnColor150(str string) string

OnColor150 will Hilight() the provided string with the specified ANSI code.

func OnColor150f added in v1.6.0

func OnColor150f(str string, args ...interface{}) string

OnColor150f wraps OnColor150 and works with format strings.

func OnColor151

func OnColor151(str string) string

OnColor151 will Hilight() the provided string with the specified ANSI code.

func OnColor151f added in v1.6.0

func OnColor151f(str string, args ...interface{}) string

OnColor151f wraps OnColor151 and works with format strings.

func OnColor152

func OnColor152(str string) string

OnColor152 will Hilight() the provided string with the specified ANSI code.

func OnColor152f added in v1.6.0

func OnColor152f(str string, args ...interface{}) string

OnColor152f wraps OnColor152 and works with format strings.

func OnColor153

func OnColor153(str string) string

OnColor153 will Hilight() the provided string with the specified ANSI code.

func OnColor153f added in v1.6.0

func OnColor153f(str string, args ...interface{}) string

OnColor153f wraps OnColor153 and works with format strings.

func OnColor154

func OnColor154(str string) string

OnColor154 will Hilight() the provided string with the specified ANSI code.

func OnColor154f added in v1.6.0

func OnColor154f(str string, args ...interface{}) string

OnColor154f wraps OnColor154 and works with format strings.

func OnColor155

func OnColor155(str string) string

OnColor155 will Hilight() the provided string with the specified ANSI code.

func OnColor155f added in v1.6.0

func OnColor155f(str string, args ...interface{}) string

OnColor155f wraps OnColor155 and works with format strings.

func OnColor156

func OnColor156(str string) string

OnColor156 will Hilight() the provided string with the specified ANSI code.

func OnColor156f added in v1.6.0

func OnColor156f(str string, args ...interface{}) string

OnColor156f wraps OnColor156 and works with format strings.

func OnColor157

func OnColor157(str string) string

OnColor157 will Hilight() the provided string with the specified ANSI code.

func OnColor157f added in v1.6.0

func OnColor157f(str string, args ...interface{}) string

OnColor157f wraps OnColor157 and works with format strings.

func OnColor158

func OnColor158(str string) string

OnColor158 will Hilight() the provided string with the specified ANSI code.

func OnColor158f added in v1.6.0

func OnColor158f(str string, args ...interface{}) string

OnColor158f wraps OnColor158 and works with format strings.

func OnColor159

func OnColor159(str string) string

OnColor159 will Hilight() the provided string with the specified ANSI code.

func OnColor159f added in v1.6.0

func OnColor159f(str string, args ...interface{}) string

OnColor159f wraps OnColor159 and works with format strings.

func OnColor160

func OnColor160(str string) string

OnColor160 will Hilight() the provided string with the specified ANSI code.

func OnColor160f added in v1.6.0

func OnColor160f(str string, args ...interface{}) string

OnColor160f wraps OnColor160 and works with format strings.

func OnColor161

func OnColor161(str string) string

OnColor161 will Hilight() the provided string with the specified ANSI code.

func OnColor161f added in v1.6.0

func OnColor161f(str string, args ...interface{}) string

OnColor161f wraps OnColor161 and works with format strings.

func OnColor162

func OnColor162(str string) string

OnColor162 will Hilight() the provided string with the specified ANSI code.

func OnColor162f added in v1.6.0

func OnColor162f(str string, args ...interface{}) string

OnColor162f wraps OnColor162 and works with format strings.

func OnColor163

func OnColor163(str string) string

OnColor163 will Hilight() the provided string with the specified ANSI code.

func OnColor163f added in v1.6.0

func OnColor163f(str string, args ...interface{}) string

OnColor163f wraps OnColor163 and works with format strings.

func OnColor164

func OnColor164(str string) string

OnColor164 will Hilight() the provided string with the specified ANSI code.

func OnColor164f added in v1.6.0

func OnColor164f(str string, args ...interface{}) string

OnColor164f wraps OnColor164 and works with format strings.

func OnColor165

func OnColor165(str string) string

OnColor165 will Hilight() the provided string with the specified ANSI code.

func OnColor165f added in v1.6.0

func OnColor165f(str string, args ...interface{}) string

OnColor165f wraps OnColor165 and works with format strings.

func OnColor166

func OnColor166(str string) string

OnColor166 will Hilight() the provided string with the specified ANSI code.

func OnColor166f added in v1.6.0

func OnColor166f(str string, args ...interface{}) string

OnColor166f wraps OnColor166 and works with format strings.

func OnColor167

func OnColor167(str string) string

OnColor167 will Hilight() the provided string with the specified ANSI code.

func OnColor167f added in v1.6.0

func OnColor167f(str string, args ...interface{}) string

OnColor167f wraps OnColor167 and works with format strings.

func OnColor168

func OnColor168(str string) string

OnColor168 will Hilight() the provided string with the specified ANSI code.

func OnColor168f added in v1.6.0

func OnColor168f(str string, args ...interface{}) string

OnColor168f wraps OnColor168 and works with format strings.

func OnColor169

func OnColor169(str string) string

OnColor169 will Hilight() the provided string with the specified ANSI code.

func OnColor169f added in v1.6.0

func OnColor169f(str string, args ...interface{}) string

OnColor169f wraps OnColor169 and works with format strings.

func OnColor170

func OnColor170(str string) string

OnColor170 will Hilight() the provided string with the specified ANSI code.

func OnColor170f added in v1.6.0

func OnColor170f(str string, args ...interface{}) string

OnColor170f wraps OnColor170 and works with format strings.

func OnColor171

func OnColor171(str string) string

OnColor171 will Hilight() the provided string with the specified ANSI code.

func OnColor171f added in v1.6.0

func OnColor171f(str string, args ...interface{}) string

OnColor171f wraps OnColor171 and works with format strings.

func OnColor172

func OnColor172(str string) string

OnColor172 will Hilight() the provided string with the specified ANSI code.

func OnColor172f added in v1.6.0

func OnColor172f(str string, args ...interface{}) string

OnColor172f wraps OnColor172 and works with format strings.

func OnColor173

func OnColor173(str string) string

OnColor173 will Hilight() the provided string with the specified ANSI code.

func OnColor173f added in v1.6.0

func OnColor173f(str string, args ...interface{}) string

OnColor173f wraps OnColor173 and works with format strings.

func OnColor174

func OnColor174(str string) string

OnColor174 will Hilight() the provided string with the specified ANSI code.

func OnColor174f added in v1.6.0

func OnColor174f(str string, args ...interface{}) string

OnColor174f wraps OnColor174 and works with format strings.

func OnColor175

func OnColor175(str string) string

OnColor175 will Hilight() the provided string with the specified ANSI code.

func OnColor175f added in v1.6.0

func OnColor175f(str string, args ...interface{}) string

OnColor175f wraps OnColor175 and works with format strings.

func OnColor176

func OnColor176(str string) string

OnColor176 will Hilight() the provided string with the specified ANSI code.

func OnColor176f added in v1.6.0

func OnColor176f(str string, args ...interface{}) string

OnColor176f wraps OnColor176 and works with format strings.

func OnColor177

func OnColor177(str string) string

OnColor177 will Hilight() the provided string with the specified ANSI code.

func OnColor177f added in v1.6.0

func OnColor177f(str string, args ...interface{}) string

OnColor177f wraps OnColor177 and works with format strings.

func OnColor178

func OnColor178(str string) string

OnColor178 will Hilight() the provided string with the specified ANSI code.

func OnColor178f added in v1.6.0

func OnColor178f(str string, args ...interface{}) string

OnColor178f wraps OnColor178 and works with format strings.

func OnColor179

func OnColor179(str string) string

OnColor179 will Hilight() the provided string with the specified ANSI code.

func OnColor179f added in v1.6.0

func OnColor179f(str string, args ...interface{}) string

OnColor179f wraps OnColor179 and works with format strings.

func OnColor180

func OnColor180(str string) string

OnColor180 will Hilight() the provided string with the specified ANSI code.

func OnColor180f added in v1.6.0

func OnColor180f(str string, args ...interface{}) string

OnColor180f wraps OnColor180 and works with format strings.

func OnColor181

func OnColor181(str string) string

OnColor181 will Hilight() the provided string with the specified ANSI code.

func OnColor181f added in v1.6.0

func OnColor181f(str string, args ...interface{}) string

OnColor181f wraps OnColor181 and works with format strings.

func OnColor182

func OnColor182(str string) string

OnColor182 will Hilight() the provided string with the specified ANSI code.

func OnColor182f added in v1.6.0

func OnColor182f(str string, args ...interface{}) string

OnColor182f wraps OnColor182 and works with format strings.

func OnColor183

func OnColor183(str string) string

OnColor183 will Hilight() the provided string with the specified ANSI code.

func OnColor183f added in v1.6.0

func OnColor183f(str string, args ...interface{}) string

OnColor183f wraps OnColor183 and works with format strings.

func OnColor184

func OnColor184(str string) string

OnColor184 will Hilight() the provided string with the specified ANSI code.

func OnColor184f added in v1.6.0

func OnColor184f(str string, args ...interface{}) string

OnColor184f wraps OnColor184 and works with format strings.

func OnColor185

func OnColor185(str string) string

OnColor185 will Hilight() the provided string with the specified ANSI code.

func OnColor185f added in v1.6.0

func OnColor185f(str string, args ...interface{}) string

OnColor185f wraps OnColor185 and works with format strings.

func OnColor186

func OnColor186(str string) string

OnColor186 will Hilight() the provided string with the specified ANSI code.

func OnColor186f added in v1.6.0

func OnColor186f(str string, args ...interface{}) string

OnColor186f wraps OnColor186 and works with format strings.

func OnColor187

func OnColor187(str string) string

OnColor187 will Hilight() the provided string with the specified ANSI code.

func OnColor187f added in v1.6.0

func OnColor187f(str string, args ...interface{}) string

OnColor187f wraps OnColor187 and works with format strings.

func OnColor188

func OnColor188(str string) string

OnColor188 will Hilight() the provided string with the specified ANSI code.

func OnColor188f added in v1.6.0

func OnColor188f(str string, args ...interface{}) string

OnColor188f wraps OnColor188 and works with format strings.

func OnColor189

func OnColor189(str string) string

OnColor189 will Hilight() the provided string with the specified ANSI code.

func OnColor189f added in v1.6.0

func OnColor189f(str string, args ...interface{}) string

OnColor189f wraps OnColor189 and works with format strings.

func OnColor190

func OnColor190(str string) string

OnColor190 will Hilight() the provided string with the specified ANSI code.

func OnColor190f added in v1.6.0

func OnColor190f(str string, args ...interface{}) string

OnColor190f wraps OnColor190 and works with format strings.

func OnColor191

func OnColor191(str string) string

OnColor191 will Hilight() the provided string with the specified ANSI code.

func OnColor191f added in v1.6.0

func OnColor191f(str string, args ...interface{}) string

OnColor191f wraps OnColor191 and works with format strings.

func OnColor192

func OnColor192(str string) string

OnColor192 will Hilight() the provided string with the specified ANSI code.

func OnColor192f added in v1.6.0

func OnColor192f(str string, args ...interface{}) string

OnColor192f wraps OnColor192 and works with format strings.

func OnColor193

func OnColor193(str string) string

OnColor193 will Hilight() the provided string with the specified ANSI code.

func OnColor193f added in v1.6.0

func OnColor193f(str string, args ...interface{}) string

OnColor193f wraps OnColor193 and works with format strings.

func OnColor194

func OnColor194(str string) string

OnColor194 will Hilight() the provided string with the specified ANSI code.

func OnColor194f added in v1.6.0

func OnColor194f(str string, args ...interface{}) string

OnColor194f wraps OnColor194 and works with format strings.

func OnColor195

func OnColor195(str string) string

OnColor195 will Hilight() the provided string with the specified ANSI code.

func OnColor195f added in v1.6.0

func OnColor195f(str string, args ...interface{}) string

OnColor195f wraps OnColor195 and works with format strings.

func OnColor196

func OnColor196(str string) string

OnColor196 will Hilight() the provided string with the specified ANSI code.

func OnColor196f added in v1.6.0

func OnColor196f(str string, args ...interface{}) string

OnColor196f wraps OnColor196 and works with format strings.

func OnColor197

func OnColor197(str string) string

OnColor197 will Hilight() the provided string with the specified ANSI code.

func OnColor197f added in v1.6.0

func OnColor197f(str string, args ...interface{}) string

OnColor197f wraps OnColor197 and works with format strings.

func OnColor198

func OnColor198(str string) string

OnColor198 will Hilight() the provided string with the specified ANSI code.

func OnColor198f added in v1.6.0

func OnColor198f(str string, args ...interface{}) string

OnColor198f wraps OnColor198 and works with format strings.

func OnColor199

func OnColor199(str string) string

OnColor199 will Hilight() the provided string with the specified ANSI code.

func OnColor199f added in v1.6.0

func OnColor199f(str string, args ...interface{}) string

OnColor199f wraps OnColor199 and works with format strings.

func OnColor200

func OnColor200(str string) string

OnColor200 will Hilight() the provided string with the specified ANSI code.

func OnColor200f added in v1.6.0

func OnColor200f(str string, args ...interface{}) string

OnColor200f wraps OnColor200 and works with format strings.

func OnColor201

func OnColor201(str string) string

OnColor201 will Hilight() the provided string with the specified ANSI code.

func OnColor201f added in v1.6.0

func OnColor201f(str string, args ...interface{}) string

OnColor201f wraps OnColor201 and works with format strings.

func OnColor202

func OnColor202(str string) string

OnColor202 will Hilight() the provided string with the specified ANSI code.

func OnColor202f added in v1.6.0

func OnColor202f(str string, args ...interface{}) string

OnColor202f wraps OnColor202 and works with format strings.

func OnColor203

func OnColor203(str string) string

OnColor203 will Hilight() the provided string with the specified ANSI code.

func OnColor203f added in v1.6.0

func OnColor203f(str string, args ...interface{}) string

OnColor203f wraps OnColor203 and works with format strings.

func OnColor204

func OnColor204(str string) string

OnColor204 will Hilight() the provided string with the specified ANSI code.

func OnColor204f added in v1.6.0

func OnColor204f(str string, args ...interface{}) string

OnColor204f wraps OnColor204 and works with format strings.

func OnColor205

func OnColor205(str string) string

OnColor205 will Hilight() the provided string with the specified ANSI code.

func OnColor205f added in v1.6.0

func OnColor205f(str string, args ...interface{}) string

OnColor205f wraps OnColor205 and works with format strings.

func OnColor206

func OnColor206(str string) string

OnColor206 will Hilight() the provided string with the specified ANSI code.

func OnColor206f added in v1.6.0

func OnColor206f(str string, args ...interface{}) string

OnColor206f wraps OnColor206 and works with format strings.

func OnColor207

func OnColor207(str string) string

OnColor207 will Hilight() the provided string with the specified ANSI code.

func OnColor207f added in v1.6.0

func OnColor207f(str string, args ...interface{}) string

OnColor207f wraps OnColor207 and works with format strings.

func OnColor208

func OnColor208(str string) string

OnColor208 will Hilight() the provided string with the specified ANSI code.

func OnColor208f added in v1.6.0

func OnColor208f(str string, args ...interface{}) string

OnColor208f wraps OnColor208 and works with format strings.

func OnColor209

func OnColor209(str string) string

OnColor209 will Hilight() the provided string with the specified ANSI code.

func OnColor209f added in v1.6.0

func OnColor209f(str string, args ...interface{}) string

OnColor209f wraps OnColor209 and works with format strings.

func OnColor210

func OnColor210(str string) string

OnColor210 will Hilight() the provided string with the specified ANSI code.

func OnColor210f added in v1.6.0

func OnColor210f(str string, args ...interface{}) string

OnColor210f wraps OnColor210 and works with format strings.

func OnColor211

func OnColor211(str string) string

OnColor211 will Hilight() the provided string with the specified ANSI code.

func OnColor211f added in v1.6.0

func OnColor211f(str string, args ...interface{}) string

OnColor211f wraps OnColor211 and works with format strings.

func OnColor212

func OnColor212(str string) string

OnColor212 will Hilight() the provided string with the specified ANSI code.

func OnColor212f added in v1.6.0

func OnColor212f(str string, args ...interface{}) string

OnColor212f wraps OnColor212 and works with format strings.

func OnColor213

func OnColor213(str string) string

OnColor213 will Hilight() the provided string with the specified ANSI code.

func OnColor213f added in v1.6.0

func OnColor213f(str string, args ...interface{}) string

OnColor213f wraps OnColor213 and works with format strings.

func OnColor214

func OnColor214(str string) string

OnColor214 will Hilight() the provided string with the specified ANSI code.

func OnColor214f added in v1.6.0

func OnColor214f(str string, args ...interface{}) string

OnColor214f wraps OnColor214 and works with format strings.

func OnColor215

func OnColor215(str string) string

OnColor215 will Hilight() the provided string with the specified ANSI code.

func OnColor215f added in v1.6.0

func OnColor215f(str string, args ...interface{}) string

OnColor215f wraps OnColor215 and works with format strings.

func OnColor216

func OnColor216(str string) string

OnColor216 will Hilight() the provided string with the specified ANSI code.

func OnColor216f added in v1.6.0

func OnColor216f(str string, args ...interface{}) string

OnColor216f wraps OnColor216 and works with format strings.

func OnColor217

func OnColor217(str string) string

OnColor217 will Hilight() the provided string with the specified ANSI code.

func OnColor217f added in v1.6.0

func OnColor217f(str string, args ...interface{}) string

OnColor217f wraps OnColor217 and works with format strings.

func OnColor218

func OnColor218(str string) string

OnColor218 will Hilight() the provided string with the specified ANSI code.

func OnColor218f added in v1.6.0

func OnColor218f(str string, args ...interface{}) string

OnColor218f wraps OnColor218 and works with format strings.

func OnColor219

func OnColor219(str string) string

OnColor219 will Hilight() the provided string with the specified ANSI code.

func OnColor219f added in v1.6.0

func OnColor219f(str string, args ...interface{}) string

OnColor219f wraps OnColor219 and works with format strings.

func OnColor220

func OnColor220(str string) string

OnColor220 will Hilight() the provided string with the specified ANSI code.

func OnColor220f added in v1.6.0

func OnColor220f(str string, args ...interface{}) string

OnColor220f wraps OnColor220 and works with format strings.

func OnColor221

func OnColor221(str string) string

OnColor221 will Hilight() the provided string with the specified ANSI code.

func OnColor221f added in v1.6.0

func OnColor221f(str string, args ...interface{}) string

OnColor221f wraps OnColor221 and works with format strings.

func OnColor222

func OnColor222(str string) string

OnColor222 will Hilight() the provided string with the specified ANSI code.

func OnColor222f added in v1.6.0

func OnColor222f(str string, args ...interface{}) string

OnColor222f wraps OnColor222 and works with format strings.

func OnColor223

func OnColor223(str string) string

OnColor223 will Hilight() the provided string with the specified ANSI code.

func OnColor223f added in v1.6.0

func OnColor223f(str string, args ...interface{}) string

OnColor223f wraps OnColor223 and works with format strings.

func OnColor224

func OnColor224(str string) string

OnColor224 will Hilight() the provided string with the specified ANSI code.

func OnColor224f added in v1.6.0

func OnColor224f(str string, args ...interface{}) string

OnColor224f wraps OnColor224 and works with format strings.

func OnColor225

func OnColor225(str string) string

OnColor225 will Hilight() the provided string with the specified ANSI code.

func OnColor225f added in v1.6.0

func OnColor225f(str string, args ...interface{}) string

OnColor225f wraps OnColor225 and works with format strings.

func OnColor226

func OnColor226(str string) string

OnColor226 will Hilight() the provided string with the specified ANSI code.

func OnColor226f added in v1.6.0

func OnColor226f(str string, args ...interface{}) string

OnColor226f wraps OnColor226 and works with format strings.

func OnColor227

func OnColor227(str string) string

OnColor227 will Hilight() the provided string with the specified ANSI code.

func OnColor227f added in v1.6.0

func OnColor227f(str string, args ...interface{}) string

OnColor227f wraps OnColor227 and works with format strings.

func OnColor228

func OnColor228(str string) string

OnColor228 will Hilight() the provided string with the specified ANSI code.

func OnColor228f added in v1.6.0

func OnColor228f(str string, args ...interface{}) string

OnColor228f wraps OnColor228 and works with format strings.

func OnColor229

func OnColor229(str string) string

OnColor229 will Hilight() the provided string with the specified ANSI code.

func OnColor229f added in v1.6.0

func OnColor229f(str string, args ...interface{}) string

OnColor229f wraps OnColor229 and works with format strings.

func OnColor230

func OnColor230(str string) string

OnColor230 will Hilight() the provided string with the specified ANSI code.

func OnColor230f added in v1.6.0

func OnColor230f(str string, args ...interface{}) string

OnColor230f wraps OnColor230 and works with format strings.

func OnColor231

func OnColor231(str string) string

OnColor231 will Hilight() the provided string with the specified ANSI code.

func OnColor231f added in v1.6.0

func OnColor231f(str string, args ...interface{}) string

OnColor231f wraps OnColor231 and works with format strings.

func OnColor232

func OnColor232(str string) string

OnColor232 will Hilight() the provided string with the specified ANSI code.

func OnColor232f added in v1.6.0

func OnColor232f(str string, args ...interface{}) string

OnColor232f wraps OnColor232 and works with format strings.

func OnColor233

func OnColor233(str string) string

OnColor233 will Hilight() the provided string with the specified ANSI code.

func OnColor233f added in v1.6.0

func OnColor233f(str string, args ...interface{}) string

OnColor233f wraps OnColor233 and works with format strings.

func OnColor234

func OnColor234(str string) string

OnColor234 will Hilight() the provided string with the specified ANSI code.

func OnColor234f added in v1.6.0

func OnColor234f(str string, args ...interface{}) string

OnColor234f wraps OnColor234 and works with format strings.

func OnColor235

func OnColor235(str string) string

OnColor235 will Hilight() the provided string with the specified ANSI code.

func OnColor235f added in v1.6.0

func OnColor235f(str string, args ...interface{}) string

OnColor235f wraps OnColor235 and works with format strings.

func OnColor236

func OnColor236(str string) string

OnColor236 will Hilight() the provided string with the specified ANSI code.

func OnColor236f added in v1.6.0

func OnColor236f(str string, args ...interface{}) string

OnColor236f wraps OnColor236 and works with format strings.

func OnColor237

func OnColor237(str string) string

OnColor237 will Hilight() the provided string with the specified ANSI code.

func OnColor237f added in v1.6.0

func OnColor237f(str string, args ...interface{}) string

OnColor237f wraps OnColor237 and works with format strings.

func OnColor238

func OnColor238(str string) string

OnColor238 will Hilight() the provided string with the specified ANSI code.

func OnColor238f added in v1.6.0

func OnColor238f(str string, args ...interface{}) string

OnColor238f wraps OnColor238 and works with format strings.

func OnColor239

func OnColor239(str string) string

OnColor239 will Hilight() the provided string with the specified ANSI code.

func OnColor239f added in v1.6.0

func OnColor239f(str string, args ...interface{}) string

OnColor239f wraps OnColor239 and works with format strings.

func OnColor240

func OnColor240(str string) string

OnColor240 will Hilight() the provided string with the specified ANSI code.

func OnColor240f added in v1.6.0

func OnColor240f(str string, args ...interface{}) string

OnColor240f wraps OnColor240 and works with format strings.

func OnColor241

func OnColor241(str string) string

OnColor241 will Hilight() the provided string with the specified ANSI code.

func OnColor241f added in v1.6.0

func OnColor241f(str string, args ...interface{}) string

OnColor241f wraps OnColor241 and works with format strings.

func OnColor242

func OnColor242(str string) string

OnColor242 will Hilight() the provided string with the specified ANSI code.

func OnColor242f added in v1.6.0

func OnColor242f(str string, args ...interface{}) string

OnColor242f wraps OnColor242 and works with format strings.

func OnColor243

func OnColor243(str string) string

OnColor243 will Hilight() the provided string with the specified ANSI code.

func OnColor243f added in v1.6.0

func OnColor243f(str string, args ...interface{}) string

OnColor243f wraps OnColor243 and works with format strings.

func OnColor244

func OnColor244(str string) string

OnColor244 will Hilight() the provided string with the specified ANSI code.

func OnColor244f added in v1.6.0

func OnColor244f(str string, args ...interface{}) string

OnColor244f wraps OnColor244 and works with format strings.

func OnColor245

func OnColor245(str string) string

OnColor245 will Hilight() the provided string with the specified ANSI code.

func OnColor245f added in v1.6.0

func OnColor245f(str string, args ...interface{}) string

OnColor245f wraps OnColor245 and works with format strings.

func OnColor246

func OnColor246(str string) string

OnColor246 will Hilight() the provided string with the specified ANSI code.

func OnColor246f added in v1.6.0

func OnColor246f(str string, args ...interface{}) string

OnColor246f wraps OnColor246 and works with format strings.

func OnColor247

func OnColor247(str string) string

OnColor247 will Hilight() the provided string with the specified ANSI code.

func OnColor247f added in v1.6.0

func OnColor247f(str string, args ...interface{}) string

OnColor247f wraps OnColor247 and works with format strings.

func OnColor248

func OnColor248(str string) string

OnColor248 will Hilight() the provided string with the specified ANSI code.

func OnColor248f added in v1.6.0

func OnColor248f(str string, args ...interface{}) string

OnColor248f wraps OnColor248 and works with format strings.

func OnColor249

func OnColor249(str string) string

OnColor249 will Hilight() the provided string with the specified ANSI code.

func OnColor249f added in v1.6.0

func OnColor249f(str string, args ...interface{}) string

OnColor249f wraps OnColor249 and works with format strings.

func OnColor250

func OnColor250(str string) string

OnColor250 will Hilight() the provided string with the specified ANSI code.

func OnColor250f added in v1.6.0

func OnColor250f(str string, args ...interface{}) string

OnColor250f wraps OnColor250 and works with format strings.

func OnColor251

func OnColor251(str string) string

OnColor251 will Hilight() the provided string with the specified ANSI code.

func OnColor251f added in v1.6.0

func OnColor251f(str string, args ...interface{}) string

OnColor251f wraps OnColor251 and works with format strings.

func OnColor252

func OnColor252(str string) string

OnColor252 will Hilight() the provided string with the specified ANSI code.

func OnColor252f added in v1.6.0

func OnColor252f(str string, args ...interface{}) string

OnColor252f wraps OnColor252 and works with format strings.

func OnColor253

func OnColor253(str string) string

OnColor253 will Hilight() the provided string with the specified ANSI code.

func OnColor253f added in v1.6.0

func OnColor253f(str string, args ...interface{}) string

OnColor253f wraps OnColor253 and works with format strings.

func OnColor254

func OnColor254(str string) string

OnColor254 will Hilight() the provided string with the specified ANSI code.

func OnColor254f added in v1.6.0

func OnColor254f(str string, args ...interface{}) string

OnColor254f wraps OnColor254 and works with format strings.

func OnColor255

func OnColor255(str string) string

OnColor255 will Hilight() the provided string with the specified ANSI code.

func OnColor255f added in v1.6.0

func OnColor255f(str string, args ...interface{}) string

OnColor255f wraps OnColor255 and works with format strings.

func OnCyan

func OnCyan(str string) string

OnCyan will Hilight() the provided string with the specified ANSI code.

func OnCyanf added in v1.6.0

func OnCyanf(str string, args ...interface{}) string

OnCyanf wraps OnCyan and works with format strings.

func OnDefault

func OnDefault(str string) string

OnDefault will Hilight() the provided string with the specified ANSI code.

func OnDefaultf added in v1.6.0

func OnDefaultf(str string, args ...interface{}) string

OnDefaultf wraps OnDefault and works with format strings.

func OnGreen

func OnGreen(str string) string

OnGreen will Hilight() the provided string with the specified ANSI code.

func OnGreenf added in v1.6.0

func OnGreenf(str string, args ...interface{}) string

OnGreenf wraps OnGreen and works with format strings.

func OnHex

func OnHex(hex string, str string) string

OnHex will take a hex color code and add the appropriate ANSI color codes to the provided string.

func OnHexf added in v1.6.0

func OnHexf(hex string, str string, args ...interface{}) string

OnHexf wraps OnHex and works with format strings.

func OnLightBlack

func OnLightBlack(str string) string

OnLightBlack will Hilight() the provided string with the specified ANSI code.

func OnLightBlackf added in v1.6.0

func OnLightBlackf(str string, args ...interface{}) string

OnLightBlackf wraps OnLightBlack and works with format strings.

func OnLightBlue

func OnLightBlue(str string) string

OnLightBlue will Hilight() the provided string with the specified ANSI code.

func OnLightBluef added in v1.6.0

func OnLightBluef(str string, args ...interface{}) string

OnLightBluef wraps OnLightBlue and works with format strings.

func OnLightCyan

func OnLightCyan(str string) string

OnLightCyan will Hilight() the provided string with the specified ANSI code.

func OnLightCyanf added in v1.6.0

func OnLightCyanf(str string, args ...interface{}) string

OnLightCyanf wraps OnLightCyan and works with format strings.

func OnLightGreen

func OnLightGreen(str string) string

OnLightGreen will Hilight() the provided string with the specified ANSI code.

func OnLightGreenf added in v1.6.0

func OnLightGreenf(str string, args ...interface{}) string

OnLightGreenf wraps OnLightGreen and works with format strings.

func OnLightMagenta

func OnLightMagenta(str string) string

OnLightMagenta will Hilight() the provided string with the specified ANSI code.

func OnLightMagentaf added in v1.6.0

func OnLightMagentaf(str string, args ...interface{}) string

OnLightMagentaf wraps OnLightMagenta and works with format strings.

func OnLightRed

func OnLightRed(str string) string

OnLightRed will Hilight() the provided string with the specified ANSI code.

func OnLightRedf added in v1.6.0

func OnLightRedf(str string, args ...interface{}) string

OnLightRedf wraps OnLightRed and works with format strings.

func OnLightWhite

func OnLightWhite(str string) string

OnLightWhite will Hilight() the provided string with the specified ANSI code.

func OnLightWhitef added in v1.6.0

func OnLightWhitef(str string, args ...interface{}) string

OnLightWhitef wraps OnLightWhite and works with format strings.

func OnLightYellow

func OnLightYellow(str string) string

OnLightYellow will Hilight() the provided string with the specified ANSI code.

func OnLightYellowf added in v1.6.0

func OnLightYellowf(str string, args ...interface{}) string

OnLightYellowf wraps OnLightYellow and works with format strings.

func OnMagenta

func OnMagenta(str string) string

OnMagenta will Hilight() the provided string with the specified ANSI code.

func OnMagentaf added in v1.6.0

func OnMagentaf(str string, args ...interface{}) string

OnMagentaf wraps OnMagenta and works with format strings.

func OnRainbow

func OnRainbow(str string) string

OnRainbow will add multiple ANSI color codes to a string for a rainbow effect.

func OnRainbowf added in v1.6.0

func OnRainbowf(str string, args ...interface{}) string

OnRainbowf wraps OnRainbow and works with format strings.

func OnRed

func OnRed(str string) string

OnRed will Hilight() the provided string with the specified ANSI code.

func OnRedf added in v1.6.0

func OnRedf(str string, args ...interface{}) string

OnRedf wraps OnRed and works with format strings.

func OnWhite

func OnWhite(str string) string

OnWhite will Hilight() the provided string with the specified ANSI code.

func OnWhitef added in v1.6.0

func OnWhitef(str string, args ...interface{}) string

OnWhitef wraps OnWhite and works with format strings.

func OnYellow

func OnYellow(str string) string

OnYellow will Hilight() the provided string with the specified ANSI code.

func OnYellowf added in v1.6.0

func OnYellowf(str string, args ...interface{}) string

OnYellowf wraps OnYellow and works with format strings.

func Plain

func Plain(str string) string

Plain will strip all ANSI color codes from a string.

func Plainf added in v1.6.0

func Plainf(str string, args ...interface{}) string

Plainf wraps Plain and works with format strings.

func Print

func Print(args ...interface{})

Print wraps fmt.Print(args ...interface{}).

func PrintBlack

func PrintBlack(str string)

PrintBlack will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintBlackf added in v1.6.0

func PrintBlackf(str string, args ...interface{})

PrintBlackf wraps PrintBlack and works with format strings.

func PrintBlink(str string)

PrintBlink will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintBlinkRapid

func PrintBlinkRapid(str string)

PrintBlinkRapid will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintBlinkRapidf added in v1.6.0

func PrintBlinkRapidf(str string, args ...interface{})

PrintBlinkRapidf wraps PrintBlinkRapid and works with format strings.

func PrintBlinkSlow

func PrintBlinkSlow(str string)

PrintBlinkSlow will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintBlinkSlowf added in v1.6.0

func PrintBlinkSlowf(str string, args ...interface{})

PrintBlinkSlowf wraps PrintBlinkSlow and works with format strings.

func PrintBlinkf added in v1.6.0

func PrintBlinkf(str string, args ...interface{})

PrintBlinkf wraps PrintBlink and works with format strings.

func PrintBlue

func PrintBlue(str string)

PrintBlue will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintBluef added in v1.6.0

func PrintBluef(str string, args ...interface{})

PrintBluef wraps PrintBlue and works with format strings.

func PrintBold

func PrintBold(str string)

PrintBold will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintBoldf added in v1.6.0

func PrintBoldf(str string, args ...interface{})

PrintBoldf wraps PrintBold and works with format strings.

func PrintColor000

func PrintColor000(str string)

PrintColor000 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor000f added in v1.6.0

func PrintColor000f(str string, args ...interface{})

PrintColor000f wraps PrintColor000 and works with format strings.

func PrintColor001

func PrintColor001(str string)

PrintColor001 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor001f added in v1.6.0

func PrintColor001f(str string, args ...interface{})

PrintColor001f wraps PrintColor001 and works with format strings.

func PrintColor002

func PrintColor002(str string)

PrintColor002 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor002f added in v1.6.0

func PrintColor002f(str string, args ...interface{})

PrintColor002f wraps PrintColor002 and works with format strings.

func PrintColor003

func PrintColor003(str string)

PrintColor003 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor003f added in v1.6.0

func PrintColor003f(str string, args ...interface{})

PrintColor003f wraps PrintColor003 and works with format strings.

func PrintColor004

func PrintColor004(str string)

PrintColor004 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor004f added in v1.6.0

func PrintColor004f(str string, args ...interface{})

PrintColor004f wraps PrintColor004 and works with format strings.

func PrintColor005

func PrintColor005(str string)

PrintColor005 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor005f added in v1.6.0

func PrintColor005f(str string, args ...interface{})

PrintColor005f wraps PrintColor005 and works with format strings.

func PrintColor006

func PrintColor006(str string)

PrintColor006 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor006f added in v1.6.0

func PrintColor006f(str string, args ...interface{})

PrintColor006f wraps PrintColor006 and works with format strings.

func PrintColor007

func PrintColor007(str string)

PrintColor007 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor007f added in v1.6.0

func PrintColor007f(str string, args ...interface{})

PrintColor007f wraps PrintColor007 and works with format strings.

func PrintColor008

func PrintColor008(str string)

PrintColor008 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor008f added in v1.6.0

func PrintColor008f(str string, args ...interface{})

PrintColor008f wraps PrintColor008 and works with format strings.

func PrintColor009

func PrintColor009(str string)

PrintColor009 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor009f added in v1.6.0

func PrintColor009f(str string, args ...interface{})

PrintColor009f wraps PrintColor009 and works with format strings.

func PrintColor010

func PrintColor010(str string)

PrintColor010 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor010f added in v1.6.0

func PrintColor010f(str string, args ...interface{})

PrintColor010f wraps PrintColor010 and works with format strings.

func PrintColor011

func PrintColor011(str string)

PrintColor011 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor011f added in v1.6.0

func PrintColor011f(str string, args ...interface{})

PrintColor011f wraps PrintColor011 and works with format strings.

func PrintColor012

func PrintColor012(str string)

PrintColor012 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor012f added in v1.6.0

func PrintColor012f(str string, args ...interface{})

PrintColor012f wraps PrintColor012 and works with format strings.

func PrintColor013

func PrintColor013(str string)

PrintColor013 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor013f added in v1.6.0

func PrintColor013f(str string, args ...interface{})

PrintColor013f wraps PrintColor013 and works with format strings.

func PrintColor014

func PrintColor014(str string)

PrintColor014 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor014f added in v1.6.0

func PrintColor014f(str string, args ...interface{})

PrintColor014f wraps PrintColor014 and works with format strings.

func PrintColor015

func PrintColor015(str string)

PrintColor015 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor015f added in v1.6.0

func PrintColor015f(str string, args ...interface{})

PrintColor015f wraps PrintColor015 and works with format strings.

func PrintColor016

func PrintColor016(str string)

PrintColor016 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor016f added in v1.6.0

func PrintColor016f(str string, args ...interface{})

PrintColor016f wraps PrintColor016 and works with format strings.

func PrintColor017

func PrintColor017(str string)

PrintColor017 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor017f added in v1.6.0

func PrintColor017f(str string, args ...interface{})

PrintColor017f wraps PrintColor017 and works with format strings.

func PrintColor018

func PrintColor018(str string)

PrintColor018 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor018f added in v1.6.0

func PrintColor018f(str string, args ...interface{})

PrintColor018f wraps PrintColor018 and works with format strings.

func PrintColor019

func PrintColor019(str string)

PrintColor019 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor019f added in v1.6.0

func PrintColor019f(str string, args ...interface{})

PrintColor019f wraps PrintColor019 and works with format strings.

func PrintColor020

func PrintColor020(str string)

PrintColor020 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor020f added in v1.6.0

func PrintColor020f(str string, args ...interface{})

PrintColor020f wraps PrintColor020 and works with format strings.

func PrintColor021

func PrintColor021(str string)

PrintColor021 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor021f added in v1.6.0

func PrintColor021f(str string, args ...interface{})

PrintColor021f wraps PrintColor021 and works with format strings.

func PrintColor022

func PrintColor022(str string)

PrintColor022 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor022f added in v1.6.0

func PrintColor022f(str string, args ...interface{})

PrintColor022f wraps PrintColor022 and works with format strings.

func PrintColor023

func PrintColor023(str string)

PrintColor023 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor023f added in v1.6.0

func PrintColor023f(str string, args ...interface{})

PrintColor023f wraps PrintColor023 and works with format strings.

func PrintColor024

func PrintColor024(str string)

PrintColor024 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor024f added in v1.6.0

func PrintColor024f(str string, args ...interface{})

PrintColor024f wraps PrintColor024 and works with format strings.

func PrintColor025

func PrintColor025(str string)

PrintColor025 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor025f added in v1.6.0

func PrintColor025f(str string, args ...interface{})

PrintColor025f wraps PrintColor025 and works with format strings.

func PrintColor026

func PrintColor026(str string)

PrintColor026 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor026f added in v1.6.0

func PrintColor026f(str string, args ...interface{})

PrintColor026f wraps PrintColor026 and works with format strings.

func PrintColor027

func PrintColor027(str string)

PrintColor027 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor027f added in v1.6.0

func PrintColor027f(str string, args ...interface{})

PrintColor027f wraps PrintColor027 and works with format strings.

func PrintColor028

func PrintColor028(str string)

PrintColor028 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor028f added in v1.6.0

func PrintColor028f(str string, args ...interface{})

PrintColor028f wraps PrintColor028 and works with format strings.

func PrintColor029

func PrintColor029(str string)

PrintColor029 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor029f added in v1.6.0

func PrintColor029f(str string, args ...interface{})

PrintColor029f wraps PrintColor029 and works with format strings.

func PrintColor030

func PrintColor030(str string)

PrintColor030 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor030f added in v1.6.0

func PrintColor030f(str string, args ...interface{})

PrintColor030f wraps PrintColor030 and works with format strings.

func PrintColor031

func PrintColor031(str string)

PrintColor031 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor031f added in v1.6.0

func PrintColor031f(str string, args ...interface{})

PrintColor031f wraps PrintColor031 and works with format strings.

func PrintColor032

func PrintColor032(str string)

PrintColor032 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor032f added in v1.6.0

func PrintColor032f(str string, args ...interface{})

PrintColor032f wraps PrintColor032 and works with format strings.

func PrintColor033

func PrintColor033(str string)

PrintColor033 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor033f added in v1.6.0

func PrintColor033f(str string, args ...interface{})

PrintColor033f wraps PrintColor033 and works with format strings.

func PrintColor034

func PrintColor034(str string)

PrintColor034 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor034f added in v1.6.0

func PrintColor034f(str string, args ...interface{})

PrintColor034f wraps PrintColor034 and works with format strings.

func PrintColor035

func PrintColor035(str string)

PrintColor035 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor035f added in v1.6.0

func PrintColor035f(str string, args ...interface{})

PrintColor035f wraps PrintColor035 and works with format strings.

func PrintColor036

func PrintColor036(str string)

PrintColor036 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor036f added in v1.6.0

func PrintColor036f(str string, args ...interface{})

PrintColor036f wraps PrintColor036 and works with format strings.

func PrintColor037

func PrintColor037(str string)

PrintColor037 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor037f added in v1.6.0

func PrintColor037f(str string, args ...interface{})

PrintColor037f wraps PrintColor037 and works with format strings.

func PrintColor038

func PrintColor038(str string)

PrintColor038 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor038f added in v1.6.0

func PrintColor038f(str string, args ...interface{})

PrintColor038f wraps PrintColor038 and works with format strings.

func PrintColor039

func PrintColor039(str string)

PrintColor039 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor039f added in v1.6.0

func PrintColor039f(str string, args ...interface{})

PrintColor039f wraps PrintColor039 and works with format strings.

func PrintColor040

func PrintColor040(str string)

PrintColor040 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor040f added in v1.6.0

func PrintColor040f(str string, args ...interface{})

PrintColor040f wraps PrintColor040 and works with format strings.

func PrintColor041

func PrintColor041(str string)

PrintColor041 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor041f added in v1.6.0

func PrintColor041f(str string, args ...interface{})

PrintColor041f wraps PrintColor041 and works with format strings.

func PrintColor042

func PrintColor042(str string)

PrintColor042 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor042f added in v1.6.0

func PrintColor042f(str string, args ...interface{})

PrintColor042f wraps PrintColor042 and works with format strings.

func PrintColor043

func PrintColor043(str string)

PrintColor043 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor043f added in v1.6.0

func PrintColor043f(str string, args ...interface{})

PrintColor043f wraps PrintColor043 and works with format strings.

func PrintColor044

func PrintColor044(str string)

PrintColor044 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor044f added in v1.6.0

func PrintColor044f(str string, args ...interface{})

PrintColor044f wraps PrintColor044 and works with format strings.

func PrintColor045

func PrintColor045(str string)

PrintColor045 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor045f added in v1.6.0

func PrintColor045f(str string, args ...interface{})

PrintColor045f wraps PrintColor045 and works with format strings.

func PrintColor046

func PrintColor046(str string)

PrintColor046 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor046f added in v1.6.0

func PrintColor046f(str string, args ...interface{})

PrintColor046f wraps PrintColor046 and works with format strings.

func PrintColor047

func PrintColor047(str string)

PrintColor047 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor047f added in v1.6.0

func PrintColor047f(str string, args ...interface{})

PrintColor047f wraps PrintColor047 and works with format strings.

func PrintColor048

func PrintColor048(str string)

PrintColor048 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor048f added in v1.6.0

func PrintColor048f(str string, args ...interface{})

PrintColor048f wraps PrintColor048 and works with format strings.

func PrintColor049

func PrintColor049(str string)

PrintColor049 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor049f added in v1.6.0

func PrintColor049f(str string, args ...interface{})

PrintColor049f wraps PrintColor049 and works with format strings.

func PrintColor050

func PrintColor050(str string)

PrintColor050 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor050f added in v1.6.0

func PrintColor050f(str string, args ...interface{})

PrintColor050f wraps PrintColor050 and works with format strings.

func PrintColor051

func PrintColor051(str string)

PrintColor051 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor051f added in v1.6.0

func PrintColor051f(str string, args ...interface{})

PrintColor051f wraps PrintColor051 and works with format strings.

func PrintColor052

func PrintColor052(str string)

PrintColor052 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor052f added in v1.6.0

func PrintColor052f(str string, args ...interface{})

PrintColor052f wraps PrintColor052 and works with format strings.

func PrintColor053

func PrintColor053(str string)

PrintColor053 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor053f added in v1.6.0

func PrintColor053f(str string, args ...interface{})

PrintColor053f wraps PrintColor053 and works with format strings.

func PrintColor054

func PrintColor054(str string)

PrintColor054 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor054f added in v1.6.0

func PrintColor054f(str string, args ...interface{})

PrintColor054f wraps PrintColor054 and works with format strings.

func PrintColor055

func PrintColor055(str string)

PrintColor055 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor055f added in v1.6.0

func PrintColor055f(str string, args ...interface{})

PrintColor055f wraps PrintColor055 and works with format strings.

func PrintColor056

func PrintColor056(str string)

PrintColor056 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor056f added in v1.6.0

func PrintColor056f(str string, args ...interface{})

PrintColor056f wraps PrintColor056 and works with format strings.

func PrintColor057

func PrintColor057(str string)

PrintColor057 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor057f added in v1.6.0

func PrintColor057f(str string, args ...interface{})

PrintColor057f wraps PrintColor057 and works with format strings.

func PrintColor058

func PrintColor058(str string)

PrintColor058 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor058f added in v1.6.0

func PrintColor058f(str string, args ...interface{})

PrintColor058f wraps PrintColor058 and works with format strings.

func PrintColor059

func PrintColor059(str string)

PrintColor059 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor059f added in v1.6.0

func PrintColor059f(str string, args ...interface{})

PrintColor059f wraps PrintColor059 and works with format strings.

func PrintColor060

func PrintColor060(str string)

PrintColor060 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor060f added in v1.6.0

func PrintColor060f(str string, args ...interface{})

PrintColor060f wraps PrintColor060 and works with format strings.

func PrintColor061

func PrintColor061(str string)

PrintColor061 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor061f added in v1.6.0

func PrintColor061f(str string, args ...interface{})

PrintColor061f wraps PrintColor061 and works with format strings.

func PrintColor062

func PrintColor062(str string)

PrintColor062 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor062f added in v1.6.0

func PrintColor062f(str string, args ...interface{})

PrintColor062f wraps PrintColor062 and works with format strings.

func PrintColor063

func PrintColor063(str string)

PrintColor063 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor063f added in v1.6.0

func PrintColor063f(str string, args ...interface{})

PrintColor063f wraps PrintColor063 and works with format strings.

func PrintColor064

func PrintColor064(str string)

PrintColor064 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor064f added in v1.6.0

func PrintColor064f(str string, args ...interface{})

PrintColor064f wraps PrintColor064 and works with format strings.

func PrintColor065

func PrintColor065(str string)

PrintColor065 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor065f added in v1.6.0

func PrintColor065f(str string, args ...interface{})

PrintColor065f wraps PrintColor065 and works with format strings.

func PrintColor066

func PrintColor066(str string)

PrintColor066 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor066f added in v1.6.0

func PrintColor066f(str string, args ...interface{})

PrintColor066f wraps PrintColor066 and works with format strings.

func PrintColor067

func PrintColor067(str string)

PrintColor067 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor067f added in v1.6.0

func PrintColor067f(str string, args ...interface{})

PrintColor067f wraps PrintColor067 and works with format strings.

func PrintColor068

func PrintColor068(str string)

PrintColor068 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor068f added in v1.6.0

func PrintColor068f(str string, args ...interface{})

PrintColor068f wraps PrintColor068 and works with format strings.

func PrintColor069

func PrintColor069(str string)

PrintColor069 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor069f added in v1.6.0

func PrintColor069f(str string, args ...interface{})

PrintColor069f wraps PrintColor069 and works with format strings.

func PrintColor070

func PrintColor070(str string)

PrintColor070 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor070f added in v1.6.0

func PrintColor070f(str string, args ...interface{})

PrintColor070f wraps PrintColor070 and works with format strings.

func PrintColor071

func PrintColor071(str string)

PrintColor071 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor071f added in v1.6.0

func PrintColor071f(str string, args ...interface{})

PrintColor071f wraps PrintColor071 and works with format strings.

func PrintColor072

func PrintColor072(str string)

PrintColor072 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor072f added in v1.6.0

func PrintColor072f(str string, args ...interface{})

PrintColor072f wraps PrintColor072 and works with format strings.

func PrintColor073

func PrintColor073(str string)

PrintColor073 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor073f added in v1.6.0

func PrintColor073f(str string, args ...interface{})

PrintColor073f wraps PrintColor073 and works with format strings.

func PrintColor074

func PrintColor074(str string)

PrintColor074 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor074f added in v1.6.0

func PrintColor074f(str string, args ...interface{})

PrintColor074f wraps PrintColor074 and works with format strings.

func PrintColor075

func PrintColor075(str string)

PrintColor075 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor075f added in v1.6.0

func PrintColor075f(str string, args ...interface{})

PrintColor075f wraps PrintColor075 and works with format strings.

func PrintColor076

func PrintColor076(str string)

PrintColor076 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor076f added in v1.6.0

func PrintColor076f(str string, args ...interface{})

PrintColor076f wraps PrintColor076 and works with format strings.

func PrintColor077

func PrintColor077(str string)

PrintColor077 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor077f added in v1.6.0

func PrintColor077f(str string, args ...interface{})

PrintColor077f wraps PrintColor077 and works with format strings.

func PrintColor078

func PrintColor078(str string)

PrintColor078 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor078f added in v1.6.0

func PrintColor078f(str string, args ...interface{})

PrintColor078f wraps PrintColor078 and works with format strings.

func PrintColor079

func PrintColor079(str string)

PrintColor079 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor079f added in v1.6.0

func PrintColor079f(str string, args ...interface{})

PrintColor079f wraps PrintColor079 and works with format strings.

func PrintColor080

func PrintColor080(str string)

PrintColor080 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor080f added in v1.6.0

func PrintColor080f(str string, args ...interface{})

PrintColor080f wraps PrintColor080 and works with format strings.

func PrintColor081

func PrintColor081(str string)

PrintColor081 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor081f added in v1.6.0

func PrintColor081f(str string, args ...interface{})

PrintColor081f wraps PrintColor081 and works with format strings.

func PrintColor082

func PrintColor082(str string)

PrintColor082 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor082f added in v1.6.0

func PrintColor082f(str string, args ...interface{})

PrintColor082f wraps PrintColor082 and works with format strings.

func PrintColor083

func PrintColor083(str string)

PrintColor083 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor083f added in v1.6.0

func PrintColor083f(str string, args ...interface{})

PrintColor083f wraps PrintColor083 and works with format strings.

func PrintColor084

func PrintColor084(str string)

PrintColor084 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor084f added in v1.6.0

func PrintColor084f(str string, args ...interface{})

PrintColor084f wraps PrintColor084 and works with format strings.

func PrintColor085

func PrintColor085(str string)

PrintColor085 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor085f added in v1.6.0

func PrintColor085f(str string, args ...interface{})

PrintColor085f wraps PrintColor085 and works with format strings.

func PrintColor086

func PrintColor086(str string)

PrintColor086 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor086f added in v1.6.0

func PrintColor086f(str string, args ...interface{})

PrintColor086f wraps PrintColor086 and works with format strings.

func PrintColor087

func PrintColor087(str string)

PrintColor087 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor087f added in v1.6.0

func PrintColor087f(str string, args ...interface{})

PrintColor087f wraps PrintColor087 and works with format strings.

func PrintColor088

func PrintColor088(str string)

PrintColor088 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor088f added in v1.6.0

func PrintColor088f(str string, args ...interface{})

PrintColor088f wraps PrintColor088 and works with format strings.

func PrintColor089

func PrintColor089(str string)

PrintColor089 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor089f added in v1.6.0

func PrintColor089f(str string, args ...interface{})

PrintColor089f wraps PrintColor089 and works with format strings.

func PrintColor090

func PrintColor090(str string)

PrintColor090 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor090f added in v1.6.0

func PrintColor090f(str string, args ...interface{})

PrintColor090f wraps PrintColor090 and works with format strings.

func PrintColor091

func PrintColor091(str string)

PrintColor091 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor091f added in v1.6.0

func PrintColor091f(str string, args ...interface{})

PrintColor091f wraps PrintColor091 and works with format strings.

func PrintColor092

func PrintColor092(str string)

PrintColor092 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor092f added in v1.6.0

func PrintColor092f(str string, args ...interface{})

PrintColor092f wraps PrintColor092 and works with format strings.

func PrintColor093

func PrintColor093(str string)

PrintColor093 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor093f added in v1.6.0

func PrintColor093f(str string, args ...interface{})

PrintColor093f wraps PrintColor093 and works with format strings.

func PrintColor094

func PrintColor094(str string)

PrintColor094 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor094f added in v1.6.0

func PrintColor094f(str string, args ...interface{})

PrintColor094f wraps PrintColor094 and works with format strings.

func PrintColor095

func PrintColor095(str string)

PrintColor095 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor095f added in v1.6.0

func PrintColor095f(str string, args ...interface{})

PrintColor095f wraps PrintColor095 and works with format strings.

func PrintColor096

func PrintColor096(str string)

PrintColor096 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor096f added in v1.6.0

func PrintColor096f(str string, args ...interface{})

PrintColor096f wraps PrintColor096 and works with format strings.

func PrintColor097

func PrintColor097(str string)

PrintColor097 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor097f added in v1.6.0

func PrintColor097f(str string, args ...interface{})

PrintColor097f wraps PrintColor097 and works with format strings.

func PrintColor098

func PrintColor098(str string)

PrintColor098 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor098f added in v1.6.0

func PrintColor098f(str string, args ...interface{})

PrintColor098f wraps PrintColor098 and works with format strings.

func PrintColor099

func PrintColor099(str string)

PrintColor099 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor099f added in v1.6.0

func PrintColor099f(str string, args ...interface{})

PrintColor099f wraps PrintColor099 and works with format strings.

func PrintColor100

func PrintColor100(str string)

PrintColor100 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor100f added in v1.6.0

func PrintColor100f(str string, args ...interface{})

PrintColor100f wraps PrintColor100 and works with format strings.

func PrintColor101

func PrintColor101(str string)

PrintColor101 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor101f added in v1.6.0

func PrintColor101f(str string, args ...interface{})

PrintColor101f wraps PrintColor101 and works with format strings.

func PrintColor102

func PrintColor102(str string)

PrintColor102 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor102f added in v1.6.0

func PrintColor102f(str string, args ...interface{})

PrintColor102f wraps PrintColor102 and works with format strings.

func PrintColor103

func PrintColor103(str string)

PrintColor103 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor103f added in v1.6.0

func PrintColor103f(str string, args ...interface{})

PrintColor103f wraps PrintColor103 and works with format strings.

func PrintColor104

func PrintColor104(str string)

PrintColor104 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor104f added in v1.6.0

func PrintColor104f(str string, args ...interface{})

PrintColor104f wraps PrintColor104 and works with format strings.

func PrintColor105

func PrintColor105(str string)

PrintColor105 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor105f added in v1.6.0

func PrintColor105f(str string, args ...interface{})

PrintColor105f wraps PrintColor105 and works with format strings.

func PrintColor106

func PrintColor106(str string)

PrintColor106 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor106f added in v1.6.0

func PrintColor106f(str string, args ...interface{})

PrintColor106f wraps PrintColor106 and works with format strings.

func PrintColor107

func PrintColor107(str string)

PrintColor107 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor107f added in v1.6.0

func PrintColor107f(str string, args ...interface{})

PrintColor107f wraps PrintColor107 and works with format strings.

func PrintColor108

func PrintColor108(str string)

PrintColor108 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor108f added in v1.6.0

func PrintColor108f(str string, args ...interface{})

PrintColor108f wraps PrintColor108 and works with format strings.

func PrintColor109

func PrintColor109(str string)

PrintColor109 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor109f added in v1.6.0

func PrintColor109f(str string, args ...interface{})

PrintColor109f wraps PrintColor109 and works with format strings.

func PrintColor110

func PrintColor110(str string)

PrintColor110 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor110f added in v1.6.0

func PrintColor110f(str string, args ...interface{})

PrintColor110f wraps PrintColor110 and works with format strings.

func PrintColor111

func PrintColor111(str string)

PrintColor111 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor111f added in v1.6.0

func PrintColor111f(str string, args ...interface{})

PrintColor111f wraps PrintColor111 and works with format strings.

func PrintColor112

func PrintColor112(str string)

PrintColor112 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor112f added in v1.6.0

func PrintColor112f(str string, args ...interface{})

PrintColor112f wraps PrintColor112 and works with format strings.

func PrintColor113

func PrintColor113(str string)

PrintColor113 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor113f added in v1.6.0

func PrintColor113f(str string, args ...interface{})

PrintColor113f wraps PrintColor113 and works with format strings.

func PrintColor114

func PrintColor114(str string)

PrintColor114 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor114f added in v1.6.0

func PrintColor114f(str string, args ...interface{})

PrintColor114f wraps PrintColor114 and works with format strings.

func PrintColor115

func PrintColor115(str string)

PrintColor115 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor115f added in v1.6.0

func PrintColor115f(str string, args ...interface{})

PrintColor115f wraps PrintColor115 and works with format strings.

func PrintColor116

func PrintColor116(str string)

PrintColor116 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor116f added in v1.6.0

func PrintColor116f(str string, args ...interface{})

PrintColor116f wraps PrintColor116 and works with format strings.

func PrintColor117

func PrintColor117(str string)

PrintColor117 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor117f added in v1.6.0

func PrintColor117f(str string, args ...interface{})

PrintColor117f wraps PrintColor117 and works with format strings.

func PrintColor118

func PrintColor118(str string)

PrintColor118 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor118f added in v1.6.0

func PrintColor118f(str string, args ...interface{})

PrintColor118f wraps PrintColor118 and works with format strings.

func PrintColor119

func PrintColor119(str string)

PrintColor119 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor119f added in v1.6.0

func PrintColor119f(str string, args ...interface{})

PrintColor119f wraps PrintColor119 and works with format strings.

func PrintColor120

func PrintColor120(str string)

PrintColor120 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor120f added in v1.6.0

func PrintColor120f(str string, args ...interface{})

PrintColor120f wraps PrintColor120 and works with format strings.

func PrintColor121

func PrintColor121(str string)

PrintColor121 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor121f added in v1.6.0

func PrintColor121f(str string, args ...interface{})

PrintColor121f wraps PrintColor121 and works with format strings.

func PrintColor122

func PrintColor122(str string)

PrintColor122 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor122f added in v1.6.0

func PrintColor122f(str string, args ...interface{})

PrintColor122f wraps PrintColor122 and works with format strings.

func PrintColor123

func PrintColor123(str string)

PrintColor123 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor123f added in v1.6.0

func PrintColor123f(str string, args ...interface{})

PrintColor123f wraps PrintColor123 and works with format strings.

func PrintColor124

func PrintColor124(str string)

PrintColor124 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor124f added in v1.6.0

func PrintColor124f(str string, args ...interface{})

PrintColor124f wraps PrintColor124 and works with format strings.

func PrintColor125

func PrintColor125(str string)

PrintColor125 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor125f added in v1.6.0

func PrintColor125f(str string, args ...interface{})

PrintColor125f wraps PrintColor125 and works with format strings.

func PrintColor126

func PrintColor126(str string)

PrintColor126 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor126f added in v1.6.0

func PrintColor126f(str string, args ...interface{})

PrintColor126f wraps PrintColor126 and works with format strings.

func PrintColor127

func PrintColor127(str string)

PrintColor127 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor127f added in v1.6.0

func PrintColor127f(str string, args ...interface{})

PrintColor127f wraps PrintColor127 and works with format strings.

func PrintColor128

func PrintColor128(str string)

PrintColor128 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor128f added in v1.6.0

func PrintColor128f(str string, args ...interface{})

PrintColor128f wraps PrintColor128 and works with format strings.

func PrintColor129

func PrintColor129(str string)

PrintColor129 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor129f added in v1.6.0

func PrintColor129f(str string, args ...interface{})

PrintColor129f wraps PrintColor129 and works with format strings.

func PrintColor130

func PrintColor130(str string)

PrintColor130 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor130f added in v1.6.0

func PrintColor130f(str string, args ...interface{})

PrintColor130f wraps PrintColor130 and works with format strings.

func PrintColor131

func PrintColor131(str string)

PrintColor131 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor131f added in v1.6.0

func PrintColor131f(str string, args ...interface{})

PrintColor131f wraps PrintColor131 and works with format strings.

func PrintColor132

func PrintColor132(str string)

PrintColor132 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor132f added in v1.6.0

func PrintColor132f(str string, args ...interface{})

PrintColor132f wraps PrintColor132 and works with format strings.

func PrintColor133

func PrintColor133(str string)

PrintColor133 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor133f added in v1.6.0

func PrintColor133f(str string, args ...interface{})

PrintColor133f wraps PrintColor133 and works with format strings.

func PrintColor134

func PrintColor134(str string)

PrintColor134 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor134f added in v1.6.0

func PrintColor134f(str string, args ...interface{})

PrintColor134f wraps PrintColor134 and works with format strings.

func PrintColor135

func PrintColor135(str string)

PrintColor135 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor135f added in v1.6.0

func PrintColor135f(str string, args ...interface{})

PrintColor135f wraps PrintColor135 and works with format strings.

func PrintColor136

func PrintColor136(str string)

PrintColor136 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor136f added in v1.6.0

func PrintColor136f(str string, args ...interface{})

PrintColor136f wraps PrintColor136 and works with format strings.

func PrintColor137

func PrintColor137(str string)

PrintColor137 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor137f added in v1.6.0

func PrintColor137f(str string, args ...interface{})

PrintColor137f wraps PrintColor137 and works with format strings.

func PrintColor138

func PrintColor138(str string)

PrintColor138 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor138f added in v1.6.0

func PrintColor138f(str string, args ...interface{})

PrintColor138f wraps PrintColor138 and works with format strings.

func PrintColor139

func PrintColor139(str string)

PrintColor139 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor139f added in v1.6.0

func PrintColor139f(str string, args ...interface{})

PrintColor139f wraps PrintColor139 and works with format strings.

func PrintColor140

func PrintColor140(str string)

PrintColor140 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor140f added in v1.6.0

func PrintColor140f(str string, args ...interface{})

PrintColor140f wraps PrintColor140 and works with format strings.

func PrintColor141

func PrintColor141(str string)

PrintColor141 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor141f added in v1.6.0

func PrintColor141f(str string, args ...interface{})

PrintColor141f wraps PrintColor141 and works with format strings.

func PrintColor142

func PrintColor142(str string)

PrintColor142 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor142f added in v1.6.0

func PrintColor142f(str string, args ...interface{})

PrintColor142f wraps PrintColor142 and works with format strings.

func PrintColor143

func PrintColor143(str string)

PrintColor143 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor143f added in v1.6.0

func PrintColor143f(str string, args ...interface{})

PrintColor143f wraps PrintColor143 and works with format strings.

func PrintColor144

func PrintColor144(str string)

PrintColor144 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor144f added in v1.6.0

func PrintColor144f(str string, args ...interface{})

PrintColor144f wraps PrintColor144 and works with format strings.

func PrintColor145

func PrintColor145(str string)

PrintColor145 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor145f added in v1.6.0

func PrintColor145f(str string, args ...interface{})

PrintColor145f wraps PrintColor145 and works with format strings.

func PrintColor146

func PrintColor146(str string)

PrintColor146 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor146f added in v1.6.0

func PrintColor146f(str string, args ...interface{})

PrintColor146f wraps PrintColor146 and works with format strings.

func PrintColor147

func PrintColor147(str string)

PrintColor147 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor147f added in v1.6.0

func PrintColor147f(str string, args ...interface{})

PrintColor147f wraps PrintColor147 and works with format strings.

func PrintColor148

func PrintColor148(str string)

PrintColor148 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor148f added in v1.6.0

func PrintColor148f(str string, args ...interface{})

PrintColor148f wraps PrintColor148 and works with format strings.

func PrintColor149

func PrintColor149(str string)

PrintColor149 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor149f added in v1.6.0

func PrintColor149f(str string, args ...interface{})

PrintColor149f wraps PrintColor149 and works with format strings.

func PrintColor150

func PrintColor150(str string)

PrintColor150 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor150f added in v1.6.0

func PrintColor150f(str string, args ...interface{})

PrintColor150f wraps PrintColor150 and works with format strings.

func PrintColor151

func PrintColor151(str string)

PrintColor151 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor151f added in v1.6.0

func PrintColor151f(str string, args ...interface{})

PrintColor151f wraps PrintColor151 and works with format strings.

func PrintColor152

func PrintColor152(str string)

PrintColor152 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor152f added in v1.6.0

func PrintColor152f(str string, args ...interface{})

PrintColor152f wraps PrintColor152 and works with format strings.

func PrintColor153

func PrintColor153(str string)

PrintColor153 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor153f added in v1.6.0

func PrintColor153f(str string, args ...interface{})

PrintColor153f wraps PrintColor153 and works with format strings.

func PrintColor154

func PrintColor154(str string)

PrintColor154 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor154f added in v1.6.0

func PrintColor154f(str string, args ...interface{})

PrintColor154f wraps PrintColor154 and works with format strings.

func PrintColor155

func PrintColor155(str string)

PrintColor155 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor155f added in v1.6.0

func PrintColor155f(str string, args ...interface{})

PrintColor155f wraps PrintColor155 and works with format strings.

func PrintColor156

func PrintColor156(str string)

PrintColor156 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor156f added in v1.6.0

func PrintColor156f(str string, args ...interface{})

PrintColor156f wraps PrintColor156 and works with format strings.

func PrintColor157

func PrintColor157(str string)

PrintColor157 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor157f added in v1.6.0

func PrintColor157f(str string, args ...interface{})

PrintColor157f wraps PrintColor157 and works with format strings.

func PrintColor158

func PrintColor158(str string)

PrintColor158 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor158f added in v1.6.0

func PrintColor158f(str string, args ...interface{})

PrintColor158f wraps PrintColor158 and works with format strings.

func PrintColor159

func PrintColor159(str string)

PrintColor159 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor159f added in v1.6.0

func PrintColor159f(str string, args ...interface{})

PrintColor159f wraps PrintColor159 and works with format strings.

func PrintColor160

func PrintColor160(str string)

PrintColor160 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor160f added in v1.6.0

func PrintColor160f(str string, args ...interface{})

PrintColor160f wraps PrintColor160 and works with format strings.

func PrintColor161

func PrintColor161(str string)

PrintColor161 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor161f added in v1.6.0

func PrintColor161f(str string, args ...interface{})

PrintColor161f wraps PrintColor161 and works with format strings.

func PrintColor162

func PrintColor162(str string)

PrintColor162 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor162f added in v1.6.0

func PrintColor162f(str string, args ...interface{})

PrintColor162f wraps PrintColor162 and works with format strings.

func PrintColor163

func PrintColor163(str string)

PrintColor163 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor163f added in v1.6.0

func PrintColor163f(str string, args ...interface{})

PrintColor163f wraps PrintColor163 and works with format strings.

func PrintColor164

func PrintColor164(str string)

PrintColor164 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor164f added in v1.6.0

func PrintColor164f(str string, args ...interface{})

PrintColor164f wraps PrintColor164 and works with format strings.

func PrintColor165

func PrintColor165(str string)

PrintColor165 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor165f added in v1.6.0

func PrintColor165f(str string, args ...interface{})

PrintColor165f wraps PrintColor165 and works with format strings.

func PrintColor166

func PrintColor166(str string)

PrintColor166 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor166f added in v1.6.0

func PrintColor166f(str string, args ...interface{})

PrintColor166f wraps PrintColor166 and works with format strings.

func PrintColor167

func PrintColor167(str string)

PrintColor167 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor167f added in v1.6.0

func PrintColor167f(str string, args ...interface{})

PrintColor167f wraps PrintColor167 and works with format strings.

func PrintColor168

func PrintColor168(str string)

PrintColor168 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor168f added in v1.6.0

func PrintColor168f(str string, args ...interface{})

PrintColor168f wraps PrintColor168 and works with format strings.

func PrintColor169

func PrintColor169(str string)

PrintColor169 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor169f added in v1.6.0

func PrintColor169f(str string, args ...interface{})

PrintColor169f wraps PrintColor169 and works with format strings.

func PrintColor170

func PrintColor170(str string)

PrintColor170 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor170f added in v1.6.0

func PrintColor170f(str string, args ...interface{})

PrintColor170f wraps PrintColor170 and works with format strings.

func PrintColor171

func PrintColor171(str string)

PrintColor171 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor171f added in v1.6.0

func PrintColor171f(str string, args ...interface{})

PrintColor171f wraps PrintColor171 and works with format strings.

func PrintColor172

func PrintColor172(str string)

PrintColor172 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor172f added in v1.6.0

func PrintColor172f(str string, args ...interface{})

PrintColor172f wraps PrintColor172 and works with format strings.

func PrintColor173

func PrintColor173(str string)

PrintColor173 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor173f added in v1.6.0

func PrintColor173f(str string, args ...interface{})

PrintColor173f wraps PrintColor173 and works with format strings.

func PrintColor174

func PrintColor174(str string)

PrintColor174 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor174f added in v1.6.0

func PrintColor174f(str string, args ...interface{})

PrintColor174f wraps PrintColor174 and works with format strings.

func PrintColor175

func PrintColor175(str string)

PrintColor175 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor175f added in v1.6.0

func PrintColor175f(str string, args ...interface{})

PrintColor175f wraps PrintColor175 and works with format strings.

func PrintColor176

func PrintColor176(str string)

PrintColor176 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor176f added in v1.6.0

func PrintColor176f(str string, args ...interface{})

PrintColor176f wraps PrintColor176 and works with format strings.

func PrintColor177

func PrintColor177(str string)

PrintColor177 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor177f added in v1.6.0

func PrintColor177f(str string, args ...interface{})

PrintColor177f wraps PrintColor177 and works with format strings.

func PrintColor178

func PrintColor178(str string)

PrintColor178 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor178f added in v1.6.0

func PrintColor178f(str string, args ...interface{})

PrintColor178f wraps PrintColor178 and works with format strings.

func PrintColor179

func PrintColor179(str string)

PrintColor179 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor179f added in v1.6.0

func PrintColor179f(str string, args ...interface{})

PrintColor179f wraps PrintColor179 and works with format strings.

func PrintColor180

func PrintColor180(str string)

PrintColor180 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor180f added in v1.6.0

func PrintColor180f(str string, args ...interface{})

PrintColor180f wraps PrintColor180 and works with format strings.

func PrintColor181

func PrintColor181(str string)

PrintColor181 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor181f added in v1.6.0

func PrintColor181f(str string, args ...interface{})

PrintColor181f wraps PrintColor181 and works with format strings.

func PrintColor182

func PrintColor182(str string)

PrintColor182 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor182f added in v1.6.0

func PrintColor182f(str string, args ...interface{})

PrintColor182f wraps PrintColor182 and works with format strings.

func PrintColor183

func PrintColor183(str string)

PrintColor183 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor183f added in v1.6.0

func PrintColor183f(str string, args ...interface{})

PrintColor183f wraps PrintColor183 and works with format strings.

func PrintColor184

func PrintColor184(str string)

PrintColor184 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor184f added in v1.6.0

func PrintColor184f(str string, args ...interface{})

PrintColor184f wraps PrintColor184 and works with format strings.

func PrintColor185

func PrintColor185(str string)

PrintColor185 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor185f added in v1.6.0

func PrintColor185f(str string, args ...interface{})

PrintColor185f wraps PrintColor185 and works with format strings.

func PrintColor186

func PrintColor186(str string)

PrintColor186 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor186f added in v1.6.0

func PrintColor186f(str string, args ...interface{})

PrintColor186f wraps PrintColor186 and works with format strings.

func PrintColor187

func PrintColor187(str string)

PrintColor187 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor187f added in v1.6.0

func PrintColor187f(str string, args ...interface{})

PrintColor187f wraps PrintColor187 and works with format strings.

func PrintColor188

func PrintColor188(str string)

PrintColor188 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor188f added in v1.6.0

func PrintColor188f(str string, args ...interface{})

PrintColor188f wraps PrintColor188 and works with format strings.

func PrintColor189

func PrintColor189(str string)

PrintColor189 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor189f added in v1.6.0

func PrintColor189f(str string, args ...interface{})

PrintColor189f wraps PrintColor189 and works with format strings.

func PrintColor190

func PrintColor190(str string)

PrintColor190 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor190f added in v1.6.0

func PrintColor190f(str string, args ...interface{})

PrintColor190f wraps PrintColor190 and works with format strings.

func PrintColor191

func PrintColor191(str string)

PrintColor191 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor191f added in v1.6.0

func PrintColor191f(str string, args ...interface{})

PrintColor191f wraps PrintColor191 and works with format strings.

func PrintColor192

func PrintColor192(str string)

PrintColor192 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor192f added in v1.6.0

func PrintColor192f(str string, args ...interface{})

PrintColor192f wraps PrintColor192 and works with format strings.

func PrintColor193

func PrintColor193(str string)

PrintColor193 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor193f added in v1.6.0

func PrintColor193f(str string, args ...interface{})

PrintColor193f wraps PrintColor193 and works with format strings.

func PrintColor194

func PrintColor194(str string)

PrintColor194 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor194f added in v1.6.0

func PrintColor194f(str string, args ...interface{})

PrintColor194f wraps PrintColor194 and works with format strings.

func PrintColor195

func PrintColor195(str string)

PrintColor195 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor195f added in v1.6.0

func PrintColor195f(str string, args ...interface{})

PrintColor195f wraps PrintColor195 and works with format strings.

func PrintColor196

func PrintColor196(str string)

PrintColor196 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor196f added in v1.6.0

func PrintColor196f(str string, args ...interface{})

PrintColor196f wraps PrintColor196 and works with format strings.

func PrintColor197

func PrintColor197(str string)

PrintColor197 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor197f added in v1.6.0

func PrintColor197f(str string, args ...interface{})

PrintColor197f wraps PrintColor197 and works with format strings.

func PrintColor198

func PrintColor198(str string)

PrintColor198 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor198f added in v1.6.0

func PrintColor198f(str string, args ...interface{})

PrintColor198f wraps PrintColor198 and works with format strings.

func PrintColor199

func PrintColor199(str string)

PrintColor199 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor199f added in v1.6.0

func PrintColor199f(str string, args ...interface{})

PrintColor199f wraps PrintColor199 and works with format strings.

func PrintColor200

func PrintColor200(str string)

PrintColor200 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor200f added in v1.6.0

func PrintColor200f(str string, args ...interface{})

PrintColor200f wraps PrintColor200 and works with format strings.

func PrintColor201

func PrintColor201(str string)

PrintColor201 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor201f added in v1.6.0

func PrintColor201f(str string, args ...interface{})

PrintColor201f wraps PrintColor201 and works with format strings.

func PrintColor202

func PrintColor202(str string)

PrintColor202 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor202f added in v1.6.0

func PrintColor202f(str string, args ...interface{})

PrintColor202f wraps PrintColor202 and works with format strings.

func PrintColor203

func PrintColor203(str string)

PrintColor203 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor203f added in v1.6.0

func PrintColor203f(str string, args ...interface{})

PrintColor203f wraps PrintColor203 and works with format strings.

func PrintColor204

func PrintColor204(str string)

PrintColor204 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor204f added in v1.6.0

func PrintColor204f(str string, args ...interface{})

PrintColor204f wraps PrintColor204 and works with format strings.

func PrintColor205

func PrintColor205(str string)

PrintColor205 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor205f added in v1.6.0

func PrintColor205f(str string, args ...interface{})

PrintColor205f wraps PrintColor205 and works with format strings.

func PrintColor206

func PrintColor206(str string)

PrintColor206 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor206f added in v1.6.0

func PrintColor206f(str string, args ...interface{})

PrintColor206f wraps PrintColor206 and works with format strings.

func PrintColor207

func PrintColor207(str string)

PrintColor207 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor207f added in v1.6.0

func PrintColor207f(str string, args ...interface{})

PrintColor207f wraps PrintColor207 and works with format strings.

func PrintColor208

func PrintColor208(str string)

PrintColor208 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor208f added in v1.6.0

func PrintColor208f(str string, args ...interface{})

PrintColor208f wraps PrintColor208 and works with format strings.

func PrintColor209

func PrintColor209(str string)

PrintColor209 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor209f added in v1.6.0

func PrintColor209f(str string, args ...interface{})

PrintColor209f wraps PrintColor209 and works with format strings.

func PrintColor210

func PrintColor210(str string)

PrintColor210 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor210f added in v1.6.0

func PrintColor210f(str string, args ...interface{})

PrintColor210f wraps PrintColor210 and works with format strings.

func PrintColor211

func PrintColor211(str string)

PrintColor211 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor211f added in v1.6.0

func PrintColor211f(str string, args ...interface{})

PrintColor211f wraps PrintColor211 and works with format strings.

func PrintColor212

func PrintColor212(str string)

PrintColor212 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor212f added in v1.6.0

func PrintColor212f(str string, args ...interface{})

PrintColor212f wraps PrintColor212 and works with format strings.

func PrintColor213

func PrintColor213(str string)

PrintColor213 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor213f added in v1.6.0

func PrintColor213f(str string, args ...interface{})

PrintColor213f wraps PrintColor213 and works with format strings.

func PrintColor214

func PrintColor214(str string)

PrintColor214 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor214f added in v1.6.0

func PrintColor214f(str string, args ...interface{})

PrintColor214f wraps PrintColor214 and works with format strings.

func PrintColor215

func PrintColor215(str string)

PrintColor215 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor215f added in v1.6.0

func PrintColor215f(str string, args ...interface{})

PrintColor215f wraps PrintColor215 and works with format strings.

func PrintColor216

func PrintColor216(str string)

PrintColor216 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor216f added in v1.6.0

func PrintColor216f(str string, args ...interface{})

PrintColor216f wraps PrintColor216 and works with format strings.

func PrintColor217

func PrintColor217(str string)

PrintColor217 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor217f added in v1.6.0

func PrintColor217f(str string, args ...interface{})

PrintColor217f wraps PrintColor217 and works with format strings.

func PrintColor218

func PrintColor218(str string)

PrintColor218 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor218f added in v1.6.0

func PrintColor218f(str string, args ...interface{})

PrintColor218f wraps PrintColor218 and works with format strings.

func PrintColor219

func PrintColor219(str string)

PrintColor219 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor219f added in v1.6.0

func PrintColor219f(str string, args ...interface{})

PrintColor219f wraps PrintColor219 and works with format strings.

func PrintColor220

func PrintColor220(str string)

PrintColor220 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor220f added in v1.6.0

func PrintColor220f(str string, args ...interface{})

PrintColor220f wraps PrintColor220 and works with format strings.

func PrintColor221

func PrintColor221(str string)

PrintColor221 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor221f added in v1.6.0

func PrintColor221f(str string, args ...interface{})

PrintColor221f wraps PrintColor221 and works with format strings.

func PrintColor222

func PrintColor222(str string)

PrintColor222 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor222f added in v1.6.0

func PrintColor222f(str string, args ...interface{})

PrintColor222f wraps PrintColor222 and works with format strings.

func PrintColor223

func PrintColor223(str string)

PrintColor223 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor223f added in v1.6.0

func PrintColor223f(str string, args ...interface{})

PrintColor223f wraps PrintColor223 and works with format strings.

func PrintColor224

func PrintColor224(str string)

PrintColor224 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor224f added in v1.6.0

func PrintColor224f(str string, args ...interface{})

PrintColor224f wraps PrintColor224 and works with format strings.

func PrintColor225

func PrintColor225(str string)

PrintColor225 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor225f added in v1.6.0

func PrintColor225f(str string, args ...interface{})

PrintColor225f wraps PrintColor225 and works with format strings.

func PrintColor226

func PrintColor226(str string)

PrintColor226 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor226f added in v1.6.0

func PrintColor226f(str string, args ...interface{})

PrintColor226f wraps PrintColor226 and works with format strings.

func PrintColor227

func PrintColor227(str string)

PrintColor227 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor227f added in v1.6.0

func PrintColor227f(str string, args ...interface{})

PrintColor227f wraps PrintColor227 and works with format strings.

func PrintColor228

func PrintColor228(str string)

PrintColor228 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor228f added in v1.6.0

func PrintColor228f(str string, args ...interface{})

PrintColor228f wraps PrintColor228 and works with format strings.

func PrintColor229

func PrintColor229(str string)

PrintColor229 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor229f added in v1.6.0

func PrintColor229f(str string, args ...interface{})

PrintColor229f wraps PrintColor229 and works with format strings.

func PrintColor230

func PrintColor230(str string)

PrintColor230 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor230f added in v1.6.0

func PrintColor230f(str string, args ...interface{})

PrintColor230f wraps PrintColor230 and works with format strings.

func PrintColor231

func PrintColor231(str string)

PrintColor231 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor231f added in v1.6.0

func PrintColor231f(str string, args ...interface{})

PrintColor231f wraps PrintColor231 and works with format strings.

func PrintColor232

func PrintColor232(str string)

PrintColor232 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor232f added in v1.6.0

func PrintColor232f(str string, args ...interface{})

PrintColor232f wraps PrintColor232 and works with format strings.

func PrintColor233

func PrintColor233(str string)

PrintColor233 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor233f added in v1.6.0

func PrintColor233f(str string, args ...interface{})

PrintColor233f wraps PrintColor233 and works with format strings.

func PrintColor234

func PrintColor234(str string)

PrintColor234 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor234f added in v1.6.0

func PrintColor234f(str string, args ...interface{})

PrintColor234f wraps PrintColor234 and works with format strings.

func PrintColor235

func PrintColor235(str string)

PrintColor235 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor235f added in v1.6.0

func PrintColor235f(str string, args ...interface{})

PrintColor235f wraps PrintColor235 and works with format strings.

func PrintColor236

func PrintColor236(str string)

PrintColor236 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor236f added in v1.6.0

func PrintColor236f(str string, args ...interface{})

PrintColor236f wraps PrintColor236 and works with format strings.

func PrintColor237

func PrintColor237(str string)

PrintColor237 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor237f added in v1.6.0

func PrintColor237f(str string, args ...interface{})

PrintColor237f wraps PrintColor237 and works with format strings.

func PrintColor238

func PrintColor238(str string)

PrintColor238 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor238f added in v1.6.0

func PrintColor238f(str string, args ...interface{})

PrintColor238f wraps PrintColor238 and works with format strings.

func PrintColor239

func PrintColor239(str string)

PrintColor239 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor239f added in v1.6.0

func PrintColor239f(str string, args ...interface{})

PrintColor239f wraps PrintColor239 and works with format strings.

func PrintColor240

func PrintColor240(str string)

PrintColor240 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor240f added in v1.6.0

func PrintColor240f(str string, args ...interface{})

PrintColor240f wraps PrintColor240 and works with format strings.

func PrintColor241

func PrintColor241(str string)

PrintColor241 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor241f added in v1.6.0

func PrintColor241f(str string, args ...interface{})

PrintColor241f wraps PrintColor241 and works with format strings.

func PrintColor242

func PrintColor242(str string)

PrintColor242 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor242f added in v1.6.0

func PrintColor242f(str string, args ...interface{})

PrintColor242f wraps PrintColor242 and works with format strings.

func PrintColor243

func PrintColor243(str string)

PrintColor243 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor243f added in v1.6.0

func PrintColor243f(str string, args ...interface{})

PrintColor243f wraps PrintColor243 and works with format strings.

func PrintColor244

func PrintColor244(str string)

PrintColor244 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor244f added in v1.6.0

func PrintColor244f(str string, args ...interface{})

PrintColor244f wraps PrintColor244 and works with format strings.

func PrintColor245

func PrintColor245(str string)

PrintColor245 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor245f added in v1.6.0

func PrintColor245f(str string, args ...interface{})

PrintColor245f wraps PrintColor245 and works with format strings.

func PrintColor246

func PrintColor246(str string)

PrintColor246 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor246f added in v1.6.0

func PrintColor246f(str string, args ...interface{})

PrintColor246f wraps PrintColor246 and works with format strings.

func PrintColor247

func PrintColor247(str string)

PrintColor247 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor247f added in v1.6.0

func PrintColor247f(str string, args ...interface{})

PrintColor247f wraps PrintColor247 and works with format strings.

func PrintColor248

func PrintColor248(str string)

PrintColor248 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor248f added in v1.6.0

func PrintColor248f(str string, args ...interface{})

PrintColor248f wraps PrintColor248 and works with format strings.

func PrintColor249

func PrintColor249(str string)

PrintColor249 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor249f added in v1.6.0

func PrintColor249f(str string, args ...interface{})

PrintColor249f wraps PrintColor249 and works with format strings.

func PrintColor250

func PrintColor250(str string)

PrintColor250 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor250f added in v1.6.0

func PrintColor250f(str string, args ...interface{})

PrintColor250f wraps PrintColor250 and works with format strings.

func PrintColor251

func PrintColor251(str string)

PrintColor251 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor251f added in v1.6.0

func PrintColor251f(str string, args ...interface{})

PrintColor251f wraps PrintColor251 and works with format strings.

func PrintColor252

func PrintColor252(str string)

PrintColor252 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor252f added in v1.6.0

func PrintColor252f(str string, args ...interface{})

PrintColor252f wraps PrintColor252 and works with format strings.

func PrintColor253

func PrintColor253(str string)

PrintColor253 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor253f added in v1.6.0

func PrintColor253f(str string, args ...interface{})

PrintColor253f wraps PrintColor253 and works with format strings.

func PrintColor254

func PrintColor254(str string)

PrintColor254 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor254f added in v1.6.0

func PrintColor254f(str string, args ...interface{})

PrintColor254f wraps PrintColor254 and works with format strings.

func PrintColor255

func PrintColor255(str string)

PrintColor255 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintColor255f added in v1.6.0

func PrintColor255f(str string, args ...interface{})

PrintColor255f wraps PrintColor255 and works with format strings.

func PrintConceal

func PrintConceal(str string)

PrintConceal will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintConcealf added in v1.6.0

func PrintConcealf(str string, args ...interface{})

PrintConcealf wraps PrintConceal and works with format strings.

func PrintCrossedOut

func PrintCrossedOut(str string)

PrintCrossedOut will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintCrossedOutf added in v1.6.0

func PrintCrossedOutf(str string, args ...interface{})

PrintCrossedOutf wraps PrintCrossedOut and works with format strings.

func PrintCyan

func PrintCyan(str string)

PrintCyan will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintCyanf added in v1.6.0

func PrintCyanf(str string, args ...interface{})

PrintCyanf wraps PrintCyan and works with format strings.

func PrintDefault

func PrintDefault(str string)

PrintDefault will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintDefaultf added in v1.6.0

func PrintDefaultf(str string, args ...interface{})

PrintDefaultf wraps PrintDefault and works with format strings.

func PrintDim

func PrintDim(str string)

PrintDim will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintDimf added in v1.6.0

func PrintDimf(str string, args ...interface{})

PrintDimf wraps PrintDim and works with format strings.

func PrintFaint

func PrintFaint(str string)

PrintFaint will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintFaintf added in v1.6.0

func PrintFaintf(str string, args ...interface{})

PrintFaintf wraps PrintFaint and works with format strings.

func PrintFraktur

func PrintFraktur(str string)

PrintFraktur will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintFrakturf added in v1.6.0

func PrintFrakturf(str string, args ...interface{})

PrintFrakturf wraps PrintFraktur and works with format strings.

func PrintGreen

func PrintGreen(str string)

PrintGreen will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintGreenf added in v1.6.0

func PrintGreenf(str string, args ...interface{})

PrintGreenf wraps PrintGreen and works with format strings.

func PrintHex

func PrintHex(hex string, str string)

PrintHex will take a hex color code and print a string with ANSI escape codes.

func PrintHexf added in v1.6.0

func PrintHexf(hex string, str string, args ...interface{})

PrintHexf wraps PrintHex and works with format strings.

func PrintHide

func PrintHide(str string)

PrintHide will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintHidef added in v1.6.0

func PrintHidef(str string, args ...interface{})

PrintHidef wraps PrintHide and works with format strings.

func PrintHilight

func PrintHilight(code string, str string)

PrintHilight will print a string with an ANSI escape code.

func PrintHilightf added in v1.6.0

func PrintHilightf(code string, str string, args ...interface{})

PrintHilightf wraps PrintHilight and works with format strings.

func PrintHilights

func PrintHilights(codes []string, str string)

PrintHilights will print a string with ANSI escape codes.

func PrintHilightsf added in v1.6.0

func PrintHilightsf(codes []string, str string, args ...interface{})

PrintHilightsf wraps PrintHilights and works with format strings.

func PrintInverse

func PrintInverse(str string)

PrintInverse will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintInversef added in v1.6.0

func PrintInversef(str string, args ...interface{})

PrintInversef wraps PrintInverse and works with format strings.

func PrintItalic

func PrintItalic(str string)

PrintItalic will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintItalicf added in v1.6.0

func PrintItalicf(str string, args ...interface{})

PrintItalicf wraps PrintItalic and works with format strings.

func PrintLightBlack

func PrintLightBlack(str string)

PrintLightBlack will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintLightBlackf added in v1.6.0

func PrintLightBlackf(str string, args ...interface{})

PrintLightBlackf wraps PrintLightBlack and works with format strings.

func PrintLightBlue

func PrintLightBlue(str string)

PrintLightBlue will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintLightBluef added in v1.6.0

func PrintLightBluef(str string, args ...interface{})

PrintLightBluef wraps PrintLightBlue and works with format strings.

func PrintLightCyan

func PrintLightCyan(str string)

PrintLightCyan will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintLightCyanf added in v1.6.0

func PrintLightCyanf(str string, args ...interface{})

PrintLightCyanf wraps PrintLightCyan and works with format strings.

func PrintLightGreen

func PrintLightGreen(str string)

PrintLightGreen will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintLightGreenf added in v1.6.0

func PrintLightGreenf(str string, args ...interface{})

PrintLightGreenf wraps PrintLightGreen and works with format strings.

func PrintLightMagenta

func PrintLightMagenta(str string)

PrintLightMagenta will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintLightMagentaf added in v1.6.0

func PrintLightMagentaf(str string, args ...interface{})

PrintLightMagentaf wraps PrintLightMagenta and works with format strings.

func PrintLightRed

func PrintLightRed(str string)

PrintLightRed will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintLightRedf added in v1.6.0

func PrintLightRedf(str string, args ...interface{})

PrintLightRedf wraps PrintLightRed and works with format strings.

func PrintLightWhite

func PrintLightWhite(str string)

PrintLightWhite will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintLightWhitef added in v1.6.0

func PrintLightWhitef(str string, args ...interface{})

PrintLightWhitef wraps PrintLightWhite and works with format strings.

func PrintLightYellow

func PrintLightYellow(str string)

PrintLightYellow will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintLightYellowf added in v1.6.0

func PrintLightYellowf(str string, args ...interface{})

PrintLightYellowf wraps PrintLightYellow and works with format strings.

func PrintMagenta

func PrintMagenta(str string)

PrintMagenta will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintMagentaf added in v1.6.0

func PrintMagentaf(str string, args ...interface{})

PrintMagentaf wraps PrintMagenta and works with format strings.

func PrintNegative

func PrintNegative(str string)

PrintNegative will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintNegativef added in v1.6.0

func PrintNegativef(str string, args ...interface{})

PrintNegativef wraps PrintNegative and works with format strings.

func PrintNoBlink(str string)

PrintNoBlink will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintNoBlinkRapid

func PrintNoBlinkRapid(str string)

PrintNoBlinkRapid will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintNoBlinkRapidf added in v1.6.0

func PrintNoBlinkRapidf(str string, args ...interface{})

PrintNoBlinkRapidf wraps PrintNoBlinkRapid and works with format strings.

func PrintNoBlinkSlow

func PrintNoBlinkSlow(str string)

PrintNoBlinkSlow will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintNoBlinkSlowf added in v1.6.0

func PrintNoBlinkSlowf(str string, args ...interface{})

PrintNoBlinkSlowf wraps PrintNoBlinkSlow and works with format strings.

func PrintNoBlinkf added in v1.6.0

func PrintNoBlinkf(str string, args ...interface{})

PrintNoBlinkf wraps PrintNoBlink and works with format strings.

func PrintNoBold

func PrintNoBold(str string)

PrintNoBold will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintNoBoldf added in v1.6.0

func PrintNoBoldf(str string, args ...interface{})

PrintNoBoldf wraps PrintNoBold and works with format strings.

func PrintNoConceal

func PrintNoConceal(str string)

PrintNoConceal will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintNoConcealf added in v1.6.0

func PrintNoConcealf(str string, args ...interface{})

PrintNoConcealf wraps PrintNoConceal and works with format strings.

func PrintNoCrossedOut

func PrintNoCrossedOut(str string)

PrintNoCrossedOut will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintNoCrossedOutf added in v1.6.0

func PrintNoCrossedOutf(str string, args ...interface{})

PrintNoCrossedOutf wraps PrintNoCrossedOut and works with format strings.

func PrintNoDim

func PrintNoDim(str string)

PrintNoDim will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintNoDimf added in v1.6.0

func PrintNoDimf(str string, args ...interface{})

PrintNoDimf wraps PrintNoDim and works with format strings.

func PrintNoFaint

func PrintNoFaint(str string)

PrintNoFaint will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintNoFaintf added in v1.6.0

func PrintNoFaintf(str string, args ...interface{})

PrintNoFaintf wraps PrintNoFaint and works with format strings.

func PrintNoFraktur

func PrintNoFraktur(str string)

PrintNoFraktur will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintNoFrakturf added in v1.6.0

func PrintNoFrakturf(str string, args ...interface{})

PrintNoFrakturf wraps PrintNoFraktur and works with format strings.

func PrintNoHide

func PrintNoHide(str string)

PrintNoHide will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintNoHidef added in v1.6.0

func PrintNoHidef(str string, args ...interface{})

PrintNoHidef wraps PrintNoHide and works with format strings.

func PrintNoInverse

func PrintNoInverse(str string)

PrintNoInverse will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintNoInversef added in v1.6.0

func PrintNoInversef(str string, args ...interface{})

PrintNoInversef wraps PrintNoInverse and works with format strings.

func PrintNoItalic

func PrintNoItalic(str string)

PrintNoItalic will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintNoItalicf added in v1.6.0

func PrintNoItalicf(str string, args ...interface{})

PrintNoItalicf wraps PrintNoItalic and works with format strings.

func PrintNoNegative

func PrintNoNegative(str string)

PrintNoNegative will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintNoNegativef added in v1.6.0

func PrintNoNegativef(str string, args ...interface{})

PrintNoNegativef wraps PrintNoNegative and works with format strings.

func PrintNoStrikethrough

func PrintNoStrikethrough(str string)

PrintNoStrikethrough will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintNoStrikethroughf added in v1.6.0

func PrintNoStrikethroughf(str string, args ...interface{})

PrintNoStrikethroughf wraps PrintNoStrikethrough and works with format strings.

func PrintNoSwap

func PrintNoSwap(str string)

PrintNoSwap will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintNoSwapf added in v1.6.0

func PrintNoSwapf(str string, args ...interface{})

PrintNoSwapf wraps PrintNoSwap and works with format strings.

func PrintNoUnderline

func PrintNoUnderline(str string)

PrintNoUnderline will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintNoUnderlinef added in v1.6.0

func PrintNoUnderlinef(str string, args ...interface{})

PrintNoUnderlinef wraps PrintNoUnderline and works with format strings.

func PrintNormal

func PrintNormal(str string)

PrintNormal will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintNormalf added in v1.6.0

func PrintNormalf(str string, args ...interface{})

PrintNormalf wraps PrintNormal and works with format strings.

func PrintOnBlack

func PrintOnBlack(str string)

PrintOnBlack will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnBlackf added in v1.6.0

func PrintOnBlackf(str string, args ...interface{})

PrintOnBlackf wraps PrintOnBlack and works with format strings.

func PrintOnBlue

func PrintOnBlue(str string)

PrintOnBlue will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnBluef added in v1.6.0

func PrintOnBluef(str string, args ...interface{})

PrintOnBluef wraps PrintOnBlue and works with format strings.

func PrintOnColor000

func PrintOnColor000(str string)

PrintOnColor000 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor000f added in v1.6.0

func PrintOnColor000f(str string, args ...interface{})

PrintOnColor000f wraps PrintOnColor000 and works with format strings.

func PrintOnColor001

func PrintOnColor001(str string)

PrintOnColor001 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor001f added in v1.6.0

func PrintOnColor001f(str string, args ...interface{})

PrintOnColor001f wraps PrintOnColor001 and works with format strings.

func PrintOnColor002

func PrintOnColor002(str string)

PrintOnColor002 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor002f added in v1.6.0

func PrintOnColor002f(str string, args ...interface{})

PrintOnColor002f wraps PrintOnColor002 and works with format strings.

func PrintOnColor003

func PrintOnColor003(str string)

PrintOnColor003 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor003f added in v1.6.0

func PrintOnColor003f(str string, args ...interface{})

PrintOnColor003f wraps PrintOnColor003 and works with format strings.

func PrintOnColor004

func PrintOnColor004(str string)

PrintOnColor004 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor004f added in v1.6.0

func PrintOnColor004f(str string, args ...interface{})

PrintOnColor004f wraps PrintOnColor004 and works with format strings.

func PrintOnColor005

func PrintOnColor005(str string)

PrintOnColor005 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor005f added in v1.6.0

func PrintOnColor005f(str string, args ...interface{})

PrintOnColor005f wraps PrintOnColor005 and works with format strings.

func PrintOnColor006

func PrintOnColor006(str string)

PrintOnColor006 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor006f added in v1.6.0

func PrintOnColor006f(str string, args ...interface{})

PrintOnColor006f wraps PrintOnColor006 and works with format strings.

func PrintOnColor007

func PrintOnColor007(str string)

PrintOnColor007 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor007f added in v1.6.0

func PrintOnColor007f(str string, args ...interface{})

PrintOnColor007f wraps PrintOnColor007 and works with format strings.

func PrintOnColor008

func PrintOnColor008(str string)

PrintOnColor008 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor008f added in v1.6.0

func PrintOnColor008f(str string, args ...interface{})

PrintOnColor008f wraps PrintOnColor008 and works with format strings.

func PrintOnColor009

func PrintOnColor009(str string)

PrintOnColor009 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor009f added in v1.6.0

func PrintOnColor009f(str string, args ...interface{})

PrintOnColor009f wraps PrintOnColor009 and works with format strings.

func PrintOnColor010

func PrintOnColor010(str string)

PrintOnColor010 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor010f added in v1.6.0

func PrintOnColor010f(str string, args ...interface{})

PrintOnColor010f wraps PrintOnColor010 and works with format strings.

func PrintOnColor011

func PrintOnColor011(str string)

PrintOnColor011 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor011f added in v1.6.0

func PrintOnColor011f(str string, args ...interface{})

PrintOnColor011f wraps PrintOnColor011 and works with format strings.

func PrintOnColor012

func PrintOnColor012(str string)

PrintOnColor012 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor012f added in v1.6.0

func PrintOnColor012f(str string, args ...interface{})

PrintOnColor012f wraps PrintOnColor012 and works with format strings.

func PrintOnColor013

func PrintOnColor013(str string)

PrintOnColor013 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor013f added in v1.6.0

func PrintOnColor013f(str string, args ...interface{})

PrintOnColor013f wraps PrintOnColor013 and works with format strings.

func PrintOnColor014

func PrintOnColor014(str string)

PrintOnColor014 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor014f added in v1.6.0

func PrintOnColor014f(str string, args ...interface{})

PrintOnColor014f wraps PrintOnColor014 and works with format strings.

func PrintOnColor015

func PrintOnColor015(str string)

PrintOnColor015 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor015f added in v1.6.0

func PrintOnColor015f(str string, args ...interface{})

PrintOnColor015f wraps PrintOnColor015 and works with format strings.

func PrintOnColor016

func PrintOnColor016(str string)

PrintOnColor016 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor016f added in v1.6.0

func PrintOnColor016f(str string, args ...interface{})

PrintOnColor016f wraps PrintOnColor016 and works with format strings.

func PrintOnColor017

func PrintOnColor017(str string)

PrintOnColor017 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor017f added in v1.6.0

func PrintOnColor017f(str string, args ...interface{})

PrintOnColor017f wraps PrintOnColor017 and works with format strings.

func PrintOnColor018

func PrintOnColor018(str string)

PrintOnColor018 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor018f added in v1.6.0

func PrintOnColor018f(str string, args ...interface{})

PrintOnColor018f wraps PrintOnColor018 and works with format strings.

func PrintOnColor019

func PrintOnColor019(str string)

PrintOnColor019 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor019f added in v1.6.0

func PrintOnColor019f(str string, args ...interface{})

PrintOnColor019f wraps PrintOnColor019 and works with format strings.

func PrintOnColor020

func PrintOnColor020(str string)

PrintOnColor020 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor020f added in v1.6.0

func PrintOnColor020f(str string, args ...interface{})

PrintOnColor020f wraps PrintOnColor020 and works with format strings.

func PrintOnColor021

func PrintOnColor021(str string)

PrintOnColor021 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor021f added in v1.6.0

func PrintOnColor021f(str string, args ...interface{})

PrintOnColor021f wraps PrintOnColor021 and works with format strings.

func PrintOnColor022

func PrintOnColor022(str string)

PrintOnColor022 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor022f added in v1.6.0

func PrintOnColor022f(str string, args ...interface{})

PrintOnColor022f wraps PrintOnColor022 and works with format strings.

func PrintOnColor023

func PrintOnColor023(str string)

PrintOnColor023 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor023f added in v1.6.0

func PrintOnColor023f(str string, args ...interface{})

PrintOnColor023f wraps PrintOnColor023 and works with format strings.

func PrintOnColor024

func PrintOnColor024(str string)

PrintOnColor024 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor024f added in v1.6.0

func PrintOnColor024f(str string, args ...interface{})

PrintOnColor024f wraps PrintOnColor024 and works with format strings.

func PrintOnColor025

func PrintOnColor025(str string)

PrintOnColor025 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor025f added in v1.6.0

func PrintOnColor025f(str string, args ...interface{})

PrintOnColor025f wraps PrintOnColor025 and works with format strings.

func PrintOnColor026

func PrintOnColor026(str string)

PrintOnColor026 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor026f added in v1.6.0

func PrintOnColor026f(str string, args ...interface{})

PrintOnColor026f wraps PrintOnColor026 and works with format strings.

func PrintOnColor027

func PrintOnColor027(str string)

PrintOnColor027 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor027f added in v1.6.0

func PrintOnColor027f(str string, args ...interface{})

PrintOnColor027f wraps PrintOnColor027 and works with format strings.

func PrintOnColor028

func PrintOnColor028(str string)

PrintOnColor028 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor028f added in v1.6.0

func PrintOnColor028f(str string, args ...interface{})

PrintOnColor028f wraps PrintOnColor028 and works with format strings.

func PrintOnColor029

func PrintOnColor029(str string)

PrintOnColor029 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor029f added in v1.6.0

func PrintOnColor029f(str string, args ...interface{})

PrintOnColor029f wraps PrintOnColor029 and works with format strings.

func PrintOnColor030

func PrintOnColor030(str string)

PrintOnColor030 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor030f added in v1.6.0

func PrintOnColor030f(str string, args ...interface{})

PrintOnColor030f wraps PrintOnColor030 and works with format strings.

func PrintOnColor031

func PrintOnColor031(str string)

PrintOnColor031 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor031f added in v1.6.0

func PrintOnColor031f(str string, args ...interface{})

PrintOnColor031f wraps PrintOnColor031 and works with format strings.

func PrintOnColor032

func PrintOnColor032(str string)

PrintOnColor032 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor032f added in v1.6.0

func PrintOnColor032f(str string, args ...interface{})

PrintOnColor032f wraps PrintOnColor032 and works with format strings.

func PrintOnColor033

func PrintOnColor033(str string)

PrintOnColor033 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor033f added in v1.6.0

func PrintOnColor033f(str string, args ...interface{})

PrintOnColor033f wraps PrintOnColor033 and works with format strings.

func PrintOnColor034

func PrintOnColor034(str string)

PrintOnColor034 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor034f added in v1.6.0

func PrintOnColor034f(str string, args ...interface{})

PrintOnColor034f wraps PrintOnColor034 and works with format strings.

func PrintOnColor035

func PrintOnColor035(str string)

PrintOnColor035 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor035f added in v1.6.0

func PrintOnColor035f(str string, args ...interface{})

PrintOnColor035f wraps PrintOnColor035 and works with format strings.

func PrintOnColor036

func PrintOnColor036(str string)

PrintOnColor036 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor036f added in v1.6.0

func PrintOnColor036f(str string, args ...interface{})

PrintOnColor036f wraps PrintOnColor036 and works with format strings.

func PrintOnColor037

func PrintOnColor037(str string)

PrintOnColor037 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor037f added in v1.6.0

func PrintOnColor037f(str string, args ...interface{})

PrintOnColor037f wraps PrintOnColor037 and works with format strings.

func PrintOnColor038

func PrintOnColor038(str string)

PrintOnColor038 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor038f added in v1.6.0

func PrintOnColor038f(str string, args ...interface{})

PrintOnColor038f wraps PrintOnColor038 and works with format strings.

func PrintOnColor039

func PrintOnColor039(str string)

PrintOnColor039 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor039f added in v1.6.0

func PrintOnColor039f(str string, args ...interface{})

PrintOnColor039f wraps PrintOnColor039 and works with format strings.

func PrintOnColor040

func PrintOnColor040(str string)

PrintOnColor040 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor040f added in v1.6.0

func PrintOnColor040f(str string, args ...interface{})

PrintOnColor040f wraps PrintOnColor040 and works with format strings.

func PrintOnColor041

func PrintOnColor041(str string)

PrintOnColor041 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor041f added in v1.6.0

func PrintOnColor041f(str string, args ...interface{})

PrintOnColor041f wraps PrintOnColor041 and works with format strings.

func PrintOnColor042

func PrintOnColor042(str string)

PrintOnColor042 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor042f added in v1.6.0

func PrintOnColor042f(str string, args ...interface{})

PrintOnColor042f wraps PrintOnColor042 and works with format strings.

func PrintOnColor043

func PrintOnColor043(str string)

PrintOnColor043 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor043f added in v1.6.0

func PrintOnColor043f(str string, args ...interface{})

PrintOnColor043f wraps PrintOnColor043 and works with format strings.

func PrintOnColor044

func PrintOnColor044(str string)

PrintOnColor044 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor044f added in v1.6.0

func PrintOnColor044f(str string, args ...interface{})

PrintOnColor044f wraps PrintOnColor044 and works with format strings.

func PrintOnColor045

func PrintOnColor045(str string)

PrintOnColor045 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor045f added in v1.6.0

func PrintOnColor045f(str string, args ...interface{})

PrintOnColor045f wraps PrintOnColor045 and works with format strings.

func PrintOnColor046

func PrintOnColor046(str string)

PrintOnColor046 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor046f added in v1.6.0

func PrintOnColor046f(str string, args ...interface{})

PrintOnColor046f wraps PrintOnColor046 and works with format strings.

func PrintOnColor047

func PrintOnColor047(str string)

PrintOnColor047 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor047f added in v1.6.0

func PrintOnColor047f(str string, args ...interface{})

PrintOnColor047f wraps PrintOnColor047 and works with format strings.

func PrintOnColor048

func PrintOnColor048(str string)

PrintOnColor048 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor048f added in v1.6.0

func PrintOnColor048f(str string, args ...interface{})

PrintOnColor048f wraps PrintOnColor048 and works with format strings.

func PrintOnColor049

func PrintOnColor049(str string)

PrintOnColor049 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor049f added in v1.6.0

func PrintOnColor049f(str string, args ...interface{})

PrintOnColor049f wraps PrintOnColor049 and works with format strings.

func PrintOnColor050

func PrintOnColor050(str string)

PrintOnColor050 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor050f added in v1.6.0

func PrintOnColor050f(str string, args ...interface{})

PrintOnColor050f wraps PrintOnColor050 and works with format strings.

func PrintOnColor051

func PrintOnColor051(str string)

PrintOnColor051 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor051f added in v1.6.0

func PrintOnColor051f(str string, args ...interface{})

PrintOnColor051f wraps PrintOnColor051 and works with format strings.

func PrintOnColor052

func PrintOnColor052(str string)

PrintOnColor052 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor052f added in v1.6.0

func PrintOnColor052f(str string, args ...interface{})

PrintOnColor052f wraps PrintOnColor052 and works with format strings.

func PrintOnColor053

func PrintOnColor053(str string)

PrintOnColor053 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor053f added in v1.6.0

func PrintOnColor053f(str string, args ...interface{})

PrintOnColor053f wraps PrintOnColor053 and works with format strings.

func PrintOnColor054

func PrintOnColor054(str string)

PrintOnColor054 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor054f added in v1.6.0

func PrintOnColor054f(str string, args ...interface{})

PrintOnColor054f wraps PrintOnColor054 and works with format strings.

func PrintOnColor055

func PrintOnColor055(str string)

PrintOnColor055 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor055f added in v1.6.0

func PrintOnColor055f(str string, args ...interface{})

PrintOnColor055f wraps PrintOnColor055 and works with format strings.

func PrintOnColor056

func PrintOnColor056(str string)

PrintOnColor056 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor056f added in v1.6.0

func PrintOnColor056f(str string, args ...interface{})

PrintOnColor056f wraps PrintOnColor056 and works with format strings.

func PrintOnColor057

func PrintOnColor057(str string)

PrintOnColor057 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor057f added in v1.6.0

func PrintOnColor057f(str string, args ...interface{})

PrintOnColor057f wraps PrintOnColor057 and works with format strings.

func PrintOnColor058

func PrintOnColor058(str string)

PrintOnColor058 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor058f added in v1.6.0

func PrintOnColor058f(str string, args ...interface{})

PrintOnColor058f wraps PrintOnColor058 and works with format strings.

func PrintOnColor059

func PrintOnColor059(str string)

PrintOnColor059 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor059f added in v1.6.0

func PrintOnColor059f(str string, args ...interface{})

PrintOnColor059f wraps PrintOnColor059 and works with format strings.

func PrintOnColor060

func PrintOnColor060(str string)

PrintOnColor060 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor060f added in v1.6.0

func PrintOnColor060f(str string, args ...interface{})

PrintOnColor060f wraps PrintOnColor060 and works with format strings.

func PrintOnColor061

func PrintOnColor061(str string)

PrintOnColor061 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor061f added in v1.6.0

func PrintOnColor061f(str string, args ...interface{})

PrintOnColor061f wraps PrintOnColor061 and works with format strings.

func PrintOnColor062

func PrintOnColor062(str string)

PrintOnColor062 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor062f added in v1.6.0

func PrintOnColor062f(str string, args ...interface{})

PrintOnColor062f wraps PrintOnColor062 and works with format strings.

func PrintOnColor063

func PrintOnColor063(str string)

PrintOnColor063 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor063f added in v1.6.0

func PrintOnColor063f(str string, args ...interface{})

PrintOnColor063f wraps PrintOnColor063 and works with format strings.

func PrintOnColor064

func PrintOnColor064(str string)

PrintOnColor064 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor064f added in v1.6.0

func PrintOnColor064f(str string, args ...interface{})

PrintOnColor064f wraps PrintOnColor064 and works with format strings.

func PrintOnColor065

func PrintOnColor065(str string)

PrintOnColor065 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor065f added in v1.6.0

func PrintOnColor065f(str string, args ...interface{})

PrintOnColor065f wraps PrintOnColor065 and works with format strings.

func PrintOnColor066

func PrintOnColor066(str string)

PrintOnColor066 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor066f added in v1.6.0

func PrintOnColor066f(str string, args ...interface{})

PrintOnColor066f wraps PrintOnColor066 and works with format strings.

func PrintOnColor067

func PrintOnColor067(str string)

PrintOnColor067 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor067f added in v1.6.0

func PrintOnColor067f(str string, args ...interface{})

PrintOnColor067f wraps PrintOnColor067 and works with format strings.

func PrintOnColor068

func PrintOnColor068(str string)

PrintOnColor068 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor068f added in v1.6.0

func PrintOnColor068f(str string, args ...interface{})

PrintOnColor068f wraps PrintOnColor068 and works with format strings.

func PrintOnColor069

func PrintOnColor069(str string)

PrintOnColor069 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor069f added in v1.6.0

func PrintOnColor069f(str string, args ...interface{})

PrintOnColor069f wraps PrintOnColor069 and works with format strings.

func PrintOnColor070

func PrintOnColor070(str string)

PrintOnColor070 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor070f added in v1.6.0

func PrintOnColor070f(str string, args ...interface{})

PrintOnColor070f wraps PrintOnColor070 and works with format strings.

func PrintOnColor071

func PrintOnColor071(str string)

PrintOnColor071 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor071f added in v1.6.0

func PrintOnColor071f(str string, args ...interface{})

PrintOnColor071f wraps PrintOnColor071 and works with format strings.

func PrintOnColor072

func PrintOnColor072(str string)

PrintOnColor072 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor072f added in v1.6.0

func PrintOnColor072f(str string, args ...interface{})

PrintOnColor072f wraps PrintOnColor072 and works with format strings.

func PrintOnColor073

func PrintOnColor073(str string)

PrintOnColor073 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor073f added in v1.6.0

func PrintOnColor073f(str string, args ...interface{})

PrintOnColor073f wraps PrintOnColor073 and works with format strings.

func PrintOnColor074

func PrintOnColor074(str string)

PrintOnColor074 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor074f added in v1.6.0

func PrintOnColor074f(str string, args ...interface{})

PrintOnColor074f wraps PrintOnColor074 and works with format strings.

func PrintOnColor075

func PrintOnColor075(str string)

PrintOnColor075 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor075f added in v1.6.0

func PrintOnColor075f(str string, args ...interface{})

PrintOnColor075f wraps PrintOnColor075 and works with format strings.

func PrintOnColor076

func PrintOnColor076(str string)

PrintOnColor076 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor076f added in v1.6.0

func PrintOnColor076f(str string, args ...interface{})

PrintOnColor076f wraps PrintOnColor076 and works with format strings.

func PrintOnColor077

func PrintOnColor077(str string)

PrintOnColor077 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor077f added in v1.6.0

func PrintOnColor077f(str string, args ...interface{})

PrintOnColor077f wraps PrintOnColor077 and works with format strings.

func PrintOnColor078

func PrintOnColor078(str string)

PrintOnColor078 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor078f added in v1.6.0

func PrintOnColor078f(str string, args ...interface{})

PrintOnColor078f wraps PrintOnColor078 and works with format strings.

func PrintOnColor079

func PrintOnColor079(str string)

PrintOnColor079 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor079f added in v1.6.0

func PrintOnColor079f(str string, args ...interface{})

PrintOnColor079f wraps PrintOnColor079 and works with format strings.

func PrintOnColor080

func PrintOnColor080(str string)

PrintOnColor080 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor080f added in v1.6.0

func PrintOnColor080f(str string, args ...interface{})

PrintOnColor080f wraps PrintOnColor080 and works with format strings.

func PrintOnColor081

func PrintOnColor081(str string)

PrintOnColor081 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor081f added in v1.6.0

func PrintOnColor081f(str string, args ...interface{})

PrintOnColor081f wraps PrintOnColor081 and works with format strings.

func PrintOnColor082

func PrintOnColor082(str string)

PrintOnColor082 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor082f added in v1.6.0

func PrintOnColor082f(str string, args ...interface{})

PrintOnColor082f wraps PrintOnColor082 and works with format strings.

func PrintOnColor083

func PrintOnColor083(str string)

PrintOnColor083 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor083f added in v1.6.0

func PrintOnColor083f(str string, args ...interface{})

PrintOnColor083f wraps PrintOnColor083 and works with format strings.

func PrintOnColor084

func PrintOnColor084(str string)

PrintOnColor084 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor084f added in v1.6.0

func PrintOnColor084f(str string, args ...interface{})

PrintOnColor084f wraps PrintOnColor084 and works with format strings.

func PrintOnColor085

func PrintOnColor085(str string)

PrintOnColor085 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor085f added in v1.6.0

func PrintOnColor085f(str string, args ...interface{})

PrintOnColor085f wraps PrintOnColor085 and works with format strings.

func PrintOnColor086

func PrintOnColor086(str string)

PrintOnColor086 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor086f added in v1.6.0

func PrintOnColor086f(str string, args ...interface{})

PrintOnColor086f wraps PrintOnColor086 and works with format strings.

func PrintOnColor087

func PrintOnColor087(str string)

PrintOnColor087 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor087f added in v1.6.0

func PrintOnColor087f(str string, args ...interface{})

PrintOnColor087f wraps PrintOnColor087 and works with format strings.

func PrintOnColor088

func PrintOnColor088(str string)

PrintOnColor088 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor088f added in v1.6.0

func PrintOnColor088f(str string, args ...interface{})

PrintOnColor088f wraps PrintOnColor088 and works with format strings.

func PrintOnColor089

func PrintOnColor089(str string)

PrintOnColor089 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor089f added in v1.6.0

func PrintOnColor089f(str string, args ...interface{})

PrintOnColor089f wraps PrintOnColor089 and works with format strings.

func PrintOnColor090

func PrintOnColor090(str string)

PrintOnColor090 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor090f added in v1.6.0

func PrintOnColor090f(str string, args ...interface{})

PrintOnColor090f wraps PrintOnColor090 and works with format strings.

func PrintOnColor091

func PrintOnColor091(str string)

PrintOnColor091 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor091f added in v1.6.0

func PrintOnColor091f(str string, args ...interface{})

PrintOnColor091f wraps PrintOnColor091 and works with format strings.

func PrintOnColor092

func PrintOnColor092(str string)

PrintOnColor092 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor092f added in v1.6.0

func PrintOnColor092f(str string, args ...interface{})

PrintOnColor092f wraps PrintOnColor092 and works with format strings.

func PrintOnColor093

func PrintOnColor093(str string)

PrintOnColor093 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor093f added in v1.6.0

func PrintOnColor093f(str string, args ...interface{})

PrintOnColor093f wraps PrintOnColor093 and works with format strings.

func PrintOnColor094

func PrintOnColor094(str string)

PrintOnColor094 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor094f added in v1.6.0

func PrintOnColor094f(str string, args ...interface{})

PrintOnColor094f wraps PrintOnColor094 and works with format strings.

func PrintOnColor095

func PrintOnColor095(str string)

PrintOnColor095 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor095f added in v1.6.0

func PrintOnColor095f(str string, args ...interface{})

PrintOnColor095f wraps PrintOnColor095 and works with format strings.

func PrintOnColor096

func PrintOnColor096(str string)

PrintOnColor096 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor096f added in v1.6.0

func PrintOnColor096f(str string, args ...interface{})

PrintOnColor096f wraps PrintOnColor096 and works with format strings.

func PrintOnColor097

func PrintOnColor097(str string)

PrintOnColor097 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor097f added in v1.6.0

func PrintOnColor097f(str string, args ...interface{})

PrintOnColor097f wraps PrintOnColor097 and works with format strings.

func PrintOnColor098

func PrintOnColor098(str string)

PrintOnColor098 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor098f added in v1.6.0

func PrintOnColor098f(str string, args ...interface{})

PrintOnColor098f wraps PrintOnColor098 and works with format strings.

func PrintOnColor099

func PrintOnColor099(str string)

PrintOnColor099 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor099f added in v1.6.0

func PrintOnColor099f(str string, args ...interface{})

PrintOnColor099f wraps PrintOnColor099 and works with format strings.

func PrintOnColor100

func PrintOnColor100(str string)

PrintOnColor100 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor100f added in v1.6.0

func PrintOnColor100f(str string, args ...interface{})

PrintOnColor100f wraps PrintOnColor100 and works with format strings.

func PrintOnColor101

func PrintOnColor101(str string)

PrintOnColor101 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor101f added in v1.6.0

func PrintOnColor101f(str string, args ...interface{})

PrintOnColor101f wraps PrintOnColor101 and works with format strings.

func PrintOnColor102

func PrintOnColor102(str string)

PrintOnColor102 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor102f added in v1.6.0

func PrintOnColor102f(str string, args ...interface{})

PrintOnColor102f wraps PrintOnColor102 and works with format strings.

func PrintOnColor103

func PrintOnColor103(str string)

PrintOnColor103 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor103f added in v1.6.0

func PrintOnColor103f(str string, args ...interface{})

PrintOnColor103f wraps PrintOnColor103 and works with format strings.

func PrintOnColor104

func PrintOnColor104(str string)

PrintOnColor104 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor104f added in v1.6.0

func PrintOnColor104f(str string, args ...interface{})

PrintOnColor104f wraps PrintOnColor104 and works with format strings.

func PrintOnColor105

func PrintOnColor105(str string)

PrintOnColor105 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor105f added in v1.6.0

func PrintOnColor105f(str string, args ...interface{})

PrintOnColor105f wraps PrintOnColor105 and works with format strings.

func PrintOnColor106

func PrintOnColor106(str string)

PrintOnColor106 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor106f added in v1.6.0

func PrintOnColor106f(str string, args ...interface{})

PrintOnColor106f wraps PrintOnColor106 and works with format strings.

func PrintOnColor107

func PrintOnColor107(str string)

PrintOnColor107 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor107f added in v1.6.0

func PrintOnColor107f(str string, args ...interface{})

PrintOnColor107f wraps PrintOnColor107 and works with format strings.

func PrintOnColor108

func PrintOnColor108(str string)

PrintOnColor108 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor108f added in v1.6.0

func PrintOnColor108f(str string, args ...interface{})

PrintOnColor108f wraps PrintOnColor108 and works with format strings.

func PrintOnColor109

func PrintOnColor109(str string)

PrintOnColor109 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor109f added in v1.6.0

func PrintOnColor109f(str string, args ...interface{})

PrintOnColor109f wraps PrintOnColor109 and works with format strings.

func PrintOnColor110

func PrintOnColor110(str string)

PrintOnColor110 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor110f added in v1.6.0

func PrintOnColor110f(str string, args ...interface{})

PrintOnColor110f wraps PrintOnColor110 and works with format strings.

func PrintOnColor111

func PrintOnColor111(str string)

PrintOnColor111 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor111f added in v1.6.0

func PrintOnColor111f(str string, args ...interface{})

PrintOnColor111f wraps PrintOnColor111 and works with format strings.

func PrintOnColor112

func PrintOnColor112(str string)

PrintOnColor112 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor112f added in v1.6.0

func PrintOnColor112f(str string, args ...interface{})

PrintOnColor112f wraps PrintOnColor112 and works with format strings.

func PrintOnColor113

func PrintOnColor113(str string)

PrintOnColor113 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor113f added in v1.6.0

func PrintOnColor113f(str string, args ...interface{})

PrintOnColor113f wraps PrintOnColor113 and works with format strings.

func PrintOnColor114

func PrintOnColor114(str string)

PrintOnColor114 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor114f added in v1.6.0

func PrintOnColor114f(str string, args ...interface{})

PrintOnColor114f wraps PrintOnColor114 and works with format strings.

func PrintOnColor115

func PrintOnColor115(str string)

PrintOnColor115 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor115f added in v1.6.0

func PrintOnColor115f(str string, args ...interface{})

PrintOnColor115f wraps PrintOnColor115 and works with format strings.

func PrintOnColor116

func PrintOnColor116(str string)

PrintOnColor116 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor116f added in v1.6.0

func PrintOnColor116f(str string, args ...interface{})

PrintOnColor116f wraps PrintOnColor116 and works with format strings.

func PrintOnColor117

func PrintOnColor117(str string)

PrintOnColor117 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor117f added in v1.6.0

func PrintOnColor117f(str string, args ...interface{})

PrintOnColor117f wraps PrintOnColor117 and works with format strings.

func PrintOnColor118

func PrintOnColor118(str string)

PrintOnColor118 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor118f added in v1.6.0

func PrintOnColor118f(str string, args ...interface{})

PrintOnColor118f wraps PrintOnColor118 and works with format strings.

func PrintOnColor119

func PrintOnColor119(str string)

PrintOnColor119 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor119f added in v1.6.0

func PrintOnColor119f(str string, args ...interface{})

PrintOnColor119f wraps PrintOnColor119 and works with format strings.

func PrintOnColor120

func PrintOnColor120(str string)

PrintOnColor120 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor120f added in v1.6.0

func PrintOnColor120f(str string, args ...interface{})

PrintOnColor120f wraps PrintOnColor120 and works with format strings.

func PrintOnColor121

func PrintOnColor121(str string)

PrintOnColor121 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor121f added in v1.6.0

func PrintOnColor121f(str string, args ...interface{})

PrintOnColor121f wraps PrintOnColor121 and works with format strings.

func PrintOnColor122

func PrintOnColor122(str string)

PrintOnColor122 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor122f added in v1.6.0

func PrintOnColor122f(str string, args ...interface{})

PrintOnColor122f wraps PrintOnColor122 and works with format strings.

func PrintOnColor123

func PrintOnColor123(str string)

PrintOnColor123 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor123f added in v1.6.0

func PrintOnColor123f(str string, args ...interface{})

PrintOnColor123f wraps PrintOnColor123 and works with format strings.

func PrintOnColor124

func PrintOnColor124(str string)

PrintOnColor124 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor124f added in v1.6.0

func PrintOnColor124f(str string, args ...interface{})

PrintOnColor124f wraps PrintOnColor124 and works with format strings.

func PrintOnColor125

func PrintOnColor125(str string)

PrintOnColor125 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor125f added in v1.6.0

func PrintOnColor125f(str string, args ...interface{})

PrintOnColor125f wraps PrintOnColor125 and works with format strings.

func PrintOnColor126

func PrintOnColor126(str string)

PrintOnColor126 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor126f added in v1.6.0

func PrintOnColor126f(str string, args ...interface{})

PrintOnColor126f wraps PrintOnColor126 and works with format strings.

func PrintOnColor127

func PrintOnColor127(str string)

PrintOnColor127 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor127f added in v1.6.0

func PrintOnColor127f(str string, args ...interface{})

PrintOnColor127f wraps PrintOnColor127 and works with format strings.

func PrintOnColor128

func PrintOnColor128(str string)

PrintOnColor128 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor128f added in v1.6.0

func PrintOnColor128f(str string, args ...interface{})

PrintOnColor128f wraps PrintOnColor128 and works with format strings.

func PrintOnColor129

func PrintOnColor129(str string)

PrintOnColor129 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor129f added in v1.6.0

func PrintOnColor129f(str string, args ...interface{})

PrintOnColor129f wraps PrintOnColor129 and works with format strings.

func PrintOnColor130

func PrintOnColor130(str string)

PrintOnColor130 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor130f added in v1.6.0

func PrintOnColor130f(str string, args ...interface{})

PrintOnColor130f wraps PrintOnColor130 and works with format strings.

func PrintOnColor131

func PrintOnColor131(str string)

PrintOnColor131 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor131f added in v1.6.0

func PrintOnColor131f(str string, args ...interface{})

PrintOnColor131f wraps PrintOnColor131 and works with format strings.

func PrintOnColor132

func PrintOnColor132(str string)

PrintOnColor132 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor132f added in v1.6.0

func PrintOnColor132f(str string, args ...interface{})

PrintOnColor132f wraps PrintOnColor132 and works with format strings.

func PrintOnColor133

func PrintOnColor133(str string)

PrintOnColor133 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor133f added in v1.6.0

func PrintOnColor133f(str string, args ...interface{})

PrintOnColor133f wraps PrintOnColor133 and works with format strings.

func PrintOnColor134

func PrintOnColor134(str string)

PrintOnColor134 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor134f added in v1.6.0

func PrintOnColor134f(str string, args ...interface{})

PrintOnColor134f wraps PrintOnColor134 and works with format strings.

func PrintOnColor135

func PrintOnColor135(str string)

PrintOnColor135 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor135f added in v1.6.0

func PrintOnColor135f(str string, args ...interface{})

PrintOnColor135f wraps PrintOnColor135 and works with format strings.

func PrintOnColor136

func PrintOnColor136(str string)

PrintOnColor136 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor136f added in v1.6.0

func PrintOnColor136f(str string, args ...interface{})

PrintOnColor136f wraps PrintOnColor136 and works with format strings.

func PrintOnColor137

func PrintOnColor137(str string)

PrintOnColor137 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor137f added in v1.6.0

func PrintOnColor137f(str string, args ...interface{})

PrintOnColor137f wraps PrintOnColor137 and works with format strings.

func PrintOnColor138

func PrintOnColor138(str string)

PrintOnColor138 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor138f added in v1.6.0

func PrintOnColor138f(str string, args ...interface{})

PrintOnColor138f wraps PrintOnColor138 and works with format strings.

func PrintOnColor139

func PrintOnColor139(str string)

PrintOnColor139 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor139f added in v1.6.0

func PrintOnColor139f(str string, args ...interface{})

PrintOnColor139f wraps PrintOnColor139 and works with format strings.

func PrintOnColor140

func PrintOnColor140(str string)

PrintOnColor140 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor140f added in v1.6.0

func PrintOnColor140f(str string, args ...interface{})

PrintOnColor140f wraps PrintOnColor140 and works with format strings.

func PrintOnColor141

func PrintOnColor141(str string)

PrintOnColor141 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor141f added in v1.6.0

func PrintOnColor141f(str string, args ...interface{})

PrintOnColor141f wraps PrintOnColor141 and works with format strings.

func PrintOnColor142

func PrintOnColor142(str string)

PrintOnColor142 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor142f added in v1.6.0

func PrintOnColor142f(str string, args ...interface{})

PrintOnColor142f wraps PrintOnColor142 and works with format strings.

func PrintOnColor143

func PrintOnColor143(str string)

PrintOnColor143 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor143f added in v1.6.0

func PrintOnColor143f(str string, args ...interface{})

PrintOnColor143f wraps PrintOnColor143 and works with format strings.

func PrintOnColor144

func PrintOnColor144(str string)

PrintOnColor144 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor144f added in v1.6.0

func PrintOnColor144f(str string, args ...interface{})

PrintOnColor144f wraps PrintOnColor144 and works with format strings.

func PrintOnColor145

func PrintOnColor145(str string)

PrintOnColor145 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor145f added in v1.6.0

func PrintOnColor145f(str string, args ...interface{})

PrintOnColor145f wraps PrintOnColor145 and works with format strings.

func PrintOnColor146

func PrintOnColor146(str string)

PrintOnColor146 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor146f added in v1.6.0

func PrintOnColor146f(str string, args ...interface{})

PrintOnColor146f wraps PrintOnColor146 and works with format strings.

func PrintOnColor147

func PrintOnColor147(str string)

PrintOnColor147 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor147f added in v1.6.0

func PrintOnColor147f(str string, args ...interface{})

PrintOnColor147f wraps PrintOnColor147 and works with format strings.

func PrintOnColor148

func PrintOnColor148(str string)

PrintOnColor148 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor148f added in v1.6.0

func PrintOnColor148f(str string, args ...interface{})

PrintOnColor148f wraps PrintOnColor148 and works with format strings.

func PrintOnColor149

func PrintOnColor149(str string)

PrintOnColor149 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor149f added in v1.6.0

func PrintOnColor149f(str string, args ...interface{})

PrintOnColor149f wraps PrintOnColor149 and works with format strings.

func PrintOnColor150

func PrintOnColor150(str string)

PrintOnColor150 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor150f added in v1.6.0

func PrintOnColor150f(str string, args ...interface{})

PrintOnColor150f wraps PrintOnColor150 and works with format strings.

func PrintOnColor151

func PrintOnColor151(str string)

PrintOnColor151 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor151f added in v1.6.0

func PrintOnColor151f(str string, args ...interface{})

PrintOnColor151f wraps PrintOnColor151 and works with format strings.

func PrintOnColor152

func PrintOnColor152(str string)

PrintOnColor152 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor152f added in v1.6.0

func PrintOnColor152f(str string, args ...interface{})

PrintOnColor152f wraps PrintOnColor152 and works with format strings.

func PrintOnColor153

func PrintOnColor153(str string)

PrintOnColor153 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor153f added in v1.6.0

func PrintOnColor153f(str string, args ...interface{})

PrintOnColor153f wraps PrintOnColor153 and works with format strings.

func PrintOnColor154

func PrintOnColor154(str string)

PrintOnColor154 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor154f added in v1.6.0

func PrintOnColor154f(str string, args ...interface{})

PrintOnColor154f wraps PrintOnColor154 and works with format strings.

func PrintOnColor155

func PrintOnColor155(str string)

PrintOnColor155 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor155f added in v1.6.0

func PrintOnColor155f(str string, args ...interface{})

PrintOnColor155f wraps PrintOnColor155 and works with format strings.

func PrintOnColor156

func PrintOnColor156(str string)

PrintOnColor156 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor156f added in v1.6.0

func PrintOnColor156f(str string, args ...interface{})

PrintOnColor156f wraps PrintOnColor156 and works with format strings.

func PrintOnColor157

func PrintOnColor157(str string)

PrintOnColor157 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor157f added in v1.6.0

func PrintOnColor157f(str string, args ...interface{})

PrintOnColor157f wraps PrintOnColor157 and works with format strings.

func PrintOnColor158

func PrintOnColor158(str string)

PrintOnColor158 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor158f added in v1.6.0

func PrintOnColor158f(str string, args ...interface{})

PrintOnColor158f wraps PrintOnColor158 and works with format strings.

func PrintOnColor159

func PrintOnColor159(str string)

PrintOnColor159 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor159f added in v1.6.0

func PrintOnColor159f(str string, args ...interface{})

PrintOnColor159f wraps PrintOnColor159 and works with format strings.

func PrintOnColor160

func PrintOnColor160(str string)

PrintOnColor160 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor160f added in v1.6.0

func PrintOnColor160f(str string, args ...interface{})

PrintOnColor160f wraps PrintOnColor160 and works with format strings.

func PrintOnColor161

func PrintOnColor161(str string)

PrintOnColor161 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor161f added in v1.6.0

func PrintOnColor161f(str string, args ...interface{})

PrintOnColor161f wraps PrintOnColor161 and works with format strings.

func PrintOnColor162

func PrintOnColor162(str string)

PrintOnColor162 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor162f added in v1.6.0

func PrintOnColor162f(str string, args ...interface{})

PrintOnColor162f wraps PrintOnColor162 and works with format strings.

func PrintOnColor163

func PrintOnColor163(str string)

PrintOnColor163 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor163f added in v1.6.0

func PrintOnColor163f(str string, args ...interface{})

PrintOnColor163f wraps PrintOnColor163 and works with format strings.

func PrintOnColor164

func PrintOnColor164(str string)

PrintOnColor164 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor164f added in v1.6.0

func PrintOnColor164f(str string, args ...interface{})

PrintOnColor164f wraps PrintOnColor164 and works with format strings.

func PrintOnColor165

func PrintOnColor165(str string)

PrintOnColor165 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor165f added in v1.6.0

func PrintOnColor165f(str string, args ...interface{})

PrintOnColor165f wraps PrintOnColor165 and works with format strings.

func PrintOnColor166

func PrintOnColor166(str string)

PrintOnColor166 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor166f added in v1.6.0

func PrintOnColor166f(str string, args ...interface{})

PrintOnColor166f wraps PrintOnColor166 and works with format strings.

func PrintOnColor167

func PrintOnColor167(str string)

PrintOnColor167 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor167f added in v1.6.0

func PrintOnColor167f(str string, args ...interface{})

PrintOnColor167f wraps PrintOnColor167 and works with format strings.

func PrintOnColor168

func PrintOnColor168(str string)

PrintOnColor168 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor168f added in v1.6.0

func PrintOnColor168f(str string, args ...interface{})

PrintOnColor168f wraps PrintOnColor168 and works with format strings.

func PrintOnColor169

func PrintOnColor169(str string)

PrintOnColor169 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor169f added in v1.6.0

func PrintOnColor169f(str string, args ...interface{})

PrintOnColor169f wraps PrintOnColor169 and works with format strings.

func PrintOnColor170

func PrintOnColor170(str string)

PrintOnColor170 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor170f added in v1.6.0

func PrintOnColor170f(str string, args ...interface{})

PrintOnColor170f wraps PrintOnColor170 and works with format strings.

func PrintOnColor171

func PrintOnColor171(str string)

PrintOnColor171 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor171f added in v1.6.0

func PrintOnColor171f(str string, args ...interface{})

PrintOnColor171f wraps PrintOnColor171 and works with format strings.

func PrintOnColor172

func PrintOnColor172(str string)

PrintOnColor172 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor172f added in v1.6.0

func PrintOnColor172f(str string, args ...interface{})

PrintOnColor172f wraps PrintOnColor172 and works with format strings.

func PrintOnColor173

func PrintOnColor173(str string)

PrintOnColor173 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor173f added in v1.6.0

func PrintOnColor173f(str string, args ...interface{})

PrintOnColor173f wraps PrintOnColor173 and works with format strings.

func PrintOnColor174

func PrintOnColor174(str string)

PrintOnColor174 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor174f added in v1.6.0

func PrintOnColor174f(str string, args ...interface{})

PrintOnColor174f wraps PrintOnColor174 and works with format strings.

func PrintOnColor175

func PrintOnColor175(str string)

PrintOnColor175 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor175f added in v1.6.0

func PrintOnColor175f(str string, args ...interface{})

PrintOnColor175f wraps PrintOnColor175 and works with format strings.

func PrintOnColor176

func PrintOnColor176(str string)

PrintOnColor176 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor176f added in v1.6.0

func PrintOnColor176f(str string, args ...interface{})

PrintOnColor176f wraps PrintOnColor176 and works with format strings.

func PrintOnColor177

func PrintOnColor177(str string)

PrintOnColor177 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor177f added in v1.6.0

func PrintOnColor177f(str string, args ...interface{})

PrintOnColor177f wraps PrintOnColor177 and works with format strings.

func PrintOnColor178

func PrintOnColor178(str string)

PrintOnColor178 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor178f added in v1.6.0

func PrintOnColor178f(str string, args ...interface{})

PrintOnColor178f wraps PrintOnColor178 and works with format strings.

func PrintOnColor179

func PrintOnColor179(str string)

PrintOnColor179 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor179f added in v1.6.0

func PrintOnColor179f(str string, args ...interface{})

PrintOnColor179f wraps PrintOnColor179 and works with format strings.

func PrintOnColor180

func PrintOnColor180(str string)

PrintOnColor180 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor180f added in v1.6.0

func PrintOnColor180f(str string, args ...interface{})

PrintOnColor180f wraps PrintOnColor180 and works with format strings.

func PrintOnColor181

func PrintOnColor181(str string)

PrintOnColor181 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor181f added in v1.6.0

func PrintOnColor181f(str string, args ...interface{})

PrintOnColor181f wraps PrintOnColor181 and works with format strings.

func PrintOnColor182

func PrintOnColor182(str string)

PrintOnColor182 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor182f added in v1.6.0

func PrintOnColor182f(str string, args ...interface{})

PrintOnColor182f wraps PrintOnColor182 and works with format strings.

func PrintOnColor183

func PrintOnColor183(str string)

PrintOnColor183 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor183f added in v1.6.0

func PrintOnColor183f(str string, args ...interface{})

PrintOnColor183f wraps PrintOnColor183 and works with format strings.

func PrintOnColor184

func PrintOnColor184(str string)

PrintOnColor184 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor184f added in v1.6.0

func PrintOnColor184f(str string, args ...interface{})

PrintOnColor184f wraps PrintOnColor184 and works with format strings.

func PrintOnColor185

func PrintOnColor185(str string)

PrintOnColor185 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor185f added in v1.6.0

func PrintOnColor185f(str string, args ...interface{})

PrintOnColor185f wraps PrintOnColor185 and works with format strings.

func PrintOnColor186

func PrintOnColor186(str string)

PrintOnColor186 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor186f added in v1.6.0

func PrintOnColor186f(str string, args ...interface{})

PrintOnColor186f wraps PrintOnColor186 and works with format strings.

func PrintOnColor187

func PrintOnColor187(str string)

PrintOnColor187 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor187f added in v1.6.0

func PrintOnColor187f(str string, args ...interface{})

PrintOnColor187f wraps PrintOnColor187 and works with format strings.

func PrintOnColor188

func PrintOnColor188(str string)

PrintOnColor188 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor188f added in v1.6.0

func PrintOnColor188f(str string, args ...interface{})

PrintOnColor188f wraps PrintOnColor188 and works with format strings.

func PrintOnColor189

func PrintOnColor189(str string)

PrintOnColor189 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor189f added in v1.6.0

func PrintOnColor189f(str string, args ...interface{})

PrintOnColor189f wraps PrintOnColor189 and works with format strings.

func PrintOnColor190

func PrintOnColor190(str string)

PrintOnColor190 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor190f added in v1.6.0

func PrintOnColor190f(str string, args ...interface{})

PrintOnColor190f wraps PrintOnColor190 and works with format strings.

func PrintOnColor191

func PrintOnColor191(str string)

PrintOnColor191 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor191f added in v1.6.0

func PrintOnColor191f(str string, args ...interface{})

PrintOnColor191f wraps PrintOnColor191 and works with format strings.

func PrintOnColor192

func PrintOnColor192(str string)

PrintOnColor192 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor192f added in v1.6.0

func PrintOnColor192f(str string, args ...interface{})

PrintOnColor192f wraps PrintOnColor192 and works with format strings.

func PrintOnColor193

func PrintOnColor193(str string)

PrintOnColor193 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor193f added in v1.6.0

func PrintOnColor193f(str string, args ...interface{})

PrintOnColor193f wraps PrintOnColor193 and works with format strings.

func PrintOnColor194

func PrintOnColor194(str string)

PrintOnColor194 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor194f added in v1.6.0

func PrintOnColor194f(str string, args ...interface{})

PrintOnColor194f wraps PrintOnColor194 and works with format strings.

func PrintOnColor195

func PrintOnColor195(str string)

PrintOnColor195 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor195f added in v1.6.0

func PrintOnColor195f(str string, args ...interface{})

PrintOnColor195f wraps PrintOnColor195 and works with format strings.

func PrintOnColor196

func PrintOnColor196(str string)

PrintOnColor196 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor196f added in v1.6.0

func PrintOnColor196f(str string, args ...interface{})

PrintOnColor196f wraps PrintOnColor196 and works with format strings.

func PrintOnColor197

func PrintOnColor197(str string)

PrintOnColor197 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor197f added in v1.6.0

func PrintOnColor197f(str string, args ...interface{})

PrintOnColor197f wraps PrintOnColor197 and works with format strings.

func PrintOnColor198

func PrintOnColor198(str string)

PrintOnColor198 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor198f added in v1.6.0

func PrintOnColor198f(str string, args ...interface{})

PrintOnColor198f wraps PrintOnColor198 and works with format strings.

func PrintOnColor199

func PrintOnColor199(str string)

PrintOnColor199 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor199f added in v1.6.0

func PrintOnColor199f(str string, args ...interface{})

PrintOnColor199f wraps PrintOnColor199 and works with format strings.

func PrintOnColor200

func PrintOnColor200(str string)

PrintOnColor200 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor200f added in v1.6.0

func PrintOnColor200f(str string, args ...interface{})

PrintOnColor200f wraps PrintOnColor200 and works with format strings.

func PrintOnColor201

func PrintOnColor201(str string)

PrintOnColor201 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor201f added in v1.6.0

func PrintOnColor201f(str string, args ...interface{})

PrintOnColor201f wraps PrintOnColor201 and works with format strings.

func PrintOnColor202

func PrintOnColor202(str string)

PrintOnColor202 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor202f added in v1.6.0

func PrintOnColor202f(str string, args ...interface{})

PrintOnColor202f wraps PrintOnColor202 and works with format strings.

func PrintOnColor203

func PrintOnColor203(str string)

PrintOnColor203 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor203f added in v1.6.0

func PrintOnColor203f(str string, args ...interface{})

PrintOnColor203f wraps PrintOnColor203 and works with format strings.

func PrintOnColor204

func PrintOnColor204(str string)

PrintOnColor204 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor204f added in v1.6.0

func PrintOnColor204f(str string, args ...interface{})

PrintOnColor204f wraps PrintOnColor204 and works with format strings.

func PrintOnColor205

func PrintOnColor205(str string)

PrintOnColor205 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor205f added in v1.6.0

func PrintOnColor205f(str string, args ...interface{})

PrintOnColor205f wraps PrintOnColor205 and works with format strings.

func PrintOnColor206

func PrintOnColor206(str string)

PrintOnColor206 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor206f added in v1.6.0

func PrintOnColor206f(str string, args ...interface{})

PrintOnColor206f wraps PrintOnColor206 and works with format strings.

func PrintOnColor207

func PrintOnColor207(str string)

PrintOnColor207 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor207f added in v1.6.0

func PrintOnColor207f(str string, args ...interface{})

PrintOnColor207f wraps PrintOnColor207 and works with format strings.

func PrintOnColor208

func PrintOnColor208(str string)

PrintOnColor208 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor208f added in v1.6.0

func PrintOnColor208f(str string, args ...interface{})

PrintOnColor208f wraps PrintOnColor208 and works with format strings.

func PrintOnColor209

func PrintOnColor209(str string)

PrintOnColor209 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor209f added in v1.6.0

func PrintOnColor209f(str string, args ...interface{})

PrintOnColor209f wraps PrintOnColor209 and works with format strings.

func PrintOnColor210

func PrintOnColor210(str string)

PrintOnColor210 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor210f added in v1.6.0

func PrintOnColor210f(str string, args ...interface{})

PrintOnColor210f wraps PrintOnColor210 and works with format strings.

func PrintOnColor211

func PrintOnColor211(str string)

PrintOnColor211 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor211f added in v1.6.0

func PrintOnColor211f(str string, args ...interface{})

PrintOnColor211f wraps PrintOnColor211 and works with format strings.

func PrintOnColor212

func PrintOnColor212(str string)

PrintOnColor212 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor212f added in v1.6.0

func PrintOnColor212f(str string, args ...interface{})

PrintOnColor212f wraps PrintOnColor212 and works with format strings.

func PrintOnColor213

func PrintOnColor213(str string)

PrintOnColor213 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor213f added in v1.6.0

func PrintOnColor213f(str string, args ...interface{})

PrintOnColor213f wraps PrintOnColor213 and works with format strings.

func PrintOnColor214

func PrintOnColor214(str string)

PrintOnColor214 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor214f added in v1.6.0

func PrintOnColor214f(str string, args ...interface{})

PrintOnColor214f wraps PrintOnColor214 and works with format strings.

func PrintOnColor215

func PrintOnColor215(str string)

PrintOnColor215 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor215f added in v1.6.0

func PrintOnColor215f(str string, args ...interface{})

PrintOnColor215f wraps PrintOnColor215 and works with format strings.

func PrintOnColor216

func PrintOnColor216(str string)

PrintOnColor216 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor216f added in v1.6.0

func PrintOnColor216f(str string, args ...interface{})

PrintOnColor216f wraps PrintOnColor216 and works with format strings.

func PrintOnColor217

func PrintOnColor217(str string)

PrintOnColor217 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor217f added in v1.6.0

func PrintOnColor217f(str string, args ...interface{})

PrintOnColor217f wraps PrintOnColor217 and works with format strings.

func PrintOnColor218

func PrintOnColor218(str string)

PrintOnColor218 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor218f added in v1.6.0

func PrintOnColor218f(str string, args ...interface{})

PrintOnColor218f wraps PrintOnColor218 and works with format strings.

func PrintOnColor219

func PrintOnColor219(str string)

PrintOnColor219 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor219f added in v1.6.0

func PrintOnColor219f(str string, args ...interface{})

PrintOnColor219f wraps PrintOnColor219 and works with format strings.

func PrintOnColor220

func PrintOnColor220(str string)

PrintOnColor220 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor220f added in v1.6.0

func PrintOnColor220f(str string, args ...interface{})

PrintOnColor220f wraps PrintOnColor220 and works with format strings.

func PrintOnColor221

func PrintOnColor221(str string)

PrintOnColor221 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor221f added in v1.6.0

func PrintOnColor221f(str string, args ...interface{})

PrintOnColor221f wraps PrintOnColor221 and works with format strings.

func PrintOnColor222

func PrintOnColor222(str string)

PrintOnColor222 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor222f added in v1.6.0

func PrintOnColor222f(str string, args ...interface{})

PrintOnColor222f wraps PrintOnColor222 and works with format strings.

func PrintOnColor223

func PrintOnColor223(str string)

PrintOnColor223 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor223f added in v1.6.0

func PrintOnColor223f(str string, args ...interface{})

PrintOnColor223f wraps PrintOnColor223 and works with format strings.

func PrintOnColor224

func PrintOnColor224(str string)

PrintOnColor224 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor224f added in v1.6.0

func PrintOnColor224f(str string, args ...interface{})

PrintOnColor224f wraps PrintOnColor224 and works with format strings.

func PrintOnColor225

func PrintOnColor225(str string)

PrintOnColor225 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor225f added in v1.6.0

func PrintOnColor225f(str string, args ...interface{})

PrintOnColor225f wraps PrintOnColor225 and works with format strings.

func PrintOnColor226

func PrintOnColor226(str string)

PrintOnColor226 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor226f added in v1.6.0

func PrintOnColor226f(str string, args ...interface{})

PrintOnColor226f wraps PrintOnColor226 and works with format strings.

func PrintOnColor227

func PrintOnColor227(str string)

PrintOnColor227 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor227f added in v1.6.0

func PrintOnColor227f(str string, args ...interface{})

PrintOnColor227f wraps PrintOnColor227 and works with format strings.

func PrintOnColor228

func PrintOnColor228(str string)

PrintOnColor228 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor228f added in v1.6.0

func PrintOnColor228f(str string, args ...interface{})

PrintOnColor228f wraps PrintOnColor228 and works with format strings.

func PrintOnColor229

func PrintOnColor229(str string)

PrintOnColor229 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor229f added in v1.6.0

func PrintOnColor229f(str string, args ...interface{})

PrintOnColor229f wraps PrintOnColor229 and works with format strings.

func PrintOnColor230

func PrintOnColor230(str string)

PrintOnColor230 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor230f added in v1.6.0

func PrintOnColor230f(str string, args ...interface{})

PrintOnColor230f wraps PrintOnColor230 and works with format strings.

func PrintOnColor231

func PrintOnColor231(str string)

PrintOnColor231 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor231f added in v1.6.0

func PrintOnColor231f(str string, args ...interface{})

PrintOnColor231f wraps PrintOnColor231 and works with format strings.

func PrintOnColor232

func PrintOnColor232(str string)

PrintOnColor232 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor232f added in v1.6.0

func PrintOnColor232f(str string, args ...interface{})

PrintOnColor232f wraps PrintOnColor232 and works with format strings.

func PrintOnColor233

func PrintOnColor233(str string)

PrintOnColor233 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor233f added in v1.6.0

func PrintOnColor233f(str string, args ...interface{})

PrintOnColor233f wraps PrintOnColor233 and works with format strings.

func PrintOnColor234

func PrintOnColor234(str string)

PrintOnColor234 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor234f added in v1.6.0

func PrintOnColor234f(str string, args ...interface{})

PrintOnColor234f wraps PrintOnColor234 and works with format strings.

func PrintOnColor235

func PrintOnColor235(str string)

PrintOnColor235 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor235f added in v1.6.0

func PrintOnColor235f(str string, args ...interface{})

PrintOnColor235f wraps PrintOnColor235 and works with format strings.

func PrintOnColor236

func PrintOnColor236(str string)

PrintOnColor236 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor236f added in v1.6.0

func PrintOnColor236f(str string, args ...interface{})

PrintOnColor236f wraps PrintOnColor236 and works with format strings.

func PrintOnColor237

func PrintOnColor237(str string)

PrintOnColor237 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor237f added in v1.6.0

func PrintOnColor237f(str string, args ...interface{})

PrintOnColor237f wraps PrintOnColor237 and works with format strings.

func PrintOnColor238

func PrintOnColor238(str string)

PrintOnColor238 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor238f added in v1.6.0

func PrintOnColor238f(str string, args ...interface{})

PrintOnColor238f wraps PrintOnColor238 and works with format strings.

func PrintOnColor239

func PrintOnColor239(str string)

PrintOnColor239 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor239f added in v1.6.0

func PrintOnColor239f(str string, args ...interface{})

PrintOnColor239f wraps PrintOnColor239 and works with format strings.

func PrintOnColor240

func PrintOnColor240(str string)

PrintOnColor240 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor240f added in v1.6.0

func PrintOnColor240f(str string, args ...interface{})

PrintOnColor240f wraps PrintOnColor240 and works with format strings.

func PrintOnColor241

func PrintOnColor241(str string)

PrintOnColor241 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor241f added in v1.6.0

func PrintOnColor241f(str string, args ...interface{})

PrintOnColor241f wraps PrintOnColor241 and works with format strings.

func PrintOnColor242

func PrintOnColor242(str string)

PrintOnColor242 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor242f added in v1.6.0

func PrintOnColor242f(str string, args ...interface{})

PrintOnColor242f wraps PrintOnColor242 and works with format strings.

func PrintOnColor243

func PrintOnColor243(str string)

PrintOnColor243 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor243f added in v1.6.0

func PrintOnColor243f(str string, args ...interface{})

PrintOnColor243f wraps PrintOnColor243 and works with format strings.

func PrintOnColor244

func PrintOnColor244(str string)

PrintOnColor244 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor244f added in v1.6.0

func PrintOnColor244f(str string, args ...interface{})

PrintOnColor244f wraps PrintOnColor244 and works with format strings.

func PrintOnColor245

func PrintOnColor245(str string)

PrintOnColor245 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor245f added in v1.6.0

func PrintOnColor245f(str string, args ...interface{})

PrintOnColor245f wraps PrintOnColor245 and works with format strings.

func PrintOnColor246

func PrintOnColor246(str string)

PrintOnColor246 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor246f added in v1.6.0

func PrintOnColor246f(str string, args ...interface{})

PrintOnColor246f wraps PrintOnColor246 and works with format strings.

func PrintOnColor247

func PrintOnColor247(str string)

PrintOnColor247 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor247f added in v1.6.0

func PrintOnColor247f(str string, args ...interface{})

PrintOnColor247f wraps PrintOnColor247 and works with format strings.

func PrintOnColor248

func PrintOnColor248(str string)

PrintOnColor248 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor248f added in v1.6.0

func PrintOnColor248f(str string, args ...interface{})

PrintOnColor248f wraps PrintOnColor248 and works with format strings.

func PrintOnColor249

func PrintOnColor249(str string)

PrintOnColor249 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor249f added in v1.6.0

func PrintOnColor249f(str string, args ...interface{})

PrintOnColor249f wraps PrintOnColor249 and works with format strings.

func PrintOnColor250

func PrintOnColor250(str string)

PrintOnColor250 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor250f added in v1.6.0

func PrintOnColor250f(str string, args ...interface{})

PrintOnColor250f wraps PrintOnColor250 and works with format strings.

func PrintOnColor251

func PrintOnColor251(str string)

PrintOnColor251 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor251f added in v1.6.0

func PrintOnColor251f(str string, args ...interface{})

PrintOnColor251f wraps PrintOnColor251 and works with format strings.

func PrintOnColor252

func PrintOnColor252(str string)

PrintOnColor252 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor252f added in v1.6.0

func PrintOnColor252f(str string, args ...interface{})

PrintOnColor252f wraps PrintOnColor252 and works with format strings.

func PrintOnColor253

func PrintOnColor253(str string)

PrintOnColor253 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor253f added in v1.6.0

func PrintOnColor253f(str string, args ...interface{})

PrintOnColor253f wraps PrintOnColor253 and works with format strings.

func PrintOnColor254

func PrintOnColor254(str string)

PrintOnColor254 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor254f added in v1.6.0

func PrintOnColor254f(str string, args ...interface{})

PrintOnColor254f wraps PrintOnColor254 and works with format strings.

func PrintOnColor255

func PrintOnColor255(str string)

PrintOnColor255 will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnColor255f added in v1.6.0

func PrintOnColor255f(str string, args ...interface{})

PrintOnColor255f wraps PrintOnColor255 and works with format strings.

func PrintOnCyan

func PrintOnCyan(str string)

PrintOnCyan will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnCyanf added in v1.6.0

func PrintOnCyanf(str string, args ...interface{})

PrintOnCyanf wraps PrintOnCyan and works with format strings.

func PrintOnDefault

func PrintOnDefault(str string)

PrintOnDefault will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnDefaultf added in v1.6.0

func PrintOnDefaultf(str string, args ...interface{})

PrintOnDefaultf wraps PrintOnDefault and works with format strings.

func PrintOnGreen

func PrintOnGreen(str string)

PrintOnGreen will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnGreenf added in v1.6.0

func PrintOnGreenf(str string, args ...interface{})

PrintOnGreenf wraps PrintOnGreen and works with format strings.

func PrintOnHex

func PrintOnHex(hex string, str string)

PrintOnHex will take a hex color code and print a line with ANSI escape codes.

func PrintOnHexf added in v1.6.0

func PrintOnHexf(hex string, str string, args ...interface{})

PrintOnHexf wraps PrintOnHex and works with format strings.

func PrintOnLightBlack

func PrintOnLightBlack(str string)

PrintOnLightBlack will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnLightBlackf added in v1.6.0

func PrintOnLightBlackf(str string, args ...interface{})

PrintOnLightBlackf wraps PrintOnLightBlack and works with format strings.

func PrintOnLightBlue

func PrintOnLightBlue(str string)

PrintOnLightBlue will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnLightBluef added in v1.6.0

func PrintOnLightBluef(str string, args ...interface{})

PrintOnLightBluef wraps PrintOnLightBlue and works with format strings.

func PrintOnLightCyan

func PrintOnLightCyan(str string)

PrintOnLightCyan will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnLightCyanf added in v1.6.0

func PrintOnLightCyanf(str string, args ...interface{})

PrintOnLightCyanf wraps PrintOnLightCyan and works with format strings.

func PrintOnLightGreen

func PrintOnLightGreen(str string)

PrintOnLightGreen will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnLightGreenf added in v1.6.0

func PrintOnLightGreenf(str string, args ...interface{})

PrintOnLightGreenf wraps PrintOnLightGreen and works with format strings.

func PrintOnLightMagenta

func PrintOnLightMagenta(str string)

PrintOnLightMagenta will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnLightMagentaf added in v1.6.0

func PrintOnLightMagentaf(str string, args ...interface{})

PrintOnLightMagentaf wraps PrintOnLightMagenta and works with format strings.

func PrintOnLightRed

func PrintOnLightRed(str string)

PrintOnLightRed will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnLightRedf added in v1.6.0

func PrintOnLightRedf(str string, args ...interface{})

PrintOnLightRedf wraps PrintOnLightRed and works with format strings.

func PrintOnLightWhite

func PrintOnLightWhite(str string)

PrintOnLightWhite will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnLightWhitef added in v1.6.0

func PrintOnLightWhitef(str string, args ...interface{})

PrintOnLightWhitef wraps PrintOnLightWhite and works with format strings.

func PrintOnLightYellow

func PrintOnLightYellow(str string)

PrintOnLightYellow will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnLightYellowf added in v1.6.0

func PrintOnLightYellowf(str string, args ...interface{})

PrintOnLightYellowf wraps PrintOnLightYellow and works with format strings.

func PrintOnMagenta

func PrintOnMagenta(str string)

PrintOnMagenta will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnMagentaf added in v1.6.0

func PrintOnMagentaf(str string, args ...interface{})

PrintOnMagentaf wraps PrintOnMagenta and works with format strings.

func PrintOnRainbow

func PrintOnRainbow(str string)

PrintOnRainbow will print a string rotating through ANSI color codes for a rainbow effect.

func PrintOnRainbowf added in v1.6.0

func PrintOnRainbowf(str string, args ...interface{})

PrintOnRainbowf wraps PrintOnRainbow and works with format strings.

func PrintOnRed

func PrintOnRed(str string)

PrintOnRed will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnRedf added in v1.6.0

func PrintOnRedf(str string, args ...interface{})

PrintOnRedf wraps PrintOnRed and works with format strings.

func PrintOnWhite

func PrintOnWhite(str string)

PrintOnWhite will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnWhitef added in v1.6.0

func PrintOnWhitef(str string, args ...interface{})

PrintOnWhitef wraps PrintOnWhite and works with format strings.

func PrintOnYellow

func PrintOnYellow(str string)

PrintOnYellow will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintOnYellowf added in v1.6.0

func PrintOnYellowf(str string, args ...interface{})

PrintOnYellowf wraps PrintOnYellow and works with format strings.

func PrintRainbow

func PrintRainbow(str string)

PrintRainbow will print a string rotating through ANSI color codes for a rainbow effect.

func PrintRainbowf added in v1.6.0

func PrintRainbowf(str string, args ...interface{})

PrintRainbowf wraps PrintRainbow and works with format strings.

func PrintRed

func PrintRed(str string)

PrintRed will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintRedf added in v1.6.0

func PrintRedf(str string, args ...interface{})

PrintRedf wraps PrintRed and works with format strings.

func PrintReset

func PrintReset(str string)

PrintReset will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintResetf added in v1.6.0

func PrintResetf(str string, args ...interface{})

PrintResetf wraps PrintReset and works with format strings.

func PrintStrikethrough

func PrintStrikethrough(str string)

PrintStrikethrough will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintStrikethroughf added in v1.6.0

func PrintStrikethroughf(str string, args ...interface{})

PrintStrikethroughf wraps PrintStrikethrough and works with format strings.

func PrintSwap

func PrintSwap(str string)

PrintSwap will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintSwapf added in v1.6.0

func PrintSwapf(str string, args ...interface{})

PrintSwapf wraps PrintSwap and works with format strings.

func PrintUnderline

func PrintUnderline(str string)

PrintUnderline will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintUnderlinef added in v1.6.0

func PrintUnderlinef(str string, args ...interface{})

PrintUnderlinef wraps PrintUnderline and works with format strings.

func PrintWhite

func PrintWhite(str string)

PrintWhite will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintWhitef added in v1.6.0

func PrintWhitef(str string, args ...interface{})

PrintWhitef wraps PrintWhite and works with format strings.

func PrintWrap

func PrintWrap(width int, str string)

PrintWrap will wrap a string to the specified width and print it.

func PrintWrapf added in v1.6.0

func PrintWrapf(width int, str string, args ...interface{})

PrintWrapf wraps PrintWrap and works with format strings.

func PrintYellow

func PrintYellow(str string)

PrintYellow will Hilight() the provided string with the specified ANSI code and call fmt.Print(args ...interface{}).

func PrintYellowf added in v1.6.0

func PrintYellowf(str string, args ...interface{})

PrintYellowf wraps PrintYellow and works with format strings.

func Printf

func Printf(str string, args ...interface{})

Printf wraps fmt.Printf(str string, args ...interface{}).

func Println

func Println(args ...interface{})

Println wraps fmt.Println(args ...interface{}).

func PrintlnBlack

func PrintlnBlack(str string)

PrintlnBlack will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnBlackf added in v1.6.0

func PrintlnBlackf(str string, args ...interface{})

PrintlnBlackf wraps PrintlnBlack and works with format strings.

func PrintlnBlink(str string)

PrintlnBlink will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnBlinkRapid

func PrintlnBlinkRapid(str string)

PrintlnBlinkRapid will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnBlinkRapidf added in v1.6.0

func PrintlnBlinkRapidf(str string, args ...interface{})

PrintlnBlinkRapidf wraps PrintlnBlinkRapid and works with format strings.

func PrintlnBlinkSlow

func PrintlnBlinkSlow(str string)

PrintlnBlinkSlow will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnBlinkSlowf added in v1.6.0

func PrintlnBlinkSlowf(str string, args ...interface{})

PrintlnBlinkSlowf wraps PrintlnBlinkSlow and works with format strings.

func PrintlnBlinkf added in v1.6.0

func PrintlnBlinkf(str string, args ...interface{})

PrintlnBlinkf wraps PrintlnBlink and works with format strings.

func PrintlnBlue

func PrintlnBlue(str string)

PrintlnBlue will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnBluef added in v1.6.0

func PrintlnBluef(str string, args ...interface{})

PrintlnBluef wraps PrintlnBlue and works with format strings.

func PrintlnBold

func PrintlnBold(str string)

PrintlnBold will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnBoldf added in v1.6.0

func PrintlnBoldf(str string, args ...interface{})

PrintlnBoldf wraps PrintlnBold and works with format strings.

func PrintlnColor000

func PrintlnColor000(str string)

PrintlnColor000 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor000f added in v1.6.0

func PrintlnColor000f(str string, args ...interface{})

PrintlnColor000f wraps PrintlnColor000 and works with format strings.

func PrintlnColor001

func PrintlnColor001(str string)

PrintlnColor001 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor001f added in v1.6.0

func PrintlnColor001f(str string, args ...interface{})

PrintlnColor001f wraps PrintlnColor001 and works with format strings.

func PrintlnColor002

func PrintlnColor002(str string)

PrintlnColor002 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor002f added in v1.6.0

func PrintlnColor002f(str string, args ...interface{})

PrintlnColor002f wraps PrintlnColor002 and works with format strings.

func PrintlnColor003

func PrintlnColor003(str string)

PrintlnColor003 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor003f added in v1.6.0

func PrintlnColor003f(str string, args ...interface{})

PrintlnColor003f wraps PrintlnColor003 and works with format strings.

func PrintlnColor004

func PrintlnColor004(str string)

PrintlnColor004 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor004f added in v1.6.0

func PrintlnColor004f(str string, args ...interface{})

PrintlnColor004f wraps PrintlnColor004 and works with format strings.

func PrintlnColor005

func PrintlnColor005(str string)

PrintlnColor005 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor005f added in v1.6.0

func PrintlnColor005f(str string, args ...interface{})

PrintlnColor005f wraps PrintlnColor005 and works with format strings.

func PrintlnColor006

func PrintlnColor006(str string)

PrintlnColor006 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor006f added in v1.6.0

func PrintlnColor006f(str string, args ...interface{})

PrintlnColor006f wraps PrintlnColor006 and works with format strings.

func PrintlnColor007

func PrintlnColor007(str string)

PrintlnColor007 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor007f added in v1.6.0

func PrintlnColor007f(str string, args ...interface{})

PrintlnColor007f wraps PrintlnColor007 and works with format strings.

func PrintlnColor008

func PrintlnColor008(str string)

PrintlnColor008 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor008f added in v1.6.0

func PrintlnColor008f(str string, args ...interface{})

PrintlnColor008f wraps PrintlnColor008 and works with format strings.

func PrintlnColor009

func PrintlnColor009(str string)

PrintlnColor009 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor009f added in v1.6.0

func PrintlnColor009f(str string, args ...interface{})

PrintlnColor009f wraps PrintlnColor009 and works with format strings.

func PrintlnColor010

func PrintlnColor010(str string)

PrintlnColor010 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor010f added in v1.6.0

func PrintlnColor010f(str string, args ...interface{})

PrintlnColor010f wraps PrintlnColor010 and works with format strings.

func PrintlnColor011

func PrintlnColor011(str string)

PrintlnColor011 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor011f added in v1.6.0

func PrintlnColor011f(str string, args ...interface{})

PrintlnColor011f wraps PrintlnColor011 and works with format strings.

func PrintlnColor012

func PrintlnColor012(str string)

PrintlnColor012 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor012f added in v1.6.0

func PrintlnColor012f(str string, args ...interface{})

PrintlnColor012f wraps PrintlnColor012 and works with format strings.

func PrintlnColor013

func PrintlnColor013(str string)

PrintlnColor013 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor013f added in v1.6.0

func PrintlnColor013f(str string, args ...interface{})

PrintlnColor013f wraps PrintlnColor013 and works with format strings.

func PrintlnColor014

func PrintlnColor014(str string)

PrintlnColor014 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor014f added in v1.6.0

func PrintlnColor014f(str string, args ...interface{})

PrintlnColor014f wraps PrintlnColor014 and works with format strings.

func PrintlnColor015

func PrintlnColor015(str string)

PrintlnColor015 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor015f added in v1.6.0

func PrintlnColor015f(str string, args ...interface{})

PrintlnColor015f wraps PrintlnColor015 and works with format strings.

func PrintlnColor016

func PrintlnColor016(str string)

PrintlnColor016 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor016f added in v1.6.0

func PrintlnColor016f(str string, args ...interface{})

PrintlnColor016f wraps PrintlnColor016 and works with format strings.

func PrintlnColor017

func PrintlnColor017(str string)

PrintlnColor017 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor017f added in v1.6.0

func PrintlnColor017f(str string, args ...interface{})

PrintlnColor017f wraps PrintlnColor017 and works with format strings.

func PrintlnColor018

func PrintlnColor018(str string)

PrintlnColor018 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor018f added in v1.6.0

func PrintlnColor018f(str string, args ...interface{})

PrintlnColor018f wraps PrintlnColor018 and works with format strings.

func PrintlnColor019

func PrintlnColor019(str string)

PrintlnColor019 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor019f added in v1.6.0

func PrintlnColor019f(str string, args ...interface{})

PrintlnColor019f wraps PrintlnColor019 and works with format strings.

func PrintlnColor020

func PrintlnColor020(str string)

PrintlnColor020 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor020f added in v1.6.0

func PrintlnColor020f(str string, args ...interface{})

PrintlnColor020f wraps PrintlnColor020 and works with format strings.

func PrintlnColor021

func PrintlnColor021(str string)

PrintlnColor021 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor021f added in v1.6.0

func PrintlnColor021f(str string, args ...interface{})

PrintlnColor021f wraps PrintlnColor021 and works with format strings.

func PrintlnColor022

func PrintlnColor022(str string)

PrintlnColor022 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor022f added in v1.6.0

func PrintlnColor022f(str string, args ...interface{})

PrintlnColor022f wraps PrintlnColor022 and works with format strings.

func PrintlnColor023

func PrintlnColor023(str string)

PrintlnColor023 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor023f added in v1.6.0

func PrintlnColor023f(str string, args ...interface{})

PrintlnColor023f wraps PrintlnColor023 and works with format strings.

func PrintlnColor024

func PrintlnColor024(str string)

PrintlnColor024 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor024f added in v1.6.0

func PrintlnColor024f(str string, args ...interface{})

PrintlnColor024f wraps PrintlnColor024 and works with format strings.

func PrintlnColor025

func PrintlnColor025(str string)

PrintlnColor025 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor025f added in v1.6.0

func PrintlnColor025f(str string, args ...interface{})

PrintlnColor025f wraps PrintlnColor025 and works with format strings.

func PrintlnColor026

func PrintlnColor026(str string)

PrintlnColor026 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor026f added in v1.6.0

func PrintlnColor026f(str string, args ...interface{})

PrintlnColor026f wraps PrintlnColor026 and works with format strings.

func PrintlnColor027

func PrintlnColor027(str string)

PrintlnColor027 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor027f added in v1.6.0

func PrintlnColor027f(str string, args ...interface{})

PrintlnColor027f wraps PrintlnColor027 and works with format strings.

func PrintlnColor028

func PrintlnColor028(str string)

PrintlnColor028 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor028f added in v1.6.0

func PrintlnColor028f(str string, args ...interface{})

PrintlnColor028f wraps PrintlnColor028 and works with format strings.

func PrintlnColor029

func PrintlnColor029(str string)

PrintlnColor029 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor029f added in v1.6.0

func PrintlnColor029f(str string, args ...interface{})

PrintlnColor029f wraps PrintlnColor029 and works with format strings.

func PrintlnColor030

func PrintlnColor030(str string)

PrintlnColor030 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor030f added in v1.6.0

func PrintlnColor030f(str string, args ...interface{})

PrintlnColor030f wraps PrintlnColor030 and works with format strings.

func PrintlnColor031

func PrintlnColor031(str string)

PrintlnColor031 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor031f added in v1.6.0

func PrintlnColor031f(str string, args ...interface{})

PrintlnColor031f wraps PrintlnColor031 and works with format strings.

func PrintlnColor032

func PrintlnColor032(str string)

PrintlnColor032 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor032f added in v1.6.0

func PrintlnColor032f(str string, args ...interface{})

PrintlnColor032f wraps PrintlnColor032 and works with format strings.

func PrintlnColor033

func PrintlnColor033(str string)

PrintlnColor033 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor033f added in v1.6.0

func PrintlnColor033f(str string, args ...interface{})

PrintlnColor033f wraps PrintlnColor033 and works with format strings.

func PrintlnColor034

func PrintlnColor034(str string)

PrintlnColor034 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor034f added in v1.6.0

func PrintlnColor034f(str string, args ...interface{})

PrintlnColor034f wraps PrintlnColor034 and works with format strings.

func PrintlnColor035

func PrintlnColor035(str string)

PrintlnColor035 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor035f added in v1.6.0

func PrintlnColor035f(str string, args ...interface{})

PrintlnColor035f wraps PrintlnColor035 and works with format strings.

func PrintlnColor036

func PrintlnColor036(str string)

PrintlnColor036 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor036f added in v1.6.0

func PrintlnColor036f(str string, args ...interface{})

PrintlnColor036f wraps PrintlnColor036 and works with format strings.

func PrintlnColor037

func PrintlnColor037(str string)

PrintlnColor037 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor037f added in v1.6.0

func PrintlnColor037f(str string, args ...interface{})

PrintlnColor037f wraps PrintlnColor037 and works with format strings.

func PrintlnColor038

func PrintlnColor038(str string)

PrintlnColor038 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor038f added in v1.6.0

func PrintlnColor038f(str string, args ...interface{})

PrintlnColor038f wraps PrintlnColor038 and works with format strings.

func PrintlnColor039

func PrintlnColor039(str string)

PrintlnColor039 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor039f added in v1.6.0

func PrintlnColor039f(str string, args ...interface{})

PrintlnColor039f wraps PrintlnColor039 and works with format strings.

func PrintlnColor040

func PrintlnColor040(str string)

PrintlnColor040 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor040f added in v1.6.0

func PrintlnColor040f(str string, args ...interface{})

PrintlnColor040f wraps PrintlnColor040 and works with format strings.

func PrintlnColor041

func PrintlnColor041(str string)

PrintlnColor041 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor041f added in v1.6.0

func PrintlnColor041f(str string, args ...interface{})

PrintlnColor041f wraps PrintlnColor041 and works with format strings.

func PrintlnColor042

func PrintlnColor042(str string)

PrintlnColor042 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor042f added in v1.6.0

func PrintlnColor042f(str string, args ...interface{})

PrintlnColor042f wraps PrintlnColor042 and works with format strings.

func PrintlnColor043

func PrintlnColor043(str string)

PrintlnColor043 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor043f added in v1.6.0

func PrintlnColor043f(str string, args ...interface{})

PrintlnColor043f wraps PrintlnColor043 and works with format strings.

func PrintlnColor044

func PrintlnColor044(str string)

PrintlnColor044 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor044f added in v1.6.0

func PrintlnColor044f(str string, args ...interface{})

PrintlnColor044f wraps PrintlnColor044 and works with format strings.

func PrintlnColor045

func PrintlnColor045(str string)

PrintlnColor045 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor045f added in v1.6.0

func PrintlnColor045f(str string, args ...interface{})

PrintlnColor045f wraps PrintlnColor045 and works with format strings.

func PrintlnColor046

func PrintlnColor046(str string)

PrintlnColor046 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor046f added in v1.6.0

func PrintlnColor046f(str string, args ...interface{})

PrintlnColor046f wraps PrintlnColor046 and works with format strings.

func PrintlnColor047

func PrintlnColor047(str string)

PrintlnColor047 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor047f added in v1.6.0

func PrintlnColor047f(str string, args ...interface{})

PrintlnColor047f wraps PrintlnColor047 and works with format strings.

func PrintlnColor048

func PrintlnColor048(str string)

PrintlnColor048 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor048f added in v1.6.0

func PrintlnColor048f(str string, args ...interface{})

PrintlnColor048f wraps PrintlnColor048 and works with format strings.

func PrintlnColor049

func PrintlnColor049(str string)

PrintlnColor049 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor049f added in v1.6.0

func PrintlnColor049f(str string, args ...interface{})

PrintlnColor049f wraps PrintlnColor049 and works with format strings.

func PrintlnColor050

func PrintlnColor050(str string)

PrintlnColor050 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor050f added in v1.6.0

func PrintlnColor050f(str string, args ...interface{})

PrintlnColor050f wraps PrintlnColor050 and works with format strings.

func PrintlnColor051

func PrintlnColor051(str string)

PrintlnColor051 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor051f added in v1.6.0

func PrintlnColor051f(str string, args ...interface{})

PrintlnColor051f wraps PrintlnColor051 and works with format strings.

func PrintlnColor052

func PrintlnColor052(str string)

PrintlnColor052 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor052f added in v1.6.0

func PrintlnColor052f(str string, args ...interface{})

PrintlnColor052f wraps PrintlnColor052 and works with format strings.

func PrintlnColor053

func PrintlnColor053(str string)

PrintlnColor053 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor053f added in v1.6.0

func PrintlnColor053f(str string, args ...interface{})

PrintlnColor053f wraps PrintlnColor053 and works with format strings.

func PrintlnColor054

func PrintlnColor054(str string)

PrintlnColor054 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor054f added in v1.6.0

func PrintlnColor054f(str string, args ...interface{})

PrintlnColor054f wraps PrintlnColor054 and works with format strings.

func PrintlnColor055

func PrintlnColor055(str string)

PrintlnColor055 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor055f added in v1.6.0

func PrintlnColor055f(str string, args ...interface{})

PrintlnColor055f wraps PrintlnColor055 and works with format strings.

func PrintlnColor056

func PrintlnColor056(str string)

PrintlnColor056 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor056f added in v1.6.0

func PrintlnColor056f(str string, args ...interface{})

PrintlnColor056f wraps PrintlnColor056 and works with format strings.

func PrintlnColor057

func PrintlnColor057(str string)

PrintlnColor057 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor057f added in v1.6.0

func PrintlnColor057f(str string, args ...interface{})

PrintlnColor057f wraps PrintlnColor057 and works with format strings.

func PrintlnColor058

func PrintlnColor058(str string)

PrintlnColor058 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor058f added in v1.6.0

func PrintlnColor058f(str string, args ...interface{})

PrintlnColor058f wraps PrintlnColor058 and works with format strings.

func PrintlnColor059

func PrintlnColor059(str string)

PrintlnColor059 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor059f added in v1.6.0

func PrintlnColor059f(str string, args ...interface{})

PrintlnColor059f wraps PrintlnColor059 and works with format strings.

func PrintlnColor060

func PrintlnColor060(str string)

PrintlnColor060 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor060f added in v1.6.0

func PrintlnColor060f(str string, args ...interface{})

PrintlnColor060f wraps PrintlnColor060 and works with format strings.

func PrintlnColor061

func PrintlnColor061(str string)

PrintlnColor061 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor061f added in v1.6.0

func PrintlnColor061f(str string, args ...interface{})

PrintlnColor061f wraps PrintlnColor061 and works with format strings.

func PrintlnColor062

func PrintlnColor062(str string)

PrintlnColor062 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor062f added in v1.6.0

func PrintlnColor062f(str string, args ...interface{})

PrintlnColor062f wraps PrintlnColor062 and works with format strings.

func PrintlnColor063

func PrintlnColor063(str string)

PrintlnColor063 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor063f added in v1.6.0

func PrintlnColor063f(str string, args ...interface{})

PrintlnColor063f wraps PrintlnColor063 and works with format strings.

func PrintlnColor064

func PrintlnColor064(str string)

PrintlnColor064 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor064f added in v1.6.0

func PrintlnColor064f(str string, args ...interface{})

PrintlnColor064f wraps PrintlnColor064 and works with format strings.

func PrintlnColor065

func PrintlnColor065(str string)

PrintlnColor065 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor065f added in v1.6.0

func PrintlnColor065f(str string, args ...interface{})

PrintlnColor065f wraps PrintlnColor065 and works with format strings.

func PrintlnColor066

func PrintlnColor066(str string)

PrintlnColor066 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor066f added in v1.6.0

func PrintlnColor066f(str string, args ...interface{})

PrintlnColor066f wraps PrintlnColor066 and works with format strings.

func PrintlnColor067

func PrintlnColor067(str string)

PrintlnColor067 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor067f added in v1.6.0

func PrintlnColor067f(str string, args ...interface{})

PrintlnColor067f wraps PrintlnColor067 and works with format strings.

func PrintlnColor068

func PrintlnColor068(str string)

PrintlnColor068 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor068f added in v1.6.0

func PrintlnColor068f(str string, args ...interface{})

PrintlnColor068f wraps PrintlnColor068 and works with format strings.

func PrintlnColor069

func PrintlnColor069(str string)

PrintlnColor069 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor069f added in v1.6.0

func PrintlnColor069f(str string, args ...interface{})

PrintlnColor069f wraps PrintlnColor069 and works with format strings.

func PrintlnColor070

func PrintlnColor070(str string)

PrintlnColor070 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor070f added in v1.6.0

func PrintlnColor070f(str string, args ...interface{})

PrintlnColor070f wraps PrintlnColor070 and works with format strings.

func PrintlnColor071

func PrintlnColor071(str string)

PrintlnColor071 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor071f added in v1.6.0

func PrintlnColor071f(str string, args ...interface{})

PrintlnColor071f wraps PrintlnColor071 and works with format strings.

func PrintlnColor072

func PrintlnColor072(str string)

PrintlnColor072 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor072f added in v1.6.0

func PrintlnColor072f(str string, args ...interface{})

PrintlnColor072f wraps PrintlnColor072 and works with format strings.

func PrintlnColor073

func PrintlnColor073(str string)

PrintlnColor073 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor073f added in v1.6.0

func PrintlnColor073f(str string, args ...interface{})

PrintlnColor073f wraps PrintlnColor073 and works with format strings.

func PrintlnColor074

func PrintlnColor074(str string)

PrintlnColor074 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor074f added in v1.6.0

func PrintlnColor074f(str string, args ...interface{})

PrintlnColor074f wraps PrintlnColor074 and works with format strings.

func PrintlnColor075

func PrintlnColor075(str string)

PrintlnColor075 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor075f added in v1.6.0

func PrintlnColor075f(str string, args ...interface{})

PrintlnColor075f wraps PrintlnColor075 and works with format strings.

func PrintlnColor076

func PrintlnColor076(str string)

PrintlnColor076 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor076f added in v1.6.0

func PrintlnColor076f(str string, args ...interface{})

PrintlnColor076f wraps PrintlnColor076 and works with format strings.

func PrintlnColor077

func PrintlnColor077(str string)

PrintlnColor077 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor077f added in v1.6.0

func PrintlnColor077f(str string, args ...interface{})

PrintlnColor077f wraps PrintlnColor077 and works with format strings.

func PrintlnColor078

func PrintlnColor078(str string)

PrintlnColor078 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor078f added in v1.6.0

func PrintlnColor078f(str string, args ...interface{})

PrintlnColor078f wraps PrintlnColor078 and works with format strings.

func PrintlnColor079

func PrintlnColor079(str string)

PrintlnColor079 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor079f added in v1.6.0

func PrintlnColor079f(str string, args ...interface{})

PrintlnColor079f wraps PrintlnColor079 and works with format strings.

func PrintlnColor080

func PrintlnColor080(str string)

PrintlnColor080 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor080f added in v1.6.0

func PrintlnColor080f(str string, args ...interface{})

PrintlnColor080f wraps PrintlnColor080 and works with format strings.

func PrintlnColor081

func PrintlnColor081(str string)

PrintlnColor081 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor081f added in v1.6.0

func PrintlnColor081f(str string, args ...interface{})

PrintlnColor081f wraps PrintlnColor081 and works with format strings.

func PrintlnColor082

func PrintlnColor082(str string)

PrintlnColor082 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor082f added in v1.6.0

func PrintlnColor082f(str string, args ...interface{})

PrintlnColor082f wraps PrintlnColor082 and works with format strings.

func PrintlnColor083

func PrintlnColor083(str string)

PrintlnColor083 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor083f added in v1.6.0

func PrintlnColor083f(str string, args ...interface{})

PrintlnColor083f wraps PrintlnColor083 and works with format strings.

func PrintlnColor084

func PrintlnColor084(str string)

PrintlnColor084 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor084f added in v1.6.0

func PrintlnColor084f(str string, args ...interface{})

PrintlnColor084f wraps PrintlnColor084 and works with format strings.

func PrintlnColor085

func PrintlnColor085(str string)

PrintlnColor085 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor085f added in v1.6.0

func PrintlnColor085f(str string, args ...interface{})

PrintlnColor085f wraps PrintlnColor085 and works with format strings.

func PrintlnColor086

func PrintlnColor086(str string)

PrintlnColor086 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor086f added in v1.6.0

func PrintlnColor086f(str string, args ...interface{})

PrintlnColor086f wraps PrintlnColor086 and works with format strings.

func PrintlnColor087

func PrintlnColor087(str string)

PrintlnColor087 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor087f added in v1.6.0

func PrintlnColor087f(str string, args ...interface{})

PrintlnColor087f wraps PrintlnColor087 and works with format strings.

func PrintlnColor088

func PrintlnColor088(str string)

PrintlnColor088 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor088f added in v1.6.0

func PrintlnColor088f(str string, args ...interface{})

PrintlnColor088f wraps PrintlnColor088 and works with format strings.

func PrintlnColor089

func PrintlnColor089(str string)

PrintlnColor089 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor089f added in v1.6.0

func PrintlnColor089f(str string, args ...interface{})

PrintlnColor089f wraps PrintlnColor089 and works with format strings.

func PrintlnColor090

func PrintlnColor090(str string)

PrintlnColor090 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor090f added in v1.6.0

func PrintlnColor090f(str string, args ...interface{})

PrintlnColor090f wraps PrintlnColor090 and works with format strings.

func PrintlnColor091

func PrintlnColor091(str string)

PrintlnColor091 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor091f added in v1.6.0

func PrintlnColor091f(str string, args ...interface{})

PrintlnColor091f wraps PrintlnColor091 and works with format strings.

func PrintlnColor092

func PrintlnColor092(str string)

PrintlnColor092 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor092f added in v1.6.0

func PrintlnColor092f(str string, args ...interface{})

PrintlnColor092f wraps PrintlnColor092 and works with format strings.

func PrintlnColor093

func PrintlnColor093(str string)

PrintlnColor093 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor093f added in v1.6.0

func PrintlnColor093f(str string, args ...interface{})

PrintlnColor093f wraps PrintlnColor093 and works with format strings.

func PrintlnColor094

func PrintlnColor094(str string)

PrintlnColor094 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor094f added in v1.6.0

func PrintlnColor094f(str string, args ...interface{})

PrintlnColor094f wraps PrintlnColor094 and works with format strings.

func PrintlnColor095

func PrintlnColor095(str string)

PrintlnColor095 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor095f added in v1.6.0

func PrintlnColor095f(str string, args ...interface{})

PrintlnColor095f wraps PrintlnColor095 and works with format strings.

func PrintlnColor096

func PrintlnColor096(str string)

PrintlnColor096 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor096f added in v1.6.0

func PrintlnColor096f(str string, args ...interface{})

PrintlnColor096f wraps PrintlnColor096 and works with format strings.

func PrintlnColor097

func PrintlnColor097(str string)

PrintlnColor097 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor097f added in v1.6.0

func PrintlnColor097f(str string, args ...interface{})

PrintlnColor097f wraps PrintlnColor097 and works with format strings.

func PrintlnColor098

func PrintlnColor098(str string)

PrintlnColor098 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor098f added in v1.6.0

func PrintlnColor098f(str string, args ...interface{})

PrintlnColor098f wraps PrintlnColor098 and works with format strings.

func PrintlnColor099

func PrintlnColor099(str string)

PrintlnColor099 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor099f added in v1.6.0

func PrintlnColor099f(str string, args ...interface{})

PrintlnColor099f wraps PrintlnColor099 and works with format strings.

func PrintlnColor100

func PrintlnColor100(str string)

PrintlnColor100 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor100f added in v1.6.0

func PrintlnColor100f(str string, args ...interface{})

PrintlnColor100f wraps PrintlnColor100 and works with format strings.

func PrintlnColor101

func PrintlnColor101(str string)

PrintlnColor101 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor101f added in v1.6.0

func PrintlnColor101f(str string, args ...interface{})

PrintlnColor101f wraps PrintlnColor101 and works with format strings.

func PrintlnColor102

func PrintlnColor102(str string)

PrintlnColor102 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor102f added in v1.6.0

func PrintlnColor102f(str string, args ...interface{})

PrintlnColor102f wraps PrintlnColor102 and works with format strings.

func PrintlnColor103

func PrintlnColor103(str string)

PrintlnColor103 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor103f added in v1.6.0

func PrintlnColor103f(str string, args ...interface{})

PrintlnColor103f wraps PrintlnColor103 and works with format strings.

func PrintlnColor104

func PrintlnColor104(str string)

PrintlnColor104 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor104f added in v1.6.0

func PrintlnColor104f(str string, args ...interface{})

PrintlnColor104f wraps PrintlnColor104 and works with format strings.

func PrintlnColor105

func PrintlnColor105(str string)

PrintlnColor105 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor105f added in v1.6.0

func PrintlnColor105f(str string, args ...interface{})

PrintlnColor105f wraps PrintlnColor105 and works with format strings.

func PrintlnColor106

func PrintlnColor106(str string)

PrintlnColor106 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor106f added in v1.6.0

func PrintlnColor106f(str string, args ...interface{})

PrintlnColor106f wraps PrintlnColor106 and works with format strings.

func PrintlnColor107

func PrintlnColor107(str string)

PrintlnColor107 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor107f added in v1.6.0

func PrintlnColor107f(str string, args ...interface{})

PrintlnColor107f wraps PrintlnColor107 and works with format strings.

func PrintlnColor108

func PrintlnColor108(str string)

PrintlnColor108 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor108f added in v1.6.0

func PrintlnColor108f(str string, args ...interface{})

PrintlnColor108f wraps PrintlnColor108 and works with format strings.

func PrintlnColor109

func PrintlnColor109(str string)

PrintlnColor109 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor109f added in v1.6.0

func PrintlnColor109f(str string, args ...interface{})

PrintlnColor109f wraps PrintlnColor109 and works with format strings.

func PrintlnColor110

func PrintlnColor110(str string)

PrintlnColor110 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor110f added in v1.6.0

func PrintlnColor110f(str string, args ...interface{})

PrintlnColor110f wraps PrintlnColor110 and works with format strings.

func PrintlnColor111

func PrintlnColor111(str string)

PrintlnColor111 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor111f added in v1.6.0

func PrintlnColor111f(str string, args ...interface{})

PrintlnColor111f wraps PrintlnColor111 and works with format strings.

func PrintlnColor112

func PrintlnColor112(str string)

PrintlnColor112 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor112f added in v1.6.0

func PrintlnColor112f(str string, args ...interface{})

PrintlnColor112f wraps PrintlnColor112 and works with format strings.

func PrintlnColor113

func PrintlnColor113(str string)

PrintlnColor113 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor113f added in v1.6.0

func PrintlnColor113f(str string, args ...interface{})

PrintlnColor113f wraps PrintlnColor113 and works with format strings.

func PrintlnColor114

func PrintlnColor114(str string)

PrintlnColor114 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor114f added in v1.6.0

func PrintlnColor114f(str string, args ...interface{})

PrintlnColor114f wraps PrintlnColor114 and works with format strings.

func PrintlnColor115

func PrintlnColor115(str string)

PrintlnColor115 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor115f added in v1.6.0

func PrintlnColor115f(str string, args ...interface{})

PrintlnColor115f wraps PrintlnColor115 and works with format strings.

func PrintlnColor116

func PrintlnColor116(str string)

PrintlnColor116 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor116f added in v1.6.0

func PrintlnColor116f(str string, args ...interface{})

PrintlnColor116f wraps PrintlnColor116 and works with format strings.

func PrintlnColor117

func PrintlnColor117(str string)

PrintlnColor117 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor117f added in v1.6.0

func PrintlnColor117f(str string, args ...interface{})

PrintlnColor117f wraps PrintlnColor117 and works with format strings.

func PrintlnColor118

func PrintlnColor118(str string)

PrintlnColor118 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor118f added in v1.6.0

func PrintlnColor118f(str string, args ...interface{})

PrintlnColor118f wraps PrintlnColor118 and works with format strings.

func PrintlnColor119

func PrintlnColor119(str string)

PrintlnColor119 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor119f added in v1.6.0

func PrintlnColor119f(str string, args ...interface{})

PrintlnColor119f wraps PrintlnColor119 and works with format strings.

func PrintlnColor120

func PrintlnColor120(str string)

PrintlnColor120 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor120f added in v1.6.0

func PrintlnColor120f(str string, args ...interface{})

PrintlnColor120f wraps PrintlnColor120 and works with format strings.

func PrintlnColor121

func PrintlnColor121(str string)

PrintlnColor121 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor121f added in v1.6.0

func PrintlnColor121f(str string, args ...interface{})

PrintlnColor121f wraps PrintlnColor121 and works with format strings.

func PrintlnColor122

func PrintlnColor122(str string)

PrintlnColor122 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor122f added in v1.6.0

func PrintlnColor122f(str string, args ...interface{})

PrintlnColor122f wraps PrintlnColor122 and works with format strings.

func PrintlnColor123

func PrintlnColor123(str string)

PrintlnColor123 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor123f added in v1.6.0

func PrintlnColor123f(str string, args ...interface{})

PrintlnColor123f wraps PrintlnColor123 and works with format strings.

func PrintlnColor124

func PrintlnColor124(str string)

PrintlnColor124 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor124f added in v1.6.0

func PrintlnColor124f(str string, args ...interface{})

PrintlnColor124f wraps PrintlnColor124 and works with format strings.

func PrintlnColor125

func PrintlnColor125(str string)

PrintlnColor125 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor125f added in v1.6.0

func PrintlnColor125f(str string, args ...interface{})

PrintlnColor125f wraps PrintlnColor125 and works with format strings.

func PrintlnColor126

func PrintlnColor126(str string)

PrintlnColor126 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor126f added in v1.6.0

func PrintlnColor126f(str string, args ...interface{})

PrintlnColor126f wraps PrintlnColor126 and works with format strings.

func PrintlnColor127

func PrintlnColor127(str string)

PrintlnColor127 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor127f added in v1.6.0

func PrintlnColor127f(str string, args ...interface{})

PrintlnColor127f wraps PrintlnColor127 and works with format strings.

func PrintlnColor128

func PrintlnColor128(str string)

PrintlnColor128 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor128f added in v1.6.0

func PrintlnColor128f(str string, args ...interface{})

PrintlnColor128f wraps PrintlnColor128 and works with format strings.

func PrintlnColor129

func PrintlnColor129(str string)

PrintlnColor129 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor129f added in v1.6.0

func PrintlnColor129f(str string, args ...interface{})

PrintlnColor129f wraps PrintlnColor129 and works with format strings.

func PrintlnColor130

func PrintlnColor130(str string)

PrintlnColor130 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor130f added in v1.6.0

func PrintlnColor130f(str string, args ...interface{})

PrintlnColor130f wraps PrintlnColor130 and works with format strings.

func PrintlnColor131

func PrintlnColor131(str string)

PrintlnColor131 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor131f added in v1.6.0

func PrintlnColor131f(str string, args ...interface{})

PrintlnColor131f wraps PrintlnColor131 and works with format strings.

func PrintlnColor132

func PrintlnColor132(str string)

PrintlnColor132 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor132f added in v1.6.0

func PrintlnColor132f(str string, args ...interface{})

PrintlnColor132f wraps PrintlnColor132 and works with format strings.

func PrintlnColor133

func PrintlnColor133(str string)

PrintlnColor133 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor133f added in v1.6.0

func PrintlnColor133f(str string, args ...interface{})

PrintlnColor133f wraps PrintlnColor133 and works with format strings.

func PrintlnColor134

func PrintlnColor134(str string)

PrintlnColor134 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor134f added in v1.6.0

func PrintlnColor134f(str string, args ...interface{})

PrintlnColor134f wraps PrintlnColor134 and works with format strings.

func PrintlnColor135

func PrintlnColor135(str string)

PrintlnColor135 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor135f added in v1.6.0

func PrintlnColor135f(str string, args ...interface{})

PrintlnColor135f wraps PrintlnColor135 and works with format strings.

func PrintlnColor136

func PrintlnColor136(str string)

PrintlnColor136 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor136f added in v1.6.0

func PrintlnColor136f(str string, args ...interface{})

PrintlnColor136f wraps PrintlnColor136 and works with format strings.

func PrintlnColor137

func PrintlnColor137(str string)

PrintlnColor137 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor137f added in v1.6.0

func PrintlnColor137f(str string, args ...interface{})

PrintlnColor137f wraps PrintlnColor137 and works with format strings.

func PrintlnColor138

func PrintlnColor138(str string)

PrintlnColor138 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor138f added in v1.6.0

func PrintlnColor138f(str string, args ...interface{})

PrintlnColor138f wraps PrintlnColor138 and works with format strings.

func PrintlnColor139

func PrintlnColor139(str string)

PrintlnColor139 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor139f added in v1.6.0

func PrintlnColor139f(str string, args ...interface{})

PrintlnColor139f wraps PrintlnColor139 and works with format strings.

func PrintlnColor140

func PrintlnColor140(str string)

PrintlnColor140 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor140f added in v1.6.0

func PrintlnColor140f(str string, args ...interface{})

PrintlnColor140f wraps PrintlnColor140 and works with format strings.

func PrintlnColor141

func PrintlnColor141(str string)

PrintlnColor141 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor141f added in v1.6.0

func PrintlnColor141f(str string, args ...interface{})

PrintlnColor141f wraps PrintlnColor141 and works with format strings.

func PrintlnColor142

func PrintlnColor142(str string)

PrintlnColor142 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor142f added in v1.6.0

func PrintlnColor142f(str string, args ...interface{})

PrintlnColor142f wraps PrintlnColor142 and works with format strings.

func PrintlnColor143

func PrintlnColor143(str string)

PrintlnColor143 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor143f added in v1.6.0

func PrintlnColor143f(str string, args ...interface{})

PrintlnColor143f wraps PrintlnColor143 and works with format strings.

func PrintlnColor144

func PrintlnColor144(str string)

PrintlnColor144 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor144f added in v1.6.0

func PrintlnColor144f(str string, args ...interface{})

PrintlnColor144f wraps PrintlnColor144 and works with format strings.

func PrintlnColor145

func PrintlnColor145(str string)

PrintlnColor145 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor145f added in v1.6.0

func PrintlnColor145f(str string, args ...interface{})

PrintlnColor145f wraps PrintlnColor145 and works with format strings.

func PrintlnColor146

func PrintlnColor146(str string)

PrintlnColor146 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor146f added in v1.6.0

func PrintlnColor146f(str string, args ...interface{})

PrintlnColor146f wraps PrintlnColor146 and works with format strings.

func PrintlnColor147

func PrintlnColor147(str string)

PrintlnColor147 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor147f added in v1.6.0

func PrintlnColor147f(str string, args ...interface{})

PrintlnColor147f wraps PrintlnColor147 and works with format strings.

func PrintlnColor148

func PrintlnColor148(str string)

PrintlnColor148 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor148f added in v1.6.0

func PrintlnColor148f(str string, args ...interface{})

PrintlnColor148f wraps PrintlnColor148 and works with format strings.

func PrintlnColor149

func PrintlnColor149(str string)

PrintlnColor149 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor149f added in v1.6.0

func PrintlnColor149f(str string, args ...interface{})

PrintlnColor149f wraps PrintlnColor149 and works with format strings.

func PrintlnColor150

func PrintlnColor150(str string)

PrintlnColor150 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor150f added in v1.6.0

func PrintlnColor150f(str string, args ...interface{})

PrintlnColor150f wraps PrintlnColor150 and works with format strings.

func PrintlnColor151

func PrintlnColor151(str string)

PrintlnColor151 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor151f added in v1.6.0

func PrintlnColor151f(str string, args ...interface{})

PrintlnColor151f wraps PrintlnColor151 and works with format strings.

func PrintlnColor152

func PrintlnColor152(str string)

PrintlnColor152 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor152f added in v1.6.0

func PrintlnColor152f(str string, args ...interface{})

PrintlnColor152f wraps PrintlnColor152 and works with format strings.

func PrintlnColor153

func PrintlnColor153(str string)

PrintlnColor153 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor153f added in v1.6.0

func PrintlnColor153f(str string, args ...interface{})

PrintlnColor153f wraps PrintlnColor153 and works with format strings.

func PrintlnColor154

func PrintlnColor154(str string)

PrintlnColor154 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor154f added in v1.6.0

func PrintlnColor154f(str string, args ...interface{})

PrintlnColor154f wraps PrintlnColor154 and works with format strings.

func PrintlnColor155

func PrintlnColor155(str string)

PrintlnColor155 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor155f added in v1.6.0

func PrintlnColor155f(str string, args ...interface{})

PrintlnColor155f wraps PrintlnColor155 and works with format strings.

func PrintlnColor156

func PrintlnColor156(str string)

PrintlnColor156 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor156f added in v1.6.0

func PrintlnColor156f(str string, args ...interface{})

PrintlnColor156f wraps PrintlnColor156 and works with format strings.

func PrintlnColor157

func PrintlnColor157(str string)

PrintlnColor157 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor157f added in v1.6.0

func PrintlnColor157f(str string, args ...interface{})

PrintlnColor157f wraps PrintlnColor157 and works with format strings.

func PrintlnColor158

func PrintlnColor158(str string)

PrintlnColor158 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor158f added in v1.6.0

func PrintlnColor158f(str string, args ...interface{})

PrintlnColor158f wraps PrintlnColor158 and works with format strings.

func PrintlnColor159

func PrintlnColor159(str string)

PrintlnColor159 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor159f added in v1.6.0

func PrintlnColor159f(str string, args ...interface{})

PrintlnColor159f wraps PrintlnColor159 and works with format strings.

func PrintlnColor160

func PrintlnColor160(str string)

PrintlnColor160 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor160f added in v1.6.0

func PrintlnColor160f(str string, args ...interface{})

PrintlnColor160f wraps PrintlnColor160 and works with format strings.

func PrintlnColor161

func PrintlnColor161(str string)

PrintlnColor161 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor161f added in v1.6.0

func PrintlnColor161f(str string, args ...interface{})

PrintlnColor161f wraps PrintlnColor161 and works with format strings.

func PrintlnColor162

func PrintlnColor162(str string)

PrintlnColor162 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor162f added in v1.6.0

func PrintlnColor162f(str string, args ...interface{})

PrintlnColor162f wraps PrintlnColor162 and works with format strings.

func PrintlnColor163

func PrintlnColor163(str string)

PrintlnColor163 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor163f added in v1.6.0

func PrintlnColor163f(str string, args ...interface{})

PrintlnColor163f wraps PrintlnColor163 and works with format strings.

func PrintlnColor164

func PrintlnColor164(str string)

PrintlnColor164 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor164f added in v1.6.0

func PrintlnColor164f(str string, args ...interface{})

PrintlnColor164f wraps PrintlnColor164 and works with format strings.

func PrintlnColor165

func PrintlnColor165(str string)

PrintlnColor165 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor165f added in v1.6.0

func PrintlnColor165f(str string, args ...interface{})

PrintlnColor165f wraps PrintlnColor165 and works with format strings.

func PrintlnColor166

func PrintlnColor166(str string)

PrintlnColor166 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor166f added in v1.6.0

func PrintlnColor166f(str string, args ...interface{})

PrintlnColor166f wraps PrintlnColor166 and works with format strings.

func PrintlnColor167

func PrintlnColor167(str string)

PrintlnColor167 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor167f added in v1.6.0

func PrintlnColor167f(str string, args ...interface{})

PrintlnColor167f wraps PrintlnColor167 and works with format strings.

func PrintlnColor168

func PrintlnColor168(str string)

PrintlnColor168 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor168f added in v1.6.0

func PrintlnColor168f(str string, args ...interface{})

PrintlnColor168f wraps PrintlnColor168 and works with format strings.

func PrintlnColor169

func PrintlnColor169(str string)

PrintlnColor169 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor169f added in v1.6.0

func PrintlnColor169f(str string, args ...interface{})

PrintlnColor169f wraps PrintlnColor169 and works with format strings.

func PrintlnColor170

func PrintlnColor170(str string)

PrintlnColor170 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor170f added in v1.6.0

func PrintlnColor170f(str string, args ...interface{})

PrintlnColor170f wraps PrintlnColor170 and works with format strings.

func PrintlnColor171

func PrintlnColor171(str string)

PrintlnColor171 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor171f added in v1.6.0

func PrintlnColor171f(str string, args ...interface{})

PrintlnColor171f wraps PrintlnColor171 and works with format strings.

func PrintlnColor172

func PrintlnColor172(str string)

PrintlnColor172 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor172f added in v1.6.0

func PrintlnColor172f(str string, args ...interface{})

PrintlnColor172f wraps PrintlnColor172 and works with format strings.

func PrintlnColor173

func PrintlnColor173(str string)

PrintlnColor173 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor173f added in v1.6.0

func PrintlnColor173f(str string, args ...interface{})

PrintlnColor173f wraps PrintlnColor173 and works with format strings.

func PrintlnColor174

func PrintlnColor174(str string)

PrintlnColor174 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor174f added in v1.6.0

func PrintlnColor174f(str string, args ...interface{})

PrintlnColor174f wraps PrintlnColor174 and works with format strings.

func PrintlnColor175

func PrintlnColor175(str string)

PrintlnColor175 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor175f added in v1.6.0

func PrintlnColor175f(str string, args ...interface{})

PrintlnColor175f wraps PrintlnColor175 and works with format strings.

func PrintlnColor176

func PrintlnColor176(str string)

PrintlnColor176 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor176f added in v1.6.0

func PrintlnColor176f(str string, args ...interface{})

PrintlnColor176f wraps PrintlnColor176 and works with format strings.

func PrintlnColor177

func PrintlnColor177(str string)

PrintlnColor177 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor177f added in v1.6.0

func PrintlnColor177f(str string, args ...interface{})

PrintlnColor177f wraps PrintlnColor177 and works with format strings.

func PrintlnColor178

func PrintlnColor178(str string)

PrintlnColor178 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor178f added in v1.6.0

func PrintlnColor178f(str string, args ...interface{})

PrintlnColor178f wraps PrintlnColor178 and works with format strings.

func PrintlnColor179

func PrintlnColor179(str string)

PrintlnColor179 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor179f added in v1.6.0

func PrintlnColor179f(str string, args ...interface{})

PrintlnColor179f wraps PrintlnColor179 and works with format strings.

func PrintlnColor180

func PrintlnColor180(str string)

PrintlnColor180 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor180f added in v1.6.0

func PrintlnColor180f(str string, args ...interface{})

PrintlnColor180f wraps PrintlnColor180 and works with format strings.

func PrintlnColor181

func PrintlnColor181(str string)

PrintlnColor181 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor181f added in v1.6.0

func PrintlnColor181f(str string, args ...interface{})

PrintlnColor181f wraps PrintlnColor181 and works with format strings.

func PrintlnColor182

func PrintlnColor182(str string)

PrintlnColor182 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor182f added in v1.6.0

func PrintlnColor182f(str string, args ...interface{})

PrintlnColor182f wraps PrintlnColor182 and works with format strings.

func PrintlnColor183

func PrintlnColor183(str string)

PrintlnColor183 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor183f added in v1.6.0

func PrintlnColor183f(str string, args ...interface{})

PrintlnColor183f wraps PrintlnColor183 and works with format strings.

func PrintlnColor184

func PrintlnColor184(str string)

PrintlnColor184 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor184f added in v1.6.0

func PrintlnColor184f(str string, args ...interface{})

PrintlnColor184f wraps PrintlnColor184 and works with format strings.

func PrintlnColor185

func PrintlnColor185(str string)

PrintlnColor185 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor185f added in v1.6.0

func PrintlnColor185f(str string, args ...interface{})

PrintlnColor185f wraps PrintlnColor185 and works with format strings.

func PrintlnColor186

func PrintlnColor186(str string)

PrintlnColor186 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor186f added in v1.6.0

func PrintlnColor186f(str string, args ...interface{})

PrintlnColor186f wraps PrintlnColor186 and works with format strings.

func PrintlnColor187

func PrintlnColor187(str string)

PrintlnColor187 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor187f added in v1.6.0

func PrintlnColor187f(str string, args ...interface{})

PrintlnColor187f wraps PrintlnColor187 and works with format strings.

func PrintlnColor188

func PrintlnColor188(str string)

PrintlnColor188 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor188f added in v1.6.0

func PrintlnColor188f(str string, args ...interface{})

PrintlnColor188f wraps PrintlnColor188 and works with format strings.

func PrintlnColor189

func PrintlnColor189(str string)

PrintlnColor189 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor189f added in v1.6.0

func PrintlnColor189f(str string, args ...interface{})

PrintlnColor189f wraps PrintlnColor189 and works with format strings.

func PrintlnColor190

func PrintlnColor190(str string)

PrintlnColor190 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor190f added in v1.6.0

func PrintlnColor190f(str string, args ...interface{})

PrintlnColor190f wraps PrintlnColor190 and works with format strings.

func PrintlnColor191

func PrintlnColor191(str string)

PrintlnColor191 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor191f added in v1.6.0

func PrintlnColor191f(str string, args ...interface{})

PrintlnColor191f wraps PrintlnColor191 and works with format strings.

func PrintlnColor192

func PrintlnColor192(str string)

PrintlnColor192 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor192f added in v1.6.0

func PrintlnColor192f(str string, args ...interface{})

PrintlnColor192f wraps PrintlnColor192 and works with format strings.

func PrintlnColor193

func PrintlnColor193(str string)

PrintlnColor193 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor193f added in v1.6.0

func PrintlnColor193f(str string, args ...interface{})

PrintlnColor193f wraps PrintlnColor193 and works with format strings.

func PrintlnColor194

func PrintlnColor194(str string)

PrintlnColor194 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor194f added in v1.6.0

func PrintlnColor194f(str string, args ...interface{})

PrintlnColor194f wraps PrintlnColor194 and works with format strings.

func PrintlnColor195

func PrintlnColor195(str string)

PrintlnColor195 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor195f added in v1.6.0

func PrintlnColor195f(str string, args ...interface{})

PrintlnColor195f wraps PrintlnColor195 and works with format strings.

func PrintlnColor196

func PrintlnColor196(str string)

PrintlnColor196 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor196f added in v1.6.0

func PrintlnColor196f(str string, args ...interface{})

PrintlnColor196f wraps PrintlnColor196 and works with format strings.

func PrintlnColor197

func PrintlnColor197(str string)

PrintlnColor197 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor197f added in v1.6.0

func PrintlnColor197f(str string, args ...interface{})

PrintlnColor197f wraps PrintlnColor197 and works with format strings.

func PrintlnColor198

func PrintlnColor198(str string)

PrintlnColor198 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor198f added in v1.6.0

func PrintlnColor198f(str string, args ...interface{})

PrintlnColor198f wraps PrintlnColor198 and works with format strings.

func PrintlnColor199

func PrintlnColor199(str string)

PrintlnColor199 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor199f added in v1.6.0

func PrintlnColor199f(str string, args ...interface{})

PrintlnColor199f wraps PrintlnColor199 and works with format strings.

func PrintlnColor200

func PrintlnColor200(str string)

PrintlnColor200 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor200f added in v1.6.0

func PrintlnColor200f(str string, args ...interface{})

PrintlnColor200f wraps PrintlnColor200 and works with format strings.

func PrintlnColor201

func PrintlnColor201(str string)

PrintlnColor201 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor201f added in v1.6.0

func PrintlnColor201f(str string, args ...interface{})

PrintlnColor201f wraps PrintlnColor201 and works with format strings.

func PrintlnColor202

func PrintlnColor202(str string)

PrintlnColor202 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor202f added in v1.6.0

func PrintlnColor202f(str string, args ...interface{})

PrintlnColor202f wraps PrintlnColor202 and works with format strings.

func PrintlnColor203

func PrintlnColor203(str string)

PrintlnColor203 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor203f added in v1.6.0

func PrintlnColor203f(str string, args ...interface{})

PrintlnColor203f wraps PrintlnColor203 and works with format strings.

func PrintlnColor204

func PrintlnColor204(str string)

PrintlnColor204 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor204f added in v1.6.0

func PrintlnColor204f(str string, args ...interface{})

PrintlnColor204f wraps PrintlnColor204 and works with format strings.

func PrintlnColor205

func PrintlnColor205(str string)

PrintlnColor205 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor205f added in v1.6.0

func PrintlnColor205f(str string, args ...interface{})

PrintlnColor205f wraps PrintlnColor205 and works with format strings.

func PrintlnColor206

func PrintlnColor206(str string)

PrintlnColor206 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor206f added in v1.6.0

func PrintlnColor206f(str string, args ...interface{})

PrintlnColor206f wraps PrintlnColor206 and works with format strings.

func PrintlnColor207

func PrintlnColor207(str string)

PrintlnColor207 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor207f added in v1.6.0

func PrintlnColor207f(str string, args ...interface{})

PrintlnColor207f wraps PrintlnColor207 and works with format strings.

func PrintlnColor208

func PrintlnColor208(str string)

PrintlnColor208 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor208f added in v1.6.0

func PrintlnColor208f(str string, args ...interface{})

PrintlnColor208f wraps PrintlnColor208 and works with format strings.

func PrintlnColor209

func PrintlnColor209(str string)

PrintlnColor209 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor209f added in v1.6.0

func PrintlnColor209f(str string, args ...interface{})

PrintlnColor209f wraps PrintlnColor209 and works with format strings.

func PrintlnColor210

func PrintlnColor210(str string)

PrintlnColor210 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor210f added in v1.6.0

func PrintlnColor210f(str string, args ...interface{})

PrintlnColor210f wraps PrintlnColor210 and works with format strings.

func PrintlnColor211

func PrintlnColor211(str string)

PrintlnColor211 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor211f added in v1.6.0

func PrintlnColor211f(str string, args ...interface{})

PrintlnColor211f wraps PrintlnColor211 and works with format strings.

func PrintlnColor212

func PrintlnColor212(str string)

PrintlnColor212 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor212f added in v1.6.0

func PrintlnColor212f(str string, args ...interface{})

PrintlnColor212f wraps PrintlnColor212 and works with format strings.

func PrintlnColor213

func PrintlnColor213(str string)

PrintlnColor213 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor213f added in v1.6.0

func PrintlnColor213f(str string, args ...interface{})

PrintlnColor213f wraps PrintlnColor213 and works with format strings.

func PrintlnColor214

func PrintlnColor214(str string)

PrintlnColor214 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor214f added in v1.6.0

func PrintlnColor214f(str string, args ...interface{})

PrintlnColor214f wraps PrintlnColor214 and works with format strings.

func PrintlnColor215

func PrintlnColor215(str string)

PrintlnColor215 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor215f added in v1.6.0

func PrintlnColor215f(str string, args ...interface{})

PrintlnColor215f wraps PrintlnColor215 and works with format strings.

func PrintlnColor216

func PrintlnColor216(str string)

PrintlnColor216 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor216f added in v1.6.0

func PrintlnColor216f(str string, args ...interface{})

PrintlnColor216f wraps PrintlnColor216 and works with format strings.

func PrintlnColor217

func PrintlnColor217(str string)

PrintlnColor217 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor217f added in v1.6.0

func PrintlnColor217f(str string, args ...interface{})

PrintlnColor217f wraps PrintlnColor217 and works with format strings.

func PrintlnColor218

func PrintlnColor218(str string)

PrintlnColor218 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor218f added in v1.6.0

func PrintlnColor218f(str string, args ...interface{})

PrintlnColor218f wraps PrintlnColor218 and works with format strings.

func PrintlnColor219

func PrintlnColor219(str string)

PrintlnColor219 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor219f added in v1.6.0

func PrintlnColor219f(str string, args ...interface{})

PrintlnColor219f wraps PrintlnColor219 and works with format strings.

func PrintlnColor220

func PrintlnColor220(str string)

PrintlnColor220 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor220f added in v1.6.0

func PrintlnColor220f(str string, args ...interface{})

PrintlnColor220f wraps PrintlnColor220 and works with format strings.

func PrintlnColor221

func PrintlnColor221(str string)

PrintlnColor221 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor221f added in v1.6.0

func PrintlnColor221f(str string, args ...interface{})

PrintlnColor221f wraps PrintlnColor221 and works with format strings.

func PrintlnColor222

func PrintlnColor222(str string)

PrintlnColor222 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor222f added in v1.6.0

func PrintlnColor222f(str string, args ...interface{})

PrintlnColor222f wraps PrintlnColor222 and works with format strings.

func PrintlnColor223

func PrintlnColor223(str string)

PrintlnColor223 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor223f added in v1.6.0

func PrintlnColor223f(str string, args ...interface{})

PrintlnColor223f wraps PrintlnColor223 and works with format strings.

func PrintlnColor224

func PrintlnColor224(str string)

PrintlnColor224 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor224f added in v1.6.0

func PrintlnColor224f(str string, args ...interface{})

PrintlnColor224f wraps PrintlnColor224 and works with format strings.

func PrintlnColor225

func PrintlnColor225(str string)

PrintlnColor225 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor225f added in v1.6.0

func PrintlnColor225f(str string, args ...interface{})

PrintlnColor225f wraps PrintlnColor225 and works with format strings.

func PrintlnColor226

func PrintlnColor226(str string)

PrintlnColor226 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor226f added in v1.6.0

func PrintlnColor226f(str string, args ...interface{})

PrintlnColor226f wraps PrintlnColor226 and works with format strings.

func PrintlnColor227

func PrintlnColor227(str string)

PrintlnColor227 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor227f added in v1.6.0

func PrintlnColor227f(str string, args ...interface{})

PrintlnColor227f wraps PrintlnColor227 and works with format strings.

func PrintlnColor228

func PrintlnColor228(str string)

PrintlnColor228 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor228f added in v1.6.0

func PrintlnColor228f(str string, args ...interface{})

PrintlnColor228f wraps PrintlnColor228 and works with format strings.

func PrintlnColor229

func PrintlnColor229(str string)

PrintlnColor229 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor229f added in v1.6.0

func PrintlnColor229f(str string, args ...interface{})

PrintlnColor229f wraps PrintlnColor229 and works with format strings.

func PrintlnColor230

func PrintlnColor230(str string)

PrintlnColor230 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor230f added in v1.6.0

func PrintlnColor230f(str string, args ...interface{})

PrintlnColor230f wraps PrintlnColor230 and works with format strings.

func PrintlnColor231

func PrintlnColor231(str string)

PrintlnColor231 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor231f added in v1.6.0

func PrintlnColor231f(str string, args ...interface{})

PrintlnColor231f wraps PrintlnColor231 and works with format strings.

func PrintlnColor232

func PrintlnColor232(str string)

PrintlnColor232 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor232f added in v1.6.0

func PrintlnColor232f(str string, args ...interface{})

PrintlnColor232f wraps PrintlnColor232 and works with format strings.

func PrintlnColor233

func PrintlnColor233(str string)

PrintlnColor233 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor233f added in v1.6.0

func PrintlnColor233f(str string, args ...interface{})

PrintlnColor233f wraps PrintlnColor233 and works with format strings.

func PrintlnColor234

func PrintlnColor234(str string)

PrintlnColor234 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor234f added in v1.6.0

func PrintlnColor234f(str string, args ...interface{})

PrintlnColor234f wraps PrintlnColor234 and works with format strings.

func PrintlnColor235

func PrintlnColor235(str string)

PrintlnColor235 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor235f added in v1.6.0

func PrintlnColor235f(str string, args ...interface{})

PrintlnColor235f wraps PrintlnColor235 and works with format strings.

func PrintlnColor236

func PrintlnColor236(str string)

PrintlnColor236 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor236f added in v1.6.0

func PrintlnColor236f(str string, args ...interface{})

PrintlnColor236f wraps PrintlnColor236 and works with format strings.

func PrintlnColor237

func PrintlnColor237(str string)

PrintlnColor237 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor237f added in v1.6.0

func PrintlnColor237f(str string, args ...interface{})

PrintlnColor237f wraps PrintlnColor237 and works with format strings.

func PrintlnColor238

func PrintlnColor238(str string)

PrintlnColor238 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor238f added in v1.6.0

func PrintlnColor238f(str string, args ...interface{})

PrintlnColor238f wraps PrintlnColor238 and works with format strings.

func PrintlnColor239

func PrintlnColor239(str string)

PrintlnColor239 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor239f added in v1.6.0

func PrintlnColor239f(str string, args ...interface{})

PrintlnColor239f wraps PrintlnColor239 and works with format strings.

func PrintlnColor240

func PrintlnColor240(str string)

PrintlnColor240 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor240f added in v1.6.0

func PrintlnColor240f(str string, args ...interface{})

PrintlnColor240f wraps PrintlnColor240 and works with format strings.

func PrintlnColor241

func PrintlnColor241(str string)

PrintlnColor241 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor241f added in v1.6.0

func PrintlnColor241f(str string, args ...interface{})

PrintlnColor241f wraps PrintlnColor241 and works with format strings.

func PrintlnColor242

func PrintlnColor242(str string)

PrintlnColor242 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor242f added in v1.6.0

func PrintlnColor242f(str string, args ...interface{})

PrintlnColor242f wraps PrintlnColor242 and works with format strings.

func PrintlnColor243

func PrintlnColor243(str string)

PrintlnColor243 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor243f added in v1.6.0

func PrintlnColor243f(str string, args ...interface{})

PrintlnColor243f wraps PrintlnColor243 and works with format strings.

func PrintlnColor244

func PrintlnColor244(str string)

PrintlnColor244 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor244f added in v1.6.0

func PrintlnColor244f(str string, args ...interface{})

PrintlnColor244f wraps PrintlnColor244 and works with format strings.

func PrintlnColor245

func PrintlnColor245(str string)

PrintlnColor245 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor245f added in v1.6.0

func PrintlnColor245f(str string, args ...interface{})

PrintlnColor245f wraps PrintlnColor245 and works with format strings.

func PrintlnColor246

func PrintlnColor246(str string)

PrintlnColor246 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor246f added in v1.6.0

func PrintlnColor246f(str string, args ...interface{})

PrintlnColor246f wraps PrintlnColor246 and works with format strings.

func PrintlnColor247

func PrintlnColor247(str string)

PrintlnColor247 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor247f added in v1.6.0

func PrintlnColor247f(str string, args ...interface{})

PrintlnColor247f wraps PrintlnColor247 and works with format strings.

func PrintlnColor248

func PrintlnColor248(str string)

PrintlnColor248 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor248f added in v1.6.0

func PrintlnColor248f(str string, args ...interface{})

PrintlnColor248f wraps PrintlnColor248 and works with format strings.

func PrintlnColor249

func PrintlnColor249(str string)

PrintlnColor249 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor249f added in v1.6.0

func PrintlnColor249f(str string, args ...interface{})

PrintlnColor249f wraps PrintlnColor249 and works with format strings.

func PrintlnColor250

func PrintlnColor250(str string)

PrintlnColor250 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor250f added in v1.6.0

func PrintlnColor250f(str string, args ...interface{})

PrintlnColor250f wraps PrintlnColor250 and works with format strings.

func PrintlnColor251

func PrintlnColor251(str string)

PrintlnColor251 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor251f added in v1.6.0

func PrintlnColor251f(str string, args ...interface{})

PrintlnColor251f wraps PrintlnColor251 and works with format strings.

func PrintlnColor252

func PrintlnColor252(str string)

PrintlnColor252 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor252f added in v1.6.0

func PrintlnColor252f(str string, args ...interface{})

PrintlnColor252f wraps PrintlnColor252 and works with format strings.

func PrintlnColor253

func PrintlnColor253(str string)

PrintlnColor253 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor253f added in v1.6.0

func PrintlnColor253f(str string, args ...interface{})

PrintlnColor253f wraps PrintlnColor253 and works with format strings.

func PrintlnColor254

func PrintlnColor254(str string)

PrintlnColor254 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor254f added in v1.6.0

func PrintlnColor254f(str string, args ...interface{})

PrintlnColor254f wraps PrintlnColor254 and works with format strings.

func PrintlnColor255

func PrintlnColor255(str string)

PrintlnColor255 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnColor255f added in v1.6.0

func PrintlnColor255f(str string, args ...interface{})

PrintlnColor255f wraps PrintlnColor255 and works with format strings.

func PrintlnConceal

func PrintlnConceal(str string)

PrintlnConceal will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnConcealf added in v1.6.0

func PrintlnConcealf(str string, args ...interface{})

PrintlnConcealf wraps PrintlnConceal and works with format strings.

func PrintlnCrossedOut

func PrintlnCrossedOut(str string)

PrintlnCrossedOut will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnCrossedOutf added in v1.6.0

func PrintlnCrossedOutf(str string, args ...interface{})

PrintlnCrossedOutf wraps PrintlnCrossedOut and works with format strings.

func PrintlnCyan

func PrintlnCyan(str string)

PrintlnCyan will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnCyanf added in v1.6.0

func PrintlnCyanf(str string, args ...interface{})

PrintlnCyanf wraps PrintlnCyan and works with format strings.

func PrintlnDefault

func PrintlnDefault(str string)

PrintlnDefault will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnDefaultf added in v1.6.0

func PrintlnDefaultf(str string, args ...interface{})

PrintlnDefaultf wraps PrintlnDefault and works with format strings.

func PrintlnDim

func PrintlnDim(str string)

PrintlnDim will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnDimf added in v1.6.0

func PrintlnDimf(str string, args ...interface{})

PrintlnDimf wraps PrintlnDim and works with format strings.

func PrintlnFaint

func PrintlnFaint(str string)

PrintlnFaint will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnFaintf added in v1.6.0

func PrintlnFaintf(str string, args ...interface{})

PrintlnFaintf wraps PrintlnFaint and works with format strings.

func PrintlnFraktur

func PrintlnFraktur(str string)

PrintlnFraktur will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnFrakturf added in v1.6.0

func PrintlnFrakturf(str string, args ...interface{})

PrintlnFrakturf wraps PrintlnFraktur and works with format strings.

func PrintlnGreen

func PrintlnGreen(str string)

PrintlnGreen will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnGreenf added in v1.6.0

func PrintlnGreenf(str string, args ...interface{})

PrintlnGreenf wraps PrintlnGreen and works with format strings.

func PrintlnHex

func PrintlnHex(hex string, str string)

PrintlnHex will take a hex color code and print a line with ANSI escape codes.

func PrintlnHexf added in v1.6.0

func PrintlnHexf(hex string, str string, args ...interface{})

PrintlnHexf wraps PrintlnHex and works with format strings.

func PrintlnHide

func PrintlnHide(str string)

PrintlnHide will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnHidef added in v1.6.0

func PrintlnHidef(str string, args ...interface{})

PrintlnHidef wraps PrintlnHide and works with format strings.

func PrintlnHilight

func PrintlnHilight(code string, str string)

PrintlnHilight will print a line with an ANSI escape code.

func PrintlnHilightf added in v1.6.0

func PrintlnHilightf(code string, str string, args ...interface{})

PrintlnHilightf wraps PrintlnHilight and works with format strings.

func PrintlnHilights

func PrintlnHilights(codes []string, str string)

PrintlnHilights will print a line with ANSI escape codes.

func PrintlnHilightsf added in v1.6.0

func PrintlnHilightsf(codes []string, str string, args ...interface{})

PrintlnHilightsf wraps PrintlnHilights and works with format strings.

func PrintlnInverse

func PrintlnInverse(str string)

PrintlnInverse will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnInversef added in v1.6.0

func PrintlnInversef(str string, args ...interface{})

PrintlnInversef wraps PrintlnInverse and works with format strings.

func PrintlnItalic

func PrintlnItalic(str string)

PrintlnItalic will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnItalicf added in v1.6.0

func PrintlnItalicf(str string, args ...interface{})

PrintlnItalicf wraps PrintlnItalic and works with format strings.

func PrintlnLightBlack

func PrintlnLightBlack(str string)

PrintlnLightBlack will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnLightBlackf added in v1.6.0

func PrintlnLightBlackf(str string, args ...interface{})

PrintlnLightBlackf wraps PrintlnLightBlack and works with format strings.

func PrintlnLightBlue

func PrintlnLightBlue(str string)

PrintlnLightBlue will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnLightBluef added in v1.6.0

func PrintlnLightBluef(str string, args ...interface{})

PrintlnLightBluef wraps PrintlnLightBlue and works with format strings.

func PrintlnLightCyan

func PrintlnLightCyan(str string)

PrintlnLightCyan will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnLightCyanf added in v1.6.0

func PrintlnLightCyanf(str string, args ...interface{})

PrintlnLightCyanf wraps PrintlnLightCyan and works with format strings.

func PrintlnLightGreen

func PrintlnLightGreen(str string)

PrintlnLightGreen will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnLightGreenf added in v1.6.0

func PrintlnLightGreenf(str string, args ...interface{})

PrintlnLightGreenf wraps PrintlnLightGreen and works with format strings.

func PrintlnLightMagenta

func PrintlnLightMagenta(str string)

PrintlnLightMagenta will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnLightMagentaf added in v1.6.0

func PrintlnLightMagentaf(str string, args ...interface{})

PrintlnLightMagentaf wraps PrintlnLightMagenta and works with format strings.

func PrintlnLightRed

func PrintlnLightRed(str string)

PrintlnLightRed will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnLightRedf added in v1.6.0

func PrintlnLightRedf(str string, args ...interface{})

PrintlnLightRedf wraps PrintlnLightRed and works with format strings.

func PrintlnLightWhite

func PrintlnLightWhite(str string)

PrintlnLightWhite will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnLightWhitef added in v1.6.0

func PrintlnLightWhitef(str string, args ...interface{})

PrintlnLightWhitef wraps PrintlnLightWhite and works with format strings.

func PrintlnLightYellow

func PrintlnLightYellow(str string)

PrintlnLightYellow will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnLightYellowf added in v1.6.0

func PrintlnLightYellowf(str string, args ...interface{})

PrintlnLightYellowf wraps PrintlnLightYellow and works with format strings.

func PrintlnMagenta

func PrintlnMagenta(str string)

PrintlnMagenta will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnMagentaf added in v1.6.0

func PrintlnMagentaf(str string, args ...interface{})

PrintlnMagentaf wraps PrintlnMagenta and works with format strings.

func PrintlnNegative

func PrintlnNegative(str string)

PrintlnNegative will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnNegativef added in v1.6.0

func PrintlnNegativef(str string, args ...interface{})

PrintlnNegativef wraps PrintlnNegative and works with format strings.

func PrintlnNoBlink(str string)

PrintlnNoBlink will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnNoBlinkRapid

func PrintlnNoBlinkRapid(str string)

PrintlnNoBlinkRapid will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnNoBlinkRapidf added in v1.6.0

func PrintlnNoBlinkRapidf(str string, args ...interface{})

PrintlnNoBlinkRapidf wraps PrintlnNoBlinkRapid and works with format strings.

func PrintlnNoBlinkSlow

func PrintlnNoBlinkSlow(str string)

PrintlnNoBlinkSlow will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnNoBlinkSlowf added in v1.6.0

func PrintlnNoBlinkSlowf(str string, args ...interface{})

PrintlnNoBlinkSlowf wraps PrintlnNoBlinkSlow and works with format strings.

func PrintlnNoBlinkf added in v1.6.0

func PrintlnNoBlinkf(str string, args ...interface{})

PrintlnNoBlinkf wraps PrintlnNoBlink and works with format strings.

func PrintlnNoBold

func PrintlnNoBold(str string)

PrintlnNoBold will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnNoBoldf added in v1.6.0

func PrintlnNoBoldf(str string, args ...interface{})

PrintlnNoBoldf wraps PrintlnNoBold and works with format strings.

func PrintlnNoConceal

func PrintlnNoConceal(str string)

PrintlnNoConceal will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnNoConcealf added in v1.6.0

func PrintlnNoConcealf(str string, args ...interface{})

PrintlnNoConcealf wraps PrintlnNoConceal and works with format strings.

func PrintlnNoCrossedOut

func PrintlnNoCrossedOut(str string)

PrintlnNoCrossedOut will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnNoCrossedOutf added in v1.6.0

func PrintlnNoCrossedOutf(str string, args ...interface{})

PrintlnNoCrossedOutf wraps PrintlnNoCrossedOut and works with format strings.

func PrintlnNoDim

func PrintlnNoDim(str string)

PrintlnNoDim will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnNoDimf added in v1.6.0

func PrintlnNoDimf(str string, args ...interface{})

PrintlnNoDimf wraps PrintlnNoDim and works with format strings.

func PrintlnNoFaint

func PrintlnNoFaint(str string)

PrintlnNoFaint will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnNoFaintf added in v1.6.0

func PrintlnNoFaintf(str string, args ...interface{})

PrintlnNoFaintf wraps PrintlnNoFaint and works with format strings.

func PrintlnNoFraktur

func PrintlnNoFraktur(str string)

PrintlnNoFraktur will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnNoFrakturf added in v1.6.0

func PrintlnNoFrakturf(str string, args ...interface{})

PrintlnNoFrakturf wraps PrintlnNoFraktur and works with format strings.

func PrintlnNoHide

func PrintlnNoHide(str string)

PrintlnNoHide will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnNoHidef added in v1.6.0

func PrintlnNoHidef(str string, args ...interface{})

PrintlnNoHidef wraps PrintlnNoHide and works with format strings.

func PrintlnNoInverse

func PrintlnNoInverse(str string)

PrintlnNoInverse will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnNoInversef added in v1.6.0

func PrintlnNoInversef(str string, args ...interface{})

PrintlnNoInversef wraps PrintlnNoInverse and works with format strings.

func PrintlnNoItalic

func PrintlnNoItalic(str string)

PrintlnNoItalic will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnNoItalicf added in v1.6.0

func PrintlnNoItalicf(str string, args ...interface{})

PrintlnNoItalicf wraps PrintlnNoItalic and works with format strings.

func PrintlnNoNegative

func PrintlnNoNegative(str string)

PrintlnNoNegative will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnNoNegativef added in v1.6.0

func PrintlnNoNegativef(str string, args ...interface{})

PrintlnNoNegativef wraps PrintlnNoNegative and works with format strings.

func PrintlnNoStrikethrough

func PrintlnNoStrikethrough(str string)

PrintlnNoStrikethrough will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnNoStrikethroughf added in v1.6.0

func PrintlnNoStrikethroughf(str string, args ...interface{})

PrintlnNoStrikethroughf wraps PrintlnNoStrikethrough and works with format strings.

func PrintlnNoSwap

func PrintlnNoSwap(str string)

PrintlnNoSwap will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnNoSwapf added in v1.6.0

func PrintlnNoSwapf(str string, args ...interface{})

PrintlnNoSwapf wraps PrintlnNoSwap and works with format strings.

func PrintlnNoUnderline

func PrintlnNoUnderline(str string)

PrintlnNoUnderline will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnNoUnderlinef added in v1.6.0

func PrintlnNoUnderlinef(str string, args ...interface{})

PrintlnNoUnderlinef wraps PrintlnNoUnderline and works with format strings.

func PrintlnNormal

func PrintlnNormal(str string)

PrintlnNormal will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnNormalf added in v1.6.0

func PrintlnNormalf(str string, args ...interface{})

PrintlnNormalf wraps PrintlnNormal and works with format strings.

func PrintlnOnBlack

func PrintlnOnBlack(str string)

PrintlnOnBlack will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnBlackf added in v1.6.0

func PrintlnOnBlackf(str string, args ...interface{})

PrintlnOnBlackf wraps PrintlnOnBlack and works with format strings.

func PrintlnOnBlue

func PrintlnOnBlue(str string)

PrintlnOnBlue will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnBluef added in v1.6.0

func PrintlnOnBluef(str string, args ...interface{})

PrintlnOnBluef wraps PrintlnOnBlue and works with format strings.

func PrintlnOnColor000

func PrintlnOnColor000(str string)

PrintlnOnColor000 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor000f added in v1.6.0

func PrintlnOnColor000f(str string, args ...interface{})

PrintlnOnColor000f wraps PrintlnOnColor000 and works with format strings.

func PrintlnOnColor001

func PrintlnOnColor001(str string)

PrintlnOnColor001 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor001f added in v1.6.0

func PrintlnOnColor001f(str string, args ...interface{})

PrintlnOnColor001f wraps PrintlnOnColor001 and works with format strings.

func PrintlnOnColor002

func PrintlnOnColor002(str string)

PrintlnOnColor002 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor002f added in v1.6.0

func PrintlnOnColor002f(str string, args ...interface{})

PrintlnOnColor002f wraps PrintlnOnColor002 and works with format strings.

func PrintlnOnColor003

func PrintlnOnColor003(str string)

PrintlnOnColor003 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor003f added in v1.6.0

func PrintlnOnColor003f(str string, args ...interface{})

PrintlnOnColor003f wraps PrintlnOnColor003 and works with format strings.

func PrintlnOnColor004

func PrintlnOnColor004(str string)

PrintlnOnColor004 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor004f added in v1.6.0

func PrintlnOnColor004f(str string, args ...interface{})

PrintlnOnColor004f wraps PrintlnOnColor004 and works with format strings.

func PrintlnOnColor005

func PrintlnOnColor005(str string)

PrintlnOnColor005 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor005f added in v1.6.0

func PrintlnOnColor005f(str string, args ...interface{})

PrintlnOnColor005f wraps PrintlnOnColor005 and works with format strings.

func PrintlnOnColor006

func PrintlnOnColor006(str string)

PrintlnOnColor006 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor006f added in v1.6.0

func PrintlnOnColor006f(str string, args ...interface{})

PrintlnOnColor006f wraps PrintlnOnColor006 and works with format strings.

func PrintlnOnColor007

func PrintlnOnColor007(str string)

PrintlnOnColor007 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor007f added in v1.6.0

func PrintlnOnColor007f(str string, args ...interface{})

PrintlnOnColor007f wraps PrintlnOnColor007 and works with format strings.

func PrintlnOnColor008

func PrintlnOnColor008(str string)

PrintlnOnColor008 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor008f added in v1.6.0

func PrintlnOnColor008f(str string, args ...interface{})

PrintlnOnColor008f wraps PrintlnOnColor008 and works with format strings.

func PrintlnOnColor009

func PrintlnOnColor009(str string)

PrintlnOnColor009 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor009f added in v1.6.0

func PrintlnOnColor009f(str string, args ...interface{})

PrintlnOnColor009f wraps PrintlnOnColor009 and works with format strings.

func PrintlnOnColor010

func PrintlnOnColor010(str string)

PrintlnOnColor010 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor010f added in v1.6.0

func PrintlnOnColor010f(str string, args ...interface{})

PrintlnOnColor010f wraps PrintlnOnColor010 and works with format strings.

func PrintlnOnColor011

func PrintlnOnColor011(str string)

PrintlnOnColor011 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor011f added in v1.6.0

func PrintlnOnColor011f(str string, args ...interface{})

PrintlnOnColor011f wraps PrintlnOnColor011 and works with format strings.

func PrintlnOnColor012

func PrintlnOnColor012(str string)

PrintlnOnColor012 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor012f added in v1.6.0

func PrintlnOnColor012f(str string, args ...interface{})

PrintlnOnColor012f wraps PrintlnOnColor012 and works with format strings.

func PrintlnOnColor013

func PrintlnOnColor013(str string)

PrintlnOnColor013 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor013f added in v1.6.0

func PrintlnOnColor013f(str string, args ...interface{})

PrintlnOnColor013f wraps PrintlnOnColor013 and works with format strings.

func PrintlnOnColor014

func PrintlnOnColor014(str string)

PrintlnOnColor014 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor014f added in v1.6.0

func PrintlnOnColor014f(str string, args ...interface{})

PrintlnOnColor014f wraps PrintlnOnColor014 and works with format strings.

func PrintlnOnColor015

func PrintlnOnColor015(str string)

PrintlnOnColor015 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor015f added in v1.6.0

func PrintlnOnColor015f(str string, args ...interface{})

PrintlnOnColor015f wraps PrintlnOnColor015 and works with format strings.

func PrintlnOnColor016

func PrintlnOnColor016(str string)

PrintlnOnColor016 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor016f added in v1.6.0

func PrintlnOnColor016f(str string, args ...interface{})

PrintlnOnColor016f wraps PrintlnOnColor016 and works with format strings.

func PrintlnOnColor017

func PrintlnOnColor017(str string)

PrintlnOnColor017 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor017f added in v1.6.0

func PrintlnOnColor017f(str string, args ...interface{})

PrintlnOnColor017f wraps PrintlnOnColor017 and works with format strings.

func PrintlnOnColor018

func PrintlnOnColor018(str string)

PrintlnOnColor018 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor018f added in v1.6.0

func PrintlnOnColor018f(str string, args ...interface{})

PrintlnOnColor018f wraps PrintlnOnColor018 and works with format strings.

func PrintlnOnColor019

func PrintlnOnColor019(str string)

PrintlnOnColor019 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor019f added in v1.6.0

func PrintlnOnColor019f(str string, args ...interface{})

PrintlnOnColor019f wraps PrintlnOnColor019 and works with format strings.

func PrintlnOnColor020

func PrintlnOnColor020(str string)

PrintlnOnColor020 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor020f added in v1.6.0

func PrintlnOnColor020f(str string, args ...interface{})

PrintlnOnColor020f wraps PrintlnOnColor020 and works with format strings.

func PrintlnOnColor021

func PrintlnOnColor021(str string)

PrintlnOnColor021 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor021f added in v1.6.0

func PrintlnOnColor021f(str string, args ...interface{})

PrintlnOnColor021f wraps PrintlnOnColor021 and works with format strings.

func PrintlnOnColor022

func PrintlnOnColor022(str string)

PrintlnOnColor022 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor022f added in v1.6.0

func PrintlnOnColor022f(str string, args ...interface{})

PrintlnOnColor022f wraps PrintlnOnColor022 and works with format strings.

func PrintlnOnColor023

func PrintlnOnColor023(str string)

PrintlnOnColor023 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor023f added in v1.6.0

func PrintlnOnColor023f(str string, args ...interface{})

PrintlnOnColor023f wraps PrintlnOnColor023 and works with format strings.

func PrintlnOnColor024

func PrintlnOnColor024(str string)

PrintlnOnColor024 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor024f added in v1.6.0

func PrintlnOnColor024f(str string, args ...interface{})

PrintlnOnColor024f wraps PrintlnOnColor024 and works with format strings.

func PrintlnOnColor025

func PrintlnOnColor025(str string)

PrintlnOnColor025 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor025f added in v1.6.0

func PrintlnOnColor025f(str string, args ...interface{})

PrintlnOnColor025f wraps PrintlnOnColor025 and works with format strings.

func PrintlnOnColor026

func PrintlnOnColor026(str string)

PrintlnOnColor026 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor026f added in v1.6.0

func PrintlnOnColor026f(str string, args ...interface{})

PrintlnOnColor026f wraps PrintlnOnColor026 and works with format strings.

func PrintlnOnColor027

func PrintlnOnColor027(str string)

PrintlnOnColor027 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor027f added in v1.6.0

func PrintlnOnColor027f(str string, args ...interface{})

PrintlnOnColor027f wraps PrintlnOnColor027 and works with format strings.

func PrintlnOnColor028

func PrintlnOnColor028(str string)

PrintlnOnColor028 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor028f added in v1.6.0

func PrintlnOnColor028f(str string, args ...interface{})

PrintlnOnColor028f wraps PrintlnOnColor028 and works with format strings.

func PrintlnOnColor029

func PrintlnOnColor029(str string)

PrintlnOnColor029 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor029f added in v1.6.0

func PrintlnOnColor029f(str string, args ...interface{})

PrintlnOnColor029f wraps PrintlnOnColor029 and works with format strings.

func PrintlnOnColor030

func PrintlnOnColor030(str string)

PrintlnOnColor030 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor030f added in v1.6.0

func PrintlnOnColor030f(str string, args ...interface{})

PrintlnOnColor030f wraps PrintlnOnColor030 and works with format strings.

func PrintlnOnColor031

func PrintlnOnColor031(str string)

PrintlnOnColor031 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor031f added in v1.6.0

func PrintlnOnColor031f(str string, args ...interface{})

PrintlnOnColor031f wraps PrintlnOnColor031 and works with format strings.

func PrintlnOnColor032

func PrintlnOnColor032(str string)

PrintlnOnColor032 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor032f added in v1.6.0

func PrintlnOnColor032f(str string, args ...interface{})

PrintlnOnColor032f wraps PrintlnOnColor032 and works with format strings.

func PrintlnOnColor033

func PrintlnOnColor033(str string)

PrintlnOnColor033 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor033f added in v1.6.0

func PrintlnOnColor033f(str string, args ...interface{})

PrintlnOnColor033f wraps PrintlnOnColor033 and works with format strings.

func PrintlnOnColor034

func PrintlnOnColor034(str string)

PrintlnOnColor034 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor034f added in v1.6.0

func PrintlnOnColor034f(str string, args ...interface{})

PrintlnOnColor034f wraps PrintlnOnColor034 and works with format strings.

func PrintlnOnColor035

func PrintlnOnColor035(str string)

PrintlnOnColor035 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor035f added in v1.6.0

func PrintlnOnColor035f(str string, args ...interface{})

PrintlnOnColor035f wraps PrintlnOnColor035 and works with format strings.

func PrintlnOnColor036

func PrintlnOnColor036(str string)

PrintlnOnColor036 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor036f added in v1.6.0

func PrintlnOnColor036f(str string, args ...interface{})

PrintlnOnColor036f wraps PrintlnOnColor036 and works with format strings.

func PrintlnOnColor037

func PrintlnOnColor037(str string)

PrintlnOnColor037 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor037f added in v1.6.0

func PrintlnOnColor037f(str string, args ...interface{})

PrintlnOnColor037f wraps PrintlnOnColor037 and works with format strings.

func PrintlnOnColor038

func PrintlnOnColor038(str string)

PrintlnOnColor038 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor038f added in v1.6.0

func PrintlnOnColor038f(str string, args ...interface{})

PrintlnOnColor038f wraps PrintlnOnColor038 and works with format strings.

func PrintlnOnColor039

func PrintlnOnColor039(str string)

PrintlnOnColor039 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor039f added in v1.6.0

func PrintlnOnColor039f(str string, args ...interface{})

PrintlnOnColor039f wraps PrintlnOnColor039 and works with format strings.

func PrintlnOnColor040

func PrintlnOnColor040(str string)

PrintlnOnColor040 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor040f added in v1.6.0

func PrintlnOnColor040f(str string, args ...interface{})

PrintlnOnColor040f wraps PrintlnOnColor040 and works with format strings.

func PrintlnOnColor041

func PrintlnOnColor041(str string)

PrintlnOnColor041 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor041f added in v1.6.0

func PrintlnOnColor041f(str string, args ...interface{})

PrintlnOnColor041f wraps PrintlnOnColor041 and works with format strings.

func PrintlnOnColor042

func PrintlnOnColor042(str string)

PrintlnOnColor042 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor042f added in v1.6.0

func PrintlnOnColor042f(str string, args ...interface{})

PrintlnOnColor042f wraps PrintlnOnColor042 and works with format strings.

func PrintlnOnColor043

func PrintlnOnColor043(str string)

PrintlnOnColor043 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor043f added in v1.6.0

func PrintlnOnColor043f(str string, args ...interface{})

PrintlnOnColor043f wraps PrintlnOnColor043 and works with format strings.

func PrintlnOnColor044

func PrintlnOnColor044(str string)

PrintlnOnColor044 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor044f added in v1.6.0

func PrintlnOnColor044f(str string, args ...interface{})

PrintlnOnColor044f wraps PrintlnOnColor044 and works with format strings.

func PrintlnOnColor045

func PrintlnOnColor045(str string)

PrintlnOnColor045 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor045f added in v1.6.0

func PrintlnOnColor045f(str string, args ...interface{})

PrintlnOnColor045f wraps PrintlnOnColor045 and works with format strings.

func PrintlnOnColor046

func PrintlnOnColor046(str string)

PrintlnOnColor046 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor046f added in v1.6.0

func PrintlnOnColor046f(str string, args ...interface{})

PrintlnOnColor046f wraps PrintlnOnColor046 and works with format strings.

func PrintlnOnColor047

func PrintlnOnColor047(str string)

PrintlnOnColor047 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor047f added in v1.6.0

func PrintlnOnColor047f(str string, args ...interface{})

PrintlnOnColor047f wraps PrintlnOnColor047 and works with format strings.

func PrintlnOnColor048

func PrintlnOnColor048(str string)

PrintlnOnColor048 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor048f added in v1.6.0

func PrintlnOnColor048f(str string, args ...interface{})

PrintlnOnColor048f wraps PrintlnOnColor048 and works with format strings.

func PrintlnOnColor049

func PrintlnOnColor049(str string)

PrintlnOnColor049 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor049f added in v1.6.0

func PrintlnOnColor049f(str string, args ...interface{})

PrintlnOnColor049f wraps PrintlnOnColor049 and works with format strings.

func PrintlnOnColor050

func PrintlnOnColor050(str string)

PrintlnOnColor050 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor050f added in v1.6.0

func PrintlnOnColor050f(str string, args ...interface{})

PrintlnOnColor050f wraps PrintlnOnColor050 and works with format strings.

func PrintlnOnColor051

func PrintlnOnColor051(str string)

PrintlnOnColor051 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor051f added in v1.6.0

func PrintlnOnColor051f(str string, args ...interface{})

PrintlnOnColor051f wraps PrintlnOnColor051 and works with format strings.

func PrintlnOnColor052

func PrintlnOnColor052(str string)

PrintlnOnColor052 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor052f added in v1.6.0

func PrintlnOnColor052f(str string, args ...interface{})

PrintlnOnColor052f wraps PrintlnOnColor052 and works with format strings.

func PrintlnOnColor053

func PrintlnOnColor053(str string)

PrintlnOnColor053 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor053f added in v1.6.0

func PrintlnOnColor053f(str string, args ...interface{})

PrintlnOnColor053f wraps PrintlnOnColor053 and works with format strings.

func PrintlnOnColor054

func PrintlnOnColor054(str string)

PrintlnOnColor054 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor054f added in v1.6.0

func PrintlnOnColor054f(str string, args ...interface{})

PrintlnOnColor054f wraps PrintlnOnColor054 and works with format strings.

func PrintlnOnColor055

func PrintlnOnColor055(str string)

PrintlnOnColor055 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor055f added in v1.6.0

func PrintlnOnColor055f(str string, args ...interface{})

PrintlnOnColor055f wraps PrintlnOnColor055 and works with format strings.

func PrintlnOnColor056

func PrintlnOnColor056(str string)

PrintlnOnColor056 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor056f added in v1.6.0

func PrintlnOnColor056f(str string, args ...interface{})

PrintlnOnColor056f wraps PrintlnOnColor056 and works with format strings.

func PrintlnOnColor057

func PrintlnOnColor057(str string)

PrintlnOnColor057 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor057f added in v1.6.0

func PrintlnOnColor057f(str string, args ...interface{})

PrintlnOnColor057f wraps PrintlnOnColor057 and works with format strings.

func PrintlnOnColor058

func PrintlnOnColor058(str string)

PrintlnOnColor058 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor058f added in v1.6.0

func PrintlnOnColor058f(str string, args ...interface{})

PrintlnOnColor058f wraps PrintlnOnColor058 and works with format strings.

func PrintlnOnColor059

func PrintlnOnColor059(str string)

PrintlnOnColor059 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor059f added in v1.6.0

func PrintlnOnColor059f(str string, args ...interface{})

PrintlnOnColor059f wraps PrintlnOnColor059 and works with format strings.

func PrintlnOnColor060

func PrintlnOnColor060(str string)

PrintlnOnColor060 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor060f added in v1.6.0

func PrintlnOnColor060f(str string, args ...interface{})

PrintlnOnColor060f wraps PrintlnOnColor060 and works with format strings.

func PrintlnOnColor061

func PrintlnOnColor061(str string)

PrintlnOnColor061 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor061f added in v1.6.0

func PrintlnOnColor061f(str string, args ...interface{})

PrintlnOnColor061f wraps PrintlnOnColor061 and works with format strings.

func PrintlnOnColor062

func PrintlnOnColor062(str string)

PrintlnOnColor062 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor062f added in v1.6.0

func PrintlnOnColor062f(str string, args ...interface{})

PrintlnOnColor062f wraps PrintlnOnColor062 and works with format strings.

func PrintlnOnColor063

func PrintlnOnColor063(str string)

PrintlnOnColor063 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor063f added in v1.6.0

func PrintlnOnColor063f(str string, args ...interface{})

PrintlnOnColor063f wraps PrintlnOnColor063 and works with format strings.

func PrintlnOnColor064

func PrintlnOnColor064(str string)

PrintlnOnColor064 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor064f added in v1.6.0

func PrintlnOnColor064f(str string, args ...interface{})

PrintlnOnColor064f wraps PrintlnOnColor064 and works with format strings.

func PrintlnOnColor065

func PrintlnOnColor065(str string)

PrintlnOnColor065 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor065f added in v1.6.0

func PrintlnOnColor065f(str string, args ...interface{})

PrintlnOnColor065f wraps PrintlnOnColor065 and works with format strings.

func PrintlnOnColor066

func PrintlnOnColor066(str string)

PrintlnOnColor066 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor066f added in v1.6.0

func PrintlnOnColor066f(str string, args ...interface{})

PrintlnOnColor066f wraps PrintlnOnColor066 and works with format strings.

func PrintlnOnColor067

func PrintlnOnColor067(str string)

PrintlnOnColor067 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor067f added in v1.6.0

func PrintlnOnColor067f(str string, args ...interface{})

PrintlnOnColor067f wraps PrintlnOnColor067 and works with format strings.

func PrintlnOnColor068

func PrintlnOnColor068(str string)

PrintlnOnColor068 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor068f added in v1.6.0

func PrintlnOnColor068f(str string, args ...interface{})

PrintlnOnColor068f wraps PrintlnOnColor068 and works with format strings.

func PrintlnOnColor069

func PrintlnOnColor069(str string)

PrintlnOnColor069 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor069f added in v1.6.0

func PrintlnOnColor069f(str string, args ...interface{})

PrintlnOnColor069f wraps PrintlnOnColor069 and works with format strings.

func PrintlnOnColor070

func PrintlnOnColor070(str string)

PrintlnOnColor070 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor070f added in v1.6.0

func PrintlnOnColor070f(str string, args ...interface{})

PrintlnOnColor070f wraps PrintlnOnColor070 and works with format strings.

func PrintlnOnColor071

func PrintlnOnColor071(str string)

PrintlnOnColor071 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor071f added in v1.6.0

func PrintlnOnColor071f(str string, args ...interface{})

PrintlnOnColor071f wraps PrintlnOnColor071 and works with format strings.

func PrintlnOnColor072

func PrintlnOnColor072(str string)

PrintlnOnColor072 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor072f added in v1.6.0

func PrintlnOnColor072f(str string, args ...interface{})

PrintlnOnColor072f wraps PrintlnOnColor072 and works with format strings.

func PrintlnOnColor073

func PrintlnOnColor073(str string)

PrintlnOnColor073 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor073f added in v1.6.0

func PrintlnOnColor073f(str string, args ...interface{})

PrintlnOnColor073f wraps PrintlnOnColor073 and works with format strings.

func PrintlnOnColor074

func PrintlnOnColor074(str string)

PrintlnOnColor074 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor074f added in v1.6.0

func PrintlnOnColor074f(str string, args ...interface{})

PrintlnOnColor074f wraps PrintlnOnColor074 and works with format strings.

func PrintlnOnColor075

func PrintlnOnColor075(str string)

PrintlnOnColor075 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor075f added in v1.6.0

func PrintlnOnColor075f(str string, args ...interface{})

PrintlnOnColor075f wraps PrintlnOnColor075 and works with format strings.

func PrintlnOnColor076

func PrintlnOnColor076(str string)

PrintlnOnColor076 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor076f added in v1.6.0

func PrintlnOnColor076f(str string, args ...interface{})

PrintlnOnColor076f wraps PrintlnOnColor076 and works with format strings.

func PrintlnOnColor077

func PrintlnOnColor077(str string)

PrintlnOnColor077 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor077f added in v1.6.0

func PrintlnOnColor077f(str string, args ...interface{})

PrintlnOnColor077f wraps PrintlnOnColor077 and works with format strings.

func PrintlnOnColor078

func PrintlnOnColor078(str string)

PrintlnOnColor078 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor078f added in v1.6.0

func PrintlnOnColor078f(str string, args ...interface{})

PrintlnOnColor078f wraps PrintlnOnColor078 and works with format strings.

func PrintlnOnColor079

func PrintlnOnColor079(str string)

PrintlnOnColor079 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor079f added in v1.6.0

func PrintlnOnColor079f(str string, args ...interface{})

PrintlnOnColor079f wraps PrintlnOnColor079 and works with format strings.

func PrintlnOnColor080

func PrintlnOnColor080(str string)

PrintlnOnColor080 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor080f added in v1.6.0

func PrintlnOnColor080f(str string, args ...interface{})

PrintlnOnColor080f wraps PrintlnOnColor080 and works with format strings.

func PrintlnOnColor081

func PrintlnOnColor081(str string)

PrintlnOnColor081 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor081f added in v1.6.0

func PrintlnOnColor081f(str string, args ...interface{})

PrintlnOnColor081f wraps PrintlnOnColor081 and works with format strings.

func PrintlnOnColor082

func PrintlnOnColor082(str string)

PrintlnOnColor082 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor082f added in v1.6.0

func PrintlnOnColor082f(str string, args ...interface{})

PrintlnOnColor082f wraps PrintlnOnColor082 and works with format strings.

func PrintlnOnColor083

func PrintlnOnColor083(str string)

PrintlnOnColor083 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor083f added in v1.6.0

func PrintlnOnColor083f(str string, args ...interface{})

PrintlnOnColor083f wraps PrintlnOnColor083 and works with format strings.

func PrintlnOnColor084

func PrintlnOnColor084(str string)

PrintlnOnColor084 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor084f added in v1.6.0

func PrintlnOnColor084f(str string, args ...interface{})

PrintlnOnColor084f wraps PrintlnOnColor084 and works with format strings.

func PrintlnOnColor085

func PrintlnOnColor085(str string)

PrintlnOnColor085 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor085f added in v1.6.0

func PrintlnOnColor085f(str string, args ...interface{})

PrintlnOnColor085f wraps PrintlnOnColor085 and works with format strings.

func PrintlnOnColor086

func PrintlnOnColor086(str string)

PrintlnOnColor086 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor086f added in v1.6.0

func PrintlnOnColor086f(str string, args ...interface{})

PrintlnOnColor086f wraps PrintlnOnColor086 and works with format strings.

func PrintlnOnColor087

func PrintlnOnColor087(str string)

PrintlnOnColor087 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor087f added in v1.6.0

func PrintlnOnColor087f(str string, args ...interface{})

PrintlnOnColor087f wraps PrintlnOnColor087 and works with format strings.

func PrintlnOnColor088

func PrintlnOnColor088(str string)

PrintlnOnColor088 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor088f added in v1.6.0

func PrintlnOnColor088f(str string, args ...interface{})

PrintlnOnColor088f wraps PrintlnOnColor088 and works with format strings.

func PrintlnOnColor089

func PrintlnOnColor089(str string)

PrintlnOnColor089 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor089f added in v1.6.0

func PrintlnOnColor089f(str string, args ...interface{})

PrintlnOnColor089f wraps PrintlnOnColor089 and works with format strings.

func PrintlnOnColor090

func PrintlnOnColor090(str string)

PrintlnOnColor090 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor090f added in v1.6.0

func PrintlnOnColor090f(str string, args ...interface{})

PrintlnOnColor090f wraps PrintlnOnColor090 and works with format strings.

func PrintlnOnColor091

func PrintlnOnColor091(str string)

PrintlnOnColor091 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor091f added in v1.6.0

func PrintlnOnColor091f(str string, args ...interface{})

PrintlnOnColor091f wraps PrintlnOnColor091 and works with format strings.

func PrintlnOnColor092

func PrintlnOnColor092(str string)

PrintlnOnColor092 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor092f added in v1.6.0

func PrintlnOnColor092f(str string, args ...interface{})

PrintlnOnColor092f wraps PrintlnOnColor092 and works with format strings.

func PrintlnOnColor093

func PrintlnOnColor093(str string)

PrintlnOnColor093 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor093f added in v1.6.0

func PrintlnOnColor093f(str string, args ...interface{})

PrintlnOnColor093f wraps PrintlnOnColor093 and works with format strings.

func PrintlnOnColor094

func PrintlnOnColor094(str string)

PrintlnOnColor094 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor094f added in v1.6.0

func PrintlnOnColor094f(str string, args ...interface{})

PrintlnOnColor094f wraps PrintlnOnColor094 and works with format strings.

func PrintlnOnColor095

func PrintlnOnColor095(str string)

PrintlnOnColor095 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor095f added in v1.6.0

func PrintlnOnColor095f(str string, args ...interface{})

PrintlnOnColor095f wraps PrintlnOnColor095 and works with format strings.

func PrintlnOnColor096

func PrintlnOnColor096(str string)

PrintlnOnColor096 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor096f added in v1.6.0

func PrintlnOnColor096f(str string, args ...interface{})

PrintlnOnColor096f wraps PrintlnOnColor096 and works with format strings.

func PrintlnOnColor097

func PrintlnOnColor097(str string)

PrintlnOnColor097 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor097f added in v1.6.0

func PrintlnOnColor097f(str string, args ...interface{})

PrintlnOnColor097f wraps PrintlnOnColor097 and works with format strings.

func PrintlnOnColor098

func PrintlnOnColor098(str string)

PrintlnOnColor098 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor098f added in v1.6.0

func PrintlnOnColor098f(str string, args ...interface{})

PrintlnOnColor098f wraps PrintlnOnColor098 and works with format strings.

func PrintlnOnColor099

func PrintlnOnColor099(str string)

PrintlnOnColor099 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor099f added in v1.6.0

func PrintlnOnColor099f(str string, args ...interface{})

PrintlnOnColor099f wraps PrintlnOnColor099 and works with format strings.

func PrintlnOnColor100

func PrintlnOnColor100(str string)

PrintlnOnColor100 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor100f added in v1.6.0

func PrintlnOnColor100f(str string, args ...interface{})

PrintlnOnColor100f wraps PrintlnOnColor100 and works with format strings.

func PrintlnOnColor101

func PrintlnOnColor101(str string)

PrintlnOnColor101 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor101f added in v1.6.0

func PrintlnOnColor101f(str string, args ...interface{})

PrintlnOnColor101f wraps PrintlnOnColor101 and works with format strings.

func PrintlnOnColor102

func PrintlnOnColor102(str string)

PrintlnOnColor102 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor102f added in v1.6.0

func PrintlnOnColor102f(str string, args ...interface{})

PrintlnOnColor102f wraps PrintlnOnColor102 and works with format strings.

func PrintlnOnColor103

func PrintlnOnColor103(str string)

PrintlnOnColor103 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor103f added in v1.6.0

func PrintlnOnColor103f(str string, args ...interface{})

PrintlnOnColor103f wraps PrintlnOnColor103 and works with format strings.

func PrintlnOnColor104

func PrintlnOnColor104(str string)

PrintlnOnColor104 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor104f added in v1.6.0

func PrintlnOnColor104f(str string, args ...interface{})

PrintlnOnColor104f wraps PrintlnOnColor104 and works with format strings.

func PrintlnOnColor105

func PrintlnOnColor105(str string)

PrintlnOnColor105 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor105f added in v1.6.0

func PrintlnOnColor105f(str string, args ...interface{})

PrintlnOnColor105f wraps PrintlnOnColor105 and works with format strings.

func PrintlnOnColor106

func PrintlnOnColor106(str string)

PrintlnOnColor106 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor106f added in v1.6.0

func PrintlnOnColor106f(str string, args ...interface{})

PrintlnOnColor106f wraps PrintlnOnColor106 and works with format strings.

func PrintlnOnColor107

func PrintlnOnColor107(str string)

PrintlnOnColor107 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor107f added in v1.6.0

func PrintlnOnColor107f(str string, args ...interface{})

PrintlnOnColor107f wraps PrintlnOnColor107 and works with format strings.

func PrintlnOnColor108

func PrintlnOnColor108(str string)

PrintlnOnColor108 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor108f added in v1.6.0

func PrintlnOnColor108f(str string, args ...interface{})

PrintlnOnColor108f wraps PrintlnOnColor108 and works with format strings.

func PrintlnOnColor109

func PrintlnOnColor109(str string)

PrintlnOnColor109 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor109f added in v1.6.0

func PrintlnOnColor109f(str string, args ...interface{})

PrintlnOnColor109f wraps PrintlnOnColor109 and works with format strings.

func PrintlnOnColor110

func PrintlnOnColor110(str string)

PrintlnOnColor110 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor110f added in v1.6.0

func PrintlnOnColor110f(str string, args ...interface{})

PrintlnOnColor110f wraps PrintlnOnColor110 and works with format strings.

func PrintlnOnColor111

func PrintlnOnColor111(str string)

PrintlnOnColor111 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor111f added in v1.6.0

func PrintlnOnColor111f(str string, args ...interface{})

PrintlnOnColor111f wraps PrintlnOnColor111 and works with format strings.

func PrintlnOnColor112

func PrintlnOnColor112(str string)

PrintlnOnColor112 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor112f added in v1.6.0

func PrintlnOnColor112f(str string, args ...interface{})

PrintlnOnColor112f wraps PrintlnOnColor112 and works with format strings.

func PrintlnOnColor113

func PrintlnOnColor113(str string)

PrintlnOnColor113 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor113f added in v1.6.0

func PrintlnOnColor113f(str string, args ...interface{})

PrintlnOnColor113f wraps PrintlnOnColor113 and works with format strings.

func PrintlnOnColor114

func PrintlnOnColor114(str string)

PrintlnOnColor114 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor114f added in v1.6.0

func PrintlnOnColor114f(str string, args ...interface{})

PrintlnOnColor114f wraps PrintlnOnColor114 and works with format strings.

func PrintlnOnColor115

func PrintlnOnColor115(str string)

PrintlnOnColor115 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor115f added in v1.6.0

func PrintlnOnColor115f(str string, args ...interface{})

PrintlnOnColor115f wraps PrintlnOnColor115 and works with format strings.

func PrintlnOnColor116

func PrintlnOnColor116(str string)

PrintlnOnColor116 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor116f added in v1.6.0

func PrintlnOnColor116f(str string, args ...interface{})

PrintlnOnColor116f wraps PrintlnOnColor116 and works with format strings.

func PrintlnOnColor117

func PrintlnOnColor117(str string)

PrintlnOnColor117 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor117f added in v1.6.0

func PrintlnOnColor117f(str string, args ...interface{})

PrintlnOnColor117f wraps PrintlnOnColor117 and works with format strings.

func PrintlnOnColor118

func PrintlnOnColor118(str string)

PrintlnOnColor118 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor118f added in v1.6.0

func PrintlnOnColor118f(str string, args ...interface{})

PrintlnOnColor118f wraps PrintlnOnColor118 and works with format strings.

func PrintlnOnColor119

func PrintlnOnColor119(str string)

PrintlnOnColor119 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor119f added in v1.6.0

func PrintlnOnColor119f(str string, args ...interface{})

PrintlnOnColor119f wraps PrintlnOnColor119 and works with format strings.

func PrintlnOnColor120

func PrintlnOnColor120(str string)

PrintlnOnColor120 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor120f added in v1.6.0

func PrintlnOnColor120f(str string, args ...interface{})

PrintlnOnColor120f wraps PrintlnOnColor120 and works with format strings.

func PrintlnOnColor121

func PrintlnOnColor121(str string)

PrintlnOnColor121 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor121f added in v1.6.0

func PrintlnOnColor121f(str string, args ...interface{})

PrintlnOnColor121f wraps PrintlnOnColor121 and works with format strings.

func PrintlnOnColor122

func PrintlnOnColor122(str string)

PrintlnOnColor122 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor122f added in v1.6.0

func PrintlnOnColor122f(str string, args ...interface{})

PrintlnOnColor122f wraps PrintlnOnColor122 and works with format strings.

func PrintlnOnColor123

func PrintlnOnColor123(str string)

PrintlnOnColor123 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor123f added in v1.6.0

func PrintlnOnColor123f(str string, args ...interface{})

PrintlnOnColor123f wraps PrintlnOnColor123 and works with format strings.

func PrintlnOnColor124

func PrintlnOnColor124(str string)

PrintlnOnColor124 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor124f added in v1.6.0

func PrintlnOnColor124f(str string, args ...interface{})

PrintlnOnColor124f wraps PrintlnOnColor124 and works with format strings.

func PrintlnOnColor125

func PrintlnOnColor125(str string)

PrintlnOnColor125 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor125f added in v1.6.0

func PrintlnOnColor125f(str string, args ...interface{})

PrintlnOnColor125f wraps PrintlnOnColor125 and works with format strings.

func PrintlnOnColor126

func PrintlnOnColor126(str string)

PrintlnOnColor126 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor126f added in v1.6.0

func PrintlnOnColor126f(str string, args ...interface{})

PrintlnOnColor126f wraps PrintlnOnColor126 and works with format strings.

func PrintlnOnColor127

func PrintlnOnColor127(str string)

PrintlnOnColor127 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor127f added in v1.6.0

func PrintlnOnColor127f(str string, args ...interface{})

PrintlnOnColor127f wraps PrintlnOnColor127 and works with format strings.

func PrintlnOnColor128

func PrintlnOnColor128(str string)

PrintlnOnColor128 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor128f added in v1.6.0

func PrintlnOnColor128f(str string, args ...interface{})

PrintlnOnColor128f wraps PrintlnOnColor128 and works with format strings.

func PrintlnOnColor129

func PrintlnOnColor129(str string)

PrintlnOnColor129 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor129f added in v1.6.0

func PrintlnOnColor129f(str string, args ...interface{})

PrintlnOnColor129f wraps PrintlnOnColor129 and works with format strings.

func PrintlnOnColor130

func PrintlnOnColor130(str string)

PrintlnOnColor130 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor130f added in v1.6.0

func PrintlnOnColor130f(str string, args ...interface{})

PrintlnOnColor130f wraps PrintlnOnColor130 and works with format strings.

func PrintlnOnColor131

func PrintlnOnColor131(str string)

PrintlnOnColor131 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor131f added in v1.6.0

func PrintlnOnColor131f(str string, args ...interface{})

PrintlnOnColor131f wraps PrintlnOnColor131 and works with format strings.

func PrintlnOnColor132

func PrintlnOnColor132(str string)

PrintlnOnColor132 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor132f added in v1.6.0

func PrintlnOnColor132f(str string, args ...interface{})

PrintlnOnColor132f wraps PrintlnOnColor132 and works with format strings.

func PrintlnOnColor133

func PrintlnOnColor133(str string)

PrintlnOnColor133 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor133f added in v1.6.0

func PrintlnOnColor133f(str string, args ...interface{})

PrintlnOnColor133f wraps PrintlnOnColor133 and works with format strings.

func PrintlnOnColor134

func PrintlnOnColor134(str string)

PrintlnOnColor134 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor134f added in v1.6.0

func PrintlnOnColor134f(str string, args ...interface{})

PrintlnOnColor134f wraps PrintlnOnColor134 and works with format strings.

func PrintlnOnColor135

func PrintlnOnColor135(str string)

PrintlnOnColor135 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor135f added in v1.6.0

func PrintlnOnColor135f(str string, args ...interface{})

PrintlnOnColor135f wraps PrintlnOnColor135 and works with format strings.

func PrintlnOnColor136

func PrintlnOnColor136(str string)

PrintlnOnColor136 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor136f added in v1.6.0

func PrintlnOnColor136f(str string, args ...interface{})

PrintlnOnColor136f wraps PrintlnOnColor136 and works with format strings.

func PrintlnOnColor137

func PrintlnOnColor137(str string)

PrintlnOnColor137 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor137f added in v1.6.0

func PrintlnOnColor137f(str string, args ...interface{})

PrintlnOnColor137f wraps PrintlnOnColor137 and works with format strings.

func PrintlnOnColor138

func PrintlnOnColor138(str string)

PrintlnOnColor138 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor138f added in v1.6.0

func PrintlnOnColor138f(str string, args ...interface{})

PrintlnOnColor138f wraps PrintlnOnColor138 and works with format strings.

func PrintlnOnColor139

func PrintlnOnColor139(str string)

PrintlnOnColor139 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor139f added in v1.6.0

func PrintlnOnColor139f(str string, args ...interface{})

PrintlnOnColor139f wraps PrintlnOnColor139 and works with format strings.

func PrintlnOnColor140

func PrintlnOnColor140(str string)

PrintlnOnColor140 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor140f added in v1.6.0

func PrintlnOnColor140f(str string, args ...interface{})

PrintlnOnColor140f wraps PrintlnOnColor140 and works with format strings.

func PrintlnOnColor141

func PrintlnOnColor141(str string)

PrintlnOnColor141 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor141f added in v1.6.0

func PrintlnOnColor141f(str string, args ...interface{})

PrintlnOnColor141f wraps PrintlnOnColor141 and works with format strings.

func PrintlnOnColor142

func PrintlnOnColor142(str string)

PrintlnOnColor142 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor142f added in v1.6.0

func PrintlnOnColor142f(str string, args ...interface{})

PrintlnOnColor142f wraps PrintlnOnColor142 and works with format strings.

func PrintlnOnColor143

func PrintlnOnColor143(str string)

PrintlnOnColor143 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor143f added in v1.6.0

func PrintlnOnColor143f(str string, args ...interface{})

PrintlnOnColor143f wraps PrintlnOnColor143 and works with format strings.

func PrintlnOnColor144

func PrintlnOnColor144(str string)

PrintlnOnColor144 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor144f added in v1.6.0

func PrintlnOnColor144f(str string, args ...interface{})

PrintlnOnColor144f wraps PrintlnOnColor144 and works with format strings.

func PrintlnOnColor145

func PrintlnOnColor145(str string)

PrintlnOnColor145 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor145f added in v1.6.0

func PrintlnOnColor145f(str string, args ...interface{})

PrintlnOnColor145f wraps PrintlnOnColor145 and works with format strings.

func PrintlnOnColor146

func PrintlnOnColor146(str string)

PrintlnOnColor146 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor146f added in v1.6.0

func PrintlnOnColor146f(str string, args ...interface{})

PrintlnOnColor146f wraps PrintlnOnColor146 and works with format strings.

func PrintlnOnColor147

func PrintlnOnColor147(str string)

PrintlnOnColor147 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor147f added in v1.6.0

func PrintlnOnColor147f(str string, args ...interface{})

PrintlnOnColor147f wraps PrintlnOnColor147 and works with format strings.

func PrintlnOnColor148

func PrintlnOnColor148(str string)

PrintlnOnColor148 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor148f added in v1.6.0

func PrintlnOnColor148f(str string, args ...interface{})

PrintlnOnColor148f wraps PrintlnOnColor148 and works with format strings.

func PrintlnOnColor149

func PrintlnOnColor149(str string)

PrintlnOnColor149 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor149f added in v1.6.0

func PrintlnOnColor149f(str string, args ...interface{})

PrintlnOnColor149f wraps PrintlnOnColor149 and works with format strings.

func PrintlnOnColor150

func PrintlnOnColor150(str string)

PrintlnOnColor150 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor150f added in v1.6.0

func PrintlnOnColor150f(str string, args ...interface{})

PrintlnOnColor150f wraps PrintlnOnColor150 and works with format strings.

func PrintlnOnColor151

func PrintlnOnColor151(str string)

PrintlnOnColor151 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor151f added in v1.6.0

func PrintlnOnColor151f(str string, args ...interface{})

PrintlnOnColor151f wraps PrintlnOnColor151 and works with format strings.

func PrintlnOnColor152

func PrintlnOnColor152(str string)

PrintlnOnColor152 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor152f added in v1.6.0

func PrintlnOnColor152f(str string, args ...interface{})

PrintlnOnColor152f wraps PrintlnOnColor152 and works with format strings.

func PrintlnOnColor153

func PrintlnOnColor153(str string)

PrintlnOnColor153 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor153f added in v1.6.0

func PrintlnOnColor153f(str string, args ...interface{})

PrintlnOnColor153f wraps PrintlnOnColor153 and works with format strings.

func PrintlnOnColor154

func PrintlnOnColor154(str string)

PrintlnOnColor154 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor154f added in v1.6.0

func PrintlnOnColor154f(str string, args ...interface{})

PrintlnOnColor154f wraps PrintlnOnColor154 and works with format strings.

func PrintlnOnColor155

func PrintlnOnColor155(str string)

PrintlnOnColor155 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor155f added in v1.6.0

func PrintlnOnColor155f(str string, args ...interface{})

PrintlnOnColor155f wraps PrintlnOnColor155 and works with format strings.

func PrintlnOnColor156

func PrintlnOnColor156(str string)

PrintlnOnColor156 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor156f added in v1.6.0

func PrintlnOnColor156f(str string, args ...interface{})

PrintlnOnColor156f wraps PrintlnOnColor156 and works with format strings.

func PrintlnOnColor157

func PrintlnOnColor157(str string)

PrintlnOnColor157 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor157f added in v1.6.0

func PrintlnOnColor157f(str string, args ...interface{})

PrintlnOnColor157f wraps PrintlnOnColor157 and works with format strings.

func PrintlnOnColor158

func PrintlnOnColor158(str string)

PrintlnOnColor158 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor158f added in v1.6.0

func PrintlnOnColor158f(str string, args ...interface{})

PrintlnOnColor158f wraps PrintlnOnColor158 and works with format strings.

func PrintlnOnColor159

func PrintlnOnColor159(str string)

PrintlnOnColor159 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor159f added in v1.6.0

func PrintlnOnColor159f(str string, args ...interface{})

PrintlnOnColor159f wraps PrintlnOnColor159 and works with format strings.

func PrintlnOnColor160

func PrintlnOnColor160(str string)

PrintlnOnColor160 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor160f added in v1.6.0

func PrintlnOnColor160f(str string, args ...interface{})

PrintlnOnColor160f wraps PrintlnOnColor160 and works with format strings.

func PrintlnOnColor161

func PrintlnOnColor161(str string)

PrintlnOnColor161 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor161f added in v1.6.0

func PrintlnOnColor161f(str string, args ...interface{})

PrintlnOnColor161f wraps PrintlnOnColor161 and works with format strings.

func PrintlnOnColor162

func PrintlnOnColor162(str string)

PrintlnOnColor162 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor162f added in v1.6.0

func PrintlnOnColor162f(str string, args ...interface{})

PrintlnOnColor162f wraps PrintlnOnColor162 and works with format strings.

func PrintlnOnColor163

func PrintlnOnColor163(str string)

PrintlnOnColor163 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor163f added in v1.6.0

func PrintlnOnColor163f(str string, args ...interface{})

PrintlnOnColor163f wraps PrintlnOnColor163 and works with format strings.

func PrintlnOnColor164

func PrintlnOnColor164(str string)

PrintlnOnColor164 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor164f added in v1.6.0

func PrintlnOnColor164f(str string, args ...interface{})

PrintlnOnColor164f wraps PrintlnOnColor164 and works with format strings.

func PrintlnOnColor165

func PrintlnOnColor165(str string)

PrintlnOnColor165 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor165f added in v1.6.0

func PrintlnOnColor165f(str string, args ...interface{})

PrintlnOnColor165f wraps PrintlnOnColor165 and works with format strings.

func PrintlnOnColor166

func PrintlnOnColor166(str string)

PrintlnOnColor166 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor166f added in v1.6.0

func PrintlnOnColor166f(str string, args ...interface{})

PrintlnOnColor166f wraps PrintlnOnColor166 and works with format strings.

func PrintlnOnColor167

func PrintlnOnColor167(str string)

PrintlnOnColor167 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor167f added in v1.6.0

func PrintlnOnColor167f(str string, args ...interface{})

PrintlnOnColor167f wraps PrintlnOnColor167 and works with format strings.

func PrintlnOnColor168

func PrintlnOnColor168(str string)

PrintlnOnColor168 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor168f added in v1.6.0

func PrintlnOnColor168f(str string, args ...interface{})

PrintlnOnColor168f wraps PrintlnOnColor168 and works with format strings.

func PrintlnOnColor169

func PrintlnOnColor169(str string)

PrintlnOnColor169 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor169f added in v1.6.0

func PrintlnOnColor169f(str string, args ...interface{})

PrintlnOnColor169f wraps PrintlnOnColor169 and works with format strings.

func PrintlnOnColor170

func PrintlnOnColor170(str string)

PrintlnOnColor170 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor170f added in v1.6.0

func PrintlnOnColor170f(str string, args ...interface{})

PrintlnOnColor170f wraps PrintlnOnColor170 and works with format strings.

func PrintlnOnColor171

func PrintlnOnColor171(str string)

PrintlnOnColor171 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor171f added in v1.6.0

func PrintlnOnColor171f(str string, args ...interface{})

PrintlnOnColor171f wraps PrintlnOnColor171 and works with format strings.

func PrintlnOnColor172

func PrintlnOnColor172(str string)

PrintlnOnColor172 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor172f added in v1.6.0

func PrintlnOnColor172f(str string, args ...interface{})

PrintlnOnColor172f wraps PrintlnOnColor172 and works with format strings.

func PrintlnOnColor173

func PrintlnOnColor173(str string)

PrintlnOnColor173 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor173f added in v1.6.0

func PrintlnOnColor173f(str string, args ...interface{})

PrintlnOnColor173f wraps PrintlnOnColor173 and works with format strings.

func PrintlnOnColor174

func PrintlnOnColor174(str string)

PrintlnOnColor174 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor174f added in v1.6.0

func PrintlnOnColor174f(str string, args ...interface{})

PrintlnOnColor174f wraps PrintlnOnColor174 and works with format strings.

func PrintlnOnColor175

func PrintlnOnColor175(str string)

PrintlnOnColor175 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor175f added in v1.6.0

func PrintlnOnColor175f(str string, args ...interface{})

PrintlnOnColor175f wraps PrintlnOnColor175 and works with format strings.

func PrintlnOnColor176

func PrintlnOnColor176(str string)

PrintlnOnColor176 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor176f added in v1.6.0

func PrintlnOnColor176f(str string, args ...interface{})

PrintlnOnColor176f wraps PrintlnOnColor176 and works with format strings.

func PrintlnOnColor177

func PrintlnOnColor177(str string)

PrintlnOnColor177 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor177f added in v1.6.0

func PrintlnOnColor177f(str string, args ...interface{})

PrintlnOnColor177f wraps PrintlnOnColor177 and works with format strings.

func PrintlnOnColor178

func PrintlnOnColor178(str string)

PrintlnOnColor178 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor178f added in v1.6.0

func PrintlnOnColor178f(str string, args ...interface{})

PrintlnOnColor178f wraps PrintlnOnColor178 and works with format strings.

func PrintlnOnColor179

func PrintlnOnColor179(str string)

PrintlnOnColor179 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor179f added in v1.6.0

func PrintlnOnColor179f(str string, args ...interface{})

PrintlnOnColor179f wraps PrintlnOnColor179 and works with format strings.

func PrintlnOnColor180

func PrintlnOnColor180(str string)

PrintlnOnColor180 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor180f added in v1.6.0

func PrintlnOnColor180f(str string, args ...interface{})

PrintlnOnColor180f wraps PrintlnOnColor180 and works with format strings.

func PrintlnOnColor181

func PrintlnOnColor181(str string)

PrintlnOnColor181 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor181f added in v1.6.0

func PrintlnOnColor181f(str string, args ...interface{})

PrintlnOnColor181f wraps PrintlnOnColor181 and works with format strings.

func PrintlnOnColor182

func PrintlnOnColor182(str string)

PrintlnOnColor182 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor182f added in v1.6.0

func PrintlnOnColor182f(str string, args ...interface{})

PrintlnOnColor182f wraps PrintlnOnColor182 and works with format strings.

func PrintlnOnColor183

func PrintlnOnColor183(str string)

PrintlnOnColor183 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor183f added in v1.6.0

func PrintlnOnColor183f(str string, args ...interface{})

PrintlnOnColor183f wraps PrintlnOnColor183 and works with format strings.

func PrintlnOnColor184

func PrintlnOnColor184(str string)

PrintlnOnColor184 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor184f added in v1.6.0

func PrintlnOnColor184f(str string, args ...interface{})

PrintlnOnColor184f wraps PrintlnOnColor184 and works with format strings.

func PrintlnOnColor185

func PrintlnOnColor185(str string)

PrintlnOnColor185 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor185f added in v1.6.0

func PrintlnOnColor185f(str string, args ...interface{})

PrintlnOnColor185f wraps PrintlnOnColor185 and works with format strings.

func PrintlnOnColor186

func PrintlnOnColor186(str string)

PrintlnOnColor186 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor186f added in v1.6.0

func PrintlnOnColor186f(str string, args ...interface{})

PrintlnOnColor186f wraps PrintlnOnColor186 and works with format strings.

func PrintlnOnColor187

func PrintlnOnColor187(str string)

PrintlnOnColor187 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor187f added in v1.6.0

func PrintlnOnColor187f(str string, args ...interface{})

PrintlnOnColor187f wraps PrintlnOnColor187 and works with format strings.

func PrintlnOnColor188

func PrintlnOnColor188(str string)

PrintlnOnColor188 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor188f added in v1.6.0

func PrintlnOnColor188f(str string, args ...interface{})

PrintlnOnColor188f wraps PrintlnOnColor188 and works with format strings.

func PrintlnOnColor189

func PrintlnOnColor189(str string)

PrintlnOnColor189 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor189f added in v1.6.0

func PrintlnOnColor189f(str string, args ...interface{})

PrintlnOnColor189f wraps PrintlnOnColor189 and works with format strings.

func PrintlnOnColor190

func PrintlnOnColor190(str string)

PrintlnOnColor190 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor190f added in v1.6.0

func PrintlnOnColor190f(str string, args ...interface{})

PrintlnOnColor190f wraps PrintlnOnColor190 and works with format strings.

func PrintlnOnColor191

func PrintlnOnColor191(str string)

PrintlnOnColor191 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor191f added in v1.6.0

func PrintlnOnColor191f(str string, args ...interface{})

PrintlnOnColor191f wraps PrintlnOnColor191 and works with format strings.

func PrintlnOnColor192

func PrintlnOnColor192(str string)

PrintlnOnColor192 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor192f added in v1.6.0

func PrintlnOnColor192f(str string, args ...interface{})

PrintlnOnColor192f wraps PrintlnOnColor192 and works with format strings.

func PrintlnOnColor193

func PrintlnOnColor193(str string)

PrintlnOnColor193 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor193f added in v1.6.0

func PrintlnOnColor193f(str string, args ...interface{})

PrintlnOnColor193f wraps PrintlnOnColor193 and works with format strings.

func PrintlnOnColor194

func PrintlnOnColor194(str string)

PrintlnOnColor194 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor194f added in v1.6.0

func PrintlnOnColor194f(str string, args ...interface{})

PrintlnOnColor194f wraps PrintlnOnColor194 and works with format strings.

func PrintlnOnColor195

func PrintlnOnColor195(str string)

PrintlnOnColor195 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor195f added in v1.6.0

func PrintlnOnColor195f(str string, args ...interface{})

PrintlnOnColor195f wraps PrintlnOnColor195 and works with format strings.

func PrintlnOnColor196

func PrintlnOnColor196(str string)

PrintlnOnColor196 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor196f added in v1.6.0

func PrintlnOnColor196f(str string, args ...interface{})

PrintlnOnColor196f wraps PrintlnOnColor196 and works with format strings.

func PrintlnOnColor197

func PrintlnOnColor197(str string)

PrintlnOnColor197 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor197f added in v1.6.0

func PrintlnOnColor197f(str string, args ...interface{})

PrintlnOnColor197f wraps PrintlnOnColor197 and works with format strings.

func PrintlnOnColor198

func PrintlnOnColor198(str string)

PrintlnOnColor198 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor198f added in v1.6.0

func PrintlnOnColor198f(str string, args ...interface{})

PrintlnOnColor198f wraps PrintlnOnColor198 and works with format strings.

func PrintlnOnColor199

func PrintlnOnColor199(str string)

PrintlnOnColor199 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor199f added in v1.6.0

func PrintlnOnColor199f(str string, args ...interface{})

PrintlnOnColor199f wraps PrintlnOnColor199 and works with format strings.

func PrintlnOnColor200

func PrintlnOnColor200(str string)

PrintlnOnColor200 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor200f added in v1.6.0

func PrintlnOnColor200f(str string, args ...interface{})

PrintlnOnColor200f wraps PrintlnOnColor200 and works with format strings.

func PrintlnOnColor201

func PrintlnOnColor201(str string)

PrintlnOnColor201 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor201f added in v1.6.0

func PrintlnOnColor201f(str string, args ...interface{})

PrintlnOnColor201f wraps PrintlnOnColor201 and works with format strings.

func PrintlnOnColor202

func PrintlnOnColor202(str string)

PrintlnOnColor202 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor202f added in v1.6.0

func PrintlnOnColor202f(str string, args ...interface{})

PrintlnOnColor202f wraps PrintlnOnColor202 and works with format strings.

func PrintlnOnColor203

func PrintlnOnColor203(str string)

PrintlnOnColor203 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor203f added in v1.6.0

func PrintlnOnColor203f(str string, args ...interface{})

PrintlnOnColor203f wraps PrintlnOnColor203 and works with format strings.

func PrintlnOnColor204

func PrintlnOnColor204(str string)

PrintlnOnColor204 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor204f added in v1.6.0

func PrintlnOnColor204f(str string, args ...interface{})

PrintlnOnColor204f wraps PrintlnOnColor204 and works with format strings.

func PrintlnOnColor205

func PrintlnOnColor205(str string)

PrintlnOnColor205 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor205f added in v1.6.0

func PrintlnOnColor205f(str string, args ...interface{})

PrintlnOnColor205f wraps PrintlnOnColor205 and works with format strings.

func PrintlnOnColor206

func PrintlnOnColor206(str string)

PrintlnOnColor206 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor206f added in v1.6.0

func PrintlnOnColor206f(str string, args ...interface{})

PrintlnOnColor206f wraps PrintlnOnColor206 and works with format strings.

func PrintlnOnColor207

func PrintlnOnColor207(str string)

PrintlnOnColor207 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor207f added in v1.6.0

func PrintlnOnColor207f(str string, args ...interface{})

PrintlnOnColor207f wraps PrintlnOnColor207 and works with format strings.

func PrintlnOnColor208

func PrintlnOnColor208(str string)

PrintlnOnColor208 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor208f added in v1.6.0

func PrintlnOnColor208f(str string, args ...interface{})

PrintlnOnColor208f wraps PrintlnOnColor208 and works with format strings.

func PrintlnOnColor209

func PrintlnOnColor209(str string)

PrintlnOnColor209 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor209f added in v1.6.0

func PrintlnOnColor209f(str string, args ...interface{})

PrintlnOnColor209f wraps PrintlnOnColor209 and works with format strings.

func PrintlnOnColor210

func PrintlnOnColor210(str string)

PrintlnOnColor210 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor210f added in v1.6.0

func PrintlnOnColor210f(str string, args ...interface{})

PrintlnOnColor210f wraps PrintlnOnColor210 and works with format strings.

func PrintlnOnColor211

func PrintlnOnColor211(str string)

PrintlnOnColor211 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor211f added in v1.6.0

func PrintlnOnColor211f(str string, args ...interface{})

PrintlnOnColor211f wraps PrintlnOnColor211 and works with format strings.

func PrintlnOnColor212

func PrintlnOnColor212(str string)

PrintlnOnColor212 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor212f added in v1.6.0

func PrintlnOnColor212f(str string, args ...interface{})

PrintlnOnColor212f wraps PrintlnOnColor212 and works with format strings.

func PrintlnOnColor213

func PrintlnOnColor213(str string)

PrintlnOnColor213 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor213f added in v1.6.0

func PrintlnOnColor213f(str string, args ...interface{})

PrintlnOnColor213f wraps PrintlnOnColor213 and works with format strings.

func PrintlnOnColor214

func PrintlnOnColor214(str string)

PrintlnOnColor214 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor214f added in v1.6.0

func PrintlnOnColor214f(str string, args ...interface{})

PrintlnOnColor214f wraps PrintlnOnColor214 and works with format strings.

func PrintlnOnColor215

func PrintlnOnColor215(str string)

PrintlnOnColor215 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor215f added in v1.6.0

func PrintlnOnColor215f(str string, args ...interface{})

PrintlnOnColor215f wraps PrintlnOnColor215 and works with format strings.

func PrintlnOnColor216

func PrintlnOnColor216(str string)

PrintlnOnColor216 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor216f added in v1.6.0

func PrintlnOnColor216f(str string, args ...interface{})

PrintlnOnColor216f wraps PrintlnOnColor216 and works with format strings.

func PrintlnOnColor217

func PrintlnOnColor217(str string)

PrintlnOnColor217 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor217f added in v1.6.0

func PrintlnOnColor217f(str string, args ...interface{})

PrintlnOnColor217f wraps PrintlnOnColor217 and works with format strings.

func PrintlnOnColor218

func PrintlnOnColor218(str string)

PrintlnOnColor218 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor218f added in v1.6.0

func PrintlnOnColor218f(str string, args ...interface{})

PrintlnOnColor218f wraps PrintlnOnColor218 and works with format strings.

func PrintlnOnColor219

func PrintlnOnColor219(str string)

PrintlnOnColor219 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor219f added in v1.6.0

func PrintlnOnColor219f(str string, args ...interface{})

PrintlnOnColor219f wraps PrintlnOnColor219 and works with format strings.

func PrintlnOnColor220

func PrintlnOnColor220(str string)

PrintlnOnColor220 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor220f added in v1.6.0

func PrintlnOnColor220f(str string, args ...interface{})

PrintlnOnColor220f wraps PrintlnOnColor220 and works with format strings.

func PrintlnOnColor221

func PrintlnOnColor221(str string)

PrintlnOnColor221 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor221f added in v1.6.0

func PrintlnOnColor221f(str string, args ...interface{})

PrintlnOnColor221f wraps PrintlnOnColor221 and works with format strings.

func PrintlnOnColor222

func PrintlnOnColor222(str string)

PrintlnOnColor222 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor222f added in v1.6.0

func PrintlnOnColor222f(str string, args ...interface{})

PrintlnOnColor222f wraps PrintlnOnColor222 and works with format strings.

func PrintlnOnColor223

func PrintlnOnColor223(str string)

PrintlnOnColor223 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor223f added in v1.6.0

func PrintlnOnColor223f(str string, args ...interface{})

PrintlnOnColor223f wraps PrintlnOnColor223 and works with format strings.

func PrintlnOnColor224

func PrintlnOnColor224(str string)

PrintlnOnColor224 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor224f added in v1.6.0

func PrintlnOnColor224f(str string, args ...interface{})

PrintlnOnColor224f wraps PrintlnOnColor224 and works with format strings.

func PrintlnOnColor225

func PrintlnOnColor225(str string)

PrintlnOnColor225 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor225f added in v1.6.0

func PrintlnOnColor225f(str string, args ...interface{})

PrintlnOnColor225f wraps PrintlnOnColor225 and works with format strings.

func PrintlnOnColor226

func PrintlnOnColor226(str string)

PrintlnOnColor226 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor226f added in v1.6.0

func PrintlnOnColor226f(str string, args ...interface{})

PrintlnOnColor226f wraps PrintlnOnColor226 and works with format strings.

func PrintlnOnColor227

func PrintlnOnColor227(str string)

PrintlnOnColor227 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor227f added in v1.6.0

func PrintlnOnColor227f(str string, args ...interface{})

PrintlnOnColor227f wraps PrintlnOnColor227 and works with format strings.

func PrintlnOnColor228

func PrintlnOnColor228(str string)

PrintlnOnColor228 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor228f added in v1.6.0

func PrintlnOnColor228f(str string, args ...interface{})

PrintlnOnColor228f wraps PrintlnOnColor228 and works with format strings.

func PrintlnOnColor229

func PrintlnOnColor229(str string)

PrintlnOnColor229 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor229f added in v1.6.0

func PrintlnOnColor229f(str string, args ...interface{})

PrintlnOnColor229f wraps PrintlnOnColor229 and works with format strings.

func PrintlnOnColor230

func PrintlnOnColor230(str string)

PrintlnOnColor230 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor230f added in v1.6.0

func PrintlnOnColor230f(str string, args ...interface{})

PrintlnOnColor230f wraps PrintlnOnColor230 and works with format strings.

func PrintlnOnColor231

func PrintlnOnColor231(str string)

PrintlnOnColor231 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor231f added in v1.6.0

func PrintlnOnColor231f(str string, args ...interface{})

PrintlnOnColor231f wraps PrintlnOnColor231 and works with format strings.

func PrintlnOnColor232

func PrintlnOnColor232(str string)

PrintlnOnColor232 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor232f added in v1.6.0

func PrintlnOnColor232f(str string, args ...interface{})

PrintlnOnColor232f wraps PrintlnOnColor232 and works with format strings.

func PrintlnOnColor233

func PrintlnOnColor233(str string)

PrintlnOnColor233 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor233f added in v1.6.0

func PrintlnOnColor233f(str string, args ...interface{})

PrintlnOnColor233f wraps PrintlnOnColor233 and works with format strings.

func PrintlnOnColor234

func PrintlnOnColor234(str string)

PrintlnOnColor234 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor234f added in v1.6.0

func PrintlnOnColor234f(str string, args ...interface{})

PrintlnOnColor234f wraps PrintlnOnColor234 and works with format strings.

func PrintlnOnColor235

func PrintlnOnColor235(str string)

PrintlnOnColor235 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor235f added in v1.6.0

func PrintlnOnColor235f(str string, args ...interface{})

PrintlnOnColor235f wraps PrintlnOnColor235 and works with format strings.

func PrintlnOnColor236

func PrintlnOnColor236(str string)

PrintlnOnColor236 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor236f added in v1.6.0

func PrintlnOnColor236f(str string, args ...interface{})

PrintlnOnColor236f wraps PrintlnOnColor236 and works with format strings.

func PrintlnOnColor237

func PrintlnOnColor237(str string)

PrintlnOnColor237 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor237f added in v1.6.0

func PrintlnOnColor237f(str string, args ...interface{})

PrintlnOnColor237f wraps PrintlnOnColor237 and works with format strings.

func PrintlnOnColor238

func PrintlnOnColor238(str string)

PrintlnOnColor238 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor238f added in v1.6.0

func PrintlnOnColor238f(str string, args ...interface{})

PrintlnOnColor238f wraps PrintlnOnColor238 and works with format strings.

func PrintlnOnColor239

func PrintlnOnColor239(str string)

PrintlnOnColor239 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor239f added in v1.6.0

func PrintlnOnColor239f(str string, args ...interface{})

PrintlnOnColor239f wraps PrintlnOnColor239 and works with format strings.

func PrintlnOnColor240

func PrintlnOnColor240(str string)

PrintlnOnColor240 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor240f added in v1.6.0

func PrintlnOnColor240f(str string, args ...interface{})

PrintlnOnColor240f wraps PrintlnOnColor240 and works with format strings.

func PrintlnOnColor241

func PrintlnOnColor241(str string)

PrintlnOnColor241 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor241f added in v1.6.0

func PrintlnOnColor241f(str string, args ...interface{})

PrintlnOnColor241f wraps PrintlnOnColor241 and works with format strings.

func PrintlnOnColor242

func PrintlnOnColor242(str string)

PrintlnOnColor242 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor242f added in v1.6.0

func PrintlnOnColor242f(str string, args ...interface{})

PrintlnOnColor242f wraps PrintlnOnColor242 and works with format strings.

func PrintlnOnColor243

func PrintlnOnColor243(str string)

PrintlnOnColor243 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor243f added in v1.6.0

func PrintlnOnColor243f(str string, args ...interface{})

PrintlnOnColor243f wraps PrintlnOnColor243 and works with format strings.

func PrintlnOnColor244

func PrintlnOnColor244(str string)

PrintlnOnColor244 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor244f added in v1.6.0

func PrintlnOnColor244f(str string, args ...interface{})

PrintlnOnColor244f wraps PrintlnOnColor244 and works with format strings.

func PrintlnOnColor245

func PrintlnOnColor245(str string)

PrintlnOnColor245 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor245f added in v1.6.0

func PrintlnOnColor245f(str string, args ...interface{})

PrintlnOnColor245f wraps PrintlnOnColor245 and works with format strings.

func PrintlnOnColor246

func PrintlnOnColor246(str string)

PrintlnOnColor246 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor246f added in v1.6.0

func PrintlnOnColor246f(str string, args ...interface{})

PrintlnOnColor246f wraps PrintlnOnColor246 and works with format strings.

func PrintlnOnColor247

func PrintlnOnColor247(str string)

PrintlnOnColor247 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor247f added in v1.6.0

func PrintlnOnColor247f(str string, args ...interface{})

PrintlnOnColor247f wraps PrintlnOnColor247 and works with format strings.

func PrintlnOnColor248

func PrintlnOnColor248(str string)

PrintlnOnColor248 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor248f added in v1.6.0

func PrintlnOnColor248f(str string, args ...interface{})

PrintlnOnColor248f wraps PrintlnOnColor248 and works with format strings.

func PrintlnOnColor249

func PrintlnOnColor249(str string)

PrintlnOnColor249 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor249f added in v1.6.0

func PrintlnOnColor249f(str string, args ...interface{})

PrintlnOnColor249f wraps PrintlnOnColor249 and works with format strings.

func PrintlnOnColor250

func PrintlnOnColor250(str string)

PrintlnOnColor250 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor250f added in v1.6.0

func PrintlnOnColor250f(str string, args ...interface{})

PrintlnOnColor250f wraps PrintlnOnColor250 and works with format strings.

func PrintlnOnColor251

func PrintlnOnColor251(str string)

PrintlnOnColor251 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor251f added in v1.6.0

func PrintlnOnColor251f(str string, args ...interface{})

PrintlnOnColor251f wraps PrintlnOnColor251 and works with format strings.

func PrintlnOnColor252

func PrintlnOnColor252(str string)

PrintlnOnColor252 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor252f added in v1.6.0

func PrintlnOnColor252f(str string, args ...interface{})

PrintlnOnColor252f wraps PrintlnOnColor252 and works with format strings.

func PrintlnOnColor253

func PrintlnOnColor253(str string)

PrintlnOnColor253 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor253f added in v1.6.0

func PrintlnOnColor253f(str string, args ...interface{})

PrintlnOnColor253f wraps PrintlnOnColor253 and works with format strings.

func PrintlnOnColor254

func PrintlnOnColor254(str string)

PrintlnOnColor254 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor254f added in v1.6.0

func PrintlnOnColor254f(str string, args ...interface{})

PrintlnOnColor254f wraps PrintlnOnColor254 and works with format strings.

func PrintlnOnColor255

func PrintlnOnColor255(str string)

PrintlnOnColor255 will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnColor255f added in v1.6.0

func PrintlnOnColor255f(str string, args ...interface{})

PrintlnOnColor255f wraps PrintlnOnColor255 and works with format strings.

func PrintlnOnCyan

func PrintlnOnCyan(str string)

PrintlnOnCyan will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnCyanf added in v1.6.0

func PrintlnOnCyanf(str string, args ...interface{})

PrintlnOnCyanf wraps PrintlnOnCyan and works with format strings.

func PrintlnOnDefault

func PrintlnOnDefault(str string)

PrintlnOnDefault will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnDefaultf added in v1.6.0

func PrintlnOnDefaultf(str string, args ...interface{})

PrintlnOnDefaultf wraps PrintlnOnDefault and works with format strings.

func PrintlnOnGreen

func PrintlnOnGreen(str string)

PrintlnOnGreen will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnGreenf added in v1.6.0

func PrintlnOnGreenf(str string, args ...interface{})

PrintlnOnGreenf wraps PrintlnOnGreen and works with format strings.

func PrintlnOnHex

func PrintlnOnHex(hex string, str string)

PrintlnOnHex will take a hex color code and print a line with ANSI escape codes.

func PrintlnOnHexf added in v1.6.0

func PrintlnOnHexf(hex string, str string, args ...interface{})

PrintlnOnHexf wraps PrintlnOnHex and works with format strings.

func PrintlnOnLightBlack

func PrintlnOnLightBlack(str string)

PrintlnOnLightBlack will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnLightBlackf added in v1.6.0

func PrintlnOnLightBlackf(str string, args ...interface{})

PrintlnOnLightBlackf wraps PrintlnOnLightBlack and works with format strings.

func PrintlnOnLightBlue

func PrintlnOnLightBlue(str string)

PrintlnOnLightBlue will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnLightBluef added in v1.6.0

func PrintlnOnLightBluef(str string, args ...interface{})

PrintlnOnLightBluef wraps PrintlnOnLightBlue and works with format strings.

func PrintlnOnLightCyan

func PrintlnOnLightCyan(str string)

PrintlnOnLightCyan will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnLightCyanf added in v1.6.0

func PrintlnOnLightCyanf(str string, args ...interface{})

PrintlnOnLightCyanf wraps PrintlnOnLightCyan and works with format strings.

func PrintlnOnLightGreen

func PrintlnOnLightGreen(str string)

PrintlnOnLightGreen will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnLightGreenf added in v1.6.0

func PrintlnOnLightGreenf(str string, args ...interface{})

PrintlnOnLightGreenf wraps PrintlnOnLightGreen and works with format strings.

func PrintlnOnLightMagenta

func PrintlnOnLightMagenta(str string)

PrintlnOnLightMagenta will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnLightMagentaf added in v1.6.0

func PrintlnOnLightMagentaf(str string, args ...interface{})

PrintlnOnLightMagentaf wraps PrintlnOnLightMagenta and works with format strings.

func PrintlnOnLightRed

func PrintlnOnLightRed(str string)

PrintlnOnLightRed will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnLightRedf added in v1.6.0

func PrintlnOnLightRedf(str string, args ...interface{})

PrintlnOnLightRedf wraps PrintlnOnLightRed and works with format strings.

func PrintlnOnLightWhite

func PrintlnOnLightWhite(str string)

PrintlnOnLightWhite will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnLightWhitef added in v1.6.0

func PrintlnOnLightWhitef(str string, args ...interface{})

PrintlnOnLightWhitef wraps PrintlnOnLightWhite and works with format strings.

func PrintlnOnLightYellow

func PrintlnOnLightYellow(str string)

PrintlnOnLightYellow will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnLightYellowf added in v1.6.0

func PrintlnOnLightYellowf(str string, args ...interface{})

PrintlnOnLightYellowf wraps PrintlnOnLightYellow and works with format strings.

func PrintlnOnMagenta

func PrintlnOnMagenta(str string)

PrintlnOnMagenta will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnMagentaf added in v1.6.0

func PrintlnOnMagentaf(str string, args ...interface{})

PrintlnOnMagentaf wraps PrintlnOnMagenta and works with format strings.

func PrintlnOnRainbow

func PrintlnOnRainbow(str string)

PrintlnOnRainbow will print a line rotating through ANSI color codes for a rainbow effect.

func PrintlnOnRainbowf added in v1.6.0

func PrintlnOnRainbowf(str string, args ...interface{})

PrintlnOnRainbowf wraps PrintlnOnRainbow and works with format strings.

func PrintlnOnRed

func PrintlnOnRed(str string)

PrintlnOnRed will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnRedf added in v1.6.0

func PrintlnOnRedf(str string, args ...interface{})

PrintlnOnRedf wraps PrintlnOnRed and works with format strings.

func PrintlnOnWhite

func PrintlnOnWhite(str string)

PrintlnOnWhite will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnWhitef added in v1.6.0

func PrintlnOnWhitef(str string, args ...interface{})

PrintlnOnWhitef wraps PrintlnOnWhite and works with format strings.

func PrintlnOnYellow

func PrintlnOnYellow(str string)

PrintlnOnYellow will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnOnYellowf added in v1.6.0

func PrintlnOnYellowf(str string, args ...interface{})

PrintlnOnYellowf wraps PrintlnOnYellow and works with format strings.

func PrintlnRainbow

func PrintlnRainbow(str string)

PrintlnRainbow will print a line rotating through ANSI color codes for a rainbow effect.

func PrintlnRainbowf added in v1.6.0

func PrintlnRainbowf(str string, args ...interface{})

PrintlnRainbowf wraps PrintlnRainbow and works with format strings.

func PrintlnRed

func PrintlnRed(str string)

PrintlnRed will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnRedf added in v1.6.0

func PrintlnRedf(str string, args ...interface{})

PrintlnRedf wraps PrintlnRed and works with format strings.

func PrintlnReset

func PrintlnReset(str string)

PrintlnReset will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnResetf added in v1.6.0

func PrintlnResetf(str string, args ...interface{})

PrintlnResetf wraps PrintlnReset and works with format strings.

func PrintlnStrikethrough

func PrintlnStrikethrough(str string)

PrintlnStrikethrough will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnStrikethroughf added in v1.6.0

func PrintlnStrikethroughf(str string, args ...interface{})

PrintlnStrikethroughf wraps PrintlnStrikethrough and works with format strings.

func PrintlnSwap

func PrintlnSwap(str string)

PrintlnSwap will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnSwapf added in v1.6.0

func PrintlnSwapf(str string, args ...interface{})

PrintlnSwapf wraps PrintlnSwap and works with format strings.

func PrintlnUnderline

func PrintlnUnderline(str string)

PrintlnUnderline will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnUnderlinef added in v1.6.0

func PrintlnUnderlinef(str string, args ...interface{})

PrintlnUnderlinef wraps PrintlnUnderline and works with format strings.

func PrintlnWhite

func PrintlnWhite(str string)

PrintlnWhite will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnWhitef added in v1.6.0

func PrintlnWhitef(str string, args ...interface{})

PrintlnWhitef wraps PrintlnWhite and works with format strings.

func PrintlnWrap

func PrintlnWrap(width int, str string)

PrintlnWrap will wrap a line to the specified width and print it.

func PrintlnWrapf added in v1.6.0

func PrintlnWrapf(width int, str string, args ...interface{})

PrintlnWrapf wraps PrintlnWrap and works with format strings.

func PrintlnYellow

func PrintlnYellow(str string)

PrintlnYellow will Hilight() the provided string with the specified ANSI code and call fmt.Println(args ...interface{}).

func PrintlnYellowf added in v1.6.0

func PrintlnYellowf(str string, args ...interface{})

PrintlnYellowf wraps PrintlnYellow and works with format strings.

func Rainbow

func Rainbow(str string) string

Rainbow will add multiple ANSI color codes to a string for a rainbow effect.

func Rainbowf added in v1.6.0

func Rainbowf(str string, args ...interface{}) string

Rainbowf wraps Rainbow and works with format strings.

func Red

func Red(str string) string

Red will Hilight() the provided string with the specified ANSI code.

func Redf added in v1.6.0

func Redf(str string, args ...interface{}) string

Redf wraps Red and works with format strings.

func Reset

func Reset(str string) string

Reset will Hilight() the provided string with the specified ANSI code.

func Resetf added in v1.6.0

func Resetf(str string, args ...interface{}) string

Resetf wraps Reset and works with format strings.

func Sample

func Sample()

Sample will show all bg/fg combos of the first 16 8-bit colors.

func Sprint

func Sprint(args ...interface{}) string

Sprint wraps fmt.Sprint(args ...interface{}).

func Sprintf

func Sprintf(str string, args ...interface{}) string

Sprintf wraps fmt.Sprintf(str string, args ...interface{}).

func Sprintln

func Sprintln(args ...interface{}) string

Sprintln wraps fmt.Sprintln(args ...interface{}).

func Strikethrough

func Strikethrough(str string) string

Strikethrough will Hilight() the provided string with the specified ANSI code.

func Strikethroughf added in v1.6.0

func Strikethroughf(str string, args ...interface{}) string

Strikethroughf wraps Strikethrough and works with format strings.

func Swap

func Swap(str string) string

Swap will Hilight() the provided string with the specified ANSI code.

func Swapf added in v1.6.0

func Swapf(str string, args ...interface{}) string

Swapf wraps Swap and works with format strings.

func Table

func Table()

Table will display a pretty table of all 8-bit colors.

func Underline

func Underline(str string) string

Underline will Hilight() the provided string with the specified ANSI code.

func Underlinef added in v1.6.0

func Underlinef(str string, args ...interface{}) string

Underlinef wraps Underline and works with format strings.

func White

func White(str string) string

White will Hilight() the provided string with the specified ANSI code.

func Whitef added in v1.6.0

func Whitef(str string, args ...interface{}) string

Whitef wraps White and works with format strings.

func Wrap

func Wrap(width int, str string) string

Wrap will wrap a string to the specified width.

func Wrapf added in v1.6.0

func Wrapf(width int, str string, args ...interface{}) string

Wrapf wraps Wrap and works with format strings.

func Yellow

func Yellow(str string) string

Yellow will Hilight() the provided string with the specified ANSI code.

func Yellowf added in v1.6.0

func Yellowf(str string, args ...interface{}) string

Yellowf wraps Yellow and works with format strings.

Types

This section is empty.

Directories

Path Synopsis
cmd
hl

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL