hilighter

package module
v1.5.6 Latest Latest
Warning

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

Go to latest
Published: Dec 10, 2019 License: GPL-3.0 Imports: 6 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.5.6"

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 Disable = false

Disable is used to disable all 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, args ...interface{}) string
func Blink(str string, args ...interface{}) string

func BlinkRapid

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

func BlinkSlow

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

func Blue

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

func Bold

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

func Color000

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

func Color001

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

func Color002

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

func Color003

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

func Color004

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

func Color005

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

func Color006

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

func Color007

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

func Color008

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

func Color009

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

func Color010

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

func Color011

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

func Color012

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

func Color013

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

func Color014

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

func Color015

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

func Color016

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

func Color017

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

func Color018

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

func Color019

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

func Color020

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

func Color021

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

func Color022

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

func Color023

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

func Color024

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

func Color025

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

func Color026

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

func Color027

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

func Color028

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

func Color029

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

func Color030

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

func Color031

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

func Color032

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

func Color033

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

func Color034

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

func Color035

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

func Color036

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

func Color037

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

func Color038

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

func Color039

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

func Color040

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

func Color041

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

func Color042

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

func Color043

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

func Color044

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

func Color045

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

func Color046

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

func Color047

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

func Color048

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

func Color049

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

func Color050

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

func Color051

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

func Color052

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

func Color053

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

func Color054

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

func Color055

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

func Color056

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

func Color057

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

func Color058

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

func Color059

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

func Color060

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

func Color061

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

func Color062

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

func Color063

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

func Color064

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

func Color065

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

func Color066

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

func Color067

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

func Color068

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

func Color069

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

func Color070

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

func Color071

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

func Color072

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

func Color073

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

func Color074

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

func Color075

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

func Color076

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

func Color077

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

func Color078

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

func Color079

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

func Color080

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

func Color081

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

func Color082

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

func Color083

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

func Color084

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

func Color085

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

func Color086

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

func Color087

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

func Color088

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

func Color089

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

func Color090

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

func Color091

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

func Color092

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

func Color093

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

func Color094

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

func Color095

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

func Color096

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

func Color097

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

func Color098

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

func Color099

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

func Color100

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

func Color101

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

func Color102

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

func Color103

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

func Color104

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

func Color105

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

func Color106

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

func Color107

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

func Color108

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

func Color109

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

func Color110

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

func Color111

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

func Color112

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

func Color113

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

func Color114

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

func Color115

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

func Color116

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

func Color117

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

func Color118

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

func Color119

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

func Color120

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

func Color121

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

func Color122

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

func Color123

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

func Color124

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

func Color125

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

func Color126

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

func Color127

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

func Color128

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

func Color129

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

func Color130

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

func Color131

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

func Color132

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

func Color133

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

func Color134

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

func Color135

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

func Color136

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

func Color137

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

func Color138

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

func Color139

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

func Color140

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

func Color141

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

func Color142

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

func Color143

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

func Color144

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

func Color145

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

func Color146

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

func Color147

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

func Color148

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

func Color149

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

func Color150

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

func Color151

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

func Color152

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

func Color153

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

func Color154

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

func Color155

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

func Color156

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

func Color157

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

func Color158

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

func Color159

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

func Color160

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

func Color161

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

func Color162

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

func Color163

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

func Color164

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

func Color165

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

func Color166

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

func Color167

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

func Color168

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

func Color169

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

func Color170

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

func Color171

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

func Color172

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

func Color173

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

func Color174

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

func Color175

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

func Color176

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

func Color177

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

func Color178

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

func Color179

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

func Color180

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

func Color181

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

func Color182

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

func Color183

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

func Color184

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

func Color185

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

func Color186

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

func Color187

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

func Color188

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

func Color189

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

func Color190

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

func Color191

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

func Color192

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

func Color193

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

func Color194

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

func Color195

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

func Color196

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

func Color197

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

func Color198

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

func Color199

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

func Color200

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

func Color201

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

func Color202

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

func Color203

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

func Color204

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

func Color205

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

func Color206

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

func Color207

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

func Color208

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

func Color209

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

func Color210

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

func Color211

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

func Color212

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

func Color213

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

func Color214

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

func Color215

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

func Color216

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

func Color217

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

func Color218

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

func Color219

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

func Color220

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

func Color221

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

func Color222

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

func Color223

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

func Color224

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

func Color225

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

func Color226

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

func Color227

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

func Color228

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

func Color229

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

func Color230

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

func Color231

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

func Color232

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

func Color233

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

func Color234

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

func Color235

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

func Color236

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

func Color237

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

func Color238

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

func Color239

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

func Color240

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

func Color241

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

func Color242

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

func Color243

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

func Color244

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

func Color245

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

func Color246

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

func Color247

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

func Color248

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

func Color249

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

func Color250

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

func Color251

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

func Color252

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

func Color253

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

func Color254

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

func Color255

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

func Conceal

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

func CrossedOut

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

func Cyan

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

func Default

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

func Dim

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

func Faint

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

func Fraktur

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

func Green

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

func Hex

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

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

func Hide

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

func Hilight

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

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

func Hilights

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

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

func Inverse

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

func Italic

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

func LightBlack

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

func LightBlue

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

func LightCyan

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

func LightGreen

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

func LightMagenta

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

func LightRed

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

func LightWhite

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

func LightYellow

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

func Magenta

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

func Negative

func Negative(str string, args ...interface{}) string
func NoBlink(str string, args ...interface{}) string

func NoBlinkRapid

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

func NoBlinkSlow

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

func NoBold

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

func NoConceal

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

func NoCrossedOut

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

func NoDim

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

func NoFaint

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

func NoFraktur

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

func NoHide

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

func NoInverse

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

func NoItalic

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

func NoNegative

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

func NoStrikethrough

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

func NoSwap

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

func NoUnderline

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

func Normal

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

func OnBlack

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

func OnBlue

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

func OnColor000

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

func OnColor001

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

func OnColor002

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

func OnColor003

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

func OnColor004

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

func OnColor005

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

func OnColor006

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

func OnColor007

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

func OnColor008

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

func OnColor009

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

func OnColor010

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

func OnColor011

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

func OnColor012

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

func OnColor013

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

func OnColor014

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

func OnColor015

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

func OnColor016

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

func OnColor017

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

func OnColor018

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

func OnColor019

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

func OnColor020

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

func OnColor021

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

func OnColor022

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

func OnColor023

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

func OnColor024

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

func OnColor025

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

func OnColor026

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

func OnColor027

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

func OnColor028

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

func OnColor029

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

func OnColor030

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

func OnColor031

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

func OnColor032

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

func OnColor033

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

func OnColor034

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

func OnColor035

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

func OnColor036

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

func OnColor037

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

func OnColor038

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

func OnColor039

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

func OnColor040

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

func OnColor041

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

func OnColor042

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

func OnColor043

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

func OnColor044

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

func OnColor045

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

func OnColor046

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

func OnColor047

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

func OnColor048

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

func OnColor049

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

func OnColor050

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

func OnColor051

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

func OnColor052

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

func OnColor053

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

func OnColor054

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

func OnColor055

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

func OnColor056

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

func OnColor057

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

func OnColor058

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

func OnColor059

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

func OnColor060

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

func OnColor061

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

func OnColor062

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

func OnColor063

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

func OnColor064

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

func OnColor065

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

func OnColor066

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

func OnColor067

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

func OnColor068

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

func OnColor069

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

func OnColor070

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

func OnColor071

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

func OnColor072

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

func OnColor073

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

func OnColor074

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

func OnColor075

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

func OnColor076

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

func OnColor077

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

func OnColor078

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

func OnColor079

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

func OnColor080

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

func OnColor081

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

func OnColor082

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

func OnColor083

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

func OnColor084

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

func OnColor085

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

func OnColor086

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

func OnColor087

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

func OnColor088

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

func OnColor089

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

func OnColor090

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

func OnColor091

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

func OnColor092

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

func OnColor093

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

func OnColor094

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

func OnColor095

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

func OnColor096

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

func OnColor097

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

func OnColor098

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

func OnColor099

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

func OnColor100

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

func OnColor101

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

func OnColor102

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

func OnColor103

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

func OnColor104

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

func OnColor105

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

func OnColor106

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

func OnColor107

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

func OnColor108

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

func OnColor109

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

func OnColor110

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

func OnColor111

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

func OnColor112

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

func OnColor113

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

func OnColor114

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

func OnColor115

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

func OnColor116

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

func OnColor117

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

func OnColor118

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

func OnColor119

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

func OnColor120

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

func OnColor121

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

func OnColor122

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

func OnColor123

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

func OnColor124

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

func OnColor125

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

func OnColor126

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

func OnColor127

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

func OnColor128

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

func OnColor129

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

func OnColor130

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

func OnColor131

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

func OnColor132

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

func OnColor133

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

func OnColor134

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

func OnColor135

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

func OnColor136

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

func OnColor137

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

func OnColor138

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

func OnColor139

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

func OnColor140

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

func OnColor141

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

func OnColor142

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

func OnColor143

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

func OnColor144

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

func OnColor145

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

func OnColor146

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

func OnColor147

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

func OnColor148

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

func OnColor149

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

func OnColor150

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

func OnColor151

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

func OnColor152

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

func OnColor153

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

func OnColor154

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

func OnColor155

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

func OnColor156

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

func OnColor157

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

func OnColor158

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

func OnColor159

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

func OnColor160

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

func OnColor161

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

func OnColor162

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

func OnColor163

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

func OnColor164

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

func OnColor165

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

func OnColor166

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

func OnColor167

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

func OnColor168

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

func OnColor169

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

func OnColor170

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

func OnColor171

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

func OnColor172

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

func OnColor173

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

func OnColor174

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

func OnColor175

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

func OnColor176

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

func OnColor177

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

func OnColor178

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

func OnColor179

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

func OnColor180

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

func OnColor181

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

func OnColor182

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

func OnColor183

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

func OnColor184

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

func OnColor185

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

func OnColor186

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

func OnColor187

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

func OnColor188

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

func OnColor189

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

func OnColor190

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

func OnColor191

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

func OnColor192

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

func OnColor193

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

func OnColor194

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

func OnColor195

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

func OnColor196

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

func OnColor197

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

func OnColor198

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

func OnColor199

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

func OnColor200

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

func OnColor201

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

func OnColor202

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

func OnColor203

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

func OnColor204

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

func OnColor205

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

func OnColor206

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

func OnColor207

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

func OnColor208

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

func OnColor209

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

func OnColor210

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

func OnColor211

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

func OnColor212

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

func OnColor213

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

func OnColor214

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

func OnColor215

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

func OnColor216

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

func OnColor217

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

func OnColor218

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

func OnColor219

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

func OnColor220

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

func OnColor221

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

func OnColor222

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

func OnColor223

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

func OnColor224

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

func OnColor225

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

func OnColor226

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

func OnColor227

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

func OnColor228

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

func OnColor229

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

func OnColor230

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

func OnColor231

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

func OnColor232

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

func OnColor233

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

func OnColor234

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

func OnColor235

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

func OnColor236

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

func OnColor237

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

func OnColor238

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

func OnColor239

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

func OnColor240

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

func OnColor241

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

func OnColor242

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

func OnColor243

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

func OnColor244

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

func OnColor245

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

func OnColor246

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

func OnColor247

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

func OnColor248

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

func OnColor249

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

func OnColor250

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

func OnColor251

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

func OnColor252

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

func OnColor253

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

func OnColor254

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

func OnColor255

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

func OnCyan

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

func OnDefault

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

func OnGreen

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

func OnHex

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

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

func OnLightBlack

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

func OnLightBlue

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

func OnLightCyan

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

func OnLightGreen

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

func OnLightMagenta

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

func OnLightRed

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

func OnLightWhite

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

func OnLightYellow

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

func OnMagenta

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

func OnRainbow

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

OnRainbow will add multiple ANSI color codes to a string for a rainbow effect.

func OnRed

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

func OnWhite

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

func OnYellow

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

func Plain

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

Plain will strip all ANSI color codes from a string.

func Print

func Print(args ...interface{})

Print wraps fmt.Print().

func PrintBlack

func PrintBlack(str string, args ...interface{})
func PrintBlink(str string, args ...interface{})

func PrintBlinkRapid

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

func PrintBlinkSlow

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

func PrintBlue

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

func PrintBold

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

func PrintColor000

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

func PrintColor001

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

func PrintColor002

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

func PrintColor003

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

func PrintColor004

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

func PrintColor005

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

func PrintColor006

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

func PrintColor007

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

func PrintColor008

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

func PrintColor009

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

func PrintColor010

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

func PrintColor011

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

func PrintColor012

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

func PrintColor013

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

func PrintColor014

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

func PrintColor015

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

func PrintColor016

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

func PrintColor017

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

func PrintColor018

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

func PrintColor019

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

func PrintColor020

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

func PrintColor021

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

func PrintColor022

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

func PrintColor023

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

func PrintColor024

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

func PrintColor025

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

func PrintColor026

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

func PrintColor027

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

func PrintColor028

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

func PrintColor029

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

func PrintColor030

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

func PrintColor031

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

func PrintColor032

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

func PrintColor033

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

func PrintColor034

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

func PrintColor035

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

func PrintColor036

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

func PrintColor037

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

func PrintColor038

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

func PrintColor039

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

func PrintColor040

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

func PrintColor041

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

func PrintColor042

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

func PrintColor043

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

func PrintColor044

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

func PrintColor045

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

func PrintColor046

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

func PrintColor047

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

func PrintColor048

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

func PrintColor049

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

func PrintColor050

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

func PrintColor051

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

func PrintColor052

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

func PrintColor053

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

func PrintColor054

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

func PrintColor055

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

func PrintColor056

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

func PrintColor057

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

func PrintColor058

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

func PrintColor059

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

func PrintColor060

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

func PrintColor061

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

func PrintColor062

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

func PrintColor063

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

func PrintColor064

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

func PrintColor065

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

func PrintColor066

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

func PrintColor067

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

func PrintColor068

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

func PrintColor069

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

func PrintColor070

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

func PrintColor071

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

func PrintColor072

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

func PrintColor073

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

func PrintColor074

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

func PrintColor075

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

func PrintColor076

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

func PrintColor077

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

func PrintColor078

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

func PrintColor079

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

func PrintColor080

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

func PrintColor081

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

func PrintColor082

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

func PrintColor083

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

func PrintColor084

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

func PrintColor085

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

func PrintColor086

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

func PrintColor087

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

func PrintColor088

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

func PrintColor089

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

func PrintColor090

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

func PrintColor091

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

func PrintColor092

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

func PrintColor093

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

func PrintColor094

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

func PrintColor095

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

func PrintColor096

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

func PrintColor097

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

func PrintColor098

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

func PrintColor099

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

func PrintColor100

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

func PrintColor101

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

func PrintColor102

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

func PrintColor103

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

func PrintColor104

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

func PrintColor105

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

func PrintColor106

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

func PrintColor107

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

func PrintColor108

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

func PrintColor109

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

func PrintColor110

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

func PrintColor111

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

func PrintColor112

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

func PrintColor113

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

func PrintColor114

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

func PrintColor115

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

func PrintColor116

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

func PrintColor117

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

func PrintColor118

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

func PrintColor119

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

func PrintColor120

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

func PrintColor121

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

func PrintColor122

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

func PrintColor123

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

func PrintColor124

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

func PrintColor125

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

func PrintColor126

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

func PrintColor127

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

func PrintColor128

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

func PrintColor129

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

func PrintColor130

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

func PrintColor131

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

func PrintColor132

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

func PrintColor133

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

func PrintColor134

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

func PrintColor135

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

func PrintColor136

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

func PrintColor137

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

func PrintColor138

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

func PrintColor139

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

func PrintColor140

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

func PrintColor141

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

func PrintColor142

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

func PrintColor143

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

func PrintColor144

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

func PrintColor145

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

func PrintColor146

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

func PrintColor147

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

func PrintColor148

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

func PrintColor149

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

func PrintColor150

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

func PrintColor151

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

func PrintColor152

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

func PrintColor153

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

func PrintColor154

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

func PrintColor155

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

func PrintColor156

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

func PrintColor157

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

func PrintColor158

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

func PrintColor159

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

func PrintColor160

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

func PrintColor161

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

func PrintColor162

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

func PrintColor163

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

func PrintColor164

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

func PrintColor165

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

func PrintColor166

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

func PrintColor167

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

func PrintColor168

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

func PrintColor169

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

func PrintColor170

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

func PrintColor171

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

func PrintColor172

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

func PrintColor173

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

func PrintColor174

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

func PrintColor175

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

func PrintColor176

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

func PrintColor177

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

func PrintColor178

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

func PrintColor179

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

func PrintColor180

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

func PrintColor181

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

func PrintColor182

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

func PrintColor183

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

func PrintColor184

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

func PrintColor185

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

func PrintColor186

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

func PrintColor187

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

func PrintColor188

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

func PrintColor189

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

func PrintColor190

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

func PrintColor191

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

func PrintColor192

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

func PrintColor193

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

func PrintColor194

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

func PrintColor195

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

func PrintColor196

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

func PrintColor197

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

func PrintColor198

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

func PrintColor199

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

func PrintColor200

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

func PrintColor201

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

func PrintColor202

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

func PrintColor203

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

func PrintColor204

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

func PrintColor205

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

func PrintColor206

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

func PrintColor207

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

func PrintColor208

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

func PrintColor209

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

func PrintColor210

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

func PrintColor211

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

func PrintColor212

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

func PrintColor213

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

func PrintColor214

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

func PrintColor215

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

func PrintColor216

func PrintColor216(str string, args ...interface{})

func PrintColor217

func PrintColor217(str string, args ...interface{})

func PrintColor218

func PrintColor218(str string, args ...interface{})

func PrintColor219

func PrintColor219(str string, args ...interface{})

func PrintColor220

func PrintColor220(str string, args ...interface{})

func PrintColor221

func PrintColor221(str string, args ...interface{})

func PrintColor222

func PrintColor222(str string, args ...interface{})

func PrintColor223

func PrintColor223(str string, args ...interface{})

func PrintColor224

func PrintColor224(str string, args ...interface{})

func PrintColor225

func PrintColor225(str string, args ...interface{})

func PrintColor226

func PrintColor226(str string, args ...interface{})

func PrintColor227

func PrintColor227(str string, args ...interface{})

func PrintColor228

func PrintColor228(str string, args ...interface{})

func PrintColor229

func PrintColor229(str string, args ...interface{})

func PrintColor230

func PrintColor230(str string, args ...interface{})

func PrintColor231

func PrintColor231(str string, args ...interface{})

func PrintColor232

func PrintColor232(str string, args ...interface{})

func PrintColor233

func PrintColor233(str string, args ...interface{})

func PrintColor234

func PrintColor234(str string, args ...interface{})

func PrintColor235

func PrintColor235(str string, args ...interface{})

func PrintColor236

func PrintColor236(str string, args ...interface{})

func PrintColor237

func PrintColor237(str string, args ...interface{})

func PrintColor238

func PrintColor238(str string, args ...interface{})

func PrintColor239

func PrintColor239(str string, args ...interface{})

func PrintColor240

func PrintColor240(str string, args ...interface{})

func PrintColor241

func PrintColor241(str string, args ...interface{})

func PrintColor242

func PrintColor242(str string, args ...interface{})

func PrintColor243

func PrintColor243(str string, args ...interface{})

func PrintColor244

func PrintColor244(str string, args ...interface{})

func PrintColor245

func PrintColor245(str string, args ...interface{})

func PrintColor246

func PrintColor246(str string, args ...interface{})

func PrintColor247

func PrintColor247(str string, args ...interface{})

func PrintColor248

func PrintColor248(str string, args ...interface{})

func PrintColor249

func PrintColor249(str string, args ...interface{})

func PrintColor250

func PrintColor250(str string, args ...interface{})

func PrintColor251

func PrintColor251(str string, args ...interface{})

func PrintColor252

func PrintColor252(str string, args ...interface{})

func PrintColor253

func PrintColor253(str string, args ...interface{})

func PrintColor254

func PrintColor254(str string, args ...interface{})

func PrintColor255

func PrintColor255(str string, args ...interface{})

func PrintConceal

func PrintConceal(str string, args ...interface{})

func PrintCrossedOut

func PrintCrossedOut(str string, args ...interface{})

func PrintCyan

func PrintCyan(str string, args ...interface{})

func PrintDefault

func PrintDefault(str string, args ...interface{})

func PrintDim

func PrintDim(str string, args ...interface{})

func PrintFaint

func PrintFaint(str string, args ...interface{})

func PrintFraktur

func PrintFraktur(str string, args ...interface{})

func PrintGreen

func PrintGreen(str string, args ...interface{})

func PrintHex

func PrintHex(hex string, str string, args ...interface{})

PrintHex will take a hex color code and print a string with ANSI escape codes.

func PrintHide

func PrintHide(str string, args ...interface{})

func PrintHilight

func PrintHilight(code string, str string, args ...interface{})

PrintHilight will print a string with an ANSI escape code.

func PrintHilights

func PrintHilights(codes []string, str string, args ...interface{})

PrintHilights will print a string with ANSI escape codes.

func PrintInverse

func PrintInverse(str string, args ...interface{})

func PrintItalic

func PrintItalic(str string, args ...interface{})

func PrintLightBlack

func PrintLightBlack(str string, args ...interface{})

func PrintLightBlue

func PrintLightBlue(str string, args ...interface{})

func PrintLightCyan

func PrintLightCyan(str string, args ...interface{})

func PrintLightGreen

func PrintLightGreen(str string, args ...interface{})

func PrintLightMagenta

func PrintLightMagenta(str string, args ...interface{})

func PrintLightRed

func PrintLightRed(str string, args ...interface{})

func PrintLightWhite

func PrintLightWhite(str string, args ...interface{})

func PrintLightYellow

func PrintLightYellow(str string, args ...interface{})

func PrintMagenta

func PrintMagenta(str string, args ...interface{})

func PrintNegative

func PrintNegative(str string, args ...interface{})
func PrintNoBlink(str string, args ...interface{})

func PrintNoBlinkRapid

func PrintNoBlinkRapid(str string, args ...interface{})

func PrintNoBlinkSlow

func PrintNoBlinkSlow(str string, args ...interface{})

func PrintNoBold

func PrintNoBold(str string, args ...interface{})

func PrintNoConceal

func PrintNoConceal(str string, args ...interface{})

func PrintNoCrossedOut

func PrintNoCrossedOut(str string, args ...interface{})

func PrintNoDim

func PrintNoDim(str string, args ...interface{})

func PrintNoFaint

func PrintNoFaint(str string, args ...interface{})

func PrintNoFraktur

func PrintNoFraktur(str string, args ...interface{})

func PrintNoHide

func PrintNoHide(str string, args ...interface{})

func PrintNoInverse

func PrintNoInverse(str string, args ...interface{})

func PrintNoItalic

func PrintNoItalic(str string, args ...interface{})

func PrintNoNegative

func PrintNoNegative(str string, args ...interface{})

func PrintNoStrikethrough

func PrintNoStrikethrough(str string, args ...interface{})

func PrintNoSwap

func PrintNoSwap(str string, args ...interface{})

func PrintNoUnderline

func PrintNoUnderline(str string, args ...interface{})

func PrintNormal

func PrintNormal(str string, args ...interface{})

func PrintOnBlack

func PrintOnBlack(str string, args ...interface{})

func PrintOnBlue

func PrintOnBlue(str string, args ...interface{})

func PrintOnColor000

func PrintOnColor000(str string, args ...interface{})

func PrintOnColor001

func PrintOnColor001(str string, args ...interface{})

func PrintOnColor002

func PrintOnColor002(str string, args ...interface{})

func PrintOnColor003

func PrintOnColor003(str string, args ...interface{})

func PrintOnColor004

func PrintOnColor004(str string, args ...interface{})

func PrintOnColor005

func PrintOnColor005(str string, args ...interface{})

func PrintOnColor006

func PrintOnColor006(str string, args ...interface{})

func PrintOnColor007

func PrintOnColor007(str string, args ...interface{})

func PrintOnColor008

func PrintOnColor008(str string, args ...interface{})

func PrintOnColor009

func PrintOnColor009(str string, args ...interface{})

func PrintOnColor010

func PrintOnColor010(str string, args ...interface{})

func PrintOnColor011

func PrintOnColor011(str string, args ...interface{})

func PrintOnColor012

func PrintOnColor012(str string, args ...interface{})

func PrintOnColor013

func PrintOnColor013(str string, args ...interface{})

func PrintOnColor014

func PrintOnColor014(str string, args ...interface{})

func PrintOnColor015

func PrintOnColor015(str string, args ...interface{})

func PrintOnColor016

func PrintOnColor016(str string, args ...interface{})

func PrintOnColor017

func PrintOnColor017(str string, args ...interface{})

func PrintOnColor018

func PrintOnColor018(str string, args ...interface{})

func PrintOnColor019

func PrintOnColor019(str string, args ...interface{})

func PrintOnColor020

func PrintOnColor020(str string, args ...interface{})

func PrintOnColor021

func PrintOnColor021(str string, args ...interface{})

func PrintOnColor022

func PrintOnColor022(str string, args ...interface{})

func PrintOnColor023

func PrintOnColor023(str string, args ...interface{})

func PrintOnColor024

func PrintOnColor024(str string, args ...interface{})

func PrintOnColor025

func PrintOnColor025(str string, args ...interface{})

func PrintOnColor026

func PrintOnColor026(str string, args ...interface{})

func PrintOnColor027

func PrintOnColor027(str string, args ...interface{})

func PrintOnColor028

func PrintOnColor028(str string, args ...interface{})

func PrintOnColor029

func PrintOnColor029(str string, args ...interface{})

func PrintOnColor030

func PrintOnColor030(str string, args ...interface{})

func PrintOnColor031

func PrintOnColor031(str string, args ...interface{})

func PrintOnColor032

func PrintOnColor032(str string, args ...interface{})

func PrintOnColor033

func PrintOnColor033(str string, args ...interface{})

func PrintOnColor034

func PrintOnColor034(str string, args ...interface{})

func PrintOnColor035

func PrintOnColor035(str string, args ...interface{})

func PrintOnColor036

func PrintOnColor036(str string, args ...interface{})

func PrintOnColor037

func PrintOnColor037(str string, args ...interface{})

func PrintOnColor038

func PrintOnColor038(str string, args ...interface{})

func PrintOnColor039

func PrintOnColor039(str string, args ...interface{})

func PrintOnColor040

func PrintOnColor040(str string, args ...interface{})

func PrintOnColor041

func PrintOnColor041(str string, args ...interface{})

func PrintOnColor042

func PrintOnColor042(str string, args ...interface{})

func PrintOnColor043

func PrintOnColor043(str string, args ...interface{})

func PrintOnColor044

func PrintOnColor044(str string, args ...interface{})

func PrintOnColor045

func PrintOnColor045(str string, args ...interface{})

func PrintOnColor046

func PrintOnColor046(str string, args ...interface{})

func PrintOnColor047

func PrintOnColor047(str string, args ...interface{})

func PrintOnColor048

func PrintOnColor048(str string, args ...interface{})

func PrintOnColor049

func PrintOnColor049(str string, args ...interface{})

func PrintOnColor050

func PrintOnColor050(str string, args ...interface{})

func PrintOnColor051

func PrintOnColor051(str string, args ...interface{})

func PrintOnColor052

func PrintOnColor052(str string, args ...interface{})

func PrintOnColor053

func PrintOnColor053(str string, args ...interface{})

func PrintOnColor054

func PrintOnColor054(str string, args ...interface{})

func PrintOnColor055

func PrintOnColor055(str string, args ...interface{})

func PrintOnColor056

func PrintOnColor056(str string, args ...interface{})

func PrintOnColor057

func PrintOnColor057(str string, args ...interface{})

func PrintOnColor058

func PrintOnColor058(str string, args ...interface{})

func PrintOnColor059

func PrintOnColor059(str string, args ...interface{})

func PrintOnColor060

func PrintOnColor060(str string, args ...interface{})

func PrintOnColor061

func PrintOnColor061(str string, args ...interface{})

func PrintOnColor062

func PrintOnColor062(str string, args ...interface{})

func PrintOnColor063

func PrintOnColor063(str string, args ...interface{})

func PrintOnColor064

func PrintOnColor064(str string, args ...interface{})

func PrintOnColor065

func PrintOnColor065(str string, args ...interface{})

func PrintOnColor066

func PrintOnColor066(str string, args ...interface{})

func PrintOnColor067

func PrintOnColor067(str string, args ...interface{})

func PrintOnColor068

func PrintOnColor068(str string, args ...interface{})

func PrintOnColor069

func PrintOnColor069(str string, args ...interface{})

func PrintOnColor070

func PrintOnColor070(str string, args ...interface{})

func PrintOnColor071

func PrintOnColor071(str string, args ...interface{})

func PrintOnColor072

func PrintOnColor072(str string, args ...interface{})

func PrintOnColor073

func PrintOnColor073(str string, args ...interface{})

func PrintOnColor074

func PrintOnColor074(str string, args ...interface{})

func PrintOnColor075

func PrintOnColor075(str string, args ...interface{})

func PrintOnColor076

func PrintOnColor076(str string, args ...interface{})

func PrintOnColor077

func PrintOnColor077(str string, args ...interface{})

func PrintOnColor078

func PrintOnColor078(str string, args ...interface{})

func PrintOnColor079

func PrintOnColor079(str string, args ...interface{})

func PrintOnColor080

func PrintOnColor080(str string, args ...interface{})

func PrintOnColor081

func PrintOnColor081(str string, args ...interface{})

func PrintOnColor082

func PrintOnColor082(str string, args ...interface{})

func PrintOnColor083

func PrintOnColor083(str string, args ...interface{})

func PrintOnColor084

func PrintOnColor084(str string, args ...interface{})

func PrintOnColor085

func PrintOnColor085(str string, args ...interface{})

func PrintOnColor086

func PrintOnColor086(str string, args ...interface{})

func PrintOnColor087

func PrintOnColor087(str string, args ...interface{})

func PrintOnColor088

func PrintOnColor088(str string, args ...interface{})

func PrintOnColor089

func PrintOnColor089(str string, args ...interface{})

func PrintOnColor090

func PrintOnColor090(str string, args ...interface{})

func PrintOnColor091

func PrintOnColor091(str string, args ...interface{})

func PrintOnColor092

func PrintOnColor092(str string, args ...interface{})

func PrintOnColor093

func PrintOnColor093(str string, args ...interface{})

func PrintOnColor094

func PrintOnColor094(str string, args ...interface{})

func PrintOnColor095

func PrintOnColor095(str string, args ...interface{})

func PrintOnColor096

func PrintOnColor096(str string, args ...interface{})

func PrintOnColor097

func PrintOnColor097(str string, args ...interface{})

func PrintOnColor098

func PrintOnColor098(str string, args ...interface{})

func PrintOnColor099

func PrintOnColor099(str string, args ...interface{})

func PrintOnColor100

func PrintOnColor100(str string, args ...interface{})

func PrintOnColor101

func PrintOnColor101(str string, args ...interface{})

func PrintOnColor102

func PrintOnColor102(str string, args ...interface{})

func PrintOnColor103

func PrintOnColor103(str string, args ...interface{})

func PrintOnColor104

func PrintOnColor104(str string, args ...interface{})

func PrintOnColor105

func PrintOnColor105(str string, args ...interface{})

func PrintOnColor106

func PrintOnColor106(str string, args ...interface{})

func PrintOnColor107

func PrintOnColor107(str string, args ...interface{})

func PrintOnColor108

func PrintOnColor108(str string, args ...interface{})

func PrintOnColor109

func PrintOnColor109(str string, args ...interface{})

func PrintOnColor110

func PrintOnColor110(str string, args ...interface{})

func PrintOnColor111

func PrintOnColor111(str string, args ...interface{})

func PrintOnColor112

func PrintOnColor112(str string, args ...interface{})

func PrintOnColor113

func PrintOnColor113(str string, args ...interface{})

func PrintOnColor114

func PrintOnColor114(str string, args ...interface{})

func PrintOnColor115

func PrintOnColor115(str string, args ...interface{})

func PrintOnColor116

func PrintOnColor116(str string, args ...interface{})

func PrintOnColor117

func PrintOnColor117(str string, args ...interface{})

func PrintOnColor118

func PrintOnColor118(str string, args ...interface{})

func PrintOnColor119

func PrintOnColor119(str string, args ...interface{})

func PrintOnColor120

func PrintOnColor120(str string, args ...interface{})

func PrintOnColor121

func PrintOnColor121(str string, args ...interface{})

func PrintOnColor122

func PrintOnColor122(str string, args ...interface{})

func PrintOnColor123

func PrintOnColor123(str string, args ...interface{})

func PrintOnColor124

func PrintOnColor124(str string, args ...interface{})

func PrintOnColor125

func PrintOnColor125(str string, args ...interface{})

func PrintOnColor126

func PrintOnColor126(str string, args ...interface{})

func PrintOnColor127

func PrintOnColor127(str string, args ...interface{})

func PrintOnColor128

func PrintOnColor128(str string, args ...interface{})

func PrintOnColor129

func PrintOnColor129(str string, args ...interface{})

func PrintOnColor130

func PrintOnColor130(str string, args ...interface{})

func PrintOnColor131

func PrintOnColor131(str string, args ...interface{})

func PrintOnColor132

func PrintOnColor132(str string, args ...interface{})

func PrintOnColor133

func PrintOnColor133(str string, args ...interface{})

func PrintOnColor134

func PrintOnColor134(str string, args ...interface{})

func PrintOnColor135

func PrintOnColor135(str string, args ...interface{})

func PrintOnColor136

func PrintOnColor136(str string, args ...interface{})

func PrintOnColor137

func PrintOnColor137(str string, args ...interface{})

func PrintOnColor138

func PrintOnColor138(str string, args ...interface{})

func PrintOnColor139

func PrintOnColor139(str string, args ...interface{})

func PrintOnColor140

func PrintOnColor140(str string, args ...interface{})

func PrintOnColor141

func PrintOnColor141(str string, args ...interface{})

func PrintOnColor142

func PrintOnColor142(str string, args ...interface{})

func PrintOnColor143

func PrintOnColor143(str string, args ...interface{})

func PrintOnColor144

func PrintOnColor144(str string, args ...interface{})

func PrintOnColor145

func PrintOnColor145(str string, args ...interface{})

func PrintOnColor146

func PrintOnColor146(str string, args ...interface{})

func PrintOnColor147

func PrintOnColor147(str string, args ...interface{})

func PrintOnColor148

func PrintOnColor148(str string, args ...interface{})

func PrintOnColor149

func PrintOnColor149(str string, args ...interface{})

func PrintOnColor150

func PrintOnColor150(str string, args ...interface{})

func PrintOnColor151

func PrintOnColor151(str string, args ...interface{})

func PrintOnColor152

func PrintOnColor152(str string, args ...interface{})

func PrintOnColor153

func PrintOnColor153(str string, args ...interface{})

func PrintOnColor154

func PrintOnColor154(str string, args ...interface{})

func PrintOnColor155

func PrintOnColor155(str string, args ...interface{})

func PrintOnColor156

func PrintOnColor156(str string, args ...interface{})

func PrintOnColor157

func PrintOnColor157(str string, args ...interface{})

func PrintOnColor158

func PrintOnColor158(str string, args ...interface{})

func PrintOnColor159

func PrintOnColor159(str string, args ...interface{})

func PrintOnColor160

func PrintOnColor160(str string, args ...interface{})

func PrintOnColor161

func PrintOnColor161(str string, args ...interface{})

func PrintOnColor162

func PrintOnColor162(str string, args ...interface{})

func PrintOnColor163

func PrintOnColor163(str string, args ...interface{})

func PrintOnColor164

func PrintOnColor164(str string, args ...interface{})

func PrintOnColor165

func PrintOnColor165(str string, args ...interface{})

func PrintOnColor166

func PrintOnColor166(str string, args ...interface{})

func PrintOnColor167

func PrintOnColor167(str string, args ...interface{})

func PrintOnColor168

func PrintOnColor168(str string, args ...interface{})

func PrintOnColor169

func PrintOnColor169(str string, args ...interface{})

func PrintOnColor170

func PrintOnColor170(str string, args ...interface{})

func PrintOnColor171

func PrintOnColor171(str string, args ...interface{})

func PrintOnColor172

func PrintOnColor172(str string, args ...interface{})

func PrintOnColor173

func PrintOnColor173(str string, args ...interface{})

func PrintOnColor174

func PrintOnColor174(str string, args ...interface{})

func PrintOnColor175

func PrintOnColor175(str string, args ...interface{})

func PrintOnColor176

func PrintOnColor176(str string, args ...interface{})

func PrintOnColor177

func PrintOnColor177(str string, args ...interface{})

func PrintOnColor178

func PrintOnColor178(str string, args ...interface{})

func PrintOnColor179

func PrintOnColor179(str string, args ...interface{})

func PrintOnColor180

func PrintOnColor180(str string, args ...interface{})

func PrintOnColor181

func PrintOnColor181(str string, args ...interface{})

func PrintOnColor182

func PrintOnColor182(str string, args ...interface{})

func PrintOnColor183

func PrintOnColor183(str string, args ...interface{})

func PrintOnColor184

func PrintOnColor184(str string, args ...interface{})

func PrintOnColor185

func PrintOnColor185(str string, args ...interface{})

func PrintOnColor186

func PrintOnColor186(str string, args ...interface{})

func PrintOnColor187

func PrintOnColor187(str string, args ...interface{})

func PrintOnColor188

func PrintOnColor188(str string, args ...interface{})

func PrintOnColor189

func PrintOnColor189(str string, args ...interface{})

func PrintOnColor190

func PrintOnColor190(str string, args ...interface{})

func PrintOnColor191

func PrintOnColor191(str string, args ...interface{})

func PrintOnColor192

func PrintOnColor192(str string, args ...interface{})

func PrintOnColor193

func PrintOnColor193(str string, args ...interface{})

func PrintOnColor194

func PrintOnColor194(str string, args ...interface{})

func PrintOnColor195

func PrintOnColor195(str string, args ...interface{})

func PrintOnColor196

func PrintOnColor196(str string, args ...interface{})

func PrintOnColor197

func PrintOnColor197(str string, args ...interface{})

func PrintOnColor198

func PrintOnColor198(str string, args ...interface{})

func PrintOnColor199

func PrintOnColor199(str string, args ...interface{})

func PrintOnColor200

func PrintOnColor200(str string, args ...interface{})

func PrintOnColor201

func PrintOnColor201(str string, args ...interface{})

func PrintOnColor202

func PrintOnColor202(str string, args ...interface{})

func PrintOnColor203

func PrintOnColor203(str string, args ...interface{})

func PrintOnColor204

func PrintOnColor204(str string, args ...interface{})

func PrintOnColor205

func PrintOnColor205(str string, args ...interface{})

func PrintOnColor206

func PrintOnColor206(str string, args ...interface{})

func PrintOnColor207

func PrintOnColor207(str string, args ...interface{})

func PrintOnColor208

func PrintOnColor208(str string, args ...interface{})

func PrintOnColor209

func PrintOnColor209(str string, args ...interface{})

func PrintOnColor210

func PrintOnColor210(str string, args ...interface{})

func PrintOnColor211

func PrintOnColor211(str string, args ...interface{})

func PrintOnColor212

func PrintOnColor212(str string, args ...interface{})

func PrintOnColor213

func PrintOnColor213(str string, args ...interface{})

func PrintOnColor214

func PrintOnColor214(str string, args ...interface{})

func PrintOnColor215

func PrintOnColor215(str string, args ...interface{})

func PrintOnColor216

func PrintOnColor216(str string, args ...interface{})

func PrintOnColor217

func PrintOnColor217(str string, args ...interface{})

func PrintOnColor218

func PrintOnColor218(str string, args ...interface{})

func PrintOnColor219

func PrintOnColor219(str string, args ...interface{})

func PrintOnColor220

func PrintOnColor220(str string, args ...interface{})

func PrintOnColor221

func PrintOnColor221(str string, args ...interface{})

func PrintOnColor222

func PrintOnColor222(str string, args ...interface{})

func PrintOnColor223

func PrintOnColor223(str string, args ...interface{})

func PrintOnColor224

func PrintOnColor224(str string, args ...interface{})

func PrintOnColor225

func PrintOnColor225(str string, args ...interface{})

func PrintOnColor226

func PrintOnColor226(str string, args ...interface{})

func PrintOnColor227

func PrintOnColor227(str string, args ...interface{})

func PrintOnColor228

func PrintOnColor228(str string, args ...interface{})

func PrintOnColor229

func PrintOnColor229(str string, args ...interface{})

func PrintOnColor230

func PrintOnColor230(str string, args ...interface{})

func PrintOnColor231

func PrintOnColor231(str string, args ...interface{})

func PrintOnColor232

func PrintOnColor232(str string, args ...interface{})

func PrintOnColor233

func PrintOnColor233(str string, args ...interface{})

func PrintOnColor234

func PrintOnColor234(str string, args ...interface{})

func PrintOnColor235

func PrintOnColor235(str string, args ...interface{})

func PrintOnColor236

func PrintOnColor236(str string, args ...interface{})

func PrintOnColor237

func PrintOnColor237(str string, args ...interface{})

func PrintOnColor238

func PrintOnColor238(str string, args ...interface{})

func PrintOnColor239

func PrintOnColor239(str string, args ...interface{})

func PrintOnColor240

func PrintOnColor240(str string, args ...interface{})

func PrintOnColor241

func PrintOnColor241(str string, args ...interface{})

func PrintOnColor242

func PrintOnColor242(str string, args ...interface{})

func PrintOnColor243

func PrintOnColor243(str string, args ...interface{})

func PrintOnColor244

func PrintOnColor244(str string, args ...interface{})

func PrintOnColor245

func PrintOnColor245(str string, args ...interface{})

func PrintOnColor246

func PrintOnColor246(str string, args ...interface{})

func PrintOnColor247

func PrintOnColor247(str string, args ...interface{})

func PrintOnColor248

func PrintOnColor248(str string, args ...interface{})

func PrintOnColor249

func PrintOnColor249(str string, args ...interface{})

func PrintOnColor250

func PrintOnColor250(str string, args ...interface{})

func PrintOnColor251

func PrintOnColor251(str string, args ...interface{})

func PrintOnColor252

func PrintOnColor252(str string, args ...interface{})

func PrintOnColor253

func PrintOnColor253(str string, args ...interface{})

func PrintOnColor254

func PrintOnColor254(str string, args ...interface{})

func PrintOnColor255

func PrintOnColor255(str string, args ...interface{})

func PrintOnCyan

func PrintOnCyan(str string, args ...interface{})

func PrintOnDefault

func PrintOnDefault(str string, args ...interface{})

func PrintOnGreen

func PrintOnGreen(str string, args ...interface{})

func PrintOnHex

func PrintOnHex(hex string, str string, args ...interface{})

PrintOnHex will take a hex color code and print a line with ANSI escape codes.

func PrintOnLightBlack

func PrintOnLightBlack(str string, args ...interface{})

func PrintOnLightBlue

func PrintOnLightBlue(str string, args ...interface{})

func PrintOnLightCyan

func PrintOnLightCyan(str string, args ...interface{})

func PrintOnLightGreen

func PrintOnLightGreen(str string, args ...interface{})

func PrintOnLightMagenta

func PrintOnLightMagenta(str string, args ...interface{})

func PrintOnLightRed

func PrintOnLightRed(str string, args ...interface{})

func PrintOnLightWhite

func PrintOnLightWhite(str string, args ...interface{})

func PrintOnLightYellow

func PrintOnLightYellow(str string, args ...interface{})

func PrintOnMagenta

func PrintOnMagenta(str string, args ...interface{})

func PrintOnRainbow

func PrintOnRainbow(str string, args ...interface{})

PrintOnRainbow will print a string rotating through ANSI color codes for a rainbow effect.

func PrintOnRed

func PrintOnRed(str string, args ...interface{})

func PrintOnWhite

func PrintOnWhite(str string, args ...interface{})

func PrintOnYellow

func PrintOnYellow(str string, args ...interface{})

func PrintRainbow

func PrintRainbow(str string, args ...interface{})

PrintRainbow will print a string rotating through ANSI color codes for a rainbow effect.

func PrintRed

func PrintRed(str string, args ...interface{})

func PrintReset

func PrintReset(str string, args ...interface{})

func PrintStrikethrough

func PrintStrikethrough(str string, args ...interface{})

func PrintSwap

func PrintSwap(str string, args ...interface{})

func PrintUnderline

func PrintUnderline(str string, args ...interface{})

func PrintWhite

func PrintWhite(str string, args ...interface{})

func PrintWrap

func PrintWrap(width int, str string, args ...interface{})

PrintWrap will wrap a string to the specified width and print it.

func PrintYellow

func PrintYellow(str string, args ...interface{})

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, args ...interface{})
func PrintlnBlink(str string, args ...interface{})

func PrintlnBlinkRapid

func PrintlnBlinkRapid(str string, args ...interface{})

func PrintlnBlinkSlow

func PrintlnBlinkSlow(str string, args ...interface{})

func PrintlnBlue

func PrintlnBlue(str string, args ...interface{})

func PrintlnBold

func PrintlnBold(str string, args ...interface{})

func PrintlnColor000

func PrintlnColor000(str string, args ...interface{})

func PrintlnColor001

func PrintlnColor001(str string, args ...interface{})

func PrintlnColor002

func PrintlnColor002(str string, args ...interface{})

func PrintlnColor003

func PrintlnColor003(str string, args ...interface{})

func PrintlnColor004

func PrintlnColor004(str string, args ...interface{})

func PrintlnColor005

func PrintlnColor005(str string, args ...interface{})

func PrintlnColor006

func PrintlnColor006(str string, args ...interface{})

func PrintlnColor007

func PrintlnColor007(str string, args ...interface{})

func PrintlnColor008

func PrintlnColor008(str string, args ...interface{})

func PrintlnColor009

func PrintlnColor009(str string, args ...interface{})

func PrintlnColor010

func PrintlnColor010(str string, args ...interface{})

func PrintlnColor011

func PrintlnColor011(str string, args ...interface{})

func PrintlnColor012

func PrintlnColor012(str string, args ...interface{})

func PrintlnColor013

func PrintlnColor013(str string, args ...interface{})

func PrintlnColor014

func PrintlnColor014(str string, args ...interface{})

func PrintlnColor015

func PrintlnColor015(str string, args ...interface{})

func PrintlnColor016

func PrintlnColor016(str string, args ...interface{})

func PrintlnColor017

func PrintlnColor017(str string, args ...interface{})

func PrintlnColor018

func PrintlnColor018(str string, args ...interface{})

func PrintlnColor019

func PrintlnColor019(str string, args ...interface{})

func PrintlnColor020

func PrintlnColor020(str string, args ...interface{})

func PrintlnColor021

func PrintlnColor021(str string, args ...interface{})

func PrintlnColor022

func PrintlnColor022(str string, args ...interface{})

func PrintlnColor023

func PrintlnColor023(str string, args ...interface{})

func PrintlnColor024

func PrintlnColor024(str string, args ...interface{})

func PrintlnColor025

func PrintlnColor025(str string, args ...interface{})

func PrintlnColor026

func PrintlnColor026(str string, args ...interface{})

func PrintlnColor027

func PrintlnColor027(str string, args ...interface{})

func PrintlnColor028

func PrintlnColor028(str string, args ...interface{})

func PrintlnColor029

func PrintlnColor029(str string, args ...interface{})

func PrintlnColor030

func PrintlnColor030(str string, args ...interface{})

func PrintlnColor031

func PrintlnColor031(str string, args ...interface{})

func PrintlnColor032

func PrintlnColor032(str string, args ...interface{})

func PrintlnColor033

func PrintlnColor033(str string, args ...interface{})

func PrintlnColor034

func PrintlnColor034(str string, args ...interface{})

func PrintlnColor035

func PrintlnColor035(str string, args ...interface{})

func PrintlnColor036

func PrintlnColor036(str string, args ...interface{})

func PrintlnColor037

func PrintlnColor037(str string, args ...interface{})

func PrintlnColor038

func PrintlnColor038(str string, args ...interface{})

func PrintlnColor039

func PrintlnColor039(str string, args ...interface{})

func PrintlnColor040

func PrintlnColor040(str string, args ...interface{})

func PrintlnColor041

func PrintlnColor041(str string, args ...interface{})

func PrintlnColor042

func PrintlnColor042(str string, args ...interface{})

func PrintlnColor043

func PrintlnColor043(str string, args ...interface{})

func PrintlnColor044

func PrintlnColor044(str string, args ...interface{})

func PrintlnColor045

func PrintlnColor045(str string, args ...interface{})

func PrintlnColor046

func PrintlnColor046(str string, args ...interface{})

func PrintlnColor047

func PrintlnColor047(str string, args ...interface{})

func PrintlnColor048

func PrintlnColor048(str string, args ...interface{})

func PrintlnColor049

func PrintlnColor049(str string, args ...interface{})

func PrintlnColor050

func PrintlnColor050(str string, args ...interface{})

func PrintlnColor051

func PrintlnColor051(str string, args ...interface{})

func PrintlnColor052

func PrintlnColor052(str string, args ...interface{})

func PrintlnColor053

func PrintlnColor053(str string, args ...interface{})

func PrintlnColor054

func PrintlnColor054(str string, args ...interface{})

func PrintlnColor055

func PrintlnColor055(str string, args ...interface{})

func PrintlnColor056

func PrintlnColor056(str string, args ...interface{})

func PrintlnColor057

func PrintlnColor057(str string, args ...interface{})

func PrintlnColor058

func PrintlnColor058(str string, args ...interface{})

func PrintlnColor059

func PrintlnColor059(str string, args ...interface{})

func PrintlnColor060

func PrintlnColor060(str string, args ...interface{})

func PrintlnColor061

func PrintlnColor061(str string, args ...interface{})

func PrintlnColor062

func PrintlnColor062(str string, args ...interface{})

func PrintlnColor063

func PrintlnColor063(str string, args ...interface{})

func PrintlnColor064

func PrintlnColor064(str string, args ...interface{})

func PrintlnColor065

func PrintlnColor065(str string, args ...interface{})

func PrintlnColor066

func PrintlnColor066(str string, args ...interface{})

func PrintlnColor067

func PrintlnColor067(str string, args ...interface{})

func PrintlnColor068

func PrintlnColor068(str string, args ...interface{})

func PrintlnColor069

func PrintlnColor069(str string, args ...interface{})

func PrintlnColor070

func PrintlnColor070(str string, args ...interface{})

func PrintlnColor071

func PrintlnColor071(str string, args ...interface{})

func PrintlnColor072

func PrintlnColor072(str string, args ...interface{})

func PrintlnColor073

func PrintlnColor073(str string, args ...interface{})

func PrintlnColor074

func PrintlnColor074(str string, args ...interface{})

func PrintlnColor075

func PrintlnColor075(str string, args ...interface{})

func PrintlnColor076

func PrintlnColor076(str string, args ...interface{})

func PrintlnColor077

func PrintlnColor077(str string, args ...interface{})

func PrintlnColor078

func PrintlnColor078(str string, args ...interface{})

func PrintlnColor079

func PrintlnColor079(str string, args ...interface{})

func PrintlnColor080

func PrintlnColor080(str string, args ...interface{})

func PrintlnColor081

func PrintlnColor081(str string, args ...interface{})

func PrintlnColor082

func PrintlnColor082(str string, args ...interface{})

func PrintlnColor083

func PrintlnColor083(str string, args ...interface{})

func PrintlnColor084

func PrintlnColor084(str string, args ...interface{})

func PrintlnColor085

func PrintlnColor085(str string, args ...interface{})

func PrintlnColor086

func PrintlnColor086(str string, args ...interface{})

func PrintlnColor087

func PrintlnColor087(str string, args ...interface{})

func PrintlnColor088

func PrintlnColor088(str string, args ...interface{})

func PrintlnColor089

func PrintlnColor089(str string, args ...interface{})

func PrintlnColor090

func PrintlnColor090(str string, args ...interface{})

func PrintlnColor091

func PrintlnColor091(str string, args ...interface{})

func PrintlnColor092

func PrintlnColor092(str string, args ...interface{})

func PrintlnColor093

func PrintlnColor093(str string, args ...interface{})

func PrintlnColor094

func PrintlnColor094(str string, args ...interface{})

func PrintlnColor095

func PrintlnColor095(str string, args ...interface{})

func PrintlnColor096

func PrintlnColor096(str string, args ...interface{})

func PrintlnColor097

func PrintlnColor097(str string, args ...interface{})

func PrintlnColor098

func PrintlnColor098(str string, args ...interface{})

func PrintlnColor099

func PrintlnColor099(str string, args ...interface{})

func PrintlnColor100

func PrintlnColor100(str string, args ...interface{})

func PrintlnColor101

func PrintlnColor101(str string, args ...interface{})

func PrintlnColor102

func PrintlnColor102(str string, args ...interface{})

func PrintlnColor103

func PrintlnColor103(str string, args ...interface{})

func PrintlnColor104

func PrintlnColor104(str string, args ...interface{})

func PrintlnColor105

func PrintlnColor105(str string, args ...interface{})

func PrintlnColor106

func PrintlnColor106(str string, args ...interface{})

func PrintlnColor107

func PrintlnColor107(str string, args ...interface{})

func PrintlnColor108

func PrintlnColor108(str string, args ...interface{})

func PrintlnColor109

func PrintlnColor109(str string, args ...interface{})

func PrintlnColor110

func PrintlnColor110(str string, args ...interface{})

func PrintlnColor111

func PrintlnColor111(str string, args ...interface{})

func PrintlnColor112

func PrintlnColor112(str string, args ...interface{})

func PrintlnColor113

func PrintlnColor113(str string, args ...interface{})

func PrintlnColor114

func PrintlnColor114(str string, args ...interface{})

func PrintlnColor115

func PrintlnColor115(str string, args ...interface{})

func PrintlnColor116

func PrintlnColor116(str string, args ...interface{})

func PrintlnColor117

func PrintlnColor117(str string, args ...interface{})

func PrintlnColor118

func PrintlnColor118(str string, args ...interface{})

func PrintlnColor119

func PrintlnColor119(str string, args ...interface{})

func PrintlnColor120

func PrintlnColor120(str string, args ...interface{})

func PrintlnColor121

func PrintlnColor121(str string, args ...interface{})

func PrintlnColor122

func PrintlnColor122(str string, args ...interface{})

func PrintlnColor123

func PrintlnColor123(str string, args ...interface{})

func PrintlnColor124

func PrintlnColor124(str string, args ...interface{})

func PrintlnColor125

func PrintlnColor125(str string, args ...interface{})

func PrintlnColor126

func PrintlnColor126(str string, args ...interface{})

func PrintlnColor127

func PrintlnColor127(str string, args ...interface{})

func PrintlnColor128

func PrintlnColor128(str string, args ...interface{})

func PrintlnColor129

func PrintlnColor129(str string, args ...interface{})

func PrintlnColor130

func PrintlnColor130(str string, args ...interface{})

func PrintlnColor131

func PrintlnColor131(str string, args ...interface{})

func PrintlnColor132

func PrintlnColor132(str string, args ...interface{})

func PrintlnColor133

func PrintlnColor133(str string, args ...interface{})

func PrintlnColor134

func PrintlnColor134(str string, args ...interface{})

func PrintlnColor135

func PrintlnColor135(str string, args ...interface{})

func PrintlnColor136

func PrintlnColor136(str string, args ...interface{})

func PrintlnColor137

func PrintlnColor137(str string, args ...interface{})

func PrintlnColor138

func PrintlnColor138(str string, args ...interface{})

func PrintlnColor139

func PrintlnColor139(str string, args ...interface{})

func PrintlnColor140

func PrintlnColor140(str string, args ...interface{})

func PrintlnColor141

func PrintlnColor141(str string, args ...interface{})

func PrintlnColor142

func PrintlnColor142(str string, args ...interface{})

func PrintlnColor143

func PrintlnColor143(str string, args ...interface{})

func PrintlnColor144

func PrintlnColor144(str string, args ...interface{})

func PrintlnColor145

func PrintlnColor145(str string, args ...interface{})

func PrintlnColor146

func PrintlnColor146(str string, args ...interface{})

func PrintlnColor147

func PrintlnColor147(str string, args ...interface{})

func PrintlnColor148

func PrintlnColor148(str string, args ...interface{})

func PrintlnColor149

func PrintlnColor149(str string, args ...interface{})

func PrintlnColor150

func PrintlnColor150(str string, args ...interface{})

func PrintlnColor151

func PrintlnColor151(str string, args ...interface{})

func PrintlnColor152

func PrintlnColor152(str string, args ...interface{})

func PrintlnColor153

func PrintlnColor153(str string, args ...interface{})

func PrintlnColor154

func PrintlnColor154(str string, args ...interface{})

func PrintlnColor155

func PrintlnColor155(str string, args ...interface{})

func PrintlnColor156

func PrintlnColor156(str string, args ...interface{})

func PrintlnColor157

func PrintlnColor157(str string, args ...interface{})

func PrintlnColor158

func PrintlnColor158(str string, args ...interface{})

func PrintlnColor159

func PrintlnColor159(str string, args ...interface{})

func PrintlnColor160

func PrintlnColor160(str string, args ...interface{})

func PrintlnColor161

func PrintlnColor161(str string, args ...interface{})

func PrintlnColor162

func PrintlnColor162(str string, args ...interface{})

func PrintlnColor163

func PrintlnColor163(str string, args ...interface{})

func PrintlnColor164

func PrintlnColor164(str string, args ...interface{})

func PrintlnColor165

func PrintlnColor165(str string, args ...interface{})

func PrintlnColor166

func PrintlnColor166(str string, args ...interface{})

func PrintlnColor167

func PrintlnColor167(str string, args ...interface{})

func PrintlnColor168

func PrintlnColor168(str string, args ...interface{})

func PrintlnColor169

func PrintlnColor169(str string, args ...interface{})

func PrintlnColor170

func PrintlnColor170(str string, args ...interface{})

func PrintlnColor171

func PrintlnColor171(str string, args ...interface{})

func PrintlnColor172

func PrintlnColor172(str string, args ...interface{})

func PrintlnColor173

func PrintlnColor173(str string, args ...interface{})

func PrintlnColor174

func PrintlnColor174(str string, args ...interface{})

func PrintlnColor175

func PrintlnColor175(str string, args ...interface{})

func PrintlnColor176

func PrintlnColor176(str string, args ...interface{})

func PrintlnColor177

func PrintlnColor177(str string, args ...interface{})

func PrintlnColor178

func PrintlnColor178(str string, args ...interface{})

func PrintlnColor179

func PrintlnColor179(str string, args ...interface{})

func PrintlnColor180

func PrintlnColor180(str string, args ...interface{})

func PrintlnColor181

func PrintlnColor181(str string, args ...interface{})

func PrintlnColor182

func PrintlnColor182(str string, args ...interface{})

func PrintlnColor183

func PrintlnColor183(str string, args ...interface{})

func PrintlnColor184

func PrintlnColor184(str string, args ...interface{})

func PrintlnColor185

func PrintlnColor185(str string, args ...interface{})

func PrintlnColor186

func PrintlnColor186(str string, args ...interface{})

func PrintlnColor187

func PrintlnColor187(str string, args ...interface{})

func PrintlnColor188

func PrintlnColor188(str string, args ...interface{})

func PrintlnColor189

func PrintlnColor189(str string, args ...interface{})

func PrintlnColor190

func PrintlnColor190(str string, args ...interface{})

func PrintlnColor191

func PrintlnColor191(str string, args ...interface{})

func PrintlnColor192

func PrintlnColor192(str string, args ...interface{})

func PrintlnColor193

func PrintlnColor193(str string, args ...interface{})

func PrintlnColor194

func PrintlnColor194(str string, args ...interface{})

func PrintlnColor195

func PrintlnColor195(str string, args ...interface{})

func PrintlnColor196

func PrintlnColor196(str string, args ...interface{})

func PrintlnColor197

func PrintlnColor197(str string, args ...interface{})

func PrintlnColor198

func PrintlnColor198(str string, args ...interface{})

func PrintlnColor199

func PrintlnColor199(str string, args ...interface{})

func PrintlnColor200

func PrintlnColor200(str string, args ...interface{})

func PrintlnColor201

func PrintlnColor201(str string, args ...interface{})

func PrintlnColor202

func PrintlnColor202(str string, args ...interface{})

func PrintlnColor203

func PrintlnColor203(str string, args ...interface{})

func PrintlnColor204

func PrintlnColor204(str string, args ...interface{})

func PrintlnColor205

func PrintlnColor205(str string, args ...interface{})

func PrintlnColor206

func PrintlnColor206(str string, args ...interface{})

func PrintlnColor207

func PrintlnColor207(str string, args ...interface{})

func PrintlnColor208

func PrintlnColor208(str string, args ...interface{})

func PrintlnColor209

func PrintlnColor209(str string, args ...interface{})

func PrintlnColor210

func PrintlnColor210(str string, args ...interface{})

func PrintlnColor211

func PrintlnColor211(str string, args ...interface{})

func PrintlnColor212

func PrintlnColor212(str string, args ...interface{})

func PrintlnColor213

func PrintlnColor213(str string, args ...interface{})

func PrintlnColor214

func PrintlnColor214(str string, args ...interface{})

func PrintlnColor215

func PrintlnColor215(str string, args ...interface{})

func PrintlnColor216

func PrintlnColor216(str string, args ...interface{})

func PrintlnColor217

func PrintlnColor217(str string, args ...interface{})

func PrintlnColor218

func PrintlnColor218(str string, args ...interface{})

func PrintlnColor219

func PrintlnColor219(str string, args ...interface{})

func PrintlnColor220

func PrintlnColor220(str string, args ...interface{})

func PrintlnColor221

func PrintlnColor221(str string, args ...interface{})

func PrintlnColor222

func PrintlnColor222(str string, args ...interface{})

func PrintlnColor223

func PrintlnColor223(str string, args ...interface{})

func PrintlnColor224

func PrintlnColor224(str string, args ...interface{})

func PrintlnColor225

func PrintlnColor225(str string, args ...interface{})

func PrintlnColor226

func PrintlnColor226(str string, args ...interface{})

func PrintlnColor227

func PrintlnColor227(str string, args ...interface{})

func PrintlnColor228

func PrintlnColor228(str string, args ...interface{})

func PrintlnColor229

func PrintlnColor229(str string, args ...interface{})

func PrintlnColor230

func PrintlnColor230(str string, args ...interface{})

func PrintlnColor231

func PrintlnColor231(str string, args ...interface{})

func PrintlnColor232

func PrintlnColor232(str string, args ...interface{})

func PrintlnColor233

func PrintlnColor233(str string, args ...interface{})

func PrintlnColor234

func PrintlnColor234(str string, args ...interface{})

func PrintlnColor235

func PrintlnColor235(str string, args ...interface{})

func PrintlnColor236

func PrintlnColor236(str string, args ...interface{})

func PrintlnColor237

func PrintlnColor237(str string, args ...interface{})

func PrintlnColor238

func PrintlnColor238(str string, args ...interface{})

func PrintlnColor239

func PrintlnColor239(str string, args ...interface{})

func PrintlnColor240

func PrintlnColor240(str string, args ...interface{})

func PrintlnColor241

func PrintlnColor241(str string, args ...interface{})

func PrintlnColor242

func PrintlnColor242(str string, args ...interface{})

func PrintlnColor243

func PrintlnColor243(str string, args ...interface{})

func PrintlnColor244

func PrintlnColor244(str string, args ...interface{})

func PrintlnColor245

func PrintlnColor245(str string, args ...interface{})

func PrintlnColor246

func PrintlnColor246(str string, args ...interface{})

func PrintlnColor247

func PrintlnColor247(str string, args ...interface{})

func PrintlnColor248

func PrintlnColor248(str string, args ...interface{})

func PrintlnColor249

func PrintlnColor249(str string, args ...interface{})

func PrintlnColor250

func PrintlnColor250(str string, args ...interface{})

func PrintlnColor251

func PrintlnColor251(str string, args ...interface{})

func PrintlnColor252

func PrintlnColor252(str string, args ...interface{})

func PrintlnColor253

func PrintlnColor253(str string, args ...interface{})

func PrintlnColor254

func PrintlnColor254(str string, args ...interface{})

func PrintlnColor255

func PrintlnColor255(str string, args ...interface{})

func PrintlnConceal

func PrintlnConceal(str string, args ...interface{})

func PrintlnCrossedOut

func PrintlnCrossedOut(str string, args ...interface{})

func PrintlnCyan

func PrintlnCyan(str string, args ...interface{})

func PrintlnDefault

func PrintlnDefault(str string, args ...interface{})

func PrintlnDim

func PrintlnDim(str string, args ...interface{})

func PrintlnFaint

func PrintlnFaint(str string, args ...interface{})

func PrintlnFraktur

func PrintlnFraktur(str string, args ...interface{})

func PrintlnGreen

func PrintlnGreen(str string, args ...interface{})

func PrintlnHex

func PrintlnHex(hex string, str string, args ...interface{})

PrintlnHex will take a hex color code and print a line with ANSI escape codes.

func PrintlnHide

func PrintlnHide(str string, args ...interface{})

func PrintlnHilight

func PrintlnHilight(code string, str string, args ...interface{})

PrintlnHilight will print a line with an ANSI escape code.

func PrintlnHilights

func PrintlnHilights(
	codes []string,
	str string,
	args ...interface{},
)

PrintlnHilights will print a line with ANSI escape codes.

func PrintlnInverse

func PrintlnInverse(str string, args ...interface{})

func PrintlnItalic

func PrintlnItalic(str string, args ...interface{})

func PrintlnLightBlack

func PrintlnLightBlack(str string, args ...interface{})

func PrintlnLightBlue

func PrintlnLightBlue(str string, args ...interface{})

func PrintlnLightCyan

func PrintlnLightCyan(str string, args ...interface{})

func PrintlnLightGreen

func PrintlnLightGreen(str string, args ...interface{})

func PrintlnLightMagenta

func PrintlnLightMagenta(str string, args ...interface{})

func PrintlnLightRed

func PrintlnLightRed(str string, args ...interface{})

func PrintlnLightWhite

func PrintlnLightWhite(str string, args ...interface{})

func PrintlnLightYellow

func PrintlnLightYellow(str string, args ...interface{})

func PrintlnMagenta

func PrintlnMagenta(str string, args ...interface{})

func PrintlnNegative

func PrintlnNegative(str string, args ...interface{})
func PrintlnNoBlink(str string, args ...interface{})

func PrintlnNoBlinkRapid

func PrintlnNoBlinkRapid(str string, args ...interface{})

func PrintlnNoBlinkSlow

func PrintlnNoBlinkSlow(str string, args ...interface{})

func PrintlnNoBold

func PrintlnNoBold(str string, args ...interface{})

func PrintlnNoConceal

func PrintlnNoConceal(str string, args ...interface{})

func PrintlnNoCrossedOut

func PrintlnNoCrossedOut(str string, args ...interface{})

func PrintlnNoDim

func PrintlnNoDim(str string, args ...interface{})

func PrintlnNoFaint

func PrintlnNoFaint(str string, args ...interface{})

func PrintlnNoFraktur

func PrintlnNoFraktur(str string, args ...interface{})

func PrintlnNoHide

func PrintlnNoHide(str string, args ...interface{})

func PrintlnNoInverse

func PrintlnNoInverse(str string, args ...interface{})

func PrintlnNoItalic

func PrintlnNoItalic(str string, args ...interface{})

func PrintlnNoNegative

func PrintlnNoNegative(str string, args ...interface{})

func PrintlnNoStrikethrough

func PrintlnNoStrikethrough(str string, args ...interface{})

func PrintlnNoSwap

func PrintlnNoSwap(str string, args ...interface{})

func PrintlnNoUnderline

func PrintlnNoUnderline(str string, args ...interface{})

func PrintlnNormal

func PrintlnNormal(str string, args ...interface{})

func PrintlnOnBlack

func PrintlnOnBlack(str string, args ...interface{})

func PrintlnOnBlue

func PrintlnOnBlue(str string, args ...interface{})

func PrintlnOnColor000

func PrintlnOnColor000(str string, args ...interface{})

func PrintlnOnColor001

func PrintlnOnColor001(str string, args ...interface{})

func PrintlnOnColor002

func PrintlnOnColor002(str string, args ...interface{})

func PrintlnOnColor003

func PrintlnOnColor003(str string, args ...interface{})

func PrintlnOnColor004

func PrintlnOnColor004(str string, args ...interface{})

func PrintlnOnColor005

func PrintlnOnColor005(str string, args ...interface{})

func PrintlnOnColor006

func PrintlnOnColor006(str string, args ...interface{})

func PrintlnOnColor007

func PrintlnOnColor007(str string, args ...interface{})

func PrintlnOnColor008

func PrintlnOnColor008(str string, args ...interface{})

func PrintlnOnColor009

func PrintlnOnColor009(str string, args ...interface{})

func PrintlnOnColor010

func PrintlnOnColor010(str string, args ...interface{})

func PrintlnOnColor011

func PrintlnOnColor011(str string, args ...interface{})

func PrintlnOnColor012

func PrintlnOnColor012(str string, args ...interface{})

func PrintlnOnColor013

func PrintlnOnColor013(str string, args ...interface{})

func PrintlnOnColor014

func PrintlnOnColor014(str string, args ...interface{})

func PrintlnOnColor015

func PrintlnOnColor015(str string, args ...interface{})

func PrintlnOnColor016

func PrintlnOnColor016(str string, args ...interface{})

func PrintlnOnColor017

func PrintlnOnColor017(str string, args ...interface{})

func PrintlnOnColor018

func PrintlnOnColor018(str string, args ...interface{})

func PrintlnOnColor019

func PrintlnOnColor019(str string, args ...interface{})

func PrintlnOnColor020

func PrintlnOnColor020(str string, args ...interface{})

func PrintlnOnColor021

func PrintlnOnColor021(str string, args ...interface{})

func PrintlnOnColor022

func PrintlnOnColor022(str string, args ...interface{})

func PrintlnOnColor023

func PrintlnOnColor023(str string, args ...interface{})

func PrintlnOnColor024

func PrintlnOnColor024(str string, args ...interface{})

func PrintlnOnColor025

func PrintlnOnColor025(str string, args ...interface{})

func PrintlnOnColor026

func PrintlnOnColor026(str string, args ...interface{})

func PrintlnOnColor027

func PrintlnOnColor027(str string, args ...interface{})

func PrintlnOnColor028

func PrintlnOnColor028(str string, args ...interface{})

func PrintlnOnColor029

func PrintlnOnColor029(str string, args ...interface{})

func PrintlnOnColor030

func PrintlnOnColor030(str string, args ...interface{})

func PrintlnOnColor031

func PrintlnOnColor031(str string, args ...interface{})

func PrintlnOnColor032

func PrintlnOnColor032(str string, args ...interface{})

func PrintlnOnColor033

func PrintlnOnColor033(str string, args ...interface{})

func PrintlnOnColor034

func PrintlnOnColor034(str string, args ...interface{})

func PrintlnOnColor035

func PrintlnOnColor035(str string, args ...interface{})

func PrintlnOnColor036

func PrintlnOnColor036(str string, args ...interface{})

func PrintlnOnColor037

func PrintlnOnColor037(str string, args ...interface{})

func PrintlnOnColor038

func PrintlnOnColor038(str string, args ...interface{})

func PrintlnOnColor039

func PrintlnOnColor039(str string, args ...interface{})

func PrintlnOnColor040

func PrintlnOnColor040(str string, args ...interface{})

func PrintlnOnColor041

func PrintlnOnColor041(str string, args ...interface{})

func PrintlnOnColor042

func PrintlnOnColor042(str string, args ...interface{})

func PrintlnOnColor043

func PrintlnOnColor043(str string, args ...interface{})

func PrintlnOnColor044

func PrintlnOnColor044(str string, args ...interface{})

func PrintlnOnColor045

func PrintlnOnColor045(str string, args ...interface{})

func PrintlnOnColor046

func PrintlnOnColor046(str string, args ...interface{})

func PrintlnOnColor047

func PrintlnOnColor047(str string, args ...interface{})

func PrintlnOnColor048

func PrintlnOnColor048(str string, args ...interface{})

func PrintlnOnColor049

func PrintlnOnColor049(str string, args ...interface{})

func PrintlnOnColor050

func PrintlnOnColor050(str string, args ...interface{})

func PrintlnOnColor051

func PrintlnOnColor051(str string, args ...interface{})

func PrintlnOnColor052

func PrintlnOnColor052(str string, args ...interface{})

func PrintlnOnColor053

func PrintlnOnColor053(str string, args ...interface{})

func PrintlnOnColor054

func PrintlnOnColor054(str string, args ...interface{})

func PrintlnOnColor055

func PrintlnOnColor055(str string, args ...interface{})

func PrintlnOnColor056

func PrintlnOnColor056(str string, args ...interface{})

func PrintlnOnColor057

func PrintlnOnColor057(str string, args ...interface{})

func PrintlnOnColor058

func PrintlnOnColor058(str string, args ...interface{})

func PrintlnOnColor059

func PrintlnOnColor059(str string, args ...interface{})

func PrintlnOnColor060

func PrintlnOnColor060(str string, args ...interface{})

func PrintlnOnColor061

func PrintlnOnColor061(str string, args ...interface{})

func PrintlnOnColor062

func PrintlnOnColor062(str string, args ...interface{})

func PrintlnOnColor063

func PrintlnOnColor063(str string, args ...interface{})

func PrintlnOnColor064

func PrintlnOnColor064(str string, args ...interface{})

func PrintlnOnColor065

func PrintlnOnColor065(str string, args ...interface{})

func PrintlnOnColor066

func PrintlnOnColor066(str string, args ...interface{})

func PrintlnOnColor067

func PrintlnOnColor067(str string, args ...interface{})

func PrintlnOnColor068

func PrintlnOnColor068(str string, args ...interface{})

func PrintlnOnColor069

func PrintlnOnColor069(str string, args ...interface{})

func PrintlnOnColor070

func PrintlnOnColor070(str string, args ...interface{})

func PrintlnOnColor071

func PrintlnOnColor071(str string, args ...interface{})

func PrintlnOnColor072

func PrintlnOnColor072(str string, args ...interface{})

func PrintlnOnColor073

func PrintlnOnColor073(str string, args ...interface{})

func PrintlnOnColor074

func PrintlnOnColor074(str string, args ...interface{})

func PrintlnOnColor075

func PrintlnOnColor075(str string, args ...interface{})

func PrintlnOnColor076

func PrintlnOnColor076(str string, args ...interface{})

func PrintlnOnColor077

func PrintlnOnColor077(str string, args ...interface{})

func PrintlnOnColor078

func PrintlnOnColor078(str string, args ...interface{})

func PrintlnOnColor079

func PrintlnOnColor079(str string, args ...interface{})

func PrintlnOnColor080

func PrintlnOnColor080(str string, args ...interface{})

func PrintlnOnColor081

func PrintlnOnColor081(str string, args ...interface{})

func PrintlnOnColor082

func PrintlnOnColor082(str string, args ...interface{})

func PrintlnOnColor083

func PrintlnOnColor083(str string, args ...interface{})

func PrintlnOnColor084

func PrintlnOnColor084(str string, args ...interface{})

func PrintlnOnColor085

func PrintlnOnColor085(str string, args ...interface{})

func PrintlnOnColor086

func PrintlnOnColor086(str string, args ...interface{})

func PrintlnOnColor087

func PrintlnOnColor087(str string, args ...interface{})

func PrintlnOnColor088

func PrintlnOnColor088(str string, args ...interface{})

func PrintlnOnColor089

func PrintlnOnColor089(str string, args ...interface{})

func PrintlnOnColor090

func PrintlnOnColor090(str string, args ...interface{})

func PrintlnOnColor091

func PrintlnOnColor091(str string, args ...interface{})

func PrintlnOnColor092

func PrintlnOnColor092(str string, args ...interface{})

func PrintlnOnColor093

func PrintlnOnColor093(str string, args ...interface{})

func PrintlnOnColor094

func PrintlnOnColor094(str string, args ...interface{})

func PrintlnOnColor095

func PrintlnOnColor095(str string, args ...interface{})

func PrintlnOnColor096

func PrintlnOnColor096(str string, args ...interface{})

func PrintlnOnColor097

func PrintlnOnColor097(str string, args ...interface{})

func PrintlnOnColor098

func PrintlnOnColor098(str string, args ...interface{})

func PrintlnOnColor099

func PrintlnOnColor099(str string, args ...interface{})

func PrintlnOnColor100

func PrintlnOnColor100(str string, args ...interface{})

func PrintlnOnColor101

func PrintlnOnColor101(str string, args ...interface{})

func PrintlnOnColor102

func PrintlnOnColor102(str string, args ...interface{})

func PrintlnOnColor103

func PrintlnOnColor103(str string, args ...interface{})

func PrintlnOnColor104

func PrintlnOnColor104(str string, args ...interface{})

func PrintlnOnColor105

func PrintlnOnColor105(str string, args ...interface{})

func PrintlnOnColor106

func PrintlnOnColor106(str string, args ...interface{})

func PrintlnOnColor107

func PrintlnOnColor107(str string, args ...interface{})

func PrintlnOnColor108

func PrintlnOnColor108(str string, args ...interface{})

func PrintlnOnColor109

func PrintlnOnColor109(str string, args ...interface{})

func PrintlnOnColor110

func PrintlnOnColor110(str string, args ...interface{})

func PrintlnOnColor111

func PrintlnOnColor111(str string, args ...interface{})

func PrintlnOnColor112

func PrintlnOnColor112(str string, args ...interface{})

func PrintlnOnColor113

func PrintlnOnColor113(str string, args ...interface{})

func PrintlnOnColor114

func PrintlnOnColor114(str string, args ...interface{})

func PrintlnOnColor115

func PrintlnOnColor115(str string, args ...interface{})

func PrintlnOnColor116

func PrintlnOnColor116(str string, args ...interface{})

func PrintlnOnColor117

func PrintlnOnColor117(str string, args ...interface{})

func PrintlnOnColor118

func PrintlnOnColor118(str string, args ...interface{})

func PrintlnOnColor119

func PrintlnOnColor119(str string, args ...interface{})

func PrintlnOnColor120

func PrintlnOnColor120(str string, args ...interface{})

func PrintlnOnColor121

func PrintlnOnColor121(str string, args ...interface{})

func PrintlnOnColor122

func PrintlnOnColor122(str string, args ...interface{})

func PrintlnOnColor123

func PrintlnOnColor123(str string, args ...interface{})

func PrintlnOnColor124

func PrintlnOnColor124(str string, args ...interface{})

func PrintlnOnColor125

func PrintlnOnColor125(str string, args ...interface{})

func PrintlnOnColor126

func PrintlnOnColor126(str string, args ...interface{})

func PrintlnOnColor127

func PrintlnOnColor127(str string, args ...interface{})

func PrintlnOnColor128

func PrintlnOnColor128(str string, args ...interface{})

func PrintlnOnColor129

func PrintlnOnColor129(str string, args ...interface{})

func PrintlnOnColor130

func PrintlnOnColor130(str string, args ...interface{})

func PrintlnOnColor131

func PrintlnOnColor131(str string, args ...interface{})

func PrintlnOnColor132

func PrintlnOnColor132(str string, args ...interface{})

func PrintlnOnColor133

func PrintlnOnColor133(str string, args ...interface{})

func PrintlnOnColor134

func PrintlnOnColor134(str string, args ...interface{})

func PrintlnOnColor135

func PrintlnOnColor135(str string, args ...interface{})

func PrintlnOnColor136

func PrintlnOnColor136(str string, args ...interface{})

func PrintlnOnColor137

func PrintlnOnColor137(str string, args ...interface{})

func PrintlnOnColor138

func PrintlnOnColor138(str string, args ...interface{})

func PrintlnOnColor139

func PrintlnOnColor139(str string, args ...interface{})

func PrintlnOnColor140

func PrintlnOnColor140(str string, args ...interface{})

func PrintlnOnColor141

func PrintlnOnColor141(str string, args ...interface{})

func PrintlnOnColor142

func PrintlnOnColor142(str string, args ...interface{})

func PrintlnOnColor143

func PrintlnOnColor143(str string, args ...interface{})

func PrintlnOnColor144

func PrintlnOnColor144(str string, args ...interface{})

func PrintlnOnColor145

func PrintlnOnColor145(str string, args ...interface{})

func PrintlnOnColor146

func PrintlnOnColor146(str string, args ...interface{})

func PrintlnOnColor147

func PrintlnOnColor147(str string, args ...interface{})

func PrintlnOnColor148

func PrintlnOnColor148(str string, args ...interface{})

func PrintlnOnColor149

func PrintlnOnColor149(str string, args ...interface{})

func PrintlnOnColor150

func PrintlnOnColor150(str string, args ...interface{})

func PrintlnOnColor151

func PrintlnOnColor151(str string, args ...interface{})

func PrintlnOnColor152

func PrintlnOnColor152(str string, args ...interface{})

func PrintlnOnColor153

func PrintlnOnColor153(str string, args ...interface{})

func PrintlnOnColor154

func PrintlnOnColor154(str string, args ...interface{})

func PrintlnOnColor155

func PrintlnOnColor155(str string, args ...interface{})

func PrintlnOnColor156

func PrintlnOnColor156(str string, args ...interface{})

func PrintlnOnColor157

func PrintlnOnColor157(str string, args ...interface{})

func PrintlnOnColor158

func PrintlnOnColor158(str string, args ...interface{})

func PrintlnOnColor159

func PrintlnOnColor159(str string, args ...interface{})

func PrintlnOnColor160

func PrintlnOnColor160(str string, args ...interface{})

func PrintlnOnColor161

func PrintlnOnColor161(str string, args ...interface{})

func PrintlnOnColor162

func PrintlnOnColor162(str string, args ...interface{})

func PrintlnOnColor163

func PrintlnOnColor163(str string, args ...interface{})

func PrintlnOnColor164

func PrintlnOnColor164(str string, args ...interface{})

func PrintlnOnColor165

func PrintlnOnColor165(str string, args ...interface{})

func PrintlnOnColor166

func PrintlnOnColor166(str string, args ...interface{})

func PrintlnOnColor167

func PrintlnOnColor167(str string, args ...interface{})

func PrintlnOnColor168

func PrintlnOnColor168(str string, args ...interface{})

func PrintlnOnColor169

func PrintlnOnColor169(str string, args ...interface{})

func PrintlnOnColor170

func PrintlnOnColor170(str string, args ...interface{})

func PrintlnOnColor171

func PrintlnOnColor171(str string, args ...interface{})

func PrintlnOnColor172

func PrintlnOnColor172(str string, args ...interface{})

func PrintlnOnColor173

func PrintlnOnColor173(str string, args ...interface{})

func PrintlnOnColor174

func PrintlnOnColor174(str string, args ...interface{})

func PrintlnOnColor175

func PrintlnOnColor175(str string, args ...interface{})

func PrintlnOnColor176

func PrintlnOnColor176(str string, args ...interface{})

func PrintlnOnColor177

func PrintlnOnColor177(str string, args ...interface{})

func PrintlnOnColor178

func PrintlnOnColor178(str string, args ...interface{})

func PrintlnOnColor179

func PrintlnOnColor179(str string, args ...interface{})

func PrintlnOnColor180

func PrintlnOnColor180(str string, args ...interface{})

func PrintlnOnColor181

func PrintlnOnColor181(str string, args ...interface{})

func PrintlnOnColor182

func PrintlnOnColor182(str string, args ...interface{})

func PrintlnOnColor183

func PrintlnOnColor183(str string, args ...interface{})

func PrintlnOnColor184

func PrintlnOnColor184(str string, args ...interface{})

func PrintlnOnColor185

func PrintlnOnColor185(str string, args ...interface{})

func PrintlnOnColor186

func PrintlnOnColor186(str string, args ...interface{})

func PrintlnOnColor187

func PrintlnOnColor187(str string, args ...interface{})

func PrintlnOnColor188

func PrintlnOnColor188(str string, args ...interface{})

func PrintlnOnColor189

func PrintlnOnColor189(str string, args ...interface{})

func PrintlnOnColor190

func PrintlnOnColor190(str string, args ...interface{})

func PrintlnOnColor191

func PrintlnOnColor191(str string, args ...interface{})

func PrintlnOnColor192

func PrintlnOnColor192(str string, args ...interface{})

func PrintlnOnColor193

func PrintlnOnColor193(str string, args ...interface{})

func PrintlnOnColor194

func PrintlnOnColor194(str string, args ...interface{})

func PrintlnOnColor195

func PrintlnOnColor195(str string, args ...interface{})

func PrintlnOnColor196

func PrintlnOnColor196(str string, args ...interface{})

func PrintlnOnColor197

func PrintlnOnColor197(str string, args ...interface{})

func PrintlnOnColor198

func PrintlnOnColor198(str string, args ...interface{})

func PrintlnOnColor199

func PrintlnOnColor199(str string, args ...interface{})

func PrintlnOnColor200

func PrintlnOnColor200(str string, args ...interface{})

func PrintlnOnColor201

func PrintlnOnColor201(str string, args ...interface{})

func PrintlnOnColor202

func PrintlnOnColor202(str string, args ...interface{})

func PrintlnOnColor203

func PrintlnOnColor203(str string, args ...interface{})

func PrintlnOnColor204

func PrintlnOnColor204(str string, args ...interface{})

func PrintlnOnColor205

func PrintlnOnColor205(str string, args ...interface{})

func PrintlnOnColor206

func PrintlnOnColor206(str string, args ...interface{})

func PrintlnOnColor207

func PrintlnOnColor207(str string, args ...interface{})

func PrintlnOnColor208

func PrintlnOnColor208(str string, args ...interface{})

func PrintlnOnColor209

func PrintlnOnColor209(str string, args ...interface{})

func PrintlnOnColor210

func PrintlnOnColor210(str string, args ...interface{})

func PrintlnOnColor211

func PrintlnOnColor211(str string, args ...interface{})

func PrintlnOnColor212

func PrintlnOnColor212(str string, args ...interface{})

func PrintlnOnColor213

func PrintlnOnColor213(str string, args ...interface{})

func PrintlnOnColor214

func PrintlnOnColor214(str string, args ...interface{})

func PrintlnOnColor215

func PrintlnOnColor215(str string, args ...interface{})

func PrintlnOnColor216

func PrintlnOnColor216(str string, args ...interface{})

func PrintlnOnColor217

func PrintlnOnColor217(str string, args ...interface{})

func PrintlnOnColor218

func PrintlnOnColor218(str string, args ...interface{})

func PrintlnOnColor219

func PrintlnOnColor219(str string, args ...interface{})

func PrintlnOnColor220

func PrintlnOnColor220(str string, args ...interface{})

func PrintlnOnColor221

func PrintlnOnColor221(str string, args ...interface{})

func PrintlnOnColor222

func PrintlnOnColor222(str string, args ...interface{})

func PrintlnOnColor223

func PrintlnOnColor223(str string, args ...interface{})

func PrintlnOnColor224

func PrintlnOnColor224(str string, args ...interface{})

func PrintlnOnColor225

func PrintlnOnColor225(str string, args ...interface{})

func PrintlnOnColor226

func PrintlnOnColor226(str string, args ...interface{})

func PrintlnOnColor227

func PrintlnOnColor227(str string, args ...interface{})

func PrintlnOnColor228

func PrintlnOnColor228(str string, args ...interface{})

func PrintlnOnColor229

func PrintlnOnColor229(str string, args ...interface{})

func PrintlnOnColor230

func PrintlnOnColor230(str string, args ...interface{})

func PrintlnOnColor231

func PrintlnOnColor231(str string, args ...interface{})

func PrintlnOnColor232

func PrintlnOnColor232(str string, args ...interface{})

func PrintlnOnColor233

func PrintlnOnColor233(str string, args ...interface{})

func PrintlnOnColor234

func PrintlnOnColor234(str string, args ...interface{})

func PrintlnOnColor235

func PrintlnOnColor235(str string, args ...interface{})

func PrintlnOnColor236

func PrintlnOnColor236(str string, args ...interface{})

func PrintlnOnColor237

func PrintlnOnColor237(str string, args ...interface{})

func PrintlnOnColor238

func PrintlnOnColor238(str string, args ...interface{})

func PrintlnOnColor239

func PrintlnOnColor239(str string, args ...interface{})

func PrintlnOnColor240

func PrintlnOnColor240(str string, args ...interface{})

func PrintlnOnColor241

func PrintlnOnColor241(str string, args ...interface{})

func PrintlnOnColor242

func PrintlnOnColor242(str string, args ...interface{})

func PrintlnOnColor243

func PrintlnOnColor243(str string, args ...interface{})

func PrintlnOnColor244

func PrintlnOnColor244(str string, args ...interface{})

func PrintlnOnColor245

func PrintlnOnColor245(str string, args ...interface{})

func PrintlnOnColor246

func PrintlnOnColor246(str string, args ...interface{})

func PrintlnOnColor247

func PrintlnOnColor247(str string, args ...interface{})

func PrintlnOnColor248

func PrintlnOnColor248(str string, args ...interface{})

func PrintlnOnColor249

func PrintlnOnColor249(str string, args ...interface{})

func PrintlnOnColor250

func PrintlnOnColor250(str string, args ...interface{})

func PrintlnOnColor251

func PrintlnOnColor251(str string, args ...interface{})

func PrintlnOnColor252

func PrintlnOnColor252(str string, args ...interface{})

func PrintlnOnColor253

func PrintlnOnColor253(str string, args ...interface{})

func PrintlnOnColor254

func PrintlnOnColor254(str string, args ...interface{})

func PrintlnOnColor255

func PrintlnOnColor255(str string, args ...interface{})

func PrintlnOnCyan

func PrintlnOnCyan(str string, args ...interface{})

func PrintlnOnDefault

func PrintlnOnDefault(str string, args ...interface{})

func PrintlnOnGreen

func PrintlnOnGreen(str string, args ...interface{})

func PrintlnOnHex

func PrintlnOnHex(hex string, str string, args ...interface{})

PrintlnOnHex will take a hex color code and print a line with ANSI escape codes.

func PrintlnOnLightBlack

func PrintlnOnLightBlack(str string, args ...interface{})

func PrintlnOnLightBlue

func PrintlnOnLightBlue(str string, args ...interface{})

func PrintlnOnLightCyan

func PrintlnOnLightCyan(str string, args ...interface{})

func PrintlnOnLightGreen

func PrintlnOnLightGreen(str string, args ...interface{})

func PrintlnOnLightMagenta

func PrintlnOnLightMagenta(str string, args ...interface{})

func PrintlnOnLightRed

func PrintlnOnLightRed(str string, args ...interface{})

func PrintlnOnLightWhite

func PrintlnOnLightWhite(str string, args ...interface{})

func PrintlnOnLightYellow

func PrintlnOnLightYellow(str string, args ...interface{})

func PrintlnOnMagenta

func PrintlnOnMagenta(str string, args ...interface{})

func PrintlnOnRainbow

func PrintlnOnRainbow(str string, args ...interface{})

PrintlnOnRainbow will print a line rotating through ANSI color codes for a rainbow effect.

func PrintlnOnRed

func PrintlnOnRed(str string, args ...interface{})

func PrintlnOnWhite

func PrintlnOnWhite(str string, args ...interface{})

func PrintlnOnYellow

func PrintlnOnYellow(str string, args ...interface{})

func PrintlnRainbow

func PrintlnRainbow(str string, args ...interface{})

PrintlnRainbow will print a line rotating through ANSI color codes for a rainbow effect.

func PrintlnRed

func PrintlnRed(str string, args ...interface{})

func PrintlnReset

func PrintlnReset(str string, args ...interface{})

func PrintlnStrikethrough

func PrintlnStrikethrough(str string, args ...interface{})

func PrintlnSwap

func PrintlnSwap(str string, args ...interface{})

func PrintlnUnderline

func PrintlnUnderline(str string, args ...interface{})

func PrintlnWhite

func PrintlnWhite(str string, args ...interface{})

func PrintlnWrap

func PrintlnWrap(width int, str string, args ...interface{})

PrintlnWrap will wrap a line to the specified width and print it.

func PrintlnYellow

func PrintlnYellow(str string, args ...interface{})

func Rainbow

func Rainbow(str string, args ...interface{}) string

Rainbow will add multiple ANSI color codes to a string for a rainbow effect.

func Red

func Red(str string, args ...interface{}) string

func Reset

func Reset(str string, args ...interface{}) string

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, args ...interface{}) string

func Swap

func Swap(str string, args ...interface{}) string

func Table

func Table()

Table will display a pretty table of all 8-bit colors.

func Underline

func Underline(str string, args ...interface{}) string

func White

func White(str string, args ...interface{}) string

func Wrap

func Wrap(width int, str string, args ...interface{}) string

Wrap will wrap a string to the specified width.

func Yellow

func Yellow(str string, args ...interface{}) string

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