hilighter

package module
v1.9.2 Latest Latest
Warning

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

Go to latest
Published: Aug 18, 2021 License: GPL-3.0 Imports: 9 Imported by: 23

README

Hilighter

🍪 Buy me a cookie

Go Report Card

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 --ldflags "-s -w" --trimpath -u gitlab.com/mjwhitta/hilighter
$ go install --ldflags "-s -w" --trimpath \
    gitlab.com/mjwhitta/hilighter/cmd/hl@latest

Or install from source:

$ git clone https://gitlab.com/mjwhitta/hilighter.git
$ cd hilighter
$ git submodule update --init
$ make install

Note: make install will install to $HOME/.local/bin.

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 Go 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.Greenf("1. Hello, %s!\n", "world")
    fmt.Print(greenStr)

    // or

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

    // or

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

    // Example 2 (multiple colors)
    var multiColored = hl.Hilightsf(
        []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.PrintfHilights(
        []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.Greenf("%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.PrintfRainbow("%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.9.2"

Version is the package version

Variables

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

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

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

Colors maps color names to color codes

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

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

Modes maps mode names to mode codes

Functions

func Black

func Black(str string) string

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

func Blackf added in v1.6.0

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

Blackf wraps fmt.Sprintf() and Black.

func Blink(str string) string

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

func BlinkRapid

func BlinkRapid(str string) string

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

func BlinkRapidf added in v1.6.0

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

BlinkRapidf wraps fmt.Sprintf() and BlinkRapid.

func BlinkSlow

func BlinkSlow(str string) string

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

func BlinkSlowf added in v1.6.0

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

BlinkSlowf wraps fmt.Sprintf() and BlinkSlow.

func Blinkf added in v1.6.0

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

Blinkf wraps fmt.Sprintf() and Blink.

func Blue

func Blue(str string) string

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

func Bluef added in v1.6.0

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

Bluef wraps fmt.Sprintf() and Blue.

func Bold

func Bold(str string) string

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

func Boldf added in v1.6.0

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

Boldf wraps fmt.Sprintf() and Bold.

func Color000

func Color000(str string) string

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

func Color000f added in v1.6.0

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

Color000f wraps fmt.Sprintf() and Color000.

func Color001

func Color001(str string) string

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

func Color001f added in v1.6.0

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

Color001f wraps fmt.Sprintf() and Color001.

func Color002

func Color002(str string) string

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

func Color002f added in v1.6.0

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

Color002f wraps fmt.Sprintf() and Color002.

func Color003

func Color003(str string) string

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

func Color003f added in v1.6.0

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

Color003f wraps fmt.Sprintf() and Color003.

func Color004

func Color004(str string) string

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

func Color004f added in v1.6.0

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

Color004f wraps fmt.Sprintf() and Color004.

func Color005

func Color005(str string) string

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

func Color005f added in v1.6.0

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

Color005f wraps fmt.Sprintf() and Color005.

func Color006

func Color006(str string) string

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

func Color006f added in v1.6.0

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

Color006f wraps fmt.Sprintf() and Color006.

func Color007

func Color007(str string) string

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

func Color007f added in v1.6.0

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

Color007f wraps fmt.Sprintf() and Color007.

func Color008

func Color008(str string) string

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

func Color008f added in v1.6.0

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

Color008f wraps fmt.Sprintf() and Color008.

func Color009

func Color009(str string) string

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

func Color009f added in v1.6.0

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

Color009f wraps fmt.Sprintf() and Color009.

func Color010

func Color010(str string) string

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

func Color010f added in v1.6.0

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

Color010f wraps fmt.Sprintf() and Color010.

func Color011

func Color011(str string) string

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

func Color011f added in v1.6.0

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

Color011f wraps fmt.Sprintf() and Color011.

func Color012

func Color012(str string) string

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

func Color012f added in v1.6.0

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

Color012f wraps fmt.Sprintf() and Color012.

func Color013

func Color013(str string) string

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

func Color013f added in v1.6.0

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

Color013f wraps fmt.Sprintf() and Color013.

func Color014

func Color014(str string) string

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

func Color014f added in v1.6.0

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

Color014f wraps fmt.Sprintf() and Color014.

func Color015

func Color015(str string) string

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

func Color015f added in v1.6.0

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

Color015f wraps fmt.Sprintf() and Color015.

func Color016

func Color016(str string) string

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

func Color016f added in v1.6.0

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

Color016f wraps fmt.Sprintf() and Color016.

func Color017

func Color017(str string) string

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

func Color017f added in v1.6.0

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

Color017f wraps fmt.Sprintf() and Color017.

func Color018

func Color018(str string) string

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

func Color018f added in v1.6.0

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

Color018f wraps fmt.Sprintf() and Color018.

func Color019

func Color019(str string) string

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

func Color019f added in v1.6.0

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

Color019f wraps fmt.Sprintf() and Color019.

func Color020

func Color020(str string) string

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

func Color020f added in v1.6.0

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

Color020f wraps fmt.Sprintf() and Color020.

func Color021

func Color021(str string) string

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

func Color021f added in v1.6.0

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

Color021f wraps fmt.Sprintf() and Color021.

func Color022

func Color022(str string) string

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

func Color022f added in v1.6.0

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

Color022f wraps fmt.Sprintf() and Color022.

func Color023

func Color023(str string) string

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

func Color023f added in v1.6.0

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

Color023f wraps fmt.Sprintf() and Color023.

func Color024

func Color024(str string) string

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

func Color024f added in v1.6.0

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

Color024f wraps fmt.Sprintf() and Color024.

func Color025

func Color025(str string) string

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

func Color025f added in v1.6.0

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

Color025f wraps fmt.Sprintf() and Color025.

func Color026

func Color026(str string) string

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

func Color026f added in v1.6.0

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

Color026f wraps fmt.Sprintf() and Color026.

func Color027

func Color027(str string) string

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

func Color027f added in v1.6.0

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

Color027f wraps fmt.Sprintf() and Color027.

func Color028

func Color028(str string) string

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

func Color028f added in v1.6.0

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

Color028f wraps fmt.Sprintf() and Color028.

func Color029

func Color029(str string) string

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

func Color029f added in v1.6.0

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

Color029f wraps fmt.Sprintf() and Color029.

func Color030

func Color030(str string) string

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

func Color030f added in v1.6.0

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

Color030f wraps fmt.Sprintf() and Color030.

func Color031

func Color031(str string) string

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

func Color031f added in v1.6.0

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

Color031f wraps fmt.Sprintf() and Color031.

func Color032

func Color032(str string) string

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

func Color032f added in v1.6.0

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

Color032f wraps fmt.Sprintf() and Color032.

func Color033

func Color033(str string) string

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

func Color033f added in v1.6.0

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

Color033f wraps fmt.Sprintf() and Color033.

func Color034

func Color034(str string) string

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

func Color034f added in v1.6.0

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

Color034f wraps fmt.Sprintf() and Color034.

func Color035

func Color035(str string) string

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

func Color035f added in v1.6.0

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

Color035f wraps fmt.Sprintf() and Color035.

func Color036

func Color036(str string) string

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

func Color036f added in v1.6.0

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

Color036f wraps fmt.Sprintf() and Color036.

func Color037

func Color037(str string) string

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

func Color037f added in v1.6.0

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

Color037f wraps fmt.Sprintf() and Color037.

func Color038

func Color038(str string) string

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

func Color038f added in v1.6.0

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

Color038f wraps fmt.Sprintf() and Color038.

func Color039

func Color039(str string) string

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

func Color039f added in v1.6.0

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

Color039f wraps fmt.Sprintf() and Color039.

func Color040

func Color040(str string) string

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

func Color040f added in v1.6.0

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

Color040f wraps fmt.Sprintf() and Color040.

func Color041

func Color041(str string) string

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

func Color041f added in v1.6.0

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

Color041f wraps fmt.Sprintf() and Color041.

func Color042

func Color042(str string) string

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

func Color042f added in v1.6.0

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

Color042f wraps fmt.Sprintf() and Color042.

func Color043

func Color043(str string) string

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

func Color043f added in v1.6.0

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

Color043f wraps fmt.Sprintf() and Color043.

func Color044

func Color044(str string) string

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

func Color044f added in v1.6.0

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

Color044f wraps fmt.Sprintf() and Color044.

func Color045

func Color045(str string) string

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

func Color045f added in v1.6.0

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

Color045f wraps fmt.Sprintf() and Color045.

func Color046

func Color046(str string) string

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

func Color046f added in v1.6.0

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

Color046f wraps fmt.Sprintf() and Color046.

func Color047

func Color047(str string) string

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

func Color047f added in v1.6.0

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

Color047f wraps fmt.Sprintf() and Color047.

func Color048

func Color048(str string) string

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

func Color048f added in v1.6.0

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

Color048f wraps fmt.Sprintf() and Color048.

func Color049

func Color049(str string) string

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

func Color049f added in v1.6.0

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

Color049f wraps fmt.Sprintf() and Color049.

func Color050

func Color050(str string) string

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

func Color050f added in v1.6.0

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

Color050f wraps fmt.Sprintf() and Color050.

func Color051

func Color051(str string) string

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

func Color051f added in v1.6.0

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

Color051f wraps fmt.Sprintf() and Color051.

func Color052

func Color052(str string) string

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

func Color052f added in v1.6.0

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

Color052f wraps fmt.Sprintf() and Color052.

func Color053

func Color053(str string) string

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

func Color053f added in v1.6.0

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

Color053f wraps fmt.Sprintf() and Color053.

func Color054

func Color054(str string) string

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

func Color054f added in v1.6.0

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

Color054f wraps fmt.Sprintf() and Color054.

func Color055

func Color055(str string) string

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

func Color055f added in v1.6.0

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

Color055f wraps fmt.Sprintf() and Color055.

func Color056

func Color056(str string) string

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

func Color056f added in v1.6.0

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

Color056f wraps fmt.Sprintf() and Color056.

func Color057

func Color057(str string) string

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

func Color057f added in v1.6.0

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

Color057f wraps fmt.Sprintf() and Color057.

func Color058

func Color058(str string) string

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

func Color058f added in v1.6.0

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

Color058f wraps fmt.Sprintf() and Color058.

func Color059

func Color059(str string) string

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

func Color059f added in v1.6.0

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

Color059f wraps fmt.Sprintf() and Color059.

func Color060

func Color060(str string) string

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

func Color060f added in v1.6.0

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

Color060f wraps fmt.Sprintf() and Color060.

func Color061

func Color061(str string) string

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

func Color061f added in v1.6.0

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

Color061f wraps fmt.Sprintf() and Color061.

func Color062

func Color062(str string) string

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

func Color062f added in v1.6.0

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

Color062f wraps fmt.Sprintf() and Color062.

func Color063

func Color063(str string) string

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

func Color063f added in v1.6.0

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

Color063f wraps fmt.Sprintf() and Color063.

func Color064

func Color064(str string) string

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

func Color064f added in v1.6.0

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

Color064f wraps fmt.Sprintf() and Color064.

func Color065

func Color065(str string) string

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

func Color065f added in v1.6.0

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

Color065f wraps fmt.Sprintf() and Color065.

func Color066

func Color066(str string) string

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

func Color066f added in v1.6.0

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

Color066f wraps fmt.Sprintf() and Color066.

func Color067

func Color067(str string) string

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

func Color067f added in v1.6.0

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

Color067f wraps fmt.Sprintf() and Color067.

func Color068

func Color068(str string) string

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

func Color068f added in v1.6.0

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

Color068f wraps fmt.Sprintf() and Color068.

func Color069

func Color069(str string) string

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

func Color069f added in v1.6.0

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

Color069f wraps fmt.Sprintf() and Color069.

func Color070

func Color070(str string) string

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

func Color070f added in v1.6.0

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

Color070f wraps fmt.Sprintf() and Color070.

func Color071

func Color071(str string) string

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

func Color071f added in v1.6.0

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

Color071f wraps fmt.Sprintf() and Color071.

func Color072

func Color072(str string) string

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

func Color072f added in v1.6.0

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

Color072f wraps fmt.Sprintf() and Color072.

func Color073

func Color073(str string) string

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

func Color073f added in v1.6.0

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

Color073f wraps fmt.Sprintf() and Color073.

func Color074

func Color074(str string) string

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

func Color074f added in v1.6.0

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

Color074f wraps fmt.Sprintf() and Color074.

func Color075

func Color075(str string) string

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

func Color075f added in v1.6.0

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

Color075f wraps fmt.Sprintf() and Color075.

func Color076

func Color076(str string) string

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

func Color076f added in v1.6.0

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

Color076f wraps fmt.Sprintf() and Color076.

func Color077

func Color077(str string) string

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

func Color077f added in v1.6.0

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

Color077f wraps fmt.Sprintf() and Color077.

func Color078

func Color078(str string) string

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

func Color078f added in v1.6.0

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

Color078f wraps fmt.Sprintf() and Color078.

func Color079

func Color079(str string) string

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

func Color079f added in v1.6.0

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

Color079f wraps fmt.Sprintf() and Color079.

func Color080

func Color080(str string) string

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

func Color080f added in v1.6.0

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

Color080f wraps fmt.Sprintf() and Color080.

func Color081

func Color081(str string) string

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

func Color081f added in v1.6.0

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

Color081f wraps fmt.Sprintf() and Color081.

func Color082

func Color082(str string) string

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

func Color082f added in v1.6.0

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

Color082f wraps fmt.Sprintf() and Color082.

func Color083

func Color083(str string) string

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

func Color083f added in v1.6.0

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

Color083f wraps fmt.Sprintf() and Color083.

func Color084

func Color084(str string) string

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

func Color084f added in v1.6.0

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

Color084f wraps fmt.Sprintf() and Color084.

func Color085

func Color085(str string) string

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

func Color085f added in v1.6.0

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

Color085f wraps fmt.Sprintf() and Color085.

func Color086

func Color086(str string) string

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

func Color086f added in v1.6.0

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

Color086f wraps fmt.Sprintf() and Color086.

func Color087

func Color087(str string) string

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

func Color087f added in v1.6.0

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

Color087f wraps fmt.Sprintf() and Color087.

func Color088

func Color088(str string) string

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

func Color088f added in v1.6.0

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

Color088f wraps fmt.Sprintf() and Color088.

func Color089

func Color089(str string) string

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

func Color089f added in v1.6.0

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

Color089f wraps fmt.Sprintf() and Color089.

func Color090

func Color090(str string) string

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

func Color090f added in v1.6.0

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

Color090f wraps fmt.Sprintf() and Color090.

func Color091

func Color091(str string) string

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

func Color091f added in v1.6.0

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

Color091f wraps fmt.Sprintf() and Color091.

func Color092

func Color092(str string) string

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

func Color092f added in v1.6.0

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

Color092f wraps fmt.Sprintf() and Color092.

func Color093

func Color093(str string) string

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

func Color093f added in v1.6.0

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

Color093f wraps fmt.Sprintf() and Color093.

func Color094

func Color094(str string) string

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

func Color094f added in v1.6.0

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

Color094f wraps fmt.Sprintf() and Color094.

func Color095

func Color095(str string) string

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

func Color095f added in v1.6.0

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

Color095f wraps fmt.Sprintf() and Color095.

func Color096

func Color096(str string) string

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

func Color096f added in v1.6.0

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

Color096f wraps fmt.Sprintf() and Color096.

func Color097

func Color097(str string) string

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

func Color097f added in v1.6.0

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

Color097f wraps fmt.Sprintf() and Color097.

func Color098

func Color098(str string) string

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

func Color098f added in v1.6.0

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

Color098f wraps fmt.Sprintf() and Color098.

func Color099

func Color099(str string) string

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

func Color099f added in v1.6.0

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

Color099f wraps fmt.Sprintf() and Color099.

func Color100

func Color100(str string) string

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

func Color100f added in v1.6.0

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

Color100f wraps fmt.Sprintf() and Color100.

func Color101

func Color101(str string) string

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

func Color101f added in v1.6.0

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

Color101f wraps fmt.Sprintf() and Color101.

func Color102

func Color102(str string) string

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

func Color102f added in v1.6.0

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

Color102f wraps fmt.Sprintf() and Color102.

func Color103

func Color103(str string) string

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

func Color103f added in v1.6.0

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

Color103f wraps fmt.Sprintf() and Color103.

func Color104

func Color104(str string) string

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

func Color104f added in v1.6.0

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

Color104f wraps fmt.Sprintf() and Color104.

func Color105

func Color105(str string) string

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

func Color105f added in v1.6.0

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

Color105f wraps fmt.Sprintf() and Color105.

func Color106

func Color106(str string) string

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

func Color106f added in v1.6.0

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

Color106f wraps fmt.Sprintf() and Color106.

func Color107

func Color107(str string) string

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

func Color107f added in v1.6.0

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

Color107f wraps fmt.Sprintf() and Color107.

func Color108

func Color108(str string) string

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

func Color108f added in v1.6.0

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

Color108f wraps fmt.Sprintf() and Color108.

func Color109

func Color109(str string) string

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

func Color109f added in v1.6.0

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

Color109f wraps fmt.Sprintf() and Color109.

func Color110

func Color110(str string) string

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

func Color110f added in v1.6.0

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

Color110f wraps fmt.Sprintf() and Color110.

func Color111

func Color111(str string) string

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

func Color111f added in v1.6.0

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

Color111f wraps fmt.Sprintf() and Color111.

func Color112

func Color112(str string) string

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

func Color112f added in v1.6.0

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

Color112f wraps fmt.Sprintf() and Color112.

func Color113

func Color113(str string) string

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

func Color113f added in v1.6.0

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

Color113f wraps fmt.Sprintf() and Color113.

func Color114

func Color114(str string) string

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

func Color114f added in v1.6.0

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

Color114f wraps fmt.Sprintf() and Color114.

func Color115

func Color115(str string) string

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

func Color115f added in v1.6.0

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

Color115f wraps fmt.Sprintf() and Color115.

func Color116

func Color116(str string) string

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

func Color116f added in v1.6.0

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

Color116f wraps fmt.Sprintf() and Color116.

func Color117

func Color117(str string) string

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

func Color117f added in v1.6.0

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

Color117f wraps fmt.Sprintf() and Color117.

func Color118

func Color118(str string) string

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

func Color118f added in v1.6.0

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

Color118f wraps fmt.Sprintf() and Color118.

func Color119

func Color119(str string) string

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

func Color119f added in v1.6.0

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

Color119f wraps fmt.Sprintf() and Color119.

func Color120

func Color120(str string) string

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

func Color120f added in v1.6.0

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

Color120f wraps fmt.Sprintf() and Color120.

func Color121

func Color121(str string) string

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

func Color121f added in v1.6.0

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

Color121f wraps fmt.Sprintf() and Color121.

func Color122

func Color122(str string) string

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

func Color122f added in v1.6.0

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

Color122f wraps fmt.Sprintf() and Color122.

func Color123

func Color123(str string) string

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

func Color123f added in v1.6.0

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

Color123f wraps fmt.Sprintf() and Color123.

func Color124

func Color124(str string) string

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

func Color124f added in v1.6.0

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

Color124f wraps fmt.Sprintf() and Color124.

func Color125

func Color125(str string) string

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

func Color125f added in v1.6.0

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

Color125f wraps fmt.Sprintf() and Color125.

func Color126

func Color126(str string) string

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

func Color126f added in v1.6.0

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

Color126f wraps fmt.Sprintf() and Color126.

func Color127

func Color127(str string) string

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

func Color127f added in v1.6.0

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

Color127f wraps fmt.Sprintf() and Color127.

func Color128

func Color128(str string) string

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

func Color128f added in v1.6.0

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

Color128f wraps fmt.Sprintf() and Color128.

func Color129

func Color129(str string) string

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

func Color129f added in v1.6.0

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

Color129f wraps fmt.Sprintf() and Color129.

func Color130

func Color130(str string) string

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

func Color130f added in v1.6.0

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

Color130f wraps fmt.Sprintf() and Color130.

func Color131

func Color131(str string) string

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

func Color131f added in v1.6.0

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

Color131f wraps fmt.Sprintf() and Color131.

func Color132

func Color132(str string) string

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

func Color132f added in v1.6.0

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

Color132f wraps fmt.Sprintf() and Color132.

func Color133

func Color133(str string) string

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

func Color133f added in v1.6.0

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

Color133f wraps fmt.Sprintf() and Color133.

func Color134

func Color134(str string) string

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

func Color134f added in v1.6.0

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

Color134f wraps fmt.Sprintf() and Color134.

func Color135

func Color135(str string) string

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

func Color135f added in v1.6.0

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

Color135f wraps fmt.Sprintf() and Color135.

func Color136

func Color136(str string) string

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

func Color136f added in v1.6.0

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

Color136f wraps fmt.Sprintf() and Color136.

func Color137

func Color137(str string) string

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

func Color137f added in v1.6.0

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

Color137f wraps fmt.Sprintf() and Color137.

func Color138

func Color138(str string) string

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

func Color138f added in v1.6.0

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

Color138f wraps fmt.Sprintf() and Color138.

func Color139

func Color139(str string) string

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

func Color139f added in v1.6.0

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

Color139f wraps fmt.Sprintf() and Color139.

func Color140

func Color140(str string) string

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

func Color140f added in v1.6.0

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

Color140f wraps fmt.Sprintf() and Color140.

func Color141

func Color141(str string) string

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

func Color141f added in v1.6.0

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

Color141f wraps fmt.Sprintf() and Color141.

func Color142

func Color142(str string) string

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

func Color142f added in v1.6.0

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

Color142f wraps fmt.Sprintf() and Color142.

func Color143

func Color143(str string) string

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

func Color143f added in v1.6.0

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

Color143f wraps fmt.Sprintf() and Color143.

func Color144

func Color144(str string) string

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

func Color144f added in v1.6.0

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

Color144f wraps fmt.Sprintf() and Color144.

func Color145

func Color145(str string) string

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

func Color145f added in v1.6.0

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

Color145f wraps fmt.Sprintf() and Color145.

func Color146

func Color146(str string) string

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

func Color146f added in v1.6.0

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

Color146f wraps fmt.Sprintf() and Color146.

func Color147

func Color147(str string) string

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

func Color147f added in v1.6.0

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

Color147f wraps fmt.Sprintf() and Color147.

func Color148

func Color148(str string) string

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

func Color148f added in v1.6.0

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

Color148f wraps fmt.Sprintf() and Color148.

func Color149

func Color149(str string) string

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

func Color149f added in v1.6.0

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

Color149f wraps fmt.Sprintf() and Color149.

func Color150

func Color150(str string) string

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

func Color150f added in v1.6.0

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

Color150f wraps fmt.Sprintf() and Color150.

func Color151

func Color151(str string) string

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

func Color151f added in v1.6.0

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

Color151f wraps fmt.Sprintf() and Color151.

func Color152

func Color152(str string) string

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

func Color152f added in v1.6.0

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

Color152f wraps fmt.Sprintf() and Color152.

func Color153

func Color153(str string) string

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

func Color153f added in v1.6.0

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

Color153f wraps fmt.Sprintf() and Color153.

func Color154

func Color154(str string) string

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

func Color154f added in v1.6.0

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

Color154f wraps fmt.Sprintf() and Color154.

func Color155

func Color155(str string) string

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

func Color155f added in v1.6.0

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

Color155f wraps fmt.Sprintf() and Color155.

func Color156

func Color156(str string) string

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

func Color156f added in v1.6.0

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

Color156f wraps fmt.Sprintf() and Color156.

func Color157

func Color157(str string) string

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

func Color157f added in v1.6.0

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

Color157f wraps fmt.Sprintf() and Color157.

func Color158

func Color158(str string) string

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

func Color158f added in v1.6.0

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

Color158f wraps fmt.Sprintf() and Color158.

func Color159

func Color159(str string) string

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

func Color159f added in v1.6.0

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

Color159f wraps fmt.Sprintf() and Color159.

func Color160

func Color160(str string) string

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

func Color160f added in v1.6.0

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

Color160f wraps fmt.Sprintf() and Color160.

func Color161

func Color161(str string) string

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

func Color161f added in v1.6.0

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

Color161f wraps fmt.Sprintf() and Color161.

func Color162

func Color162(str string) string

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

func Color162f added in v1.6.0

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

Color162f wraps fmt.Sprintf() and Color162.

func Color163

func Color163(str string) string

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

func Color163f added in v1.6.0

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

Color163f wraps fmt.Sprintf() and Color163.

func Color164

func Color164(str string) string

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

func Color164f added in v1.6.0

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

Color164f wraps fmt.Sprintf() and Color164.

func Color165

func Color165(str string) string

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

func Color165f added in v1.6.0

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

Color165f wraps fmt.Sprintf() and Color165.

func Color166

func Color166(str string) string

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

func Color166f added in v1.6.0

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

Color166f wraps fmt.Sprintf() and Color166.

func Color167

func Color167(str string) string

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

func Color167f added in v1.6.0

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

Color167f wraps fmt.Sprintf() and Color167.

func Color168

func Color168(str string) string

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

func Color168f added in v1.6.0

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

Color168f wraps fmt.Sprintf() and Color168.

func Color169

func Color169(str string) string

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

func Color169f added in v1.6.0

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

Color169f wraps fmt.Sprintf() and Color169.

func Color170

func Color170(str string) string

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

func Color170f added in v1.6.0

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

Color170f wraps fmt.Sprintf() and Color170.

func Color171

func Color171(str string) string

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

func Color171f added in v1.6.0

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

Color171f wraps fmt.Sprintf() and Color171.

func Color172

func Color172(str string) string

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

func Color172f added in v1.6.0

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

Color172f wraps fmt.Sprintf() and Color172.

func Color173

func Color173(str string) string

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

func Color173f added in v1.6.0

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

Color173f wraps fmt.Sprintf() and Color173.

func Color174

func Color174(str string) string

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

func Color174f added in v1.6.0

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

Color174f wraps fmt.Sprintf() and Color174.

func Color175

func Color175(str string) string

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

func Color175f added in v1.6.0

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

Color175f wraps fmt.Sprintf() and Color175.

func Color176

func Color176(str string) string

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

func Color176f added in v1.6.0

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

Color176f wraps fmt.Sprintf() and Color176.

func Color177

func Color177(str string) string

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

func Color177f added in v1.6.0

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

Color177f wraps fmt.Sprintf() and Color177.

func Color178

func Color178(str string) string

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

func Color178f added in v1.6.0

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

Color178f wraps fmt.Sprintf() and Color178.

func Color179

func Color179(str string) string

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

func Color179f added in v1.6.0

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

Color179f wraps fmt.Sprintf() and Color179.

func Color180

func Color180(str string) string

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

func Color180f added in v1.6.0

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

Color180f wraps fmt.Sprintf() and Color180.

func Color181

func Color181(str string) string

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

func Color181f added in v1.6.0

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

Color181f wraps fmt.Sprintf() and Color181.

func Color182

func Color182(str string) string

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

func Color182f added in v1.6.0

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

Color182f wraps fmt.Sprintf() and Color182.

func Color183

func Color183(str string) string

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

func Color183f added in v1.6.0

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

Color183f wraps fmt.Sprintf() and Color183.

func Color184

func Color184(str string) string

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

func Color184f added in v1.6.0

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

Color184f wraps fmt.Sprintf() and Color184.

func Color185

func Color185(str string) string

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

func Color185f added in v1.6.0

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

Color185f wraps fmt.Sprintf() and Color185.

func Color186

func Color186(str string) string

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

func Color186f added in v1.6.0

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

Color186f wraps fmt.Sprintf() and Color186.

func Color187

func Color187(str string) string

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

func Color187f added in v1.6.0

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

Color187f wraps fmt.Sprintf() and Color187.

func Color188

func Color188(str string) string

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

func Color188f added in v1.6.0

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

Color188f wraps fmt.Sprintf() and Color188.

func Color189

func Color189(str string) string

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

func Color189f added in v1.6.0

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

Color189f wraps fmt.Sprintf() and Color189.

func Color190

func Color190(str string) string

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

func Color190f added in v1.6.0

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

Color190f wraps fmt.Sprintf() and Color190.

func Color191

func Color191(str string) string

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

func Color191f added in v1.6.0

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

Color191f wraps fmt.Sprintf() and Color191.

func Color192

func Color192(str string) string

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

func Color192f added in v1.6.0

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

Color192f wraps fmt.Sprintf() and Color192.

func Color193

func Color193(str string) string

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

func Color193f added in v1.6.0

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

Color193f wraps fmt.Sprintf() and Color193.

func Color194

func Color194(str string) string

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

func Color194f added in v1.6.0

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

Color194f wraps fmt.Sprintf() and Color194.

func Color195

func Color195(str string) string

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

func Color195f added in v1.6.0

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

Color195f wraps fmt.Sprintf() and Color195.

func Color196

func Color196(str string) string

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

func Color196f added in v1.6.0

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

Color196f wraps fmt.Sprintf() and Color196.

func Color197

func Color197(str string) string

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

func Color197f added in v1.6.0

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

Color197f wraps fmt.Sprintf() and Color197.

func Color198

func Color198(str string) string

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

func Color198f added in v1.6.0

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

Color198f wraps fmt.Sprintf() and Color198.

func Color199

func Color199(str string) string

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

func Color199f added in v1.6.0

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

Color199f wraps fmt.Sprintf() and Color199.

func Color200

func Color200(str string) string

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

func Color200f added in v1.6.0

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

Color200f wraps fmt.Sprintf() and Color200.

func Color201

func Color201(str string) string

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

func Color201f added in v1.6.0

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

Color201f wraps fmt.Sprintf() and Color201.

func Color202

func Color202(str string) string

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

func Color202f added in v1.6.0

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

Color202f wraps fmt.Sprintf() and Color202.

func Color203

func Color203(str string) string

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

func Color203f added in v1.6.0

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

Color203f wraps fmt.Sprintf() and Color203.

func Color204

func Color204(str string) string

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

func Color204f added in v1.6.0

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

Color204f wraps fmt.Sprintf() and Color204.

func Color205

func Color205(str string) string

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

func Color205f added in v1.6.0

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

Color205f wraps fmt.Sprintf() and Color205.

func Color206

func Color206(str string) string

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

func Color206f added in v1.6.0

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

Color206f wraps fmt.Sprintf() and Color206.

func Color207

func Color207(str string) string

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

func Color207f added in v1.6.0

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

Color207f wraps fmt.Sprintf() and Color207.

func Color208

func Color208(str string) string

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

func Color208f added in v1.6.0

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

Color208f wraps fmt.Sprintf() and Color208.

func Color209

func Color209(str string) string

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

func Color209f added in v1.6.0

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

Color209f wraps fmt.Sprintf() and Color209.

func Color210

func Color210(str string) string

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

func Color210f added in v1.6.0

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

Color210f wraps fmt.Sprintf() and Color210.

func Color211

func Color211(str string) string

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

func Color211f added in v1.6.0

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

Color211f wraps fmt.Sprintf() and Color211.

func Color212

func Color212(str string) string

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

func Color212f added in v1.6.0

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

Color212f wraps fmt.Sprintf() and Color212.

func Color213

func Color213(str string) string

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

func Color213f added in v1.6.0

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

Color213f wraps fmt.Sprintf() and Color213.

func Color214

func Color214(str string) string

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

func Color214f added in v1.6.0

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

Color214f wraps fmt.Sprintf() and Color214.

func Color215

func Color215(str string) string

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

func Color215f added in v1.6.0

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

Color215f wraps fmt.Sprintf() and Color215.

func Color216

func Color216(str string) string

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

func Color216f added in v1.6.0

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

Color216f wraps fmt.Sprintf() and Color216.

func Color217

func Color217(str string) string

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

func Color217f added in v1.6.0

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

Color217f wraps fmt.Sprintf() and Color217.

func Color218

func Color218(str string) string

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

func Color218f added in v1.6.0

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

Color218f wraps fmt.Sprintf() and Color218.

func Color219

func Color219(str string) string

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

func Color219f added in v1.6.0

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

Color219f wraps fmt.Sprintf() and Color219.

func Color220

func Color220(str string) string

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

func Color220f added in v1.6.0

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

Color220f wraps fmt.Sprintf() and Color220.

func Color221

func Color221(str string) string

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

func Color221f added in v1.6.0

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

Color221f wraps fmt.Sprintf() and Color221.

func Color222

func Color222(str string) string

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

func Color222f added in v1.6.0

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

Color222f wraps fmt.Sprintf() and Color222.

func Color223

func Color223(str string) string

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

func Color223f added in v1.6.0

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

Color223f wraps fmt.Sprintf() and Color223.

func Color224

func Color224(str string) string

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

func Color224f added in v1.6.0

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

Color224f wraps fmt.Sprintf() and Color224.

func Color225

func Color225(str string) string

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

func Color225f added in v1.6.0

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

Color225f wraps fmt.Sprintf() and Color225.

func Color226

func Color226(str string) string

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

func Color226f added in v1.6.0

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

Color226f wraps fmt.Sprintf() and Color226.

func Color227

func Color227(str string) string

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

func Color227f added in v1.6.0

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

Color227f wraps fmt.Sprintf() and Color227.

func Color228

func Color228(str string) string

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

func Color228f added in v1.6.0

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

Color228f wraps fmt.Sprintf() and Color228.

func Color229

func Color229(str string) string

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

func Color229f added in v1.6.0

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

Color229f wraps fmt.Sprintf() and Color229.

func Color230

func Color230(str string) string

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

func Color230f added in v1.6.0

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

Color230f wraps fmt.Sprintf() and Color230.

func Color231

func Color231(str string) string

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

func Color231f added in v1.6.0

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

Color231f wraps fmt.Sprintf() and Color231.

func Color232

func Color232(str string) string

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

func Color232f added in v1.6.0

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

Color232f wraps fmt.Sprintf() and Color232.

func Color233

func Color233(str string) string

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

func Color233f added in v1.6.0

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

Color233f wraps fmt.Sprintf() and Color233.

func Color234

func Color234(str string) string

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

func Color234f added in v1.6.0

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

Color234f wraps fmt.Sprintf() and Color234.

func Color235

func Color235(str string) string

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

func Color235f added in v1.6.0

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

Color235f wraps fmt.Sprintf() and Color235.

func Color236

func Color236(str string) string

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

func Color236f added in v1.6.0

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

Color236f wraps fmt.Sprintf() and Color236.

func Color237

func Color237(str string) string

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

func Color237f added in v1.6.0

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

Color237f wraps fmt.Sprintf() and Color237.

func Color238

func Color238(str string) string

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

func Color238f added in v1.6.0

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

Color238f wraps fmt.Sprintf() and Color238.

func Color239

func Color239(str string) string

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

func Color239f added in v1.6.0

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

Color239f wraps fmt.Sprintf() and Color239.

func Color240

func Color240(str string) string

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

func Color240f added in v1.6.0

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

Color240f wraps fmt.Sprintf() and Color240.

func Color241

func Color241(str string) string

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

func Color241f added in v1.6.0

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

Color241f wraps fmt.Sprintf() and Color241.

func Color242

func Color242(str string) string

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

func Color242f added in v1.6.0

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

Color242f wraps fmt.Sprintf() and Color242.

func Color243

func Color243(str string) string

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

func Color243f added in v1.6.0

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

Color243f wraps fmt.Sprintf() and Color243.

func Color244

func Color244(str string) string

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

func Color244f added in v1.6.0

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

Color244f wraps fmt.Sprintf() and Color244.

func Color245

func Color245(str string) string

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

func Color245f added in v1.6.0

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

Color245f wraps fmt.Sprintf() and Color245.

func Color246

func Color246(str string) string

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

func Color246f added in v1.6.0

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

Color246f wraps fmt.Sprintf() and Color246.

func Color247

func Color247(str string) string

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

func Color247f added in v1.6.0

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

Color247f wraps fmt.Sprintf() and Color247.

func Color248

func Color248(str string) string

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

func Color248f added in v1.6.0

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

Color248f wraps fmt.Sprintf() and Color248.

func Color249

func Color249(str string) string

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

func Color249f added in v1.6.0

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

Color249f wraps fmt.Sprintf() and Color249.

func Color250

func Color250(str string) string

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

func Color250f added in v1.6.0

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

Color250f wraps fmt.Sprintf() and Color250.

func Color251

func Color251(str string) string

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

func Color251f added in v1.6.0

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

Color251f wraps fmt.Sprintf() and Color251.

func Color252

func Color252(str string) string

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

func Color252f added in v1.6.0

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

Color252f wraps fmt.Sprintf() and Color252.

func Color253

func Color253(str string) string

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

func Color253f added in v1.6.0

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

Color253f wraps fmt.Sprintf() and Color253.

func Color254

func Color254(str string) string

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

func Color254f added in v1.6.0

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

Color254f wraps fmt.Sprintf() and Color254.

func Color255

func Color255(str string) string

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

func Color255f added in v1.6.0

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

Color255f wraps fmt.Sprintf() and Color255.

func ColorToXterm256 added in v1.6.5

func ColorToXterm256(c color.Color) string

ColorToXterm256 will convert the color instance to its xterm256 representation.

func Conceal

func Conceal(str string) string

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

func Concealf added in v1.6.0

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

Concealf wraps fmt.Sprintf() and Conceal.

func CrossedOut

func CrossedOut(str string) string

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

func CrossedOutf added in v1.6.0

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

CrossedOutf wraps fmt.Sprintf() and CrossedOut.

func Cyan

func Cyan(str string) string

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

func Cyanf added in v1.6.0

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

Cyanf wraps fmt.Sprintf() and Cyan.

func Default

func Default(str string) string

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

func Defaultf added in v1.6.0

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

Defaultf wraps fmt.Sprintf() and Default.

func Dim

func Dim(str string) string

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

func Dimf added in v1.6.0

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

Dimf wraps fmt.Sprintf() and Dim.

func Disable

func Disable(b bool)

Disable will prevent color codes from being used.

func Errorf added in v1.6.9

func Errorf(format string, args ...interface{}) error

Errorf wraps fmt.Errorf().

func Faint

func Faint(str string) string

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

func Faintf added in v1.6.0

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

Faintf wraps fmt.Sprintf() and Faint.

func Fprint added in v1.7.0

func Fprint(w io.Writer, args ...interface{}) (int, error)

Fprint wraps fmt.Fprint().

func FprintBlack added in v1.8.0

func FprintBlack(w io.Writer, str string)

FprintBlack wraps Black() and fmt.Fprint().

func FprintBlink(w io.Writer, str string)

FprintBlink wraps Blink() and fmt.Fprint().

func FprintBlinkRapid added in v1.8.0

func FprintBlinkRapid(w io.Writer, str string)

FprintBlinkRapid wraps BlinkRapid() and fmt.Fprint().

func FprintBlinkSlow added in v1.8.0

func FprintBlinkSlow(w io.Writer, str string)

FprintBlinkSlow wraps BlinkSlow() and fmt.Fprint().

func FprintBlue added in v1.8.0

func FprintBlue(w io.Writer, str string)

FprintBlue wraps Blue() and fmt.Fprint().

func FprintBold added in v1.8.0

func FprintBold(w io.Writer, str string)

FprintBold wraps Bold() and fmt.Fprint().

func FprintColor000 added in v1.8.0

func FprintColor000(w io.Writer, str string)

FprintColor000 wraps Color000() and fmt.Fprint().

func FprintColor001 added in v1.8.0

func FprintColor001(w io.Writer, str string)

FprintColor001 wraps Color001() and fmt.Fprint().

func FprintColor002 added in v1.8.0

func FprintColor002(w io.Writer, str string)

FprintColor002 wraps Color002() and fmt.Fprint().

func FprintColor003 added in v1.8.0

func FprintColor003(w io.Writer, str string)

FprintColor003 wraps Color003() and fmt.Fprint().

func FprintColor004 added in v1.8.0

func FprintColor004(w io.Writer, str string)

FprintColor004 wraps Color004() and fmt.Fprint().

func FprintColor005 added in v1.8.0

func FprintColor005(w io.Writer, str string)

FprintColor005 wraps Color005() and fmt.Fprint().

func FprintColor006 added in v1.8.0

func FprintColor006(w io.Writer, str string)

FprintColor006 wraps Color006() and fmt.Fprint().

func FprintColor007 added in v1.8.0

func FprintColor007(w io.Writer, str string)

FprintColor007 wraps Color007() and fmt.Fprint().

func FprintColor008 added in v1.8.0

func FprintColor008(w io.Writer, str string)

FprintColor008 wraps Color008() and fmt.Fprint().

func FprintColor009 added in v1.8.0

func FprintColor009(w io.Writer, str string)

FprintColor009 wraps Color009() and fmt.Fprint().

func FprintColor010 added in v1.8.0

func FprintColor010(w io.Writer, str string)

FprintColor010 wraps Color010() and fmt.Fprint().

func FprintColor011 added in v1.8.0

func FprintColor011(w io.Writer, str string)

FprintColor011 wraps Color011() and fmt.Fprint().

func FprintColor012 added in v1.8.0

func FprintColor012(w io.Writer, str string)

FprintColor012 wraps Color012() and fmt.Fprint().

func FprintColor013 added in v1.8.0

func FprintColor013(w io.Writer, str string)

FprintColor013 wraps Color013() and fmt.Fprint().

func FprintColor014 added in v1.8.0

func FprintColor014(w io.Writer, str string)

FprintColor014 wraps Color014() and fmt.Fprint().

func FprintColor015 added in v1.8.0

func FprintColor015(w io.Writer, str string)

FprintColor015 wraps Color015() and fmt.Fprint().

func FprintColor016 added in v1.8.0

func FprintColor016(w io.Writer, str string)

FprintColor016 wraps Color016() and fmt.Fprint().

func FprintColor017 added in v1.8.0

func FprintColor017(w io.Writer, str string)

FprintColor017 wraps Color017() and fmt.Fprint().

func FprintColor018 added in v1.8.0

func FprintColor018(w io.Writer, str string)

FprintColor018 wraps Color018() and fmt.Fprint().

func FprintColor019 added in v1.8.0

func FprintColor019(w io.Writer, str string)

FprintColor019 wraps Color019() and fmt.Fprint().

func FprintColor020 added in v1.8.0

func FprintColor020(w io.Writer, str string)

FprintColor020 wraps Color020() and fmt.Fprint().

func FprintColor021 added in v1.8.0

func FprintColor021(w io.Writer, str string)

FprintColor021 wraps Color021() and fmt.Fprint().

func FprintColor022 added in v1.8.0

func FprintColor022(w io.Writer, str string)

FprintColor022 wraps Color022() and fmt.Fprint().

func FprintColor023 added in v1.8.0

func FprintColor023(w io.Writer, str string)

FprintColor023 wraps Color023() and fmt.Fprint().

func FprintColor024 added in v1.8.0

func FprintColor024(w io.Writer, str string)

FprintColor024 wraps Color024() and fmt.Fprint().

func FprintColor025 added in v1.8.0

func FprintColor025(w io.Writer, str string)

FprintColor025 wraps Color025() and fmt.Fprint().

func FprintColor026 added in v1.8.0

func FprintColor026(w io.Writer, str string)

FprintColor026 wraps Color026() and fmt.Fprint().

func FprintColor027 added in v1.8.0

func FprintColor027(w io.Writer, str string)

FprintColor027 wraps Color027() and fmt.Fprint().

func FprintColor028 added in v1.8.0

func FprintColor028(w io.Writer, str string)

FprintColor028 wraps Color028() and fmt.Fprint().

func FprintColor029 added in v1.8.0

func FprintColor029(w io.Writer, str string)

FprintColor029 wraps Color029() and fmt.Fprint().

func FprintColor030 added in v1.8.0

func FprintColor030(w io.Writer, str string)

FprintColor030 wraps Color030() and fmt.Fprint().

func FprintColor031 added in v1.8.0

func FprintColor031(w io.Writer, str string)

FprintColor031 wraps Color031() and fmt.Fprint().

func FprintColor032 added in v1.8.0

func FprintColor032(w io.Writer, str string)

FprintColor032 wraps Color032() and fmt.Fprint().

func FprintColor033 added in v1.8.0

func FprintColor033(w io.Writer, str string)

FprintColor033 wraps Color033() and fmt.Fprint().

func FprintColor034 added in v1.8.0

func FprintColor034(w io.Writer, str string)

FprintColor034 wraps Color034() and fmt.Fprint().

func FprintColor035 added in v1.8.0

func FprintColor035(w io.Writer, str string)

FprintColor035 wraps Color035() and fmt.Fprint().

func FprintColor036 added in v1.8.0

func FprintColor036(w io.Writer, str string)

FprintColor036 wraps Color036() and fmt.Fprint().

func FprintColor037 added in v1.8.0

func FprintColor037(w io.Writer, str string)

FprintColor037 wraps Color037() and fmt.Fprint().

func FprintColor038 added in v1.8.0

func FprintColor038(w io.Writer, str string)

FprintColor038 wraps Color038() and fmt.Fprint().

func FprintColor039 added in v1.8.0

func FprintColor039(w io.Writer, str string)

FprintColor039 wraps Color039() and fmt.Fprint().

func FprintColor040 added in v1.8.0

func FprintColor040(w io.Writer, str string)

FprintColor040 wraps Color040() and fmt.Fprint().

func FprintColor041 added in v1.8.0

func FprintColor041(w io.Writer, str string)

FprintColor041 wraps Color041() and fmt.Fprint().

func FprintColor042 added in v1.8.0

func FprintColor042(w io.Writer, str string)

FprintColor042 wraps Color042() and fmt.Fprint().

func FprintColor043 added in v1.8.0

func FprintColor043(w io.Writer, str string)

FprintColor043 wraps Color043() and fmt.Fprint().

func FprintColor044 added in v1.8.0

func FprintColor044(w io.Writer, str string)

FprintColor044 wraps Color044() and fmt.Fprint().

func FprintColor045 added in v1.8.0

func FprintColor045(w io.Writer, str string)

FprintColor045 wraps Color045() and fmt.Fprint().

func FprintColor046 added in v1.8.0

func FprintColor046(w io.Writer, str string)

FprintColor046 wraps Color046() and fmt.Fprint().

func FprintColor047 added in v1.8.0

func FprintColor047(w io.Writer, str string)

FprintColor047 wraps Color047() and fmt.Fprint().

func FprintColor048 added in v1.8.0

func FprintColor048(w io.Writer, str string)

FprintColor048 wraps Color048() and fmt.Fprint().

func FprintColor049 added in v1.8.0

func FprintColor049(w io.Writer, str string)

FprintColor049 wraps Color049() and fmt.Fprint().

func FprintColor050 added in v1.8.0

func FprintColor050(w io.Writer, str string)

FprintColor050 wraps Color050() and fmt.Fprint().

func FprintColor051 added in v1.8.0

func FprintColor051(w io.Writer, str string)

FprintColor051 wraps Color051() and fmt.Fprint().

func FprintColor052 added in v1.8.0

func FprintColor052(w io.Writer, str string)

FprintColor052 wraps Color052() and fmt.Fprint().

func FprintColor053 added in v1.8.0

func FprintColor053(w io.Writer, str string)

FprintColor053 wraps Color053() and fmt.Fprint().

func FprintColor054 added in v1.8.0

func FprintColor054(w io.Writer, str string)

FprintColor054 wraps Color054() and fmt.Fprint().

func FprintColor055 added in v1.8.0

func FprintColor055(w io.Writer, str string)

FprintColor055 wraps Color055() and fmt.Fprint().

func FprintColor056 added in v1.8.0

func FprintColor056(w io.Writer, str string)

FprintColor056 wraps Color056() and fmt.Fprint().

func FprintColor057 added in v1.8.0

func FprintColor057(w io.Writer, str string)

FprintColor057 wraps Color057() and fmt.Fprint().

func FprintColor058 added in v1.8.0

func FprintColor058(w io.Writer, str string)

FprintColor058 wraps Color058() and fmt.Fprint().

func FprintColor059 added in v1.8.0

func FprintColor059(w io.Writer, str string)

FprintColor059 wraps Color059() and fmt.Fprint().

func FprintColor060 added in v1.8.0

func FprintColor060(w io.Writer, str string)

FprintColor060 wraps Color060() and fmt.Fprint().

func FprintColor061 added in v1.8.0

func FprintColor061(w io.Writer, str string)

FprintColor061 wraps Color061() and fmt.Fprint().

func FprintColor062 added in v1.8.0

func FprintColor062(w io.Writer, str string)

FprintColor062 wraps Color062() and fmt.Fprint().

func FprintColor063 added in v1.8.0

func FprintColor063(w io.Writer, str string)

FprintColor063 wraps Color063() and fmt.Fprint().

func FprintColor064 added in v1.8.0

func FprintColor064(w io.Writer, str string)

FprintColor064 wraps Color064() and fmt.Fprint().

func FprintColor065 added in v1.8.0

func FprintColor065(w io.Writer, str string)

FprintColor065 wraps Color065() and fmt.Fprint().

func FprintColor066 added in v1.8.0

func FprintColor066(w io.Writer, str string)

FprintColor066 wraps Color066() and fmt.Fprint().

func FprintColor067 added in v1.8.0

func FprintColor067(w io.Writer, str string)

FprintColor067 wraps Color067() and fmt.Fprint().

func FprintColor068 added in v1.8.0

func FprintColor068(w io.Writer, str string)

FprintColor068 wraps Color068() and fmt.Fprint().

func FprintColor069 added in v1.8.0

func FprintColor069(w io.Writer, str string)

FprintColor069 wraps Color069() and fmt.Fprint().

func FprintColor070 added in v1.8.0

func FprintColor070(w io.Writer, str string)

FprintColor070 wraps Color070() and fmt.Fprint().

func FprintColor071 added in v1.8.0

func FprintColor071(w io.Writer, str string)

FprintColor071 wraps Color071() and fmt.Fprint().

func FprintColor072 added in v1.8.0

func FprintColor072(w io.Writer, str string)

FprintColor072 wraps Color072() and fmt.Fprint().

func FprintColor073 added in v1.8.0

func FprintColor073(w io.Writer, str string)

FprintColor073 wraps Color073() and fmt.Fprint().

func FprintColor074 added in v1.8.0

func FprintColor074(w io.Writer, str string)

FprintColor074 wraps Color074() and fmt.Fprint().

func FprintColor075 added in v1.8.0

func FprintColor075(w io.Writer, str string)

FprintColor075 wraps Color075() and fmt.Fprint().

func FprintColor076 added in v1.8.0

func FprintColor076(w io.Writer, str string)

FprintColor076 wraps Color076() and fmt.Fprint().

func FprintColor077 added in v1.8.0

func FprintColor077(w io.Writer, str string)

FprintColor077 wraps Color077() and fmt.Fprint().

func FprintColor078 added in v1.8.0

func FprintColor078(w io.Writer, str string)

FprintColor078 wraps Color078() and fmt.Fprint().

func FprintColor079 added in v1.8.0

func FprintColor079(w io.Writer, str string)

FprintColor079 wraps Color079() and fmt.Fprint().

func FprintColor080 added in v1.8.0

func FprintColor080(w io.Writer, str string)

FprintColor080 wraps Color080() and fmt.Fprint().

func FprintColor081 added in v1.8.0

func FprintColor081(w io.Writer, str string)

FprintColor081 wraps Color081() and fmt.Fprint().

func FprintColor082 added in v1.8.0

func FprintColor082(w io.Writer, str string)

FprintColor082 wraps Color082() and fmt.Fprint().

func FprintColor083 added in v1.8.0

func FprintColor083(w io.Writer, str string)

FprintColor083 wraps Color083() and fmt.Fprint().

func FprintColor084 added in v1.8.0

func FprintColor084(w io.Writer, str string)

FprintColor084 wraps Color084() and fmt.Fprint().

func FprintColor085 added in v1.8.0

func FprintColor085(w io.Writer, str string)

FprintColor085 wraps Color085() and fmt.Fprint().

func FprintColor086 added in v1.8.0

func FprintColor086(w io.Writer, str string)

FprintColor086 wraps Color086() and fmt.Fprint().

func FprintColor087 added in v1.8.0

func FprintColor087(w io.Writer, str string)

FprintColor087 wraps Color087() and fmt.Fprint().

func FprintColor088 added in v1.8.0

func FprintColor088(w io.Writer, str string)

FprintColor088 wraps Color088() and fmt.Fprint().

func FprintColor089 added in v1.8.0

func FprintColor089(w io.Writer, str string)

FprintColor089 wraps Color089() and fmt.Fprint().

func FprintColor090 added in v1.8.0

func FprintColor090(w io.Writer, str string)

FprintColor090 wraps Color090() and fmt.Fprint().

func FprintColor091 added in v1.8.0

func FprintColor091(w io.Writer, str string)

FprintColor091 wraps Color091() and fmt.Fprint().

func FprintColor092 added in v1.8.0

func FprintColor092(w io.Writer, str string)

FprintColor092 wraps Color092() and fmt.Fprint().

func FprintColor093 added in v1.8.0

func FprintColor093(w io.Writer, str string)

FprintColor093 wraps Color093() and fmt.Fprint().

func FprintColor094 added in v1.8.0

func FprintColor094(w io.Writer, str string)

FprintColor094 wraps Color094() and fmt.Fprint().

func FprintColor095 added in v1.8.0

func FprintColor095(w io.Writer, str string)

FprintColor095 wraps Color095() and fmt.Fprint().

func FprintColor096 added in v1.8.0

func FprintColor096(w io.Writer, str string)

FprintColor096 wraps Color096() and fmt.Fprint().

func FprintColor097 added in v1.8.0

func FprintColor097(w io.Writer, str string)

FprintColor097 wraps Color097() and fmt.Fprint().

func FprintColor098 added in v1.8.0

func FprintColor098(w io.Writer, str string)

FprintColor098 wraps Color098() and fmt.Fprint().

func FprintColor099 added in v1.8.0

func FprintColor099(w io.Writer, str string)

FprintColor099 wraps Color099() and fmt.Fprint().

func FprintColor100 added in v1.8.0

func FprintColor100(w io.Writer, str string)

FprintColor100 wraps Color100() and fmt.Fprint().

func FprintColor101 added in v1.8.0

func FprintColor101(w io.Writer, str string)

FprintColor101 wraps Color101() and fmt.Fprint().

func FprintColor102 added in v1.8.0

func FprintColor102(w io.Writer, str string)

FprintColor102 wraps Color102() and fmt.Fprint().

func FprintColor103 added in v1.8.0

func FprintColor103(w io.Writer, str string)

FprintColor103 wraps Color103() and fmt.Fprint().

func FprintColor104 added in v1.8.0

func FprintColor104(w io.Writer, str string)

FprintColor104 wraps Color104() and fmt.Fprint().

func FprintColor105 added in v1.8.0

func FprintColor105(w io.Writer, str string)

FprintColor105 wraps Color105() and fmt.Fprint().

func FprintColor106 added in v1.8.0

func FprintColor106(w io.Writer, str string)

FprintColor106 wraps Color106() and fmt.Fprint().

func FprintColor107 added in v1.8.0

func FprintColor107(w io.Writer, str string)

FprintColor107 wraps Color107() and fmt.Fprint().

func FprintColor108 added in v1.8.0

func FprintColor108(w io.Writer, str string)

FprintColor108 wraps Color108() and fmt.Fprint().

func FprintColor109 added in v1.8.0

func FprintColor109(w io.Writer, str string)

FprintColor109 wraps Color109() and fmt.Fprint().

func FprintColor110 added in v1.8.0

func FprintColor110(w io.Writer, str string)

FprintColor110 wraps Color110() and fmt.Fprint().

func FprintColor111 added in v1.8.0

func FprintColor111(w io.Writer, str string)

FprintColor111 wraps Color111() and fmt.Fprint().

func FprintColor112 added in v1.8.0

func FprintColor112(w io.Writer, str string)

FprintColor112 wraps Color112() and fmt.Fprint().

func FprintColor113 added in v1.8.0

func FprintColor113(w io.Writer, str string)

FprintColor113 wraps Color113() and fmt.Fprint().

func FprintColor114 added in v1.8.0

func FprintColor114(w io.Writer, str string)

FprintColor114 wraps Color114() and fmt.Fprint().

func FprintColor115 added in v1.8.0

func FprintColor115(w io.Writer, str string)

FprintColor115 wraps Color115() and fmt.Fprint().

func FprintColor116 added in v1.8.0

func FprintColor116(w io.Writer, str string)

FprintColor116 wraps Color116() and fmt.Fprint().

func FprintColor117 added in v1.8.0

func FprintColor117(w io.Writer, str string)

FprintColor117 wraps Color117() and fmt.Fprint().

func FprintColor118 added in v1.8.0

func FprintColor118(w io.Writer, str string)

FprintColor118 wraps Color118() and fmt.Fprint().

func FprintColor119 added in v1.8.0

func FprintColor119(w io.Writer, str string)

FprintColor119 wraps Color119() and fmt.Fprint().

func FprintColor120 added in v1.8.0

func FprintColor120(w io.Writer, str string)

FprintColor120 wraps Color120() and fmt.Fprint().

func FprintColor121 added in v1.8.0

func FprintColor121(w io.Writer, str string)

FprintColor121 wraps Color121() and fmt.Fprint().

func FprintColor122 added in v1.8.0

func FprintColor122(w io.Writer, str string)

FprintColor122 wraps Color122() and fmt.Fprint().

func FprintColor123 added in v1.8.0

func FprintColor123(w io.Writer, str string)

FprintColor123 wraps Color123() and fmt.Fprint().

func FprintColor124 added in v1.8.0

func FprintColor124(w io.Writer, str string)

FprintColor124 wraps Color124() and fmt.Fprint().

func FprintColor125 added in v1.8.0

func FprintColor125(w io.Writer, str string)

FprintColor125 wraps Color125() and fmt.Fprint().

func FprintColor126 added in v1.8.0

func FprintColor126(w io.Writer, str string)

FprintColor126 wraps Color126() and fmt.Fprint().

func FprintColor127 added in v1.8.0

func FprintColor127(w io.Writer, str string)

FprintColor127 wraps Color127() and fmt.Fprint().

func FprintColor128 added in v1.8.0

func FprintColor128(w io.Writer, str string)

FprintColor128 wraps Color128() and fmt.Fprint().

func FprintColor129 added in v1.8.0

func FprintColor129(w io.Writer, str string)

FprintColor129 wraps Color129() and fmt.Fprint().

func FprintColor130 added in v1.8.0

func FprintColor130(w io.Writer, str string)

FprintColor130 wraps Color130() and fmt.Fprint().

func FprintColor131 added in v1.8.0

func FprintColor131(w io.Writer, str string)

FprintColor131 wraps Color131() and fmt.Fprint().

func FprintColor132 added in v1.8.0

func FprintColor132(w io.Writer, str string)

FprintColor132 wraps Color132() and fmt.Fprint().

func FprintColor133 added in v1.8.0

func FprintColor133(w io.Writer, str string)

FprintColor133 wraps Color133() and fmt.Fprint().

func FprintColor134 added in v1.8.0

func FprintColor134(w io.Writer, str string)

FprintColor134 wraps Color134() and fmt.Fprint().

func FprintColor135 added in v1.8.0

func FprintColor135(w io.Writer, str string)

FprintColor135 wraps Color135() and fmt.Fprint().

func FprintColor136 added in v1.8.0

func FprintColor136(w io.Writer, str string)

FprintColor136 wraps Color136() and fmt.Fprint().

func FprintColor137 added in v1.8.0

func FprintColor137(w io.Writer, str string)

FprintColor137 wraps Color137() and fmt.Fprint().

func FprintColor138 added in v1.8.0

func FprintColor138(w io.Writer, str string)

FprintColor138 wraps Color138() and fmt.Fprint().

func FprintColor139 added in v1.8.0

func FprintColor139(w io.Writer, str string)

FprintColor139 wraps Color139() and fmt.Fprint().

func FprintColor140 added in v1.8.0

func FprintColor140(w io.Writer, str string)

FprintColor140 wraps Color140() and fmt.Fprint().

func FprintColor141 added in v1.8.0

func FprintColor141(w io.Writer, str string)

FprintColor141 wraps Color141() and fmt.Fprint().

func FprintColor142 added in v1.8.0

func FprintColor142(w io.Writer, str string)

FprintColor142 wraps Color142() and fmt.Fprint().

func FprintColor143 added in v1.8.0

func FprintColor143(w io.Writer, str string)

FprintColor143 wraps Color143() and fmt.Fprint().

func FprintColor144 added in v1.8.0

func FprintColor144(w io.Writer, str string)

FprintColor144 wraps Color144() and fmt.Fprint().

func FprintColor145 added in v1.8.0

func FprintColor145(w io.Writer, str string)

FprintColor145 wraps Color145() and fmt.Fprint().

func FprintColor146 added in v1.8.0

func FprintColor146(w io.Writer, str string)

FprintColor146 wraps Color146() and fmt.Fprint().

func FprintColor147 added in v1.8.0

func FprintColor147(w io.Writer, str string)

FprintColor147 wraps Color147() and fmt.Fprint().

func FprintColor148 added in v1.8.0

func FprintColor148(w io.Writer, str string)

FprintColor148 wraps Color148() and fmt.Fprint().

func FprintColor149 added in v1.8.0

func FprintColor149(w io.Writer, str string)

FprintColor149 wraps Color149() and fmt.Fprint().

func FprintColor150 added in v1.8.0

func FprintColor150(w io.Writer, str string)

FprintColor150 wraps Color150() and fmt.Fprint().

func FprintColor151 added in v1.8.0

func FprintColor151(w io.Writer, str string)

FprintColor151 wraps Color151() and fmt.Fprint().

func FprintColor152 added in v1.8.0

func FprintColor152(w io.Writer, str string)

FprintColor152 wraps Color152() and fmt.Fprint().

func FprintColor153 added in v1.8.0

func FprintColor153(w io.Writer, str string)

FprintColor153 wraps Color153() and fmt.Fprint().

func FprintColor154 added in v1.8.0

func FprintColor154(w io.Writer, str string)

FprintColor154 wraps Color154() and fmt.Fprint().

func FprintColor155 added in v1.8.0

func FprintColor155(w io.Writer, str string)

FprintColor155 wraps Color155() and fmt.Fprint().

func FprintColor156 added in v1.8.0

func FprintColor156(w io.Writer, str string)

FprintColor156 wraps Color156() and fmt.Fprint().

func FprintColor157 added in v1.8.0

func FprintColor157(w io.Writer, str string)

FprintColor157 wraps Color157() and fmt.Fprint().

func FprintColor158 added in v1.8.0

func FprintColor158(w io.Writer, str string)

FprintColor158 wraps Color158() and fmt.Fprint().

func FprintColor159 added in v1.8.0

func FprintColor159(w io.Writer, str string)

FprintColor159 wraps Color159() and fmt.Fprint().

func FprintColor160 added in v1.8.0

func FprintColor160(w io.Writer, str string)

FprintColor160 wraps Color160() and fmt.Fprint().

func FprintColor161 added in v1.8.0

func FprintColor161(w io.Writer, str string)

FprintColor161 wraps Color161() and fmt.Fprint().

func FprintColor162 added in v1.8.0

func FprintColor162(w io.Writer, str string)

FprintColor162 wraps Color162() and fmt.Fprint().

func FprintColor163 added in v1.8.0

func FprintColor163(w io.Writer, str string)

FprintColor163 wraps Color163() and fmt.Fprint().

func FprintColor164 added in v1.8.0

func FprintColor164(w io.Writer, str string)

FprintColor164 wraps Color164() and fmt.Fprint().

func FprintColor165 added in v1.8.0

func FprintColor165(w io.Writer, str string)

FprintColor165 wraps Color165() and fmt.Fprint().

func FprintColor166 added in v1.8.0

func FprintColor166(w io.Writer, str string)

FprintColor166 wraps Color166() and fmt.Fprint().

func FprintColor167 added in v1.8.0

func FprintColor167(w io.Writer, str string)

FprintColor167 wraps Color167() and fmt.Fprint().

func FprintColor168 added in v1.8.0

func FprintColor168(w io.Writer, str string)

FprintColor168 wraps Color168() and fmt.Fprint().

func FprintColor169 added in v1.8.0

func FprintColor169(w io.Writer, str string)

FprintColor169 wraps Color169() and fmt.Fprint().

func FprintColor170 added in v1.8.0

func FprintColor170(w io.Writer, str string)

FprintColor170 wraps Color170() and fmt.Fprint().

func FprintColor171 added in v1.8.0

func FprintColor171(w io.Writer, str string)

FprintColor171 wraps Color171() and fmt.Fprint().

func FprintColor172 added in v1.8.0

func FprintColor172(w io.Writer, str string)

FprintColor172 wraps Color172() and fmt.Fprint().

func FprintColor173 added in v1.8.0

func FprintColor173(w io.Writer, str string)

FprintColor173 wraps Color173() and fmt.Fprint().

func FprintColor174 added in v1.8.0

func FprintColor174(w io.Writer, str string)

FprintColor174 wraps Color174() and fmt.Fprint().

func FprintColor175 added in v1.8.0

func FprintColor175(w io.Writer, str string)

FprintColor175 wraps Color175() and fmt.Fprint().

func FprintColor176 added in v1.8.0

func FprintColor176(w io.Writer, str string)

FprintColor176 wraps Color176() and fmt.Fprint().

func FprintColor177 added in v1.8.0

func FprintColor177(w io.Writer, str string)

FprintColor177 wraps Color177() and fmt.Fprint().

func FprintColor178 added in v1.8.0

func FprintColor178(w io.Writer, str string)

FprintColor178 wraps Color178() and fmt.Fprint().

func FprintColor179 added in v1.8.0

func FprintColor179(w io.Writer, str string)

FprintColor179 wraps Color179() and fmt.Fprint().

func FprintColor180 added in v1.8.0

func FprintColor180(w io.Writer, str string)

FprintColor180 wraps Color180() and fmt.Fprint().

func FprintColor181 added in v1.8.0

func FprintColor181(w io.Writer, str string)

FprintColor181 wraps Color181() and fmt.Fprint().

func FprintColor182 added in v1.8.0

func FprintColor182(w io.Writer, str string)

FprintColor182 wraps Color182() and fmt.Fprint().

func FprintColor183 added in v1.8.0

func FprintColor183(w io.Writer, str string)

FprintColor183 wraps Color183() and fmt.Fprint().

func FprintColor184 added in v1.8.0

func FprintColor184(w io.Writer, str string)

FprintColor184 wraps Color184() and fmt.Fprint().

func FprintColor185 added in v1.8.0

func FprintColor185(w io.Writer, str string)

FprintColor185 wraps Color185() and fmt.Fprint().

func FprintColor186 added in v1.8.0

func FprintColor186(w io.Writer, str string)

FprintColor186 wraps Color186() and fmt.Fprint().

func FprintColor187 added in v1.8.0

func FprintColor187(w io.Writer, str string)

FprintColor187 wraps Color187() and fmt.Fprint().

func FprintColor188 added in v1.8.0

func FprintColor188(w io.Writer, str string)

FprintColor188 wraps Color188() and fmt.Fprint().

func FprintColor189 added in v1.8.0

func FprintColor189(w io.Writer, str string)

FprintColor189 wraps Color189() and fmt.Fprint().

func FprintColor190 added in v1.8.0

func FprintColor190(w io.Writer, str string)

FprintColor190 wraps Color190() and fmt.Fprint().

func FprintColor191 added in v1.8.0

func FprintColor191(w io.Writer, str string)

FprintColor191 wraps Color191() and fmt.Fprint().

func FprintColor192 added in v1.8.0

func FprintColor192(w io.Writer, str string)

FprintColor192 wraps Color192() and fmt.Fprint().

func FprintColor193 added in v1.8.0

func FprintColor193(w io.Writer, str string)

FprintColor193 wraps Color193() and fmt.Fprint().

func FprintColor194 added in v1.8.0

func FprintColor194(w io.Writer, str string)

FprintColor194 wraps Color194() and fmt.Fprint().

func FprintColor195 added in v1.8.0

func FprintColor195(w io.Writer, str string)

FprintColor195 wraps Color195() and fmt.Fprint().

func FprintColor196 added in v1.8.0

func FprintColor196(w io.Writer, str string)

FprintColor196 wraps Color196() and fmt.Fprint().

func FprintColor197 added in v1.8.0

func FprintColor197(w io.Writer, str string)

FprintColor197 wraps Color197() and fmt.Fprint().

func FprintColor198 added in v1.8.0

func FprintColor198(w io.Writer, str string)

FprintColor198 wraps Color198() and fmt.Fprint().

func FprintColor199 added in v1.8.0

func FprintColor199(w io.Writer, str string)

FprintColor199 wraps Color199() and fmt.Fprint().

func FprintColor200 added in v1.8.0

func FprintColor200(w io.Writer, str string)

FprintColor200 wraps Color200() and fmt.Fprint().

func FprintColor201 added in v1.8.0

func FprintColor201(w io.Writer, str string)

FprintColor201 wraps Color201() and fmt.Fprint().

func FprintColor202 added in v1.8.0

func FprintColor202(w io.Writer, str string)

FprintColor202 wraps Color202() and fmt.Fprint().

func FprintColor203 added in v1.8.0

func FprintColor203(w io.Writer, str string)

FprintColor203 wraps Color203() and fmt.Fprint().

func FprintColor204 added in v1.8.0

func FprintColor204(w io.Writer, str string)

FprintColor204 wraps Color204() and fmt.Fprint().

func FprintColor205 added in v1.8.0

func FprintColor205(w io.Writer, str string)

FprintColor205 wraps Color205() and fmt.Fprint().

func FprintColor206 added in v1.8.0

func FprintColor206(w io.Writer, str string)

FprintColor206 wraps Color206() and fmt.Fprint().

func FprintColor207 added in v1.8.0

func FprintColor207(w io.Writer, str string)

FprintColor207 wraps Color207() and fmt.Fprint().

func FprintColor208 added in v1.8.0

func FprintColor208(w io.Writer, str string)

FprintColor208 wraps Color208() and fmt.Fprint().

func FprintColor209 added in v1.8.0

func FprintColor209(w io.Writer, str string)

FprintColor209 wraps Color209() and fmt.Fprint().

func FprintColor210 added in v1.8.0

func FprintColor210(w io.Writer, str string)

FprintColor210 wraps Color210() and fmt.Fprint().

func FprintColor211 added in v1.8.0

func FprintColor211(w io.Writer, str string)

FprintColor211 wraps Color211() and fmt.Fprint().

func FprintColor212 added in v1.8.0

func FprintColor212(w io.Writer, str string)

FprintColor212 wraps Color212() and fmt.Fprint().

func FprintColor213 added in v1.8.0

func FprintColor213(w io.Writer, str string)

FprintColor213 wraps Color213() and fmt.Fprint().

func FprintColor214 added in v1.8.0

func FprintColor214(w io.Writer, str string)

FprintColor214 wraps Color214() and fmt.Fprint().

func FprintColor215 added in v1.8.0

func FprintColor215(w io.Writer, str string)

FprintColor215 wraps Color215() and fmt.Fprint().

func FprintColor216 added in v1.8.0

func FprintColor216(w io.Writer, str string)

FprintColor216 wraps Color216() and fmt.Fprint().

func FprintColor217 added in v1.8.0

func FprintColor217(w io.Writer, str string)

FprintColor217 wraps Color217() and fmt.Fprint().

func FprintColor218 added in v1.8.0

func FprintColor218(w io.Writer, str string)

FprintColor218 wraps Color218() and fmt.Fprint().

func FprintColor219 added in v1.8.0

func FprintColor219(w io.Writer, str string)

FprintColor219 wraps Color219() and fmt.Fprint().

func FprintColor220 added in v1.8.0

func FprintColor220(w io.Writer, str string)

FprintColor220 wraps Color220() and fmt.Fprint().

func FprintColor221 added in v1.8.0

func FprintColor221(w io.Writer, str string)

FprintColor221 wraps Color221() and fmt.Fprint().

func FprintColor222 added in v1.8.0

func FprintColor222(w io.Writer, str string)

FprintColor222 wraps Color222() and fmt.Fprint().

func FprintColor223 added in v1.8.0

func FprintColor223(w io.Writer, str string)

FprintColor223 wraps Color223() and fmt.Fprint().

func FprintColor224 added in v1.8.0

func FprintColor224(w io.Writer, str string)

FprintColor224 wraps Color224() and fmt.Fprint().

func FprintColor225 added in v1.8.0

func FprintColor225(w io.Writer, str string)

FprintColor225 wraps Color225() and fmt.Fprint().

func FprintColor226 added in v1.8.0

func FprintColor226(w io.Writer, str string)

FprintColor226 wraps Color226() and fmt.Fprint().

func FprintColor227 added in v1.8.0

func FprintColor227(w io.Writer, str string)

FprintColor227 wraps Color227() and fmt.Fprint().

func FprintColor228 added in v1.8.0

func FprintColor228(w io.Writer, str string)

FprintColor228 wraps Color228() and fmt.Fprint().

func FprintColor229 added in v1.8.0

func FprintColor229(w io.Writer, str string)

FprintColor229 wraps Color229() and fmt.Fprint().

func FprintColor230 added in v1.8.0

func FprintColor230(w io.Writer, str string)

FprintColor230 wraps Color230() and fmt.Fprint().

func FprintColor231 added in v1.8.0

func FprintColor231(w io.Writer, str string)

FprintColor231 wraps Color231() and fmt.Fprint().

func FprintColor232 added in v1.8.0

func FprintColor232(w io.Writer, str string)

FprintColor232 wraps Color232() and fmt.Fprint().

func FprintColor233 added in v1.8.0

func FprintColor233(w io.Writer, str string)

FprintColor233 wraps Color233() and fmt.Fprint().

func FprintColor234 added in v1.8.0

func FprintColor234(w io.Writer, str string)

FprintColor234 wraps Color234() and fmt.Fprint().

func FprintColor235 added in v1.8.0

func FprintColor235(w io.Writer, str string)

FprintColor235 wraps Color235() and fmt.Fprint().

func FprintColor236 added in v1.8.0

func FprintColor236(w io.Writer, str string)

FprintColor236 wraps Color236() and fmt.Fprint().

func FprintColor237 added in v1.8.0

func FprintColor237(w io.Writer, str string)

FprintColor237 wraps Color237() and fmt.Fprint().

func FprintColor238 added in v1.8.0

func FprintColor238(w io.Writer, str string)

FprintColor238 wraps Color238() and fmt.Fprint().

func FprintColor239 added in v1.8.0

func FprintColor239(w io.Writer, str string)

FprintColor239 wraps Color239() and fmt.Fprint().

func FprintColor240 added in v1.8.0

func FprintColor240(w io.Writer, str string)

FprintColor240 wraps Color240() and fmt.Fprint().

func FprintColor241 added in v1.8.0

func FprintColor241(w io.Writer, str string)

FprintColor241 wraps Color241() and fmt.Fprint().

func FprintColor242 added in v1.8.0

func FprintColor242(w io.Writer, str string)

FprintColor242 wraps Color242() and fmt.Fprint().

func FprintColor243 added in v1.8.0

func FprintColor243(w io.Writer, str string)

FprintColor243 wraps Color243() and fmt.Fprint().

func FprintColor244 added in v1.8.0

func FprintColor244(w io.Writer, str string)

FprintColor244 wraps Color244() and fmt.Fprint().

func FprintColor245 added in v1.8.0

func FprintColor245(w io.Writer, str string)

FprintColor245 wraps Color245() and fmt.Fprint().

func FprintColor246 added in v1.8.0

func FprintColor246(w io.Writer, str string)

FprintColor246 wraps Color246() and fmt.Fprint().

func FprintColor247 added in v1.8.0

func FprintColor247(w io.Writer, str string)

FprintColor247 wraps Color247() and fmt.Fprint().

func FprintColor248 added in v1.8.0

func FprintColor248(w io.Writer, str string)

FprintColor248 wraps Color248() and fmt.Fprint().

func FprintColor249 added in v1.8.0

func FprintColor249(w io.Writer, str string)

FprintColor249 wraps Color249() and fmt.Fprint().

func FprintColor250 added in v1.8.0

func FprintColor250(w io.Writer, str string)

FprintColor250 wraps Color250() and fmt.Fprint().

func FprintColor251 added in v1.8.0

func FprintColor251(w io.Writer, str string)

FprintColor251 wraps Color251() and fmt.Fprint().

func FprintColor252 added in v1.8.0

func FprintColor252(w io.Writer, str string)

FprintColor252 wraps Color252() and fmt.Fprint().

func FprintColor253 added in v1.8.0

func FprintColor253(w io.Writer, str string)

FprintColor253 wraps Color253() and fmt.Fprint().

func FprintColor254 added in v1.8.0

func FprintColor254(w io.Writer, str string)

FprintColor254 wraps Color254() and fmt.Fprint().

func FprintColor255 added in v1.8.0

func FprintColor255(w io.Writer, str string)

FprintColor255 wraps Color255() and fmt.Fprint().

func FprintConceal added in v1.8.0

func FprintConceal(w io.Writer, str string)

FprintConceal wraps Conceal() and fmt.Fprint().

func FprintCrossedOut added in v1.8.0

func FprintCrossedOut(w io.Writer, str string)

FprintCrossedOut wraps CrossedOut() and fmt.Fprint().

func FprintCyan added in v1.8.0

func FprintCyan(w io.Writer, str string)

FprintCyan wraps Cyan() and fmt.Fprint().

func FprintDefault added in v1.8.0

func FprintDefault(w io.Writer, str string)

FprintDefault wraps Default() and fmt.Fprint().

func FprintDim added in v1.8.0

func FprintDim(w io.Writer, str string)

FprintDim wraps Dim() and fmt.Fprint().

func FprintFaint added in v1.8.0

func FprintFaint(w io.Writer, str string)

FprintFaint wraps Faint() and fmt.Fprint().

func FprintFraktur added in v1.8.0

func FprintFraktur(w io.Writer, str string)

FprintFraktur wraps Fraktur() and fmt.Fprint().

func FprintGreen added in v1.8.0

func FprintGreen(w io.Writer, str string)

FprintGreen wraps Green() and fmt.Fprint().

func FprintHex added in v1.8.0

func FprintHex(w io.Writer, hex string, str string)

FprintHex wraps Hex() and fmt.Fprint().

func FprintHide added in v1.8.0

func FprintHide(w io.Writer, str string)

FprintHide wraps Hide() and fmt.Fprint().

func FprintHilight added in v1.8.0

func FprintHilight(w io.Writer, code string, str string)

FprintHilight wraps Hilight() and fmt.Fprint().

func FprintHilights added in v1.8.0

func FprintHilights(w io.Writer, codes []string, str string)

FprintHilights wraps Hilights() and fmt.Fprint().

func FprintInverse added in v1.8.0

func FprintInverse(w io.Writer, str string)

FprintInverse wraps Inverse() and fmt.Fprint().

func FprintItalic added in v1.8.0

func FprintItalic(w io.Writer, str string)

FprintItalic wraps Italic() and fmt.Fprint().

func FprintLightBlack added in v1.8.0

func FprintLightBlack(w io.Writer, str string)

FprintLightBlack wraps LightBlack() and fmt.Fprint().

func FprintLightBlue added in v1.8.0

func FprintLightBlue(w io.Writer, str string)

FprintLightBlue wraps LightBlue() and fmt.Fprint().

func FprintLightCyan added in v1.8.0

func FprintLightCyan(w io.Writer, str string)

FprintLightCyan wraps LightCyan() and fmt.Fprint().

func FprintLightGreen added in v1.8.0

func FprintLightGreen(w io.Writer, str string)

FprintLightGreen wraps LightGreen() and fmt.Fprint().

func FprintLightMagenta added in v1.8.0

func FprintLightMagenta(w io.Writer, str string)

FprintLightMagenta wraps LightMagenta() and fmt.Fprint().

func FprintLightRed added in v1.8.0

func FprintLightRed(w io.Writer, str string)

FprintLightRed wraps LightRed() and fmt.Fprint().

func FprintLightWhite added in v1.8.0

func FprintLightWhite(w io.Writer, str string)

FprintLightWhite wraps LightWhite() and fmt.Fprint().

func FprintLightYellow added in v1.8.0

func FprintLightYellow(w io.Writer, str string)

FprintLightYellow wraps LightYellow() and fmt.Fprint().

func FprintMagenta added in v1.8.0

func FprintMagenta(w io.Writer, str string)

FprintMagenta wraps Magenta() and fmt.Fprint().

func FprintNegative added in v1.8.0

func FprintNegative(w io.Writer, str string)

FprintNegative wraps Negative() and fmt.Fprint().

func FprintNoBlink(w io.Writer, str string)

FprintNoBlink wraps NoBlink() and fmt.Fprint().

func FprintNoBlinkRapid added in v1.8.0

func FprintNoBlinkRapid(w io.Writer, str string)

FprintNoBlinkRapid wraps NoBlinkRapid() and fmt.Fprint().

func FprintNoBlinkSlow added in v1.8.0

func FprintNoBlinkSlow(w io.Writer, str string)

FprintNoBlinkSlow wraps NoBlinkSlow() and fmt.Fprint().

func FprintNoBold added in v1.8.0

func FprintNoBold(w io.Writer, str string)

FprintNoBold wraps NoBold() and fmt.Fprint().

func FprintNoConceal added in v1.8.0

func FprintNoConceal(w io.Writer, str string)

FprintNoConceal wraps NoConceal() and fmt.Fprint().

func FprintNoCrossedOut added in v1.8.0

func FprintNoCrossedOut(w io.Writer, str string)

FprintNoCrossedOut wraps NoCrossedOut() and fmt.Fprint().

func FprintNoDim added in v1.8.0

func FprintNoDim(w io.Writer, str string)

FprintNoDim wraps NoDim() and fmt.Fprint().

func FprintNoFaint added in v1.8.0

func FprintNoFaint(w io.Writer, str string)

FprintNoFaint wraps NoFaint() and fmt.Fprint().

func FprintNoFraktur added in v1.8.0

func FprintNoFraktur(w io.Writer, str string)

FprintNoFraktur wraps NoFraktur() and fmt.Fprint().

func FprintNoHide added in v1.8.0

func FprintNoHide(w io.Writer, str string)

FprintNoHide wraps NoHide() and fmt.Fprint().

func FprintNoInverse added in v1.8.0

func FprintNoInverse(w io.Writer, str string)

FprintNoInverse wraps NoInverse() and fmt.Fprint().

func FprintNoItalic added in v1.8.0

func FprintNoItalic(w io.Writer, str string)

FprintNoItalic wraps NoItalic() and fmt.Fprint().

func FprintNoNegative added in v1.8.0

func FprintNoNegative(w io.Writer, str string)

FprintNoNegative wraps NoNegative() and fmt.Fprint().

func FprintNoStrikethrough added in v1.8.0

func FprintNoStrikethrough(w io.Writer, str string)

FprintNoStrikethrough wraps NoStrikethrough() and fmt.Fprint().

func FprintNoSwap added in v1.8.0

func FprintNoSwap(w io.Writer, str string)

FprintNoSwap wraps NoSwap() and fmt.Fprint().

func FprintNoUnderline added in v1.8.0

func FprintNoUnderline(w io.Writer, str string)

FprintNoUnderline wraps NoUnderline() and fmt.Fprint().

func FprintNormal added in v1.8.0

func FprintNormal(w io.Writer, str string)

FprintNormal wraps Normal() and fmt.Fprint().

func FprintOnBlack added in v1.8.0

func FprintOnBlack(w io.Writer, str string)

FprintOnBlack wraps OnBlack() and fmt.Fprint().

func FprintOnBlue added in v1.8.0

func FprintOnBlue(w io.Writer, str string)

FprintOnBlue wraps OnBlue() and fmt.Fprint().

func FprintOnColor000 added in v1.8.0

func FprintOnColor000(w io.Writer, str string)

FprintOnColor000 wraps OnColor000() and fmt.Fprint().

func FprintOnColor001 added in v1.8.0

func FprintOnColor001(w io.Writer, str string)

FprintOnColor001 wraps OnColor001() and fmt.Fprint().

func FprintOnColor002 added in v1.8.0

func FprintOnColor002(w io.Writer, str string)

FprintOnColor002 wraps OnColor002() and fmt.Fprint().

func FprintOnColor003 added in v1.8.0

func FprintOnColor003(w io.Writer, str string)

FprintOnColor003 wraps OnColor003() and fmt.Fprint().

func FprintOnColor004 added in v1.8.0

func FprintOnColor004(w io.Writer, str string)

FprintOnColor004 wraps OnColor004() and fmt.Fprint().

func FprintOnColor005 added in v1.8.0

func FprintOnColor005(w io.Writer, str string)

FprintOnColor005 wraps OnColor005() and fmt.Fprint().

func FprintOnColor006 added in v1.8.0

func FprintOnColor006(w io.Writer, str string)

FprintOnColor006 wraps OnColor006() and fmt.Fprint().

func FprintOnColor007 added in v1.8.0

func FprintOnColor007(w io.Writer, str string)

FprintOnColor007 wraps OnColor007() and fmt.Fprint().

func FprintOnColor008 added in v1.8.0

func FprintOnColor008(w io.Writer, str string)

FprintOnColor008 wraps OnColor008() and fmt.Fprint().

func FprintOnColor009 added in v1.8.0

func FprintOnColor009(w io.Writer, str string)

FprintOnColor009 wraps OnColor009() and fmt.Fprint().

func FprintOnColor010 added in v1.8.0

func FprintOnColor010(w io.Writer, str string)

FprintOnColor010 wraps OnColor010() and fmt.Fprint().

func FprintOnColor011 added in v1.8.0

func FprintOnColor011(w io.Writer, str string)

FprintOnColor011 wraps OnColor011() and fmt.Fprint().

func FprintOnColor012 added in v1.8.0

func FprintOnColor012(w io.Writer, str string)

FprintOnColor012 wraps OnColor012() and fmt.Fprint().

func FprintOnColor013 added in v1.8.0

func FprintOnColor013(w io.Writer, str string)

FprintOnColor013 wraps OnColor013() and fmt.Fprint().

func FprintOnColor014 added in v1.8.0

func FprintOnColor014(w io.Writer, str string)

FprintOnColor014 wraps OnColor014() and fmt.Fprint().

func FprintOnColor015 added in v1.8.0

func FprintOnColor015(w io.Writer, str string)

FprintOnColor015 wraps OnColor015() and fmt.Fprint().

func FprintOnColor016 added in v1.8.0

func FprintOnColor016(w io.Writer, str string)

FprintOnColor016 wraps OnColor016() and fmt.Fprint().

func FprintOnColor017 added in v1.8.0

func FprintOnColor017(w io.Writer, str string)

FprintOnColor017 wraps OnColor017() and fmt.Fprint().

func FprintOnColor018 added in v1.8.0

func FprintOnColor018(w io.Writer, str string)

FprintOnColor018 wraps OnColor018() and fmt.Fprint().

func FprintOnColor019 added in v1.8.0

func FprintOnColor019(w io.Writer, str string)

FprintOnColor019 wraps OnColor019() and fmt.Fprint().

func FprintOnColor020 added in v1.8.0

func FprintOnColor020(w io.Writer, str string)

FprintOnColor020 wraps OnColor020() and fmt.Fprint().

func FprintOnColor021 added in v1.8.0

func FprintOnColor021(w io.Writer, str string)

FprintOnColor021 wraps OnColor021() and fmt.Fprint().

func FprintOnColor022 added in v1.8.0

func FprintOnColor022(w io.Writer, str string)

FprintOnColor022 wraps OnColor022() and fmt.Fprint().

func FprintOnColor023 added in v1.8.0

func FprintOnColor023(w io.Writer, str string)

FprintOnColor023 wraps OnColor023() and fmt.Fprint().

func FprintOnColor024 added in v1.8.0

func FprintOnColor024(w io.Writer, str string)

FprintOnColor024 wraps OnColor024() and fmt.Fprint().

func FprintOnColor025 added in v1.8.0

func FprintOnColor025(w io.Writer, str string)

FprintOnColor025 wraps OnColor025() and fmt.Fprint().

func FprintOnColor026 added in v1.8.0

func FprintOnColor026(w io.Writer, str string)

FprintOnColor026 wraps OnColor026() and fmt.Fprint().

func FprintOnColor027 added in v1.8.0

func FprintOnColor027(w io.Writer, str string)

FprintOnColor027 wraps OnColor027() and fmt.Fprint().

func FprintOnColor028 added in v1.8.0

func FprintOnColor028(w io.Writer, str string)

FprintOnColor028 wraps OnColor028() and fmt.Fprint().

func FprintOnColor029 added in v1.8.0

func FprintOnColor029(w io.Writer, str string)

FprintOnColor029 wraps OnColor029() and fmt.Fprint().

func FprintOnColor030 added in v1.8.0

func FprintOnColor030(w io.Writer, str string)

FprintOnColor030 wraps OnColor030() and fmt.Fprint().

func FprintOnColor031 added in v1.8.0

func FprintOnColor031(w io.Writer, str string)

FprintOnColor031 wraps OnColor031() and fmt.Fprint().

func FprintOnColor032 added in v1.8.0

func FprintOnColor032(w io.Writer, str string)

FprintOnColor032 wraps OnColor032() and fmt.Fprint().

func FprintOnColor033 added in v1.8.0

func FprintOnColor033(w io.Writer, str string)

FprintOnColor033 wraps OnColor033() and fmt.Fprint().

func FprintOnColor034 added in v1.8.0

func FprintOnColor034(w io.Writer, str string)

FprintOnColor034 wraps OnColor034() and fmt.Fprint().

func FprintOnColor035 added in v1.8.0

func FprintOnColor035(w io.Writer, str string)

FprintOnColor035 wraps OnColor035() and fmt.Fprint().

func FprintOnColor036 added in v1.8.0

func FprintOnColor036(w io.Writer, str string)

FprintOnColor036 wraps OnColor036() and fmt.Fprint().

func FprintOnColor037 added in v1.8.0

func FprintOnColor037(w io.Writer, str string)

FprintOnColor037 wraps OnColor037() and fmt.Fprint().

func FprintOnColor038 added in v1.8.0

func FprintOnColor038(w io.Writer, str string)

FprintOnColor038 wraps OnColor038() and fmt.Fprint().

func FprintOnColor039 added in v1.8.0

func FprintOnColor039(w io.Writer, str string)

FprintOnColor039 wraps OnColor039() and fmt.Fprint().

func FprintOnColor040 added in v1.8.0

func FprintOnColor040(w io.Writer, str string)

FprintOnColor040 wraps OnColor040() and fmt.Fprint().

func FprintOnColor041 added in v1.8.0

func FprintOnColor041(w io.Writer, str string)

FprintOnColor041 wraps OnColor041() and fmt.Fprint().

func FprintOnColor042 added in v1.8.0

func FprintOnColor042(w io.Writer, str string)

FprintOnColor042 wraps OnColor042() and fmt.Fprint().

func FprintOnColor043 added in v1.8.0

func FprintOnColor043(w io.Writer, str string)

FprintOnColor043 wraps OnColor043() and fmt.Fprint().

func FprintOnColor044 added in v1.8.0

func FprintOnColor044(w io.Writer, str string)

FprintOnColor044 wraps OnColor044() and fmt.Fprint().

func FprintOnColor045 added in v1.8.0

func FprintOnColor045(w io.Writer, str string)

FprintOnColor045 wraps OnColor045() and fmt.Fprint().

func FprintOnColor046 added in v1.8.0

func FprintOnColor046(w io.Writer, str string)

FprintOnColor046 wraps OnColor046() and fmt.Fprint().

func FprintOnColor047 added in v1.8.0

func FprintOnColor047(w io.Writer, str string)

FprintOnColor047 wraps OnColor047() and fmt.Fprint().

func FprintOnColor048 added in v1.8.0

func FprintOnColor048(w io.Writer, str string)

FprintOnColor048 wraps OnColor048() and fmt.Fprint().

func FprintOnColor049 added in v1.8.0

func FprintOnColor049(w io.Writer, str string)

FprintOnColor049 wraps OnColor049() and fmt.Fprint().

func FprintOnColor050 added in v1.8.0

func FprintOnColor050(w io.Writer, str string)

FprintOnColor050 wraps OnColor050() and fmt.Fprint().

func FprintOnColor051 added in v1.8.0

func FprintOnColor051(w io.Writer, str string)

FprintOnColor051 wraps OnColor051() and fmt.Fprint().

func FprintOnColor052 added in v1.8.0

func FprintOnColor052(w io.Writer, str string)

FprintOnColor052 wraps OnColor052() and fmt.Fprint().

func FprintOnColor053 added in v1.8.0

func FprintOnColor053(w io.Writer, str string)

FprintOnColor053 wraps OnColor053() and fmt.Fprint().

func FprintOnColor054 added in v1.8.0

func FprintOnColor054(w io.Writer, str string)

FprintOnColor054 wraps OnColor054() and fmt.Fprint().

func FprintOnColor055 added in v1.8.0

func FprintOnColor055(w io.Writer, str string)

FprintOnColor055 wraps OnColor055() and fmt.Fprint().

func FprintOnColor056 added in v1.8.0

func FprintOnColor056(w io.Writer, str string)

FprintOnColor056 wraps OnColor056() and fmt.Fprint().

func FprintOnColor057 added in v1.8.0

func FprintOnColor057(w io.Writer, str string)

FprintOnColor057 wraps OnColor057() and fmt.Fprint().

func FprintOnColor058 added in v1.8.0

func FprintOnColor058(w io.Writer, str string)

FprintOnColor058 wraps OnColor058() and fmt.Fprint().

func FprintOnColor059 added in v1.8.0

func FprintOnColor059(w io.Writer, str string)

FprintOnColor059 wraps OnColor059() and fmt.Fprint().

func FprintOnColor060 added in v1.8.0

func FprintOnColor060(w io.Writer, str string)

FprintOnColor060 wraps OnColor060() and fmt.Fprint().

func FprintOnColor061 added in v1.8.0

func FprintOnColor061(w io.Writer, str string)

FprintOnColor061 wraps OnColor061() and fmt.Fprint().

func FprintOnColor062 added in v1.8.0

func FprintOnColor062(w io.Writer, str string)

FprintOnColor062 wraps OnColor062() and fmt.Fprint().

func FprintOnColor063 added in v1.8.0

func FprintOnColor063(w io.Writer, str string)

FprintOnColor063 wraps OnColor063() and fmt.Fprint().

func FprintOnColor064 added in v1.8.0

func FprintOnColor064(w io.Writer, str string)

FprintOnColor064 wraps OnColor064() and fmt.Fprint().

func FprintOnColor065 added in v1.8.0

func FprintOnColor065(w io.Writer, str string)

FprintOnColor065 wraps OnColor065() and fmt.Fprint().

func FprintOnColor066 added in v1.8.0

func FprintOnColor066(w io.Writer, str string)

FprintOnColor066 wraps OnColor066() and fmt.Fprint().

func FprintOnColor067 added in v1.8.0

func FprintOnColor067(w io.Writer, str string)

FprintOnColor067 wraps OnColor067() and fmt.Fprint().

func FprintOnColor068 added in v1.8.0

func FprintOnColor068(w io.Writer, str string)

FprintOnColor068 wraps OnColor068() and fmt.Fprint().

func FprintOnColor069 added in v1.8.0

func FprintOnColor069(w io.Writer, str string)

FprintOnColor069 wraps OnColor069() and fmt.Fprint().

func FprintOnColor070 added in v1.8.0

func FprintOnColor070(w io.Writer, str string)

FprintOnColor070 wraps OnColor070() and fmt.Fprint().

func FprintOnColor071 added in v1.8.0

func FprintOnColor071(w io.Writer, str string)

FprintOnColor071 wraps OnColor071() and fmt.Fprint().

func FprintOnColor072 added in v1.8.0

func FprintOnColor072(w io.Writer, str string)

FprintOnColor072 wraps OnColor072() and fmt.Fprint().

func FprintOnColor073 added in v1.8.0

func FprintOnColor073(w io.Writer, str string)

FprintOnColor073 wraps OnColor073() and fmt.Fprint().

func FprintOnColor074 added in v1.8.0

func FprintOnColor074(w io.Writer, str string)

FprintOnColor074 wraps OnColor074() and fmt.Fprint().

func FprintOnColor075 added in v1.8.0

func FprintOnColor075(w io.Writer, str string)

FprintOnColor075 wraps OnColor075() and fmt.Fprint().

func FprintOnColor076 added in v1.8.0

func FprintOnColor076(w io.Writer, str string)

FprintOnColor076 wraps OnColor076() and fmt.Fprint().

func FprintOnColor077 added in v1.8.0

func FprintOnColor077(w io.Writer, str string)

FprintOnColor077 wraps OnColor077() and fmt.Fprint().

func FprintOnColor078 added in v1.8.0

func FprintOnColor078(w io.Writer, str string)

FprintOnColor078 wraps OnColor078() and fmt.Fprint().

func FprintOnColor079 added in v1.8.0

func FprintOnColor079(w io.Writer, str string)

FprintOnColor079 wraps OnColor079() and fmt.Fprint().

func FprintOnColor080 added in v1.8.0

func FprintOnColor080(w io.Writer, str string)

FprintOnColor080 wraps OnColor080() and fmt.Fprint().

func FprintOnColor081 added in v1.8.0

func FprintOnColor081(w io.Writer, str string)

FprintOnColor081 wraps OnColor081() and fmt.Fprint().

func FprintOnColor082 added in v1.8.0

func FprintOnColor082(w io.Writer, str string)

FprintOnColor082 wraps OnColor082() and fmt.Fprint().

func FprintOnColor083 added in v1.8.0

func FprintOnColor083(w io.Writer, str string)

FprintOnColor083 wraps OnColor083() and fmt.Fprint().

func FprintOnColor084 added in v1.8.0

func FprintOnColor084(w io.Writer, str string)

FprintOnColor084 wraps OnColor084() and fmt.Fprint().

func FprintOnColor085 added in v1.8.0

func FprintOnColor085(w io.Writer, str string)

FprintOnColor085 wraps OnColor085() and fmt.Fprint().

func FprintOnColor086 added in v1.8.0

func FprintOnColor086(w io.Writer, str string)

FprintOnColor086 wraps OnColor086() and fmt.Fprint().

func FprintOnColor087 added in v1.8.0

func FprintOnColor087(w io.Writer, str string)

FprintOnColor087 wraps OnColor087() and fmt.Fprint().

func FprintOnColor088 added in v1.8.0

func FprintOnColor088(w io.Writer, str string)

FprintOnColor088 wraps OnColor088() and fmt.Fprint().

func FprintOnColor089 added in v1.8.0

func FprintOnColor089(w io.Writer, str string)

FprintOnColor089 wraps OnColor089() and fmt.Fprint().

func FprintOnColor090 added in v1.8.0

func FprintOnColor090(w io.Writer, str string)

FprintOnColor090 wraps OnColor090() and fmt.Fprint().

func FprintOnColor091 added in v1.8.0

func FprintOnColor091(w io.Writer, str string)

FprintOnColor091 wraps OnColor091() and fmt.Fprint().

func FprintOnColor092 added in v1.8.0

func FprintOnColor092(w io.Writer, str string)

FprintOnColor092 wraps OnColor092() and fmt.Fprint().

func FprintOnColor093 added in v1.8.0

func FprintOnColor093(w io.Writer, str string)

FprintOnColor093 wraps OnColor093() and fmt.Fprint().

func FprintOnColor094 added in v1.8.0

func FprintOnColor094(w io.Writer, str string)

FprintOnColor094 wraps OnColor094() and fmt.Fprint().

func FprintOnColor095 added in v1.8.0

func FprintOnColor095(w io.Writer, str string)

FprintOnColor095 wraps OnColor095() and fmt.Fprint().

func FprintOnColor096 added in v1.8.0

func FprintOnColor096(w io.Writer, str string)

FprintOnColor096 wraps OnColor096() and fmt.Fprint().

func FprintOnColor097 added in v1.8.0

func FprintOnColor097(w io.Writer, str string)

FprintOnColor097 wraps OnColor097() and fmt.Fprint().

func FprintOnColor098 added in v1.8.0

func FprintOnColor098(w io.Writer, str string)

FprintOnColor098 wraps OnColor098() and fmt.Fprint().

func FprintOnColor099 added in v1.8.0

func FprintOnColor099(w io.Writer, str string)

FprintOnColor099 wraps OnColor099() and fmt.Fprint().

func FprintOnColor100 added in v1.8.0

func FprintOnColor100(w io.Writer, str string)

FprintOnColor100 wraps OnColor100() and fmt.Fprint().

func FprintOnColor101 added in v1.8.0

func FprintOnColor101(w io.Writer, str string)

FprintOnColor101 wraps OnColor101() and fmt.Fprint().

func FprintOnColor102 added in v1.8.0

func FprintOnColor102(w io.Writer, str string)

FprintOnColor102 wraps OnColor102() and fmt.Fprint().

func FprintOnColor103 added in v1.8.0

func FprintOnColor103(w io.Writer, str string)

FprintOnColor103 wraps OnColor103() and fmt.Fprint().

func FprintOnColor104 added in v1.8.0

func FprintOnColor104(w io.Writer, str string)

FprintOnColor104 wraps OnColor104() and fmt.Fprint().

func FprintOnColor105 added in v1.8.0

func FprintOnColor105(w io.Writer, str string)

FprintOnColor105 wraps OnColor105() and fmt.Fprint().

func FprintOnColor106 added in v1.8.0

func FprintOnColor106(w io.Writer, str string)

FprintOnColor106 wraps OnColor106() and fmt.Fprint().

func FprintOnColor107 added in v1.8.0

func FprintOnColor107(w io.Writer, str string)

FprintOnColor107 wraps OnColor107() and fmt.Fprint().

func FprintOnColor108 added in v1.8.0

func FprintOnColor108(w io.Writer, str string)

FprintOnColor108 wraps OnColor108() and fmt.Fprint().

func FprintOnColor109 added in v1.8.0

func FprintOnColor109(w io.Writer, str string)

FprintOnColor109 wraps OnColor109() and fmt.Fprint().

func FprintOnColor110 added in v1.8.0

func FprintOnColor110(w io.Writer, str string)

FprintOnColor110 wraps OnColor110() and fmt.Fprint().

func FprintOnColor111 added in v1.8.0

func FprintOnColor111(w io.Writer, str string)

FprintOnColor111 wraps OnColor111() and fmt.Fprint().

func FprintOnColor112 added in v1.8.0

func FprintOnColor112(w io.Writer, str string)

FprintOnColor112 wraps OnColor112() and fmt.Fprint().

func FprintOnColor113 added in v1.8.0

func FprintOnColor113(w io.Writer, str string)

FprintOnColor113 wraps OnColor113() and fmt.Fprint().

func FprintOnColor114 added in v1.8.0

func FprintOnColor114(w io.Writer, str string)

FprintOnColor114 wraps OnColor114() and fmt.Fprint().

func FprintOnColor115 added in v1.8.0

func FprintOnColor115(w io.Writer, str string)

FprintOnColor115 wraps OnColor115() and fmt.Fprint().

func FprintOnColor116 added in v1.8.0

func FprintOnColor116(w io.Writer, str string)

FprintOnColor116 wraps OnColor116() and fmt.Fprint().

func FprintOnColor117 added in v1.8.0

func FprintOnColor117(w io.Writer, str string)

FprintOnColor117 wraps OnColor117() and fmt.Fprint().

func FprintOnColor118 added in v1.8.0

func FprintOnColor118(w io.Writer, str string)

FprintOnColor118 wraps OnColor118() and fmt.Fprint().

func FprintOnColor119 added in v1.8.0

func FprintOnColor119(w io.Writer, str string)

FprintOnColor119 wraps OnColor119() and fmt.Fprint().

func FprintOnColor120 added in v1.8.0

func FprintOnColor120(w io.Writer, str string)

FprintOnColor120 wraps OnColor120() and fmt.Fprint().

func FprintOnColor121 added in v1.8.0

func FprintOnColor121(w io.Writer, str string)

FprintOnColor121 wraps OnColor121() and fmt.Fprint().

func FprintOnColor122 added in v1.8.0

func FprintOnColor122(w io.Writer, str string)

FprintOnColor122 wraps OnColor122() and fmt.Fprint().

func FprintOnColor123 added in v1.8.0

func FprintOnColor123(w io.Writer, str string)

FprintOnColor123 wraps OnColor123() and fmt.Fprint().

func FprintOnColor124 added in v1.8.0

func FprintOnColor124(w io.Writer, str string)

FprintOnColor124 wraps OnColor124() and fmt.Fprint().

func FprintOnColor125 added in v1.8.0

func FprintOnColor125(w io.Writer, str string)

FprintOnColor125 wraps OnColor125() and fmt.Fprint().

func FprintOnColor126 added in v1.8.0

func FprintOnColor126(w io.Writer, str string)

FprintOnColor126 wraps OnColor126() and fmt.Fprint().

func FprintOnColor127 added in v1.8.0

func FprintOnColor127(w io.Writer, str string)

FprintOnColor127 wraps OnColor127() and fmt.Fprint().

func FprintOnColor128 added in v1.8.0

func FprintOnColor128(w io.Writer, str string)

FprintOnColor128 wraps OnColor128() and fmt.Fprint().

func FprintOnColor129 added in v1.8.0

func FprintOnColor129(w io.Writer, str string)

FprintOnColor129 wraps OnColor129() and fmt.Fprint().

func FprintOnColor130 added in v1.8.0

func FprintOnColor130(w io.Writer, str string)

FprintOnColor130 wraps OnColor130() and fmt.Fprint().

func FprintOnColor131 added in v1.8.0

func FprintOnColor131(w io.Writer, str string)

FprintOnColor131 wraps OnColor131() and fmt.Fprint().

func FprintOnColor132 added in v1.8.0

func FprintOnColor132(w io.Writer, str string)

FprintOnColor132 wraps OnColor132() and fmt.Fprint().

func FprintOnColor133 added in v1.8.0

func FprintOnColor133(w io.Writer, str string)

FprintOnColor133 wraps OnColor133() and fmt.Fprint().

func FprintOnColor134 added in v1.8.0

func FprintOnColor134(w io.Writer, str string)

FprintOnColor134 wraps OnColor134() and fmt.Fprint().

func FprintOnColor135 added in v1.8.0

func FprintOnColor135(w io.Writer, str string)

FprintOnColor135 wraps OnColor135() and fmt.Fprint().

func FprintOnColor136 added in v1.8.0

func FprintOnColor136(w io.Writer, str string)

FprintOnColor136 wraps OnColor136() and fmt.Fprint().

func FprintOnColor137 added in v1.8.0

func FprintOnColor137(w io.Writer, str string)

FprintOnColor137 wraps OnColor137() and fmt.Fprint().

func FprintOnColor138 added in v1.8.0

func FprintOnColor138(w io.Writer, str string)

FprintOnColor138 wraps OnColor138() and fmt.Fprint().

func FprintOnColor139 added in v1.8.0

func FprintOnColor139(w io.Writer, str string)

FprintOnColor139 wraps OnColor139() and fmt.Fprint().

func FprintOnColor140 added in v1.8.0

func FprintOnColor140(w io.Writer, str string)

FprintOnColor140 wraps OnColor140() and fmt.Fprint().

func FprintOnColor141 added in v1.8.0

func FprintOnColor141(w io.Writer, str string)

FprintOnColor141 wraps OnColor141() and fmt.Fprint().

func FprintOnColor142 added in v1.8.0

func FprintOnColor142(w io.Writer, str string)

FprintOnColor142 wraps OnColor142() and fmt.Fprint().

func FprintOnColor143 added in v1.8.0

func FprintOnColor143(w io.Writer, str string)

FprintOnColor143 wraps OnColor143() and fmt.Fprint().

func FprintOnColor144 added in v1.8.0

func FprintOnColor144(w io.Writer, str string)

FprintOnColor144 wraps OnColor144() and fmt.Fprint().

func FprintOnColor145 added in v1.8.0

func FprintOnColor145(w io.Writer, str string)

FprintOnColor145 wraps OnColor145() and fmt.Fprint().

func FprintOnColor146 added in v1.8.0

func FprintOnColor146(w io.Writer, str string)

FprintOnColor146 wraps OnColor146() and fmt.Fprint().

func FprintOnColor147 added in v1.8.0

func FprintOnColor147(w io.Writer, str string)

FprintOnColor147 wraps OnColor147() and fmt.Fprint().

func FprintOnColor148 added in v1.8.0

func FprintOnColor148(w io.Writer, str string)

FprintOnColor148 wraps OnColor148() and fmt.Fprint().

func FprintOnColor149 added in v1.8.0

func FprintOnColor149(w io.Writer, str string)

FprintOnColor149 wraps OnColor149() and fmt.Fprint().

func FprintOnColor150 added in v1.8.0

func FprintOnColor150(w io.Writer, str string)

FprintOnColor150 wraps OnColor150() and fmt.Fprint().

func FprintOnColor151 added in v1.8.0

func FprintOnColor151(w io.Writer, str string)

FprintOnColor151 wraps OnColor151() and fmt.Fprint().

func FprintOnColor152 added in v1.8.0

func FprintOnColor152(w io.Writer, str string)

FprintOnColor152 wraps OnColor152() and fmt.Fprint().

func FprintOnColor153 added in v1.8.0

func FprintOnColor153(w io.Writer, str string)

FprintOnColor153 wraps OnColor153() and fmt.Fprint().

func FprintOnColor154 added in v1.8.0

func FprintOnColor154(w io.Writer, str string)

FprintOnColor154 wraps OnColor154() and fmt.Fprint().

func FprintOnColor155 added in v1.8.0

func FprintOnColor155(w io.Writer, str string)

FprintOnColor155 wraps OnColor155() and fmt.Fprint().

func FprintOnColor156 added in v1.8.0

func FprintOnColor156(w io.Writer, str string)

FprintOnColor156 wraps OnColor156() and fmt.Fprint().

func FprintOnColor157 added in v1.8.0

func FprintOnColor157(w io.Writer, str string)

FprintOnColor157 wraps OnColor157() and fmt.Fprint().

func FprintOnColor158 added in v1.8.0

func FprintOnColor158(w io.Writer, str string)

FprintOnColor158 wraps OnColor158() and fmt.Fprint().

func FprintOnColor159 added in v1.8.0

func FprintOnColor159(w io.Writer, str string)

FprintOnColor159 wraps OnColor159() and fmt.Fprint().

func FprintOnColor160 added in v1.8.0

func FprintOnColor160(w io.Writer, str string)

FprintOnColor160 wraps OnColor160() and fmt.Fprint().

func FprintOnColor161 added in v1.8.0

func FprintOnColor161(w io.Writer, str string)

FprintOnColor161 wraps OnColor161() and fmt.Fprint().

func FprintOnColor162 added in v1.8.0

func FprintOnColor162(w io.Writer, str string)

FprintOnColor162 wraps OnColor162() and fmt.Fprint().

func FprintOnColor163 added in v1.8.0

func FprintOnColor163(w io.Writer, str string)

FprintOnColor163 wraps OnColor163() and fmt.Fprint().

func FprintOnColor164 added in v1.8.0

func FprintOnColor164(w io.Writer, str string)

FprintOnColor164 wraps OnColor164() and fmt.Fprint().

func FprintOnColor165 added in v1.8.0

func FprintOnColor165(w io.Writer, str string)

FprintOnColor165 wraps OnColor165() and fmt.Fprint().

func FprintOnColor166 added in v1.8.0

func FprintOnColor166(w io.Writer, str string)

FprintOnColor166 wraps OnColor166() and fmt.Fprint().

func FprintOnColor167 added in v1.8.0

func FprintOnColor167(w io.Writer, str string)

FprintOnColor167 wraps OnColor167() and fmt.Fprint().

func FprintOnColor168 added in v1.8.0

func FprintOnColor168(w io.Writer, str string)

FprintOnColor168 wraps OnColor168() and fmt.Fprint().

func FprintOnColor169 added in v1.8.0

func FprintOnColor169(w io.Writer, str string)

FprintOnColor169 wraps OnColor169() and fmt.Fprint().

func FprintOnColor170 added in v1.8.0

func FprintOnColor170(w io.Writer, str string)

FprintOnColor170 wraps OnColor170() and fmt.Fprint().

func FprintOnColor171 added in v1.8.0

func FprintOnColor171(w io.Writer, str string)

FprintOnColor171 wraps OnColor171() and fmt.Fprint().

func FprintOnColor172 added in v1.8.0

func FprintOnColor172(w io.Writer, str string)

FprintOnColor172 wraps OnColor172() and fmt.Fprint().

func FprintOnColor173 added in v1.8.0

func FprintOnColor173(w io.Writer, str string)

FprintOnColor173 wraps OnColor173() and fmt.Fprint().

func FprintOnColor174 added in v1.8.0

func FprintOnColor174(w io.Writer, str string)

FprintOnColor174 wraps OnColor174() and fmt.Fprint().

func FprintOnColor175 added in v1.8.0

func FprintOnColor175(w io.Writer, str string)

FprintOnColor175 wraps OnColor175() and fmt.Fprint().

func FprintOnColor176 added in v1.8.0

func FprintOnColor176(w io.Writer, str string)

FprintOnColor176 wraps OnColor176() and fmt.Fprint().

func FprintOnColor177 added in v1.8.0

func FprintOnColor177(w io.Writer, str string)

FprintOnColor177 wraps OnColor177() and fmt.Fprint().

func FprintOnColor178 added in v1.8.0

func FprintOnColor178(w io.Writer, str string)

FprintOnColor178 wraps OnColor178() and fmt.Fprint().

func FprintOnColor179 added in v1.8.0

func FprintOnColor179(w io.Writer, str string)

FprintOnColor179 wraps OnColor179() and fmt.Fprint().

func FprintOnColor180 added in v1.8.0

func FprintOnColor180(w io.Writer, str string)

FprintOnColor180 wraps OnColor180() and fmt.Fprint().

func FprintOnColor181 added in v1.8.0

func FprintOnColor181(w io.Writer, str string)

FprintOnColor181 wraps OnColor181() and fmt.Fprint().

func FprintOnColor182 added in v1.8.0

func FprintOnColor182(w io.Writer, str string)

FprintOnColor182 wraps OnColor182() and fmt.Fprint().

func FprintOnColor183 added in v1.8.0

func FprintOnColor183(w io.Writer, str string)

FprintOnColor183 wraps OnColor183() and fmt.Fprint().

func FprintOnColor184 added in v1.8.0

func FprintOnColor184(w io.Writer, str string)

FprintOnColor184 wraps OnColor184() and fmt.Fprint().

func FprintOnColor185 added in v1.8.0

func FprintOnColor185(w io.Writer, str string)

FprintOnColor185 wraps OnColor185() and fmt.Fprint().

func FprintOnColor186 added in v1.8.0

func FprintOnColor186(w io.Writer, str string)

FprintOnColor186 wraps OnColor186() and fmt.Fprint().

func FprintOnColor187 added in v1.8.0

func FprintOnColor187(w io.Writer, str string)

FprintOnColor187 wraps OnColor187() and fmt.Fprint().

func FprintOnColor188 added in v1.8.0

func FprintOnColor188(w io.Writer, str string)

FprintOnColor188 wraps OnColor188() and fmt.Fprint().

func FprintOnColor189 added in v1.8.0

func FprintOnColor189(w io.Writer, str string)

FprintOnColor189 wraps OnColor189() and fmt.Fprint().

func FprintOnColor190 added in v1.8.0

func FprintOnColor190(w io.Writer, str string)

FprintOnColor190 wraps OnColor190() and fmt.Fprint().

func FprintOnColor191 added in v1.8.0

func FprintOnColor191(w io.Writer, str string)

FprintOnColor191 wraps OnColor191() and fmt.Fprint().

func FprintOnColor192 added in v1.8.0

func FprintOnColor192(w io.Writer, str string)

FprintOnColor192 wraps OnColor192() and fmt.Fprint().

func FprintOnColor193 added in v1.8.0

func FprintOnColor193(w io.Writer, str string)

FprintOnColor193 wraps OnColor193() and fmt.Fprint().

func FprintOnColor194 added in v1.8.0

func FprintOnColor194(w io.Writer, str string)

FprintOnColor194 wraps OnColor194() and fmt.Fprint().

func FprintOnColor195 added in v1.8.0

func FprintOnColor195(w io.Writer, str string)

FprintOnColor195 wraps OnColor195() and fmt.Fprint().

func FprintOnColor196 added in v1.8.0

func FprintOnColor196(w io.Writer, str string)

FprintOnColor196 wraps OnColor196() and fmt.Fprint().

func FprintOnColor197 added in v1.8.0

func FprintOnColor197(w io.Writer, str string)

FprintOnColor197 wraps OnColor197() and fmt.Fprint().

func FprintOnColor198 added in v1.8.0

func FprintOnColor198(w io.Writer, str string)

FprintOnColor198 wraps OnColor198() and fmt.Fprint().

func FprintOnColor199 added in v1.8.0

func FprintOnColor199(w io.Writer, str string)

FprintOnColor199 wraps OnColor199() and fmt.Fprint().

func FprintOnColor200 added in v1.8.0

func FprintOnColor200(w io.Writer, str string)

FprintOnColor200 wraps OnColor200() and fmt.Fprint().

func FprintOnColor201 added in v1.8.0

func FprintOnColor201(w io.Writer, str string)

FprintOnColor201 wraps OnColor201() and fmt.Fprint().

func FprintOnColor202 added in v1.8.0

func FprintOnColor202(w io.Writer, str string)

FprintOnColor202 wraps OnColor202() and fmt.Fprint().

func FprintOnColor203 added in v1.8.0

func FprintOnColor203(w io.Writer, str string)

FprintOnColor203 wraps OnColor203() and fmt.Fprint().

func FprintOnColor204 added in v1.8.0

func FprintOnColor204(w io.Writer, str string)

FprintOnColor204 wraps OnColor204() and fmt.Fprint().

func FprintOnColor205 added in v1.8.0

func FprintOnColor205(w io.Writer, str string)

FprintOnColor205 wraps OnColor205() and fmt.Fprint().

func FprintOnColor206 added in v1.8.0

func FprintOnColor206(w io.Writer, str string)

FprintOnColor206 wraps OnColor206() and fmt.Fprint().

func FprintOnColor207 added in v1.8.0

func FprintOnColor207(w io.Writer, str string)

FprintOnColor207 wraps OnColor207() and fmt.Fprint().

func FprintOnColor208 added in v1.8.0

func FprintOnColor208(w io.Writer, str string)

FprintOnColor208 wraps OnColor208() and fmt.Fprint().

func FprintOnColor209 added in v1.8.0

func FprintOnColor209(w io.Writer, str string)

FprintOnColor209 wraps OnColor209() and fmt.Fprint().

func FprintOnColor210 added in v1.8.0

func FprintOnColor210(w io.Writer, str string)

FprintOnColor210 wraps OnColor210() and fmt.Fprint().

func FprintOnColor211 added in v1.8.0

func FprintOnColor211(w io.Writer, str string)

FprintOnColor211 wraps OnColor211() and fmt.Fprint().

func FprintOnColor212 added in v1.8.0

func FprintOnColor212(w io.Writer, str string)

FprintOnColor212 wraps OnColor212() and fmt.Fprint().

func FprintOnColor213 added in v1.8.0

func FprintOnColor213(w io.Writer, str string)

FprintOnColor213 wraps OnColor213() and fmt.Fprint().

func FprintOnColor214 added in v1.8.0

func FprintOnColor214(w io.Writer, str string)

FprintOnColor214 wraps OnColor214() and fmt.Fprint().

func FprintOnColor215 added in v1.8.0

func FprintOnColor215(w io.Writer, str string)

FprintOnColor215 wraps OnColor215() and fmt.Fprint().

func FprintOnColor216 added in v1.8.0

func FprintOnColor216(w io.Writer, str string)

FprintOnColor216 wraps OnColor216() and fmt.Fprint().

func FprintOnColor217 added in v1.8.0

func FprintOnColor217(w io.Writer, str string)

FprintOnColor217 wraps OnColor217() and fmt.Fprint().

func FprintOnColor218 added in v1.8.0

func FprintOnColor218(w io.Writer, str string)

FprintOnColor218 wraps OnColor218() and fmt.Fprint().

func FprintOnColor219 added in v1.8.0

func FprintOnColor219(w io.Writer, str string)

FprintOnColor219 wraps OnColor219() and fmt.Fprint().

func FprintOnColor220 added in v1.8.0

func FprintOnColor220(w io.Writer, str string)

FprintOnColor220 wraps OnColor220() and fmt.Fprint().

func FprintOnColor221 added in v1.8.0

func FprintOnColor221(w io.Writer, str string)

FprintOnColor221 wraps OnColor221() and fmt.Fprint().

func FprintOnColor222 added in v1.8.0

func FprintOnColor222(w io.Writer, str string)

FprintOnColor222 wraps OnColor222() and fmt.Fprint().

func FprintOnColor223 added in v1.8.0

func FprintOnColor223(w io.Writer, str string)

FprintOnColor223 wraps OnColor223() and fmt.Fprint().

func FprintOnColor224 added in v1.8.0

func FprintOnColor224(w io.Writer, str string)

FprintOnColor224 wraps OnColor224() and fmt.Fprint().

func FprintOnColor225 added in v1.8.0

func FprintOnColor225(w io.Writer, str string)

FprintOnColor225 wraps OnColor225() and fmt.Fprint().

func FprintOnColor226 added in v1.8.0

func FprintOnColor226(w io.Writer, str string)

FprintOnColor226 wraps OnColor226() and fmt.Fprint().

func FprintOnColor227 added in v1.8.0

func FprintOnColor227(w io.Writer, str string)

FprintOnColor227 wraps OnColor227() and fmt.Fprint().

func FprintOnColor228 added in v1.8.0

func FprintOnColor228(w io.Writer, str string)

FprintOnColor228 wraps OnColor228() and fmt.Fprint().

func FprintOnColor229 added in v1.8.0

func FprintOnColor229(w io.Writer, str string)

FprintOnColor229 wraps OnColor229() and fmt.Fprint().

func FprintOnColor230 added in v1.8.0

func FprintOnColor230(w io.Writer, str string)

FprintOnColor230 wraps OnColor230() and fmt.Fprint().

func FprintOnColor231 added in v1.8.0

func FprintOnColor231(w io.Writer, str string)

FprintOnColor231 wraps OnColor231() and fmt.Fprint().

func FprintOnColor232 added in v1.8.0

func FprintOnColor232(w io.Writer, str string)

FprintOnColor232 wraps OnColor232() and fmt.Fprint().

func FprintOnColor233 added in v1.8.0

func FprintOnColor233(w io.Writer, str string)

FprintOnColor233 wraps OnColor233() and fmt.Fprint().

func FprintOnColor234 added in v1.8.0

func FprintOnColor234(w io.Writer, str string)

FprintOnColor234 wraps OnColor234() and fmt.Fprint().

func FprintOnColor235 added in v1.8.0

func FprintOnColor235(w io.Writer, str string)

FprintOnColor235 wraps OnColor235() and fmt.Fprint().

func FprintOnColor236 added in v1.8.0

func FprintOnColor236(w io.Writer, str string)

FprintOnColor236 wraps OnColor236() and fmt.Fprint().

func FprintOnColor237 added in v1.8.0

func FprintOnColor237(w io.Writer, str string)

FprintOnColor237 wraps OnColor237() and fmt.Fprint().

func FprintOnColor238 added in v1.8.0

func FprintOnColor238(w io.Writer, str string)

FprintOnColor238 wraps OnColor238() and fmt.Fprint().

func FprintOnColor239 added in v1.8.0

func FprintOnColor239(w io.Writer, str string)

FprintOnColor239 wraps OnColor239() and fmt.Fprint().

func FprintOnColor240 added in v1.8.0

func FprintOnColor240(w io.Writer, str string)

FprintOnColor240 wraps OnColor240() and fmt.Fprint().

func FprintOnColor241 added in v1.8.0

func FprintOnColor241(w io.Writer, str string)

FprintOnColor241 wraps OnColor241() and fmt.Fprint().

func FprintOnColor242 added in v1.8.0

func FprintOnColor242(w io.Writer, str string)

FprintOnColor242 wraps OnColor242() and fmt.Fprint().

func FprintOnColor243 added in v1.8.0

func FprintOnColor243(w io.Writer, str string)

FprintOnColor243 wraps OnColor243() and fmt.Fprint().

func FprintOnColor244 added in v1.8.0

func FprintOnColor244(w io.Writer, str string)

FprintOnColor244 wraps OnColor244() and fmt.Fprint().

func FprintOnColor245 added in v1.8.0

func FprintOnColor245(w io.Writer, str string)

FprintOnColor245 wraps OnColor245() and fmt.Fprint().

func FprintOnColor246 added in v1.8.0

func FprintOnColor246(w io.Writer, str string)

FprintOnColor246 wraps OnColor246() and fmt.Fprint().

func FprintOnColor247 added in v1.8.0

func FprintOnColor247(w io.Writer, str string)

FprintOnColor247 wraps OnColor247() and fmt.Fprint().

func FprintOnColor248 added in v1.8.0

func FprintOnColor248(w io.Writer, str string)

FprintOnColor248 wraps OnColor248() and fmt.Fprint().

func FprintOnColor249 added in v1.8.0

func FprintOnColor249(w io.Writer, str string)

FprintOnColor249 wraps OnColor249() and fmt.Fprint().

func FprintOnColor250 added in v1.8.0

func FprintOnColor250(w io.Writer, str string)

FprintOnColor250 wraps OnColor250() and fmt.Fprint().

func FprintOnColor251 added in v1.8.0

func FprintOnColor251(w io.Writer, str string)

FprintOnColor251 wraps OnColor251() and fmt.Fprint().

func FprintOnColor252 added in v1.8.0

func FprintOnColor252(w io.Writer, str string)

FprintOnColor252 wraps OnColor252() and fmt.Fprint().

func FprintOnColor253 added in v1.8.0

func FprintOnColor253(w io.Writer, str string)

FprintOnColor253 wraps OnColor253() and fmt.Fprint().

func FprintOnColor254 added in v1.8.0

func FprintOnColor254(w io.Writer, str string)

FprintOnColor254 wraps OnColor254() and fmt.Fprint().

func FprintOnColor255 added in v1.8.0

func FprintOnColor255(w io.Writer, str string)

FprintOnColor255 wraps OnColor255() and fmt.Fprint().

func FprintOnCyan added in v1.8.0

func FprintOnCyan(w io.Writer, str string)

FprintOnCyan wraps OnCyan() and fmt.Fprint().

func FprintOnDefault added in v1.8.0

func FprintOnDefault(w io.Writer, str string)

FprintOnDefault wraps OnDefault() and fmt.Fprint().

func FprintOnGreen added in v1.8.0

func FprintOnGreen(w io.Writer, str string)

FprintOnGreen wraps OnGreen() and fmt.Fprint().

func FprintOnHex added in v1.8.0

func FprintOnHex(w io.Writer, hex string, str string)

FprintOnHex wraps OnHex() and fmt.Fprint().

func FprintOnLightBlack added in v1.8.0

func FprintOnLightBlack(w io.Writer, str string)

FprintOnLightBlack wraps OnLightBlack() and fmt.Fprint().

func FprintOnLightBlue added in v1.8.0

func FprintOnLightBlue(w io.Writer, str string)

FprintOnLightBlue wraps OnLightBlue() and fmt.Fprint().

func FprintOnLightCyan added in v1.8.0

func FprintOnLightCyan(w io.Writer, str string)

FprintOnLightCyan wraps OnLightCyan() and fmt.Fprint().

func FprintOnLightGreen added in v1.8.0

func FprintOnLightGreen(w io.Writer, str string)

FprintOnLightGreen wraps OnLightGreen() and fmt.Fprint().

func FprintOnLightMagenta added in v1.8.0

func FprintOnLightMagenta(w io.Writer, str string)

FprintOnLightMagenta wraps OnLightMagenta() and fmt.Fprint().

func FprintOnLightRed added in v1.8.0

func FprintOnLightRed(w io.Writer, str string)

FprintOnLightRed wraps OnLightRed() and fmt.Fprint().

func FprintOnLightWhite added in v1.8.0

func FprintOnLightWhite(w io.Writer, str string)

FprintOnLightWhite wraps OnLightWhite() and fmt.Fprint().

func FprintOnLightYellow added in v1.8.0

func FprintOnLightYellow(w io.Writer, str string)

FprintOnLightYellow wraps OnLightYellow() and fmt.Fprint().

func FprintOnMagenta added in v1.8.0

func FprintOnMagenta(w io.Writer, str string)

FprintOnMagenta wraps OnMagenta() and fmt.Fprint().

func FprintOnRainbow added in v1.8.0

func FprintOnRainbow(w io.Writer, str string)

FprintOnRainbow wraps OnRainbow() and fmt.Fprint().

func FprintOnRed added in v1.8.0

func FprintOnRed(w io.Writer, str string)

FprintOnRed wraps OnRed() and fmt.Fprint().

func FprintOnWhite added in v1.8.0

func FprintOnWhite(w io.Writer, str string)

FprintOnWhite wraps OnWhite() and fmt.Fprint().

func FprintOnYellow added in v1.8.0

func FprintOnYellow(w io.Writer, str string)

FprintOnYellow wraps OnYellow() and fmt.Fprint().

func FprintPlain added in v1.8.0

func FprintPlain(w io.Writer, str string)

FprintPlain wraps Plain() and fmt.Fprint().

func FprintRainbow added in v1.8.0

func FprintRainbow(w io.Writer, str string)

FprintRainbow wraps Rainbow() and fmt.Fprint().

func FprintRed added in v1.8.0

func FprintRed(w io.Writer, str string)

FprintRed wraps Red() and fmt.Fprint().

func FprintReset added in v1.8.0

func FprintReset(w io.Writer, str string)

FprintReset wraps Reset() and fmt.Fprint().

func FprintStrikethrough added in v1.8.0

func FprintStrikethrough(w io.Writer, str string)

FprintStrikethrough wraps Strikethrough() and fmt.Fprint().

func FprintSwap added in v1.8.0

func FprintSwap(w io.Writer, str string)

FprintSwap wraps Swap() and fmt.Fprint().

func FprintUnderline added in v1.8.0

func FprintUnderline(w io.Writer, str string)

FprintUnderline wraps Underline() and fmt.Fprint().

func FprintWhite added in v1.8.0

func FprintWhite(w io.Writer, str string)

FprintWhite wraps White() and fmt.Fprint().

func FprintWrap added in v1.8.0

func FprintWrap(w io.Writer, width int, str string)

FprintWrap wraps Wrap() and fmt.Fprint().

func FprintYellow added in v1.8.0

func FprintYellow(w io.Writer, str string)

FprintYellow wraps Yellow() and fmt.Fprint().

func Fprintf added in v1.7.0

func Fprintf(
	w io.Writer,
	format string,
	args ...interface{},
) (int, error)

Fprintf wraps fmt.Fprintf().

func FprintfBlack added in v1.8.0

func FprintfBlack(w io.Writer, format string, args ...interface{})

FprintfBlack wraps Black and fmt.Fprintf().

func FprintfBlink(w io.Writer, format string, args ...interface{})

FprintfBlink wraps Blink and fmt.Fprintf().

func FprintfBlinkRapid added in v1.8.0

func FprintfBlinkRapid(w io.Writer, format string, args ...interface{})

FprintfBlinkRapid wraps BlinkRapid and fmt.Fprintf().

func FprintfBlinkSlow added in v1.8.0

func FprintfBlinkSlow(w io.Writer, format string, args ...interface{})

FprintfBlinkSlow wraps BlinkSlow and fmt.Fprintf().

func FprintfBlue added in v1.8.0

func FprintfBlue(w io.Writer, format string, args ...interface{})

FprintfBlue wraps Blue and fmt.Fprintf().

func FprintfBold added in v1.8.0

func FprintfBold(w io.Writer, format string, args ...interface{})

FprintfBold wraps Bold and fmt.Fprintf().

func FprintfColor000 added in v1.8.0

func FprintfColor000(w io.Writer, format string, args ...interface{})

FprintfColor000 wraps Color000 and fmt.Fprintf().

func FprintfColor001 added in v1.8.0

func FprintfColor001(w io.Writer, format string, args ...interface{})

FprintfColor001 wraps Color001 and fmt.Fprintf().

func FprintfColor002 added in v1.8.0

func FprintfColor002(w io.Writer, format string, args ...interface{})

FprintfColor002 wraps Color002 and fmt.Fprintf().

func FprintfColor003 added in v1.8.0

func FprintfColor003(w io.Writer, format string, args ...interface{})

FprintfColor003 wraps Color003 and fmt.Fprintf().

func FprintfColor004 added in v1.8.0

func FprintfColor004(w io.Writer, format string, args ...interface{})

FprintfColor004 wraps Color004 and fmt.Fprintf().

func FprintfColor005 added in v1.8.0

func FprintfColor005(w io.Writer, format string, args ...interface{})

FprintfColor005 wraps Color005 and fmt.Fprintf().

func FprintfColor006 added in v1.8.0

func FprintfColor006(w io.Writer, format string, args ...interface{})

FprintfColor006 wraps Color006 and fmt.Fprintf().

func FprintfColor007 added in v1.8.0

func FprintfColor007(w io.Writer, format string, args ...interface{})

FprintfColor007 wraps Color007 and fmt.Fprintf().

func FprintfColor008 added in v1.8.0

func FprintfColor008(w io.Writer, format string, args ...interface{})

FprintfColor008 wraps Color008 and fmt.Fprintf().

func FprintfColor009 added in v1.8.0

func FprintfColor009(w io.Writer, format string, args ...interface{})

FprintfColor009 wraps Color009 and fmt.Fprintf().

func FprintfColor010 added in v1.8.0

func FprintfColor010(w io.Writer, format string, args ...interface{})

FprintfColor010 wraps Color010 and fmt.Fprintf().

func FprintfColor011 added in v1.8.0

func FprintfColor011(w io.Writer, format string, args ...interface{})

FprintfColor011 wraps Color011 and fmt.Fprintf().

func FprintfColor012 added in v1.8.0

func FprintfColor012(w io.Writer, format string, args ...interface{})

FprintfColor012 wraps Color012 and fmt.Fprintf().

func FprintfColor013 added in v1.8.0

func FprintfColor013(w io.Writer, format string, args ...interface{})

FprintfColor013 wraps Color013 and fmt.Fprintf().

func FprintfColor014 added in v1.8.0

func FprintfColor014(w io.Writer, format string, args ...interface{})

FprintfColor014 wraps Color014 and fmt.Fprintf().

func FprintfColor015 added in v1.8.0

func FprintfColor015(w io.Writer, format string, args ...interface{})

FprintfColor015 wraps Color015 and fmt.Fprintf().

func FprintfColor016 added in v1.8.0

func FprintfColor016(w io.Writer, format string, args ...interface{})

FprintfColor016 wraps Color016 and fmt.Fprintf().

func FprintfColor017 added in v1.8.0

func FprintfColor017(w io.Writer, format string, args ...interface{})

FprintfColor017 wraps Color017 and fmt.Fprintf().

func FprintfColor018 added in v1.8.0

func FprintfColor018(w io.Writer, format string, args ...interface{})

FprintfColor018 wraps Color018 and fmt.Fprintf().

func FprintfColor019 added in v1.8.0

func FprintfColor019(w io.Writer, format string, args ...interface{})

FprintfColor019 wraps Color019 and fmt.Fprintf().

func FprintfColor020 added in v1.8.0

func FprintfColor020(w io.Writer, format string, args ...interface{})

FprintfColor020 wraps Color020 and fmt.Fprintf().

func FprintfColor021 added in v1.8.0

func FprintfColor021(w io.Writer, format string, args ...interface{})

FprintfColor021 wraps Color021 and fmt.Fprintf().

func FprintfColor022 added in v1.8.0

func FprintfColor022(w io.Writer, format string, args ...interface{})

FprintfColor022 wraps Color022 and fmt.Fprintf().

func FprintfColor023 added in v1.8.0

func FprintfColor023(w io.Writer, format string, args ...interface{})

FprintfColor023 wraps Color023 and fmt.Fprintf().

func FprintfColor024 added in v1.8.0

func FprintfColor024(w io.Writer, format string, args ...interface{})

FprintfColor024 wraps Color024 and fmt.Fprintf().

func FprintfColor025 added in v1.8.0

func FprintfColor025(w io.Writer, format string, args ...interface{})

FprintfColor025 wraps Color025 and fmt.Fprintf().

func FprintfColor026 added in v1.8.0

func FprintfColor026(w io.Writer, format string, args ...interface{})

FprintfColor026 wraps Color026 and fmt.Fprintf().

func FprintfColor027 added in v1.8.0

func FprintfColor027(w io.Writer, format string, args ...interface{})

FprintfColor027 wraps Color027 and fmt.Fprintf().

func FprintfColor028 added in v1.8.0

func FprintfColor028(w io.Writer, format string, args ...interface{})

FprintfColor028 wraps Color028 and fmt.Fprintf().

func FprintfColor029 added in v1.8.0

func FprintfColor029(w io.Writer, format string, args ...interface{})

FprintfColor029 wraps Color029 and fmt.Fprintf().

func FprintfColor030 added in v1.8.0

func FprintfColor030(w io.Writer, format string, args ...interface{})

FprintfColor030 wraps Color030 and fmt.Fprintf().

func FprintfColor031 added in v1.8.0

func FprintfColor031(w io.Writer, format string, args ...interface{})

FprintfColor031 wraps Color031 and fmt.Fprintf().

func FprintfColor032 added in v1.8.0

func FprintfColor032(w io.Writer, format string, args ...interface{})

FprintfColor032 wraps Color032 and fmt.Fprintf().

func FprintfColor033 added in v1.8.0

func FprintfColor033(w io.Writer, format string, args ...interface{})

FprintfColor033 wraps Color033 and fmt.Fprintf().

func FprintfColor034 added in v1.8.0

func FprintfColor034(w io.Writer, format string, args ...interface{})

FprintfColor034 wraps Color034 and fmt.Fprintf().

func FprintfColor035 added in v1.8.0

func FprintfColor035(w io.Writer, format string, args ...interface{})

FprintfColor035 wraps Color035 and fmt.Fprintf().

func FprintfColor036 added in v1.8.0

func FprintfColor036(w io.Writer, format string, args ...interface{})

FprintfColor036 wraps Color036 and fmt.Fprintf().

func FprintfColor037 added in v1.8.0

func FprintfColor037(w io.Writer, format string, args ...interface{})

FprintfColor037 wraps Color037 and fmt.Fprintf().

func FprintfColor038 added in v1.8.0

func FprintfColor038(w io.Writer, format string, args ...interface{})

FprintfColor038 wraps Color038 and fmt.Fprintf().

func FprintfColor039 added in v1.8.0

func FprintfColor039(w io.Writer, format string, args ...interface{})

FprintfColor039 wraps Color039 and fmt.Fprintf().

func FprintfColor040 added in v1.8.0

func FprintfColor040(w io.Writer, format string, args ...interface{})

FprintfColor040 wraps Color040 and fmt.Fprintf().

func FprintfColor041 added in v1.8.0

func FprintfColor041(w io.Writer, format string, args ...interface{})

FprintfColor041 wraps Color041 and fmt.Fprintf().

func FprintfColor042 added in v1.8.0

func FprintfColor042(w io.Writer, format string, args ...interface{})

FprintfColor042 wraps Color042 and fmt.Fprintf().

func FprintfColor043 added in v1.8.0

func FprintfColor043(w io.Writer, format string, args ...interface{})

FprintfColor043 wraps Color043 and fmt.Fprintf().

func FprintfColor044 added in v1.8.0

func FprintfColor044(w io.Writer, format string, args ...interface{})

FprintfColor044 wraps Color044 and fmt.Fprintf().

func FprintfColor045 added in v1.8.0

func FprintfColor045(w io.Writer, format string, args ...interface{})

FprintfColor045 wraps Color045 and fmt.Fprintf().

func FprintfColor046 added in v1.8.0

func FprintfColor046(w io.Writer, format string, args ...interface{})

FprintfColor046 wraps Color046 and fmt.Fprintf().

func FprintfColor047 added in v1.8.0

func FprintfColor047(w io.Writer, format string, args ...interface{})

FprintfColor047 wraps Color047 and fmt.Fprintf().

func FprintfColor048 added in v1.8.0

func FprintfColor048(w io.Writer, format string, args ...interface{})

FprintfColor048 wraps Color048 and fmt.Fprintf().

func FprintfColor049 added in v1.8.0

func FprintfColor049(w io.Writer, format string, args ...interface{})

FprintfColor049 wraps Color049 and fmt.Fprintf().

func FprintfColor050 added in v1.8.0

func FprintfColor050(w io.Writer, format string, args ...interface{})

FprintfColor050 wraps Color050 and fmt.Fprintf().

func FprintfColor051 added in v1.8.0

func FprintfColor051(w io.Writer, format string, args ...interface{})

FprintfColor051 wraps Color051 and fmt.Fprintf().

func FprintfColor052 added in v1.8.0

func FprintfColor052(w io.Writer, format string, args ...interface{})

FprintfColor052 wraps Color052 and fmt.Fprintf().

func FprintfColor053 added in v1.8.0

func FprintfColor053(w io.Writer, format string, args ...interface{})

FprintfColor053 wraps Color053 and fmt.Fprintf().

func FprintfColor054 added in v1.8.0

func FprintfColor054(w io.Writer, format string, args ...interface{})

FprintfColor054 wraps Color054 and fmt.Fprintf().

func FprintfColor055 added in v1.8.0

func FprintfColor055(w io.Writer, format string, args ...interface{})

FprintfColor055 wraps Color055 and fmt.Fprintf().

func FprintfColor056 added in v1.8.0

func FprintfColor056(w io.Writer, format string, args ...interface{})

FprintfColor056 wraps Color056 and fmt.Fprintf().

func FprintfColor057 added in v1.8.0

func FprintfColor057(w io.Writer, format string, args ...interface{})

FprintfColor057 wraps Color057 and fmt.Fprintf().

func FprintfColor058 added in v1.8.0

func FprintfColor058(w io.Writer, format string, args ...interface{})

FprintfColor058 wraps Color058 and fmt.Fprintf().

func FprintfColor059 added in v1.8.0

func FprintfColor059(w io.Writer, format string, args ...interface{})

FprintfColor059 wraps Color059 and fmt.Fprintf().

func FprintfColor060 added in v1.8.0

func FprintfColor060(w io.Writer, format string, args ...interface{})

FprintfColor060 wraps Color060 and fmt.Fprintf().

func FprintfColor061 added in v1.8.0

func FprintfColor061(w io.Writer, format string, args ...interface{})

FprintfColor061 wraps Color061 and fmt.Fprintf().

func FprintfColor062 added in v1.8.0

func FprintfColor062(w io.Writer, format string, args ...interface{})

FprintfColor062 wraps Color062 and fmt.Fprintf().

func FprintfColor063 added in v1.8.0

func FprintfColor063(w io.Writer, format string, args ...interface{})

FprintfColor063 wraps Color063 and fmt.Fprintf().

func FprintfColor064 added in v1.8.0

func FprintfColor064(w io.Writer, format string, args ...interface{})

FprintfColor064 wraps Color064 and fmt.Fprintf().

func FprintfColor065 added in v1.8.0

func FprintfColor065(w io.Writer, format string, args ...interface{})

FprintfColor065 wraps Color065 and fmt.Fprintf().

func FprintfColor066 added in v1.8.0

func FprintfColor066(w io.Writer, format string, args ...interface{})

FprintfColor066 wraps Color066 and fmt.Fprintf().

func FprintfColor067 added in v1.8.0

func FprintfColor067(w io.Writer, format string, args ...interface{})

FprintfColor067 wraps Color067 and fmt.Fprintf().

func FprintfColor068 added in v1.8.0

func FprintfColor068(w io.Writer, format string, args ...interface{})

FprintfColor068 wraps Color068 and fmt.Fprintf().

func FprintfColor069 added in v1.8.0

func FprintfColor069(w io.Writer, format string, args ...interface{})

FprintfColor069 wraps Color069 and fmt.Fprintf().

func FprintfColor070 added in v1.8.0

func FprintfColor070(w io.Writer, format string, args ...interface{})

FprintfColor070 wraps Color070 and fmt.Fprintf().

func FprintfColor071 added in v1.8.0

func FprintfColor071(w io.Writer, format string, args ...interface{})

FprintfColor071 wraps Color071 and fmt.Fprintf().

func FprintfColor072 added in v1.8.0

func FprintfColor072(w io.Writer, format string, args ...interface{})

FprintfColor072 wraps Color072 and fmt.Fprintf().

func FprintfColor073 added in v1.8.0

func FprintfColor073(w io.Writer, format string, args ...interface{})

FprintfColor073 wraps Color073 and fmt.Fprintf().

func FprintfColor074 added in v1.8.0

func FprintfColor074(w io.Writer, format string, args ...interface{})

FprintfColor074 wraps Color074 and fmt.Fprintf().

func FprintfColor075 added in v1.8.0

func FprintfColor075(w io.Writer, format string, args ...interface{})

FprintfColor075 wraps Color075 and fmt.Fprintf().

func FprintfColor076 added in v1.8.0

func FprintfColor076(w io.Writer, format string, args ...interface{})

FprintfColor076 wraps Color076 and fmt.Fprintf().

func FprintfColor077 added in v1.8.0

func FprintfColor077(w io.Writer, format string, args ...interface{})

FprintfColor077 wraps Color077 and fmt.Fprintf().

func FprintfColor078 added in v1.8.0

func FprintfColor078(w io.Writer, format string, args ...interface{})

FprintfColor078 wraps Color078 and fmt.Fprintf().

func FprintfColor079 added in v1.8.0

func FprintfColor079(w io.Writer, format string, args ...interface{})

FprintfColor079 wraps Color079 and fmt.Fprintf().

func FprintfColor080 added in v1.8.0

func FprintfColor080(w io.Writer, format string, args ...interface{})

FprintfColor080 wraps Color080 and fmt.Fprintf().

func FprintfColor081 added in v1.8.0

func FprintfColor081(w io.Writer, format string, args ...interface{})

FprintfColor081 wraps Color081 and fmt.Fprintf().

func FprintfColor082 added in v1.8.0

func FprintfColor082(w io.Writer, format string, args ...interface{})

FprintfColor082 wraps Color082 and fmt.Fprintf().

func FprintfColor083 added in v1.8.0

func FprintfColor083(w io.Writer, format string, args ...interface{})

FprintfColor083 wraps Color083 and fmt.Fprintf().

func FprintfColor084 added in v1.8.0

func FprintfColor084(w io.Writer, format string, args ...interface{})

FprintfColor084 wraps Color084 and fmt.Fprintf().

func FprintfColor085 added in v1.8.0

func FprintfColor085(w io.Writer, format string, args ...interface{})

FprintfColor085 wraps Color085 and fmt.Fprintf().

func FprintfColor086 added in v1.8.0

func FprintfColor086(w io.Writer, format string, args ...interface{})

FprintfColor086 wraps Color086 and fmt.Fprintf().

func FprintfColor087 added in v1.8.0

func FprintfColor087(w io.Writer, format string, args ...interface{})

FprintfColor087 wraps Color087 and fmt.Fprintf().

func FprintfColor088 added in v1.8.0

func FprintfColor088(w io.Writer, format string, args ...interface{})

FprintfColor088 wraps Color088 and fmt.Fprintf().

func FprintfColor089 added in v1.8.0

func FprintfColor089(w io.Writer, format string, args ...interface{})

FprintfColor089 wraps Color089 and fmt.Fprintf().

func FprintfColor090 added in v1.8.0

func FprintfColor090(w io.Writer, format string, args ...interface{})

FprintfColor090 wraps Color090 and fmt.Fprintf().

func FprintfColor091 added in v1.8.0

func FprintfColor091(w io.Writer, format string, args ...interface{})

FprintfColor091 wraps Color091 and fmt.Fprintf().

func FprintfColor092 added in v1.8.0

func FprintfColor092(w io.Writer, format string, args ...interface{})

FprintfColor092 wraps Color092 and fmt.Fprintf().

func FprintfColor093 added in v1.8.0

func FprintfColor093(w io.Writer, format string, args ...interface{})

FprintfColor093 wraps Color093 and fmt.Fprintf().

func FprintfColor094 added in v1.8.0

func FprintfColor094(w io.Writer, format string, args ...interface{})

FprintfColor094 wraps Color094 and fmt.Fprintf().

func FprintfColor095 added in v1.8.0

func FprintfColor095(w io.Writer, format string, args ...interface{})

FprintfColor095 wraps Color095 and fmt.Fprintf().

func FprintfColor096 added in v1.8.0

func FprintfColor096(w io.Writer, format string, args ...interface{})

FprintfColor096 wraps Color096 and fmt.Fprintf().

func FprintfColor097 added in v1.8.0

func FprintfColor097(w io.Writer, format string, args ...interface{})

FprintfColor097 wraps Color097 and fmt.Fprintf().

func FprintfColor098 added in v1.8.0

func FprintfColor098(w io.Writer, format string, args ...interface{})

FprintfColor098 wraps Color098 and fmt.Fprintf().

func FprintfColor099 added in v1.8.0

func FprintfColor099(w io.Writer, format string, args ...interface{})

FprintfColor099 wraps Color099 and fmt.Fprintf().

func FprintfColor100 added in v1.8.0

func FprintfColor100(w io.Writer, format string, args ...interface{})

FprintfColor100 wraps Color100 and fmt.Fprintf().

func FprintfColor101 added in v1.8.0

func FprintfColor101(w io.Writer, format string, args ...interface{})

FprintfColor101 wraps Color101 and fmt.Fprintf().

func FprintfColor102 added in v1.8.0

func FprintfColor102(w io.Writer, format string, args ...interface{})

FprintfColor102 wraps Color102 and fmt.Fprintf().

func FprintfColor103 added in v1.8.0

func FprintfColor103(w io.Writer, format string, args ...interface{})

FprintfColor103 wraps Color103 and fmt.Fprintf().

func FprintfColor104 added in v1.8.0

func FprintfColor104(w io.Writer, format string, args ...interface{})

FprintfColor104 wraps Color104 and fmt.Fprintf().

func FprintfColor105 added in v1.8.0

func FprintfColor105(w io.Writer, format string, args ...interface{})

FprintfColor105 wraps Color105 and fmt.Fprintf().

func FprintfColor106 added in v1.8.0

func FprintfColor106(w io.Writer, format string, args ...interface{})

FprintfColor106 wraps Color106 and fmt.Fprintf().

func FprintfColor107 added in v1.8.0

func FprintfColor107(w io.Writer, format string, args ...interface{})

FprintfColor107 wraps Color107 and fmt.Fprintf().

func FprintfColor108 added in v1.8.0

func FprintfColor108(w io.Writer, format string, args ...interface{})

FprintfColor108 wraps Color108 and fmt.Fprintf().

func FprintfColor109 added in v1.8.0

func FprintfColor109(w io.Writer, format string, args ...interface{})

FprintfColor109 wraps Color109 and fmt.Fprintf().

func FprintfColor110 added in v1.8.0

func FprintfColor110(w io.Writer, format string, args ...interface{})

FprintfColor110 wraps Color110 and fmt.Fprintf().

func FprintfColor111 added in v1.8.0

func FprintfColor111(w io.Writer, format string, args ...interface{})

FprintfColor111 wraps Color111 and fmt.Fprintf().

func FprintfColor112 added in v1.8.0

func FprintfColor112(w io.Writer, format string, args ...interface{})

FprintfColor112 wraps Color112 and fmt.Fprintf().

func FprintfColor113 added in v1.8.0

func FprintfColor113(w io.Writer, format string, args ...interface{})

FprintfColor113 wraps Color113 and fmt.Fprintf().

func FprintfColor114 added in v1.8.0

func FprintfColor114(w io.Writer, format string, args ...interface{})

FprintfColor114 wraps Color114 and fmt.Fprintf().

func FprintfColor115 added in v1.8.0

func FprintfColor115(w io.Writer, format string, args ...interface{})

FprintfColor115 wraps Color115 and fmt.Fprintf().

func FprintfColor116 added in v1.8.0

func FprintfColor116(w io.Writer, format string, args ...interface{})

FprintfColor116 wraps Color116 and fmt.Fprintf().

func FprintfColor117 added in v1.8.0

func FprintfColor117(w io.Writer, format string, args ...interface{})

FprintfColor117 wraps Color117 and fmt.Fprintf().

func FprintfColor118 added in v1.8.0

func FprintfColor118(w io.Writer, format string, args ...interface{})

FprintfColor118 wraps Color118 and fmt.Fprintf().

func FprintfColor119 added in v1.8.0

func FprintfColor119(w io.Writer, format string, args ...interface{})

FprintfColor119 wraps Color119 and fmt.Fprintf().

func FprintfColor120 added in v1.8.0

func FprintfColor120(w io.Writer, format string, args ...interface{})

FprintfColor120 wraps Color120 and fmt.Fprintf().

func FprintfColor121 added in v1.8.0

func FprintfColor121(w io.Writer, format string, args ...interface{})

FprintfColor121 wraps Color121 and fmt.Fprintf().

func FprintfColor122 added in v1.8.0

func FprintfColor122(w io.Writer, format string, args ...interface{})

FprintfColor122 wraps Color122 and fmt.Fprintf().

func FprintfColor123 added in v1.8.0

func FprintfColor123(w io.Writer, format string, args ...interface{})

FprintfColor123 wraps Color123 and fmt.Fprintf().

func FprintfColor124 added in v1.8.0

func FprintfColor124(w io.Writer, format string, args ...interface{})

FprintfColor124 wraps Color124 and fmt.Fprintf().

func FprintfColor125 added in v1.8.0

func FprintfColor125(w io.Writer, format string, args ...interface{})

FprintfColor125 wraps Color125 and fmt.Fprintf().

func FprintfColor126 added in v1.8.0

func FprintfColor126(w io.Writer, format string, args ...interface{})

FprintfColor126 wraps Color126 and fmt.Fprintf().

func FprintfColor127 added in v1.8.0

func FprintfColor127(w io.Writer, format string, args ...interface{})

FprintfColor127 wraps Color127 and fmt.Fprintf().

func FprintfColor128 added in v1.8.0

func FprintfColor128(w io.Writer, format string, args ...interface{})

FprintfColor128 wraps Color128 and fmt.Fprintf().

func FprintfColor129 added in v1.8.0

func FprintfColor129(w io.Writer, format string, args ...interface{})

FprintfColor129 wraps Color129 and fmt.Fprintf().

func FprintfColor130 added in v1.8.0

func FprintfColor130(w io.Writer, format string, args ...interface{})

FprintfColor130 wraps Color130 and fmt.Fprintf().

func FprintfColor131 added in v1.8.0

func FprintfColor131(w io.Writer, format string, args ...interface{})

FprintfColor131 wraps Color131 and fmt.Fprintf().

func FprintfColor132 added in v1.8.0

func FprintfColor132(w io.Writer, format string, args ...interface{})

FprintfColor132 wraps Color132 and fmt.Fprintf().

func FprintfColor133 added in v1.8.0

func FprintfColor133(w io.Writer, format string, args ...interface{})

FprintfColor133 wraps Color133 and fmt.Fprintf().

func FprintfColor134 added in v1.8.0

func FprintfColor134(w io.Writer, format string, args ...interface{})

FprintfColor134 wraps Color134 and fmt.Fprintf().

func FprintfColor135 added in v1.8.0

func FprintfColor135(w io.Writer, format string, args ...interface{})

FprintfColor135 wraps Color135 and fmt.Fprintf().

func FprintfColor136 added in v1.8.0

func FprintfColor136(w io.Writer, format string, args ...interface{})

FprintfColor136 wraps Color136 and fmt.Fprintf().

func FprintfColor137 added in v1.8.0

func FprintfColor137(w io.Writer, format string, args ...interface{})

FprintfColor137 wraps Color137 and fmt.Fprintf().

func FprintfColor138 added in v1.8.0

func FprintfColor138(w io.Writer, format string, args ...interface{})

FprintfColor138 wraps Color138 and fmt.Fprintf().

func FprintfColor139 added in v1.8.0

func FprintfColor139(w io.Writer, format string, args ...interface{})

FprintfColor139 wraps Color139 and fmt.Fprintf().

func FprintfColor140 added in v1.8.0

func FprintfColor140(w io.Writer, format string, args ...interface{})

FprintfColor140 wraps Color140 and fmt.Fprintf().

func FprintfColor141 added in v1.8.0

func FprintfColor141(w io.Writer, format string, args ...interface{})

FprintfColor141 wraps Color141 and fmt.Fprintf().

func FprintfColor142 added in v1.8.0

func FprintfColor142(w io.Writer, format string, args ...interface{})

FprintfColor142 wraps Color142 and fmt.Fprintf().

func FprintfColor143 added in v1.8.0

func FprintfColor143(w io.Writer, format string, args ...interface{})

FprintfColor143 wraps Color143 and fmt.Fprintf().

func FprintfColor144 added in v1.8.0

func FprintfColor144(w io.Writer, format string, args ...interface{})

FprintfColor144 wraps Color144 and fmt.Fprintf().

func FprintfColor145 added in v1.8.0

func FprintfColor145(w io.Writer, format string, args ...interface{})

FprintfColor145 wraps Color145 and fmt.Fprintf().

func FprintfColor146 added in v1.8.0

func FprintfColor146(w io.Writer, format string, args ...interface{})

FprintfColor146 wraps Color146 and fmt.Fprintf().

func FprintfColor147 added in v1.8.0

func FprintfColor147(w io.Writer, format string, args ...interface{})

FprintfColor147 wraps Color147 and fmt.Fprintf().

func FprintfColor148 added in v1.8.0

func FprintfColor148(w io.Writer, format string, args ...interface{})

FprintfColor148 wraps Color148 and fmt.Fprintf().

func FprintfColor149 added in v1.8.0

func FprintfColor149(w io.Writer, format string, args ...interface{})

FprintfColor149 wraps Color149 and fmt.Fprintf().

func FprintfColor150 added in v1.8.0

func FprintfColor150(w io.Writer, format string, args ...interface{})

FprintfColor150 wraps Color150 and fmt.Fprintf().

func FprintfColor151 added in v1.8.0

func FprintfColor151(w io.Writer, format string, args ...interface{})

FprintfColor151 wraps Color151 and fmt.Fprintf().

func FprintfColor152 added in v1.8.0

func FprintfColor152(w io.Writer, format string, args ...interface{})

FprintfColor152 wraps Color152 and fmt.Fprintf().

func FprintfColor153 added in v1.8.0

func FprintfColor153(w io.Writer, format string, args ...interface{})

FprintfColor153 wraps Color153 and fmt.Fprintf().

func FprintfColor154 added in v1.8.0

func FprintfColor154(w io.Writer, format string, args ...interface{})

FprintfColor154 wraps Color154 and fmt.Fprintf().

func FprintfColor155 added in v1.8.0

func FprintfColor155(w io.Writer, format string, args ...interface{})

FprintfColor155 wraps Color155 and fmt.Fprintf().

func FprintfColor156 added in v1.8.0

func FprintfColor156(w io.Writer, format string, args ...interface{})

FprintfColor156 wraps Color156 and fmt.Fprintf().

func FprintfColor157 added in v1.8.0

func FprintfColor157(w io.Writer, format string, args ...interface{})

FprintfColor157 wraps Color157 and fmt.Fprintf().

func FprintfColor158 added in v1.8.0

func FprintfColor158(w io.Writer, format string, args ...interface{})

FprintfColor158 wraps Color158 and fmt.Fprintf().

func FprintfColor159 added in v1.8.0

func FprintfColor159(w io.Writer, format string, args ...interface{})

FprintfColor159 wraps Color159 and fmt.Fprintf().

func FprintfColor160 added in v1.8.0

func FprintfColor160(w io.Writer, format string, args ...interface{})

FprintfColor160 wraps Color160 and fmt.Fprintf().

func FprintfColor161 added in v1.8.0

func FprintfColor161(w io.Writer, format string, args ...interface{})

FprintfColor161 wraps Color161 and fmt.Fprintf().

func FprintfColor162 added in v1.8.0

func FprintfColor162(w io.Writer, format string, args ...interface{})

FprintfColor162 wraps Color162 and fmt.Fprintf().

func FprintfColor163 added in v1.8.0

func FprintfColor163(w io.Writer, format string, args ...interface{})

FprintfColor163 wraps Color163 and fmt.Fprintf().

func FprintfColor164 added in v1.8.0

func FprintfColor164(w io.Writer, format string, args ...interface{})

FprintfColor164 wraps Color164 and fmt.Fprintf().

func FprintfColor165 added in v1.8.0

func FprintfColor165(w io.Writer, format string, args ...interface{})

FprintfColor165 wraps Color165 and fmt.Fprintf().

func FprintfColor166 added in v1.8.0

func FprintfColor166(w io.Writer, format string, args ...interface{})

FprintfColor166 wraps Color166 and fmt.Fprintf().

func FprintfColor167 added in v1.8.0

func FprintfColor167(w io.Writer, format string, args ...interface{})

FprintfColor167 wraps Color167 and fmt.Fprintf().

func FprintfColor168 added in v1.8.0

func FprintfColor168(w io.Writer, format string, args ...interface{})

FprintfColor168 wraps Color168 and fmt.Fprintf().

func FprintfColor169 added in v1.8.0

func FprintfColor169(w io.Writer, format string, args ...interface{})

FprintfColor169 wraps Color169 and fmt.Fprintf().

func FprintfColor170 added in v1.8.0

func FprintfColor170(w io.Writer, format string, args ...interface{})

FprintfColor170 wraps Color170 and fmt.Fprintf().

func FprintfColor171 added in v1.8.0

func FprintfColor171(w io.Writer, format string, args ...interface{})

FprintfColor171 wraps Color171 and fmt.Fprintf().

func FprintfColor172 added in v1.8.0

func FprintfColor172(w io.Writer, format string, args ...interface{})

FprintfColor172 wraps Color172 and fmt.Fprintf().

func FprintfColor173 added in v1.8.0

func FprintfColor173(w io.Writer, format string, args ...interface{})

FprintfColor173 wraps Color173 and fmt.Fprintf().

func FprintfColor174 added in v1.8.0

func FprintfColor174(w io.Writer, format string, args ...interface{})

FprintfColor174 wraps Color174 and fmt.Fprintf().

func FprintfColor175 added in v1.8.0

func FprintfColor175(w io.Writer, format string, args ...interface{})

FprintfColor175 wraps Color175 and fmt.Fprintf().

func FprintfColor176 added in v1.8.0

func FprintfColor176(w io.Writer, format string, args ...interface{})

FprintfColor176 wraps Color176 and fmt.Fprintf().

func FprintfColor177 added in v1.8.0

func FprintfColor177(w io.Writer, format string, args ...interface{})

FprintfColor177 wraps Color177 and fmt.Fprintf().

func FprintfColor178 added in v1.8.0

func FprintfColor178(w io.Writer, format string, args ...interface{})

FprintfColor178 wraps Color178 and fmt.Fprintf().

func FprintfColor179 added in v1.8.0

func FprintfColor179(w io.Writer, format string, args ...interface{})

FprintfColor179 wraps Color179 and fmt.Fprintf().

func FprintfColor180 added in v1.8.0

func FprintfColor180(w io.Writer, format string, args ...interface{})

FprintfColor180 wraps Color180 and fmt.Fprintf().

func FprintfColor181 added in v1.8.0

func FprintfColor181(w io.Writer, format string, args ...interface{})

FprintfColor181 wraps Color181 and fmt.Fprintf().

func FprintfColor182 added in v1.8.0

func FprintfColor182(w io.Writer, format string, args ...interface{})

FprintfColor182 wraps Color182 and fmt.Fprintf().

func FprintfColor183 added in v1.8.0

func FprintfColor183(w io.Writer, format string, args ...interface{})

FprintfColor183 wraps Color183 and fmt.Fprintf().

func FprintfColor184 added in v1.8.0

func FprintfColor184(w io.Writer, format string, args ...interface{})

FprintfColor184 wraps Color184 and fmt.Fprintf().

func FprintfColor185 added in v1.8.0

func FprintfColor185(w io.Writer, format string, args ...interface{})

FprintfColor185 wraps Color185 and fmt.Fprintf().

func FprintfColor186 added in v1.8.0

func FprintfColor186(w io.Writer, format string, args ...interface{})

FprintfColor186 wraps Color186 and fmt.Fprintf().

func FprintfColor187 added in v1.8.0

func FprintfColor187(w io.Writer, format string, args ...interface{})

FprintfColor187 wraps Color187 and fmt.Fprintf().

func FprintfColor188 added in v1.8.0

func FprintfColor188(w io.Writer, format string, args ...interface{})

FprintfColor188 wraps Color188 and fmt.Fprintf().

func FprintfColor189 added in v1.8.0

func FprintfColor189(w io.Writer, format string, args ...interface{})

FprintfColor189 wraps Color189 and fmt.Fprintf().

func FprintfColor190 added in v1.8.0

func FprintfColor190(w io.Writer, format string, args ...interface{})

FprintfColor190 wraps Color190 and fmt.Fprintf().

func FprintfColor191 added in v1.8.0

func FprintfColor191(w io.Writer, format string, args ...interface{})

FprintfColor191 wraps Color191 and fmt.Fprintf().

func FprintfColor192 added in v1.8.0

func FprintfColor192(w io.Writer, format string, args ...interface{})

FprintfColor192 wraps Color192 and fmt.Fprintf().

func FprintfColor193 added in v1.8.0

func FprintfColor193(w io.Writer, format string, args ...interface{})

FprintfColor193 wraps Color193 and fmt.Fprintf().

func FprintfColor194 added in v1.8.0

func FprintfColor194(w io.Writer, format string, args ...interface{})

FprintfColor194 wraps Color194 and fmt.Fprintf().

func FprintfColor195 added in v1.8.0

func FprintfColor195(w io.Writer, format string, args ...interface{})

FprintfColor195 wraps Color195 and fmt.Fprintf().

func FprintfColor196 added in v1.8.0

func FprintfColor196(w io.Writer, format string, args ...interface{})

FprintfColor196 wraps Color196 and fmt.Fprintf().

func FprintfColor197 added in v1.8.0

func FprintfColor197(w io.Writer, format string, args ...interface{})

FprintfColor197 wraps Color197 and fmt.Fprintf().

func FprintfColor198 added in v1.8.0

func FprintfColor198(w io.Writer, format string, args ...interface{})

FprintfColor198 wraps Color198 and fmt.Fprintf().

func FprintfColor199 added in v1.8.0

func FprintfColor199(w io.Writer, format string, args ...interface{})

FprintfColor199 wraps Color199 and fmt.Fprintf().

func FprintfColor200 added in v1.8.0

func FprintfColor200(w io.Writer, format string, args ...interface{})

FprintfColor200 wraps Color200 and fmt.Fprintf().

func FprintfColor201 added in v1.8.0

func FprintfColor201(w io.Writer, format string, args ...interface{})

FprintfColor201 wraps Color201 and fmt.Fprintf().

func FprintfColor202 added in v1.8.0

func FprintfColor202(w io.Writer, format string, args ...interface{})

FprintfColor202 wraps Color202 and fmt.Fprintf().

func FprintfColor203 added in v1.8.0

func FprintfColor203(w io.Writer, format string, args ...interface{})

FprintfColor203 wraps Color203 and fmt.Fprintf().

func FprintfColor204 added in v1.8.0

func FprintfColor204(w io.Writer, format string, args ...interface{})

FprintfColor204 wraps Color204 and fmt.Fprintf().

func FprintfColor205 added in v1.8.0

func FprintfColor205(w io.Writer, format string, args ...interface{})

FprintfColor205 wraps Color205 and fmt.Fprintf().

func FprintfColor206 added in v1.8.0

func FprintfColor206(w io.Writer, format string, args ...interface{})

FprintfColor206 wraps Color206 and fmt.Fprintf().

func FprintfColor207 added in v1.8.0

func FprintfColor207(w io.Writer, format string, args ...interface{})

FprintfColor207 wraps Color207 and fmt.Fprintf().

func FprintfColor208 added in v1.8.0

func FprintfColor208(w io.Writer, format string, args ...interface{})

FprintfColor208 wraps Color208 and fmt.Fprintf().

func FprintfColor209 added in v1.8.0

func FprintfColor209(w io.Writer, format string, args ...interface{})

FprintfColor209 wraps Color209 and fmt.Fprintf().

func FprintfColor210 added in v1.8.0

func FprintfColor210(w io.Writer, format string, args ...interface{})

FprintfColor210 wraps Color210 and fmt.Fprintf().

func FprintfColor211 added in v1.8.0

func FprintfColor211(w io.Writer, format string, args ...interface{})

FprintfColor211 wraps Color211 and fmt.Fprintf().

func FprintfColor212 added in v1.8.0

func FprintfColor212(w io.Writer, format string, args ...interface{})

FprintfColor212 wraps Color212 and fmt.Fprintf().

func FprintfColor213 added in v1.8.0

func FprintfColor213(w io.Writer, format string, args ...interface{})

FprintfColor213 wraps Color213 and fmt.Fprintf().

func FprintfColor214 added in v1.8.0

func FprintfColor214(w io.Writer, format string, args ...interface{})

FprintfColor214 wraps Color214 and fmt.Fprintf().

func FprintfColor215 added in v1.8.0

func FprintfColor215(w io.Writer, format string, args ...interface{})

FprintfColor215 wraps Color215 and fmt.Fprintf().

func FprintfColor216 added in v1.8.0

func FprintfColor216(w io.Writer, format string, args ...interface{})

FprintfColor216 wraps Color216 and fmt.Fprintf().

func FprintfColor217 added in v1.8.0

func FprintfColor217(w io.Writer, format string, args ...interface{})

FprintfColor217 wraps Color217 and fmt.Fprintf().

func FprintfColor218 added in v1.8.0

func FprintfColor218(w io.Writer, format string, args ...interface{})

FprintfColor218 wraps Color218 and fmt.Fprintf().

func FprintfColor219 added in v1.8.0

func FprintfColor219(w io.Writer, format string, args ...interface{})

FprintfColor219 wraps Color219 and fmt.Fprintf().

func FprintfColor220 added in v1.8.0

func FprintfColor220(w io.Writer, format string, args ...interface{})

FprintfColor220 wraps Color220 and fmt.Fprintf().

func FprintfColor221 added in v1.8.0

func FprintfColor221(w io.Writer, format string, args ...interface{})

FprintfColor221 wraps Color221 and fmt.Fprintf().

func FprintfColor222 added in v1.8.0

func FprintfColor222(w io.Writer, format string, args ...interface{})

FprintfColor222 wraps Color222 and fmt.Fprintf().

func FprintfColor223 added in v1.8.0

func FprintfColor223(w io.Writer, format string, args ...interface{})

FprintfColor223 wraps Color223 and fmt.Fprintf().

func FprintfColor224 added in v1.8.0

func FprintfColor224(w io.Writer, format string, args ...interface{})

FprintfColor224 wraps Color224 and fmt.Fprintf().

func FprintfColor225 added in v1.8.0

func FprintfColor225(w io.Writer, format string, args ...interface{})

FprintfColor225 wraps Color225 and fmt.Fprintf().

func FprintfColor226 added in v1.8.0

func FprintfColor226(w io.Writer, format string, args ...interface{})

FprintfColor226 wraps Color226 and fmt.Fprintf().

func FprintfColor227 added in v1.8.0

func FprintfColor227(w io.Writer, format string, args ...interface{})

FprintfColor227 wraps Color227 and fmt.Fprintf().

func FprintfColor228 added in v1.8.0

func FprintfColor228(w io.Writer, format string, args ...interface{})

FprintfColor228 wraps Color228 and fmt.Fprintf().

func FprintfColor229 added in v1.8.0

func FprintfColor229(w io.Writer, format string, args ...interface{})

FprintfColor229 wraps Color229 and fmt.Fprintf().

func FprintfColor230 added in v1.8.0

func FprintfColor230(w io.Writer, format string, args ...interface{})

FprintfColor230 wraps Color230 and fmt.Fprintf().

func FprintfColor231 added in v1.8.0

func FprintfColor231(w io.Writer, format string, args ...interface{})

FprintfColor231 wraps Color231 and fmt.Fprintf().

func FprintfColor232 added in v1.8.0

func FprintfColor232(w io.Writer, format string, args ...interface{})

FprintfColor232 wraps Color232 and fmt.Fprintf().

func FprintfColor233 added in v1.8.0

func FprintfColor233(w io.Writer, format string, args ...interface{})

FprintfColor233 wraps Color233 and fmt.Fprintf().

func FprintfColor234 added in v1.8.0

func FprintfColor234(w io.Writer, format string, args ...interface{})

FprintfColor234 wraps Color234 and fmt.Fprintf().

func FprintfColor235 added in v1.8.0

func FprintfColor235(w io.Writer, format string, args ...interface{})

FprintfColor235 wraps Color235 and fmt.Fprintf().

func FprintfColor236 added in v1.8.0

func FprintfColor236(w io.Writer, format string, args ...interface{})

FprintfColor236 wraps Color236 and fmt.Fprintf().

func FprintfColor237 added in v1.8.0

func FprintfColor237(w io.Writer, format string, args ...interface{})

FprintfColor237 wraps Color237 and fmt.Fprintf().

func FprintfColor238 added in v1.8.0

func FprintfColor238(w io.Writer, format string, args ...interface{})

FprintfColor238 wraps Color238 and fmt.Fprintf().

func FprintfColor239 added in v1.8.0

func FprintfColor239(w io.Writer, format string, args ...interface{})

FprintfColor239 wraps Color239 and fmt.Fprintf().

func FprintfColor240 added in v1.8.0

func FprintfColor240(w io.Writer, format string, args ...interface{})

FprintfColor240 wraps Color240 and fmt.Fprintf().

func FprintfColor241 added in v1.8.0

func FprintfColor241(w io.Writer, format string, args ...interface{})

FprintfColor241 wraps Color241 and fmt.Fprintf().

func FprintfColor242 added in v1.8.0

func FprintfColor242(w io.Writer, format string, args ...interface{})

FprintfColor242 wraps Color242 and fmt.Fprintf().

func FprintfColor243 added in v1.8.0

func FprintfColor243(w io.Writer, format string, args ...interface{})

FprintfColor243 wraps Color243 and fmt.Fprintf().

func FprintfColor244 added in v1.8.0

func FprintfColor244(w io.Writer, format string, args ...interface{})

FprintfColor244 wraps Color244 and fmt.Fprintf().

func FprintfColor245 added in v1.8.0

func FprintfColor245(w io.Writer, format string, args ...interface{})

FprintfColor245 wraps Color245 and fmt.Fprintf().

func FprintfColor246 added in v1.8.0

func FprintfColor246(w io.Writer, format string, args ...interface{})

FprintfColor246 wraps Color246 and fmt.Fprintf().

func FprintfColor247 added in v1.8.0

func FprintfColor247(w io.Writer, format string, args ...interface{})

FprintfColor247 wraps Color247 and fmt.Fprintf().

func FprintfColor248 added in v1.8.0

func FprintfColor248(w io.Writer, format string, args ...interface{})

FprintfColor248 wraps Color248 and fmt.Fprintf().

func FprintfColor249 added in v1.8.0

func FprintfColor249(w io.Writer, format string, args ...interface{})

FprintfColor249 wraps Color249 and fmt.Fprintf().

func FprintfColor250 added in v1.8.0

func FprintfColor250(w io.Writer, format string, args ...interface{})

FprintfColor250 wraps Color250 and fmt.Fprintf().

func FprintfColor251 added in v1.8.0

func FprintfColor251(w io.Writer, format string, args ...interface{})

FprintfColor251 wraps Color251 and fmt.Fprintf().

func FprintfColor252 added in v1.8.0

func FprintfColor252(w io.Writer, format string, args ...interface{})

FprintfColor252 wraps Color252 and fmt.Fprintf().

func FprintfColor253 added in v1.8.0

func FprintfColor253(w io.Writer, format string, args ...interface{})

FprintfColor253 wraps Color253 and fmt.Fprintf().

func FprintfColor254 added in v1.8.0

func FprintfColor254(w io.Writer, format string, args ...interface{})

FprintfColor254 wraps Color254 and fmt.Fprintf().

func FprintfColor255 added in v1.8.0

func FprintfColor255(w io.Writer, format string, args ...interface{})

FprintfColor255 wraps Color255 and fmt.Fprintf().

func FprintfConceal added in v1.8.0

func FprintfConceal(w io.Writer, format string, args ...interface{})

FprintfConceal wraps Conceal and fmt.Fprintf().

func FprintfCrossedOut added in v1.8.0

func FprintfCrossedOut(w io.Writer, format string, args ...interface{})

FprintfCrossedOut wraps CrossedOut and fmt.Fprintf().

func FprintfCyan added in v1.8.0

func FprintfCyan(w io.Writer, format string, args ...interface{})

FprintfCyan wraps Cyan and fmt.Fprintf().

func FprintfDefault added in v1.8.0

func FprintfDefault(w io.Writer, format string, args ...interface{})

FprintfDefault wraps Default and fmt.Fprintf().

func FprintfDim added in v1.8.0

func FprintfDim(w io.Writer, format string, args ...interface{})

FprintfDim wraps Dim and fmt.Fprintf().

func FprintfFaint added in v1.8.0

func FprintfFaint(w io.Writer, format string, args ...interface{})

FprintfFaint wraps Faint and fmt.Fprintf().

func FprintfFraktur added in v1.8.0

func FprintfFraktur(w io.Writer, format string, args ...interface{})

FprintfFraktur wraps Fraktur and fmt.Fprintf().

func FprintfGreen added in v1.8.0

func FprintfGreen(w io.Writer, format string, args ...interface{})

FprintfGreen wraps Green and fmt.Fprintf().

func FprintfHex added in v1.8.0

func FprintfHex(w io.Writer, hex string, format string, args ...interface{})

FprintfHex wraps Hex and fmt.Fprintf().

func FprintfHide added in v1.8.0

func FprintfHide(w io.Writer, format string, args ...interface{})

FprintfHide wraps Hide and fmt.Fprintf().

func FprintfHilight added in v1.8.0

func FprintfHilight(w io.Writer, code string, format string, args ...interface{})

FprintfHilight wraps Hilight and fmt.Fprintf().

func FprintfHilights added in v1.8.0

func FprintfHilights(w io.Writer, codes []string, format string, args ...interface{})

FprintfHilights wraps Hilights and fmt.Fprintf().

func FprintfInverse added in v1.8.0

func FprintfInverse(w io.Writer, format string, args ...interface{})

FprintfInverse wraps Inverse and fmt.Fprintf().

func FprintfItalic added in v1.8.0

func FprintfItalic(w io.Writer, format string, args ...interface{})

FprintfItalic wraps Italic and fmt.Fprintf().

func FprintfLightBlack added in v1.8.0

func FprintfLightBlack(w io.Writer, format string, args ...interface{})

FprintfLightBlack wraps LightBlack and fmt.Fprintf().

func FprintfLightBlue added in v1.8.0

func FprintfLightBlue(w io.Writer, format string, args ...interface{})

FprintfLightBlue wraps LightBlue and fmt.Fprintf().

func FprintfLightCyan added in v1.8.0

func FprintfLightCyan(w io.Writer, format string, args ...interface{})

FprintfLightCyan wraps LightCyan and fmt.Fprintf().

func FprintfLightGreen added in v1.8.0

func FprintfLightGreen(w io.Writer, format string, args ...interface{})

FprintfLightGreen wraps LightGreen and fmt.Fprintf().

func FprintfLightMagenta added in v1.8.0

func FprintfLightMagenta(w io.Writer, format string, args ...interface{})

FprintfLightMagenta wraps LightMagenta and fmt.Fprintf().

func FprintfLightRed added in v1.8.0

func FprintfLightRed(w io.Writer, format string, args ...interface{})

FprintfLightRed wraps LightRed and fmt.Fprintf().

func FprintfLightWhite added in v1.8.0

func FprintfLightWhite(w io.Writer, format string, args ...interface{})

FprintfLightWhite wraps LightWhite and fmt.Fprintf().

func FprintfLightYellow added in v1.8.0

func FprintfLightYellow(w io.Writer, format string, args ...interface{})

FprintfLightYellow wraps LightYellow and fmt.Fprintf().

func FprintfMagenta added in v1.8.0

func FprintfMagenta(w io.Writer, format string, args ...interface{})

FprintfMagenta wraps Magenta and fmt.Fprintf().

func FprintfNegative added in v1.8.0

func FprintfNegative(w io.Writer, format string, args ...interface{})

FprintfNegative wraps Negative and fmt.Fprintf().

func FprintfNoBlink(w io.Writer, format string, args ...interface{})

FprintfNoBlink wraps NoBlink and fmt.Fprintf().

func FprintfNoBlinkRapid added in v1.8.0

func FprintfNoBlinkRapid(w io.Writer, format string, args ...interface{})

FprintfNoBlinkRapid wraps NoBlinkRapid and fmt.Fprintf().

func FprintfNoBlinkSlow added in v1.8.0

func FprintfNoBlinkSlow(w io.Writer, format string, args ...interface{})

FprintfNoBlinkSlow wraps NoBlinkSlow and fmt.Fprintf().

func FprintfNoBold added in v1.8.0

func FprintfNoBold(w io.Writer, format string, args ...interface{})

FprintfNoBold wraps NoBold and fmt.Fprintf().

func FprintfNoConceal added in v1.8.0

func FprintfNoConceal(w io.Writer, format string, args ...interface{})

FprintfNoConceal wraps NoConceal and fmt.Fprintf().

func FprintfNoCrossedOut added in v1.8.0

func FprintfNoCrossedOut(w io.Writer, format string, args ...interface{})

FprintfNoCrossedOut wraps NoCrossedOut and fmt.Fprintf().

func FprintfNoDim added in v1.8.0

func FprintfNoDim(w io.Writer, format string, args ...interface{})

FprintfNoDim wraps NoDim and fmt.Fprintf().

func FprintfNoFaint added in v1.8.0

func FprintfNoFaint(w io.Writer, format string, args ...interface{})

FprintfNoFaint wraps NoFaint and fmt.Fprintf().

func FprintfNoFraktur added in v1.8.0

func FprintfNoFraktur(w io.Writer, format string, args ...interface{})

FprintfNoFraktur wraps NoFraktur and fmt.Fprintf().

func FprintfNoHide added in v1.8.0

func FprintfNoHide(w io.Writer, format string, args ...interface{})

FprintfNoHide wraps NoHide and fmt.Fprintf().

func FprintfNoInverse added in v1.8.0

func FprintfNoInverse(w io.Writer, format string, args ...interface{})

FprintfNoInverse wraps NoInverse and fmt.Fprintf().

func FprintfNoItalic added in v1.8.0

func FprintfNoItalic(w io.Writer, format string, args ...interface{})

FprintfNoItalic wraps NoItalic and fmt.Fprintf().

func FprintfNoNegative added in v1.8.0

func FprintfNoNegative(w io.Writer, format string, args ...interface{})

FprintfNoNegative wraps NoNegative and fmt.Fprintf().

func FprintfNoStrikethrough added in v1.8.0

func FprintfNoStrikethrough(w io.Writer, format string, args ...interface{})

FprintfNoStrikethrough wraps NoStrikethrough and fmt.Fprintf().

func FprintfNoSwap added in v1.8.0

func FprintfNoSwap(w io.Writer, format string, args ...interface{})

FprintfNoSwap wraps NoSwap and fmt.Fprintf().

func FprintfNoUnderline added in v1.8.0

func FprintfNoUnderline(w io.Writer, format string, args ...interface{})

FprintfNoUnderline wraps NoUnderline and fmt.Fprintf().

func FprintfNormal added in v1.8.0

func FprintfNormal(w io.Writer, format string, args ...interface{})

FprintfNormal wraps Normal and fmt.Fprintf().

func FprintfOnBlack added in v1.8.0

func FprintfOnBlack(w io.Writer, format string, args ...interface{})

FprintfOnBlack wraps OnBlack and fmt.Fprintf().

func FprintfOnBlue added in v1.8.0

func FprintfOnBlue(w io.Writer, format string, args ...interface{})

FprintfOnBlue wraps OnBlue and fmt.Fprintf().

func FprintfOnColor000 added in v1.8.0

func FprintfOnColor000(w io.Writer, format string, args ...interface{})

FprintfOnColor000 wraps OnColor000 and fmt.Fprintf().

func FprintfOnColor001 added in v1.8.0

func FprintfOnColor001(w io.Writer, format string, args ...interface{})

FprintfOnColor001 wraps OnColor001 and fmt.Fprintf().

func FprintfOnColor002 added in v1.8.0

func FprintfOnColor002(w io.Writer, format string, args ...interface{})

FprintfOnColor002 wraps OnColor002 and fmt.Fprintf().

func FprintfOnColor003 added in v1.8.0

func FprintfOnColor003(w io.Writer, format string, args ...interface{})

FprintfOnColor003 wraps OnColor003 and fmt.Fprintf().

func FprintfOnColor004 added in v1.8.0

func FprintfOnColor004(w io.Writer, format string, args ...interface{})

FprintfOnColor004 wraps OnColor004 and fmt.Fprintf().

func FprintfOnColor005 added in v1.8.0

func FprintfOnColor005(w io.Writer, format string, args ...interface{})

FprintfOnColor005 wraps OnColor005 and fmt.Fprintf().

func FprintfOnColor006 added in v1.8.0

func FprintfOnColor006(w io.Writer, format string, args ...interface{})

FprintfOnColor006 wraps OnColor006 and fmt.Fprintf().

func FprintfOnColor007 added in v1.8.0

func FprintfOnColor007(w io.Writer, format string, args ...interface{})

FprintfOnColor007 wraps OnColor007 and fmt.Fprintf().

func FprintfOnColor008 added in v1.8.0

func FprintfOnColor008(w io.Writer, format string, args ...interface{})

FprintfOnColor008 wraps OnColor008 and fmt.Fprintf().

func FprintfOnColor009 added in v1.8.0

func FprintfOnColor009(w io.Writer, format string, args ...interface{})

FprintfOnColor009 wraps OnColor009 and fmt.Fprintf().

func FprintfOnColor010 added in v1.8.0

func FprintfOnColor010(w io.Writer, format string, args ...interface{})

FprintfOnColor010 wraps OnColor010 and fmt.Fprintf().

func FprintfOnColor011 added in v1.8.0

func FprintfOnColor011(w io.Writer, format string, args ...interface{})

FprintfOnColor011 wraps OnColor011 and fmt.Fprintf().

func FprintfOnColor012 added in v1.8.0

func FprintfOnColor012(w io.Writer, format string, args ...interface{})

FprintfOnColor012 wraps OnColor012 and fmt.Fprintf().

func FprintfOnColor013 added in v1.8.0

func FprintfOnColor013(w io.Writer, format string, args ...interface{})

FprintfOnColor013 wraps OnColor013 and fmt.Fprintf().

func FprintfOnColor014 added in v1.8.0

func FprintfOnColor014(w io.Writer, format string, args ...interface{})

FprintfOnColor014 wraps OnColor014 and fmt.Fprintf().

func FprintfOnColor015 added in v1.8.0

func FprintfOnColor015(w io.Writer, format string, args ...interface{})

FprintfOnColor015 wraps OnColor015 and fmt.Fprintf().

func FprintfOnColor016 added in v1.8.0

func FprintfOnColor016(w io.Writer, format string, args ...interface{})

FprintfOnColor016 wraps OnColor016 and fmt.Fprintf().

func FprintfOnColor017 added in v1.8.0

func FprintfOnColor017(w io.Writer, format string, args ...interface{})

FprintfOnColor017 wraps OnColor017 and fmt.Fprintf().

func FprintfOnColor018 added in v1.8.0

func FprintfOnColor018(w io.Writer, format string, args ...interface{})

FprintfOnColor018 wraps OnColor018 and fmt.Fprintf().

func FprintfOnColor019 added in v1.8.0

func FprintfOnColor019(w io.Writer, format string, args ...interface{})

FprintfOnColor019 wraps OnColor019 and fmt.Fprintf().

func FprintfOnColor020 added in v1.8.0

func FprintfOnColor020(w io.Writer, format string, args ...interface{})

FprintfOnColor020 wraps OnColor020 and fmt.Fprintf().

func FprintfOnColor021 added in v1.8.0

func FprintfOnColor021(w io.Writer, format string, args ...interface{})

FprintfOnColor021 wraps OnColor021 and fmt.Fprintf().

func FprintfOnColor022 added in v1.8.0

func FprintfOnColor022(w io.Writer, format string, args ...interface{})

FprintfOnColor022 wraps OnColor022 and fmt.Fprintf().

func FprintfOnColor023 added in v1.8.0

func FprintfOnColor023(w io.Writer, format string, args ...interface{})

FprintfOnColor023 wraps OnColor023 and fmt.Fprintf().

func FprintfOnColor024 added in v1.8.0

func FprintfOnColor024(w io.Writer, format string, args ...interface{})

FprintfOnColor024 wraps OnColor024 and fmt.Fprintf().

func FprintfOnColor025 added in v1.8.0

func FprintfOnColor025(w io.Writer, format string, args ...interface{})

FprintfOnColor025 wraps OnColor025 and fmt.Fprintf().

func FprintfOnColor026 added in v1.8.0

func FprintfOnColor026(w io.Writer, format string, args ...interface{})

FprintfOnColor026 wraps OnColor026 and fmt.Fprintf().

func FprintfOnColor027 added in v1.8.0

func FprintfOnColor027(w io.Writer, format string, args ...interface{})

FprintfOnColor027 wraps OnColor027 and fmt.Fprintf().

func FprintfOnColor028 added in v1.8.0

func FprintfOnColor028(w io.Writer, format string, args ...interface{})

FprintfOnColor028 wraps OnColor028 and fmt.Fprintf().

func FprintfOnColor029 added in v1.8.0

func FprintfOnColor029(w io.Writer, format string, args ...interface{})

FprintfOnColor029 wraps OnColor029 and fmt.Fprintf().

func FprintfOnColor030 added in v1.8.0

func FprintfOnColor030(w io.Writer, format string, args ...interface{})

FprintfOnColor030 wraps OnColor030 and fmt.Fprintf().

func FprintfOnColor031 added in v1.8.0

func FprintfOnColor031(w io.Writer, format string, args ...interface{})

FprintfOnColor031 wraps OnColor031 and fmt.Fprintf().

func FprintfOnColor032 added in v1.8.0

func FprintfOnColor032(w io.Writer, format string, args ...interface{})

FprintfOnColor032 wraps OnColor032 and fmt.Fprintf().

func FprintfOnColor033 added in v1.8.0

func FprintfOnColor033(w io.Writer, format string, args ...interface{})

FprintfOnColor033 wraps OnColor033 and fmt.Fprintf().

func FprintfOnColor034 added in v1.8.0

func FprintfOnColor034(w io.Writer, format string, args ...interface{})

FprintfOnColor034 wraps OnColor034 and fmt.Fprintf().

func FprintfOnColor035 added in v1.8.0

func FprintfOnColor035(w io.Writer, format string, args ...interface{})

FprintfOnColor035 wraps OnColor035 and fmt.Fprintf().

func FprintfOnColor036 added in v1.8.0

func FprintfOnColor036(w io.Writer, format string, args ...interface{})

FprintfOnColor036 wraps OnColor036 and fmt.Fprintf().

func FprintfOnColor037 added in v1.8.0

func FprintfOnColor037(w io.Writer, format string, args ...interface{})

FprintfOnColor037 wraps OnColor037 and fmt.Fprintf().

func FprintfOnColor038 added in v1.8.0

func FprintfOnColor038(w io.Writer, format string, args ...interface{})

FprintfOnColor038 wraps OnColor038 and fmt.Fprintf().

func FprintfOnColor039 added in v1.8.0

func FprintfOnColor039(w io.Writer, format string, args ...interface{})

FprintfOnColor039 wraps OnColor039 and fmt.Fprintf().

func FprintfOnColor040 added in v1.8.0

func FprintfOnColor040(w io.Writer, format string, args ...interface{})

FprintfOnColor040 wraps OnColor040 and fmt.Fprintf().

func FprintfOnColor041 added in v1.8.0

func FprintfOnColor041(w io.Writer, format string, args ...interface{})

FprintfOnColor041 wraps OnColor041 and fmt.Fprintf().

func FprintfOnColor042 added in v1.8.0

func FprintfOnColor042(w io.Writer, format string, args ...interface{})

FprintfOnColor042 wraps OnColor042 and fmt.Fprintf().

func FprintfOnColor043 added in v1.8.0

func FprintfOnColor043(w io.Writer, format string, args ...interface{})

FprintfOnColor043 wraps OnColor043 and fmt.Fprintf().

func FprintfOnColor044 added in v1.8.0

func FprintfOnColor044(w io.Writer, format string, args ...interface{})

FprintfOnColor044 wraps OnColor044 and fmt.Fprintf().

func FprintfOnColor045 added in v1.8.0

func FprintfOnColor045(w io.Writer, format string, args ...interface{})

FprintfOnColor045 wraps OnColor045 and fmt.Fprintf().

func FprintfOnColor046 added in v1.8.0

func FprintfOnColor046(w io.Writer, format string, args ...interface{})

FprintfOnColor046 wraps OnColor046 and fmt.Fprintf().

func FprintfOnColor047 added in v1.8.0

func FprintfOnColor047(w io.Writer, format string, args ...interface{})

FprintfOnColor047 wraps OnColor047 and fmt.Fprintf().

func FprintfOnColor048 added in v1.8.0

func FprintfOnColor048(w io.Writer, format string, args ...interface{})

FprintfOnColor048 wraps OnColor048 and fmt.Fprintf().

func FprintfOnColor049 added in v1.8.0

func FprintfOnColor049(w io.Writer, format string, args ...interface{})

FprintfOnColor049 wraps OnColor049 and fmt.Fprintf().

func FprintfOnColor050 added in v1.8.0

func FprintfOnColor050(w io.Writer, format string, args ...interface{})

FprintfOnColor050 wraps OnColor050 and fmt.Fprintf().

func FprintfOnColor051 added in v1.8.0

func FprintfOnColor051(w io.Writer, format string, args ...interface{})

FprintfOnColor051 wraps OnColor051 and fmt.Fprintf().

func FprintfOnColor052 added in v1.8.0

func FprintfOnColor052(w io.Writer, format string, args ...interface{})

FprintfOnColor052 wraps OnColor052 and fmt.Fprintf().

func FprintfOnColor053 added in v1.8.0

func FprintfOnColor053(w io.Writer, format string, args ...interface{})

FprintfOnColor053 wraps OnColor053 and fmt.Fprintf().

func FprintfOnColor054 added in v1.8.0

func FprintfOnColor054(w io.Writer, format string, args ...interface{})

FprintfOnColor054 wraps OnColor054 and fmt.Fprintf().

func FprintfOnColor055 added in v1.8.0

func FprintfOnColor055(w io.Writer, format string, args ...interface{})

FprintfOnColor055 wraps OnColor055 and fmt.Fprintf().

func FprintfOnColor056 added in v1.8.0

func FprintfOnColor056(w io.Writer, format string, args ...interface{})

FprintfOnColor056 wraps OnColor056 and fmt.Fprintf().

func FprintfOnColor057 added in v1.8.0

func FprintfOnColor057(w io.Writer, format string, args ...interface{})

FprintfOnColor057 wraps OnColor057 and fmt.Fprintf().

func FprintfOnColor058 added in v1.8.0

func FprintfOnColor058(w io.Writer, format string, args ...interface{})

FprintfOnColor058 wraps OnColor058 and fmt.Fprintf().

func FprintfOnColor059 added in v1.8.0

func FprintfOnColor059(w io.Writer, format string, args ...interface{})

FprintfOnColor059 wraps OnColor059 and fmt.Fprintf().

func FprintfOnColor060 added in v1.8.0

func FprintfOnColor060(w io.Writer, format string, args ...interface{})

FprintfOnColor060 wraps OnColor060 and fmt.Fprintf().

func FprintfOnColor061 added in v1.8.0

func FprintfOnColor061(w io.Writer, format string, args ...interface{})

FprintfOnColor061 wraps OnColor061 and fmt.Fprintf().

func FprintfOnColor062 added in v1.8.0

func FprintfOnColor062(w io.Writer, format string, args ...interface{})

FprintfOnColor062 wraps OnColor062 and fmt.Fprintf().

func FprintfOnColor063 added in v1.8.0

func FprintfOnColor063(w io.Writer, format string, args ...interface{})

FprintfOnColor063 wraps OnColor063 and fmt.Fprintf().

func FprintfOnColor064 added in v1.8.0

func FprintfOnColor064(w io.Writer, format string, args ...interface{})

FprintfOnColor064 wraps OnColor064 and fmt.Fprintf().

func FprintfOnColor065 added in v1.8.0

func FprintfOnColor065(w io.Writer, format string, args ...interface{})

FprintfOnColor065 wraps OnColor065 and fmt.Fprintf().

func FprintfOnColor066 added in v1.8.0

func FprintfOnColor066(w io.Writer, format string, args ...interface{})

FprintfOnColor066 wraps OnColor066 and fmt.Fprintf().

func FprintfOnColor067 added in v1.8.0

func FprintfOnColor067(w io.Writer, format string, args ...interface{})

FprintfOnColor067 wraps OnColor067 and fmt.Fprintf().

func FprintfOnColor068 added in v1.8.0

func FprintfOnColor068(w io.Writer, format string, args ...interface{})

FprintfOnColor068 wraps OnColor068 and fmt.Fprintf().

func FprintfOnColor069 added in v1.8.0

func FprintfOnColor069(w io.Writer, format string, args ...interface{})

FprintfOnColor069 wraps OnColor069 and fmt.Fprintf().

func FprintfOnColor070 added in v1.8.0

func FprintfOnColor070(w io.Writer, format string, args ...interface{})

FprintfOnColor070 wraps OnColor070 and fmt.Fprintf().

func FprintfOnColor071 added in v1.8.0

func FprintfOnColor071(w io.Writer, format string, args ...interface{})

FprintfOnColor071 wraps OnColor071 and fmt.Fprintf().

func FprintfOnColor072 added in v1.8.0

func FprintfOnColor072(w io.Writer, format string, args ...interface{})

FprintfOnColor072 wraps OnColor072 and fmt.Fprintf().

func FprintfOnColor073 added in v1.8.0

func FprintfOnColor073(w io.Writer, format string, args ...interface{})

FprintfOnColor073 wraps OnColor073 and fmt.Fprintf().

func FprintfOnColor074 added in v1.8.0

func FprintfOnColor074(w io.Writer, format string, args ...interface{})

FprintfOnColor074 wraps OnColor074 and fmt.Fprintf().

func FprintfOnColor075 added in v1.8.0

func FprintfOnColor075(w io.Writer, format string, args ...interface{})

FprintfOnColor075 wraps OnColor075 and fmt.Fprintf().

func FprintfOnColor076 added in v1.8.0

func FprintfOnColor076(w io.Writer, format string, args ...interface{})

FprintfOnColor076 wraps OnColor076 and fmt.Fprintf().

func FprintfOnColor077 added in v1.8.0

func FprintfOnColor077(w io.Writer, format string, args ...interface{})

FprintfOnColor077 wraps OnColor077 and fmt.Fprintf().

func FprintfOnColor078 added in v1.8.0

func FprintfOnColor078(w io.Writer, format string, args ...interface{})

FprintfOnColor078 wraps OnColor078 and fmt.Fprintf().

func FprintfOnColor079 added in v1.8.0

func FprintfOnColor079(w io.Writer, format string, args ...interface{})

FprintfOnColor079 wraps OnColor079 and fmt.Fprintf().

func FprintfOnColor080 added in v1.8.0

func FprintfOnColor080(w io.Writer, format string, args ...interface{})

FprintfOnColor080 wraps OnColor080 and fmt.Fprintf().

func FprintfOnColor081 added in v1.8.0

func FprintfOnColor081(w io.Writer, format string, args ...interface{})

FprintfOnColor081 wraps OnColor081 and fmt.Fprintf().

func FprintfOnColor082 added in v1.8.0

func FprintfOnColor082(w io.Writer, format string, args ...interface{})

FprintfOnColor082 wraps OnColor082 and fmt.Fprintf().

func FprintfOnColor083 added in v1.8.0

func FprintfOnColor083(w io.Writer, format string, args ...interface{})

FprintfOnColor083 wraps OnColor083 and fmt.Fprintf().

func FprintfOnColor084 added in v1.8.0

func FprintfOnColor084(w io.Writer, format string, args ...interface{})

FprintfOnColor084 wraps OnColor084 and fmt.Fprintf().

func FprintfOnColor085 added in v1.8.0

func FprintfOnColor085(w io.Writer, format string, args ...interface{})

FprintfOnColor085 wraps OnColor085 and fmt.Fprintf().

func FprintfOnColor086 added in v1.8.0

func FprintfOnColor086(w io.Writer, format string, args ...interface{})

FprintfOnColor086 wraps OnColor086 and fmt.Fprintf().

func FprintfOnColor087 added in v1.8.0

func FprintfOnColor087(w io.Writer, format string, args ...interface{})

FprintfOnColor087 wraps OnColor087 and fmt.Fprintf().

func FprintfOnColor088 added in v1.8.0

func FprintfOnColor088(w io.Writer, format string, args ...interface{})

FprintfOnColor088 wraps OnColor088 and fmt.Fprintf().

func FprintfOnColor089 added in v1.8.0

func FprintfOnColor089(w io.Writer, format string, args ...interface{})

FprintfOnColor089 wraps OnColor089 and fmt.Fprintf().

func FprintfOnColor090 added in v1.8.0

func FprintfOnColor090(w io.Writer, format string, args ...interface{})

FprintfOnColor090 wraps OnColor090 and fmt.Fprintf().

func FprintfOnColor091 added in v1.8.0

func FprintfOnColor091(w io.Writer, format string, args ...interface{})

FprintfOnColor091 wraps OnColor091 and fmt.Fprintf().

func FprintfOnColor092 added in v1.8.0

func FprintfOnColor092(w io.Writer, format string, args ...interface{})

FprintfOnColor092 wraps OnColor092 and fmt.Fprintf().

func FprintfOnColor093 added in v1.8.0

func FprintfOnColor093(w io.Writer, format string, args ...interface{})

FprintfOnColor093 wraps OnColor093 and fmt.Fprintf().

func FprintfOnColor094 added in v1.8.0

func FprintfOnColor094(w io.Writer, format string, args ...interface{})

FprintfOnColor094 wraps OnColor094 and fmt.Fprintf().

func FprintfOnColor095 added in v1.8.0

func FprintfOnColor095(w io.Writer, format string, args ...interface{})

FprintfOnColor095 wraps OnColor095 and fmt.Fprintf().

func FprintfOnColor096 added in v1.8.0

func FprintfOnColor096(w io.Writer, format string, args ...interface{})

FprintfOnColor096 wraps OnColor096 and fmt.Fprintf().

func FprintfOnColor097 added in v1.8.0

func FprintfOnColor097(w io.Writer, format string, args ...interface{})

FprintfOnColor097 wraps OnColor097 and fmt.Fprintf().

func FprintfOnColor098 added in v1.8.0

func FprintfOnColor098(w io.Writer, format string, args ...interface{})

FprintfOnColor098 wraps OnColor098 and fmt.Fprintf().

func FprintfOnColor099 added in v1.8.0

func FprintfOnColor099(w io.Writer, format string, args ...interface{})

FprintfOnColor099 wraps OnColor099 and fmt.Fprintf().

func FprintfOnColor100 added in v1.8.0

func FprintfOnColor100(w io.Writer, format string, args ...interface{})

FprintfOnColor100 wraps OnColor100 and fmt.Fprintf().

func FprintfOnColor101 added in v1.8.0

func FprintfOnColor101(w io.Writer, format string, args ...interface{})

FprintfOnColor101 wraps OnColor101 and fmt.Fprintf().

func FprintfOnColor102 added in v1.8.0

func FprintfOnColor102(w io.Writer, format string, args ...interface{})

FprintfOnColor102 wraps OnColor102 and fmt.Fprintf().

func FprintfOnColor103 added in v1.8.0

func FprintfOnColor103(w io.Writer, format string, args ...interface{})

FprintfOnColor103 wraps OnColor103 and fmt.Fprintf().

func FprintfOnColor104 added in v1.8.0

func FprintfOnColor104(w io.Writer, format string, args ...interface{})

FprintfOnColor104 wraps OnColor104 and fmt.Fprintf().

func FprintfOnColor105 added in v1.8.0

func FprintfOnColor105(w io.Writer, format string, args ...interface{})

FprintfOnColor105 wraps OnColor105 and fmt.Fprintf().

func FprintfOnColor106 added in v1.8.0

func FprintfOnColor106(w io.Writer, format string, args ...interface{})

FprintfOnColor106 wraps OnColor106 and fmt.Fprintf().

func FprintfOnColor107 added in v1.8.0

func FprintfOnColor107(w io.Writer, format string, args ...interface{})

FprintfOnColor107 wraps OnColor107 and fmt.Fprintf().

func FprintfOnColor108 added in v1.8.0

func FprintfOnColor108(w io.Writer, format string, args ...interface{})

FprintfOnColor108 wraps OnColor108 and fmt.Fprintf().

func FprintfOnColor109 added in v1.8.0

func FprintfOnColor109(w io.Writer, format string, args ...interface{})

FprintfOnColor109 wraps OnColor109 and fmt.Fprintf().

func FprintfOnColor110 added in v1.8.0

func FprintfOnColor110(w io.Writer, format string, args ...interface{})

FprintfOnColor110 wraps OnColor110 and fmt.Fprintf().

func FprintfOnColor111 added in v1.8.0

func FprintfOnColor111(w io.Writer, format string, args ...interface{})

FprintfOnColor111 wraps OnColor111 and fmt.Fprintf().

func FprintfOnColor112 added in v1.8.0

func FprintfOnColor112(w io.Writer, format string, args ...interface{})

FprintfOnColor112 wraps OnColor112 and fmt.Fprintf().

func FprintfOnColor113 added in v1.8.0

func FprintfOnColor113(w io.Writer, format string, args ...interface{})

FprintfOnColor113 wraps OnColor113 and fmt.Fprintf().

func FprintfOnColor114 added in v1.8.0

func FprintfOnColor114(w io.Writer, format string, args ...interface{})

FprintfOnColor114 wraps OnColor114 and fmt.Fprintf().

func FprintfOnColor115 added in v1.8.0

func FprintfOnColor115(w io.Writer, format string, args ...interface{})

FprintfOnColor115 wraps OnColor115 and fmt.Fprintf().

func FprintfOnColor116 added in v1.8.0

func FprintfOnColor116(w io.Writer, format string, args ...interface{})

FprintfOnColor116 wraps OnColor116 and fmt.Fprintf().

func FprintfOnColor117 added in v1.8.0

func FprintfOnColor117(w io.Writer, format string, args ...interface{})

FprintfOnColor117 wraps OnColor117 and fmt.Fprintf().

func FprintfOnColor118 added in v1.8.0

func FprintfOnColor118(w io.Writer, format string, args ...interface{})

FprintfOnColor118 wraps OnColor118 and fmt.Fprintf().

func FprintfOnColor119 added in v1.8.0

func FprintfOnColor119(w io.Writer, format string, args ...interface{})

FprintfOnColor119 wraps OnColor119 and fmt.Fprintf().

func FprintfOnColor120 added in v1.8.0

func FprintfOnColor120(w io.Writer, format string, args ...interface{})

FprintfOnColor120 wraps OnColor120 and fmt.Fprintf().

func FprintfOnColor121 added in v1.8.0

func FprintfOnColor121(w io.Writer, format string, args ...interface{})

FprintfOnColor121 wraps OnColor121 and fmt.Fprintf().

func FprintfOnColor122 added in v1.8.0

func FprintfOnColor122(w io.Writer, format string, args ...interface{})

FprintfOnColor122 wraps OnColor122 and fmt.Fprintf().

func FprintfOnColor123 added in v1.8.0

func FprintfOnColor123(w io.Writer, format string, args ...interface{})

FprintfOnColor123 wraps OnColor123 and fmt.Fprintf().

func FprintfOnColor124 added in v1.8.0

func FprintfOnColor124(w io.Writer, format string, args ...interface{})

FprintfOnColor124 wraps OnColor124 and fmt.Fprintf().

func FprintfOnColor125 added in v1.8.0

func FprintfOnColor125(w io.Writer, format string, args ...interface{})

FprintfOnColor125 wraps OnColor125 and fmt.Fprintf().

func FprintfOnColor126 added in v1.8.0

func FprintfOnColor126(w io.Writer, format string, args ...interface{})

FprintfOnColor126 wraps OnColor126 and fmt.Fprintf().

func FprintfOnColor127 added in v1.8.0

func FprintfOnColor127(w io.Writer, format string, args ...interface{})

FprintfOnColor127 wraps OnColor127 and fmt.Fprintf().

func FprintfOnColor128 added in v1.8.0

func FprintfOnColor128(w io.Writer, format string, args ...interface{})

FprintfOnColor128 wraps OnColor128 and fmt.Fprintf().

func FprintfOnColor129 added in v1.8.0

func FprintfOnColor129(w io.Writer, format string, args ...interface{})

FprintfOnColor129 wraps OnColor129 and fmt.Fprintf().

func FprintfOnColor130 added in v1.8.0

func FprintfOnColor130(w io.Writer, format string, args ...interface{})

FprintfOnColor130 wraps OnColor130 and fmt.Fprintf().

func FprintfOnColor131 added in v1.8.0

func FprintfOnColor131(w io.Writer, format string, args ...interface{})

FprintfOnColor131 wraps OnColor131 and fmt.Fprintf().

func FprintfOnColor132 added in v1.8.0

func FprintfOnColor132(w io.Writer, format string, args ...interface{})

FprintfOnColor132 wraps OnColor132 and fmt.Fprintf().

func FprintfOnColor133 added in v1.8.0

func FprintfOnColor133(w io.Writer, format string, args ...interface{})

FprintfOnColor133 wraps OnColor133 and fmt.Fprintf().

func FprintfOnColor134 added in v1.8.0

func FprintfOnColor134(w io.Writer, format string, args ...interface{})

FprintfOnColor134 wraps OnColor134 and fmt.Fprintf().

func FprintfOnColor135 added in v1.8.0

func FprintfOnColor135(w io.Writer, format string, args ...interface{})

FprintfOnColor135 wraps OnColor135 and fmt.Fprintf().

func FprintfOnColor136 added in v1.8.0

func FprintfOnColor136(w io.Writer, format string, args ...interface{})

FprintfOnColor136 wraps OnColor136 and fmt.Fprintf().

func FprintfOnColor137 added in v1.8.0

func FprintfOnColor137(w io.Writer, format string, args ...interface{})

FprintfOnColor137 wraps OnColor137 and fmt.Fprintf().

func FprintfOnColor138 added in v1.8.0

func FprintfOnColor138(w io.Writer, format string, args ...interface{})

FprintfOnColor138 wraps OnColor138 and fmt.Fprintf().

func FprintfOnColor139 added in v1.8.0

func FprintfOnColor139(w io.Writer, format string, args ...interface{})

FprintfOnColor139 wraps OnColor139 and fmt.Fprintf().

func FprintfOnColor140 added in v1.8.0

func FprintfOnColor140(w io.Writer, format string, args ...interface{})

FprintfOnColor140 wraps OnColor140 and fmt.Fprintf().

func FprintfOnColor141 added in v1.8.0

func FprintfOnColor141(w io.Writer, format string, args ...interface{})

FprintfOnColor141 wraps OnColor141 and fmt.Fprintf().

func FprintfOnColor142 added in v1.8.0

func FprintfOnColor142(w io.Writer, format string, args ...interface{})

FprintfOnColor142 wraps OnColor142 and fmt.Fprintf().

func FprintfOnColor143 added in v1.8.0

func FprintfOnColor143(w io.Writer, format string, args ...interface{})

FprintfOnColor143 wraps OnColor143 and fmt.Fprintf().

func FprintfOnColor144 added in v1.8.0

func FprintfOnColor144(w io.Writer, format string, args ...interface{})

FprintfOnColor144 wraps OnColor144 and fmt.Fprintf().

func FprintfOnColor145 added in v1.8.0

func FprintfOnColor145(w io.Writer, format string, args ...interface{})

FprintfOnColor145 wraps OnColor145 and fmt.Fprintf().

func FprintfOnColor146 added in v1.8.0

func FprintfOnColor146(w io.Writer, format string, args ...interface{})

FprintfOnColor146 wraps OnColor146 and fmt.Fprintf().

func FprintfOnColor147 added in v1.8.0

func FprintfOnColor147(w io.Writer, format string, args ...interface{})

FprintfOnColor147 wraps OnColor147 and fmt.Fprintf().

func FprintfOnColor148 added in v1.8.0

func FprintfOnColor148(w io.Writer, format string, args ...interface{})

FprintfOnColor148 wraps OnColor148 and fmt.Fprintf().

func FprintfOnColor149 added in v1.8.0

func FprintfOnColor149(w io.Writer, format string, args ...interface{})

FprintfOnColor149 wraps OnColor149 and fmt.Fprintf().

func FprintfOnColor150 added in v1.8.0

func FprintfOnColor150(w io.Writer, format string, args ...interface{})

FprintfOnColor150 wraps OnColor150 and fmt.Fprintf().

func FprintfOnColor151 added in v1.8.0

func FprintfOnColor151(w io.Writer, format string, args ...interface{})

FprintfOnColor151 wraps OnColor151 and fmt.Fprintf().

func FprintfOnColor152 added in v1.8.0

func FprintfOnColor152(w io.Writer, format string, args ...interface{})

FprintfOnColor152 wraps OnColor152 and fmt.Fprintf().

func FprintfOnColor153 added in v1.8.0

func FprintfOnColor153(w io.Writer, format string, args ...interface{})

FprintfOnColor153 wraps OnColor153 and fmt.Fprintf().

func FprintfOnColor154 added in v1.8.0

func FprintfOnColor154(w io.Writer, format string, args ...interface{})

FprintfOnColor154 wraps OnColor154 and fmt.Fprintf().

func FprintfOnColor155 added in v1.8.0

func FprintfOnColor155(w io.Writer, format string, args ...interface{})

FprintfOnColor155 wraps OnColor155 and fmt.Fprintf().

func FprintfOnColor156 added in v1.8.0

func FprintfOnColor156(w io.Writer, format string, args ...interface{})

FprintfOnColor156 wraps OnColor156 and fmt.Fprintf().

func FprintfOnColor157 added in v1.8.0

func FprintfOnColor157(w io.Writer, format string, args ...interface{})

FprintfOnColor157 wraps OnColor157 and fmt.Fprintf().

func FprintfOnColor158 added in v1.8.0

func FprintfOnColor158(w io.Writer, format string, args ...interface{})

FprintfOnColor158 wraps OnColor158 and fmt.Fprintf().

func FprintfOnColor159 added in v1.8.0

func FprintfOnColor159(w io.Writer, format string, args ...interface{})

FprintfOnColor159 wraps OnColor159 and fmt.Fprintf().

func FprintfOnColor160 added in v1.8.0

func FprintfOnColor160(w io.Writer, format string, args ...interface{})

FprintfOnColor160 wraps OnColor160 and fmt.Fprintf().

func FprintfOnColor161 added in v1.8.0

func FprintfOnColor161(w io.Writer, format string, args ...interface{})

FprintfOnColor161 wraps OnColor161 and fmt.Fprintf().

func FprintfOnColor162 added in v1.8.0

func FprintfOnColor162(w io.Writer, format string, args ...interface{})

FprintfOnColor162 wraps OnColor162 and fmt.Fprintf().

func FprintfOnColor163 added in v1.8.0

func FprintfOnColor163(w io.Writer, format string, args ...interface{})

FprintfOnColor163 wraps OnColor163 and fmt.Fprintf().

func FprintfOnColor164 added in v1.8.0

func FprintfOnColor164(w io.Writer, format string, args ...interface{})

FprintfOnColor164 wraps OnColor164 and fmt.Fprintf().

func FprintfOnColor165 added in v1.8.0

func FprintfOnColor165(w io.Writer, format string, args ...interface{})

FprintfOnColor165 wraps OnColor165 and fmt.Fprintf().

func FprintfOnColor166 added in v1.8.0

func FprintfOnColor166(w io.Writer, format string, args ...interface{})

FprintfOnColor166 wraps OnColor166 and fmt.Fprintf().

func FprintfOnColor167 added in v1.8.0

func FprintfOnColor167(w io.Writer, format string, args ...interface{})

FprintfOnColor167 wraps OnColor167 and fmt.Fprintf().

func FprintfOnColor168 added in v1.8.0

func FprintfOnColor168(w io.Writer, format string, args ...interface{})

FprintfOnColor168 wraps OnColor168 and fmt.Fprintf().

func FprintfOnColor169 added in v1.8.0

func FprintfOnColor169(w io.Writer, format string, args ...interface{})

FprintfOnColor169 wraps OnColor169 and fmt.Fprintf().

func FprintfOnColor170 added in v1.8.0

func FprintfOnColor170(w io.Writer, format string, args ...interface{})

FprintfOnColor170 wraps OnColor170 and fmt.Fprintf().

func FprintfOnColor171 added in v1.8.0

func FprintfOnColor171(w io.Writer, format string, args ...interface{})

FprintfOnColor171 wraps OnColor171 and fmt.Fprintf().

func FprintfOnColor172 added in v1.8.0

func FprintfOnColor172(w io.Writer, format string, args ...interface{})

FprintfOnColor172 wraps OnColor172 and fmt.Fprintf().

func FprintfOnColor173 added in v1.8.0

func FprintfOnColor173(w io.Writer, format string, args ...interface{})

FprintfOnColor173 wraps OnColor173 and fmt.Fprintf().

func FprintfOnColor174 added in v1.8.0

func FprintfOnColor174(w io.Writer, format string, args ...interface{})

FprintfOnColor174 wraps OnColor174 and fmt.Fprintf().

func FprintfOnColor175 added in v1.8.0

func FprintfOnColor175(w io.Writer, format string, args ...interface{})

FprintfOnColor175 wraps OnColor175 and fmt.Fprintf().

func FprintfOnColor176 added in v1.8.0

func FprintfOnColor176(w io.Writer, format string, args ...interface{})

FprintfOnColor176 wraps OnColor176 and fmt.Fprintf().

func FprintfOnColor177 added in v1.8.0

func FprintfOnColor177(w io.Writer, format string, args ...interface{})

FprintfOnColor177 wraps OnColor177 and fmt.Fprintf().

func FprintfOnColor178 added in v1.8.0

func FprintfOnColor178(w io.Writer, format string, args ...interface{})

FprintfOnColor178 wraps OnColor178 and fmt.Fprintf().

func FprintfOnColor179 added in v1.8.0

func FprintfOnColor179(w io.Writer, format string, args ...interface{})

FprintfOnColor179 wraps OnColor179 and fmt.Fprintf().

func FprintfOnColor180 added in v1.8.0

func FprintfOnColor180(w io.Writer, format string, args ...interface{})

FprintfOnColor180 wraps OnColor180 and fmt.Fprintf().

func FprintfOnColor181 added in v1.8.0

func FprintfOnColor181(w io.Writer, format string, args ...interface{})

FprintfOnColor181 wraps OnColor181 and fmt.Fprintf().

func FprintfOnColor182 added in v1.8.0

func FprintfOnColor182(w io.Writer, format string, args ...interface{})

FprintfOnColor182 wraps OnColor182 and fmt.Fprintf().

func FprintfOnColor183 added in v1.8.0

func FprintfOnColor183(w io.Writer, format string, args ...interface{})

FprintfOnColor183 wraps OnColor183 and fmt.Fprintf().

func FprintfOnColor184 added in v1.8.0

func FprintfOnColor184(w io.Writer, format string, args ...interface{})

FprintfOnColor184 wraps OnColor184 and fmt.Fprintf().

func FprintfOnColor185 added in v1.8.0

func FprintfOnColor185(w io.Writer, format string, args ...interface{})

FprintfOnColor185 wraps OnColor185 and fmt.Fprintf().

func FprintfOnColor186 added in v1.8.0

func FprintfOnColor186(w io.Writer, format string, args ...interface{})

FprintfOnColor186 wraps OnColor186 and fmt.Fprintf().

func FprintfOnColor187 added in v1.8.0

func FprintfOnColor187(w io.Writer, format string, args ...interface{})

FprintfOnColor187 wraps OnColor187 and fmt.Fprintf().

func FprintfOnColor188 added in v1.8.0

func FprintfOnColor188(w io.Writer, format string, args ...interface{})

FprintfOnColor188 wraps OnColor188 and fmt.Fprintf().

func FprintfOnColor189 added in v1.8.0

func FprintfOnColor189(w io.Writer, format string, args ...interface{})

FprintfOnColor189 wraps OnColor189 and fmt.Fprintf().

func FprintfOnColor190 added in v1.8.0

func FprintfOnColor190(w io.Writer, format string, args ...interface{})

FprintfOnColor190 wraps OnColor190 and fmt.Fprintf().

func FprintfOnColor191 added in v1.8.0

func FprintfOnColor191(w io.Writer, format string, args ...interface{})

FprintfOnColor191 wraps OnColor191 and fmt.Fprintf().

func FprintfOnColor192 added in v1.8.0

func FprintfOnColor192(w io.Writer, format string, args ...interface{})

FprintfOnColor192 wraps OnColor192 and fmt.Fprintf().

func FprintfOnColor193 added in v1.8.0

func FprintfOnColor193(w io.Writer, format string, args ...interface{})

FprintfOnColor193 wraps OnColor193 and fmt.Fprintf().

func FprintfOnColor194 added in v1.8.0

func FprintfOnColor194(w io.Writer, format string, args ...interface{})

FprintfOnColor194 wraps OnColor194 and fmt.Fprintf().

func FprintfOnColor195 added in v1.8.0

func FprintfOnColor195(w io.Writer, format string, args ...interface{})

FprintfOnColor195 wraps OnColor195 and fmt.Fprintf().

func FprintfOnColor196 added in v1.8.0

func FprintfOnColor196(w io.Writer, format string, args ...interface{})

FprintfOnColor196 wraps OnColor196 and fmt.Fprintf().

func FprintfOnColor197 added in v1.8.0

func FprintfOnColor197(w io.Writer, format string, args ...interface{})

FprintfOnColor197 wraps OnColor197 and fmt.Fprintf().

func FprintfOnColor198 added in v1.8.0

func FprintfOnColor198(w io.Writer, format string, args ...interface{})

FprintfOnColor198 wraps OnColor198 and fmt.Fprintf().

func FprintfOnColor199 added in v1.8.0

func FprintfOnColor199(w io.Writer, format string, args ...interface{})

FprintfOnColor199 wraps OnColor199 and fmt.Fprintf().

func FprintfOnColor200 added in v1.8.0

func FprintfOnColor200(w io.Writer, format string, args ...interface{})

FprintfOnColor200 wraps OnColor200 and fmt.Fprintf().

func FprintfOnColor201 added in v1.8.0

func FprintfOnColor201(w io.Writer, format string, args ...interface{})

FprintfOnColor201 wraps OnColor201 and fmt.Fprintf().

func FprintfOnColor202 added in v1.8.0

func FprintfOnColor202(w io.Writer, format string, args ...interface{})

FprintfOnColor202 wraps OnColor202 and fmt.Fprintf().

func FprintfOnColor203 added in v1.8.0

func FprintfOnColor203(w io.Writer, format string, args ...interface{})

FprintfOnColor203 wraps OnColor203 and fmt.Fprintf().

func FprintfOnColor204 added in v1.8.0

func FprintfOnColor204(w io.Writer, format string, args ...interface{})

FprintfOnColor204 wraps OnColor204 and fmt.Fprintf().

func FprintfOnColor205 added in v1.8.0

func FprintfOnColor205(w io.Writer, format string, args ...interface{})

FprintfOnColor205 wraps OnColor205 and fmt.Fprintf().

func FprintfOnColor206 added in v1.8.0

func FprintfOnColor206(w io.Writer, format string, args ...interface{})

FprintfOnColor206 wraps OnColor206 and fmt.Fprintf().

func FprintfOnColor207 added in v1.8.0

func FprintfOnColor207(w io.Writer, format string, args ...interface{})

FprintfOnColor207 wraps OnColor207 and fmt.Fprintf().

func FprintfOnColor208 added in v1.8.0

func FprintfOnColor208(w io.Writer, format string, args ...interface{})

FprintfOnColor208 wraps OnColor208 and fmt.Fprintf().

func FprintfOnColor209 added in v1.8.0

func FprintfOnColor209(w io.Writer, format string, args ...interface{})

FprintfOnColor209 wraps OnColor209 and fmt.Fprintf().

func FprintfOnColor210 added in v1.8.0

func FprintfOnColor210(w io.Writer, format string, args ...interface{})

FprintfOnColor210 wraps OnColor210 and fmt.Fprintf().

func FprintfOnColor211 added in v1.8.0

func FprintfOnColor211(w io.Writer, format string, args ...interface{})

FprintfOnColor211 wraps OnColor211 and fmt.Fprintf().

func FprintfOnColor212 added in v1.8.0

func FprintfOnColor212(w io.Writer, format string, args ...interface{})

FprintfOnColor212 wraps OnColor212 and fmt.Fprintf().

func FprintfOnColor213 added in v1.8.0

func FprintfOnColor213(w io.Writer, format string, args ...interface{})

FprintfOnColor213 wraps OnColor213 and fmt.Fprintf().

func FprintfOnColor214 added in v1.8.0

func FprintfOnColor214(w io.Writer, format string, args ...interface{})

FprintfOnColor214 wraps OnColor214 and fmt.Fprintf().

func FprintfOnColor215 added in v1.8.0

func FprintfOnColor215(w io.Writer, format string, args ...interface{})

FprintfOnColor215 wraps OnColor215 and fmt.Fprintf().

func FprintfOnColor216 added in v1.8.0

func FprintfOnColor216(w io.Writer, format string, args ...interface{})

FprintfOnColor216 wraps OnColor216 and fmt.Fprintf().

func FprintfOnColor217 added in v1.8.0

func FprintfOnColor217(w io.Writer, format string, args ...interface{})

FprintfOnColor217 wraps OnColor217 and fmt.Fprintf().

func FprintfOnColor218 added in v1.8.0

func FprintfOnColor218(w io.Writer, format string, args ...interface{})

FprintfOnColor218 wraps OnColor218 and fmt.Fprintf().

func FprintfOnColor219 added in v1.8.0

func FprintfOnColor219(w io.Writer, format string, args ...interface{})

FprintfOnColor219 wraps OnColor219 and fmt.Fprintf().

func FprintfOnColor220 added in v1.8.0

func FprintfOnColor220(w io.Writer, format string, args ...interface{})

FprintfOnColor220 wraps OnColor220 and fmt.Fprintf().

func FprintfOnColor221 added in v1.8.0

func FprintfOnColor221(w io.Writer, format string, args ...interface{})

FprintfOnColor221 wraps OnColor221 and fmt.Fprintf().

func FprintfOnColor222 added in v1.8.0

func FprintfOnColor222(w io.Writer, format string, args ...interface{})

FprintfOnColor222 wraps OnColor222 and fmt.Fprintf().

func FprintfOnColor223 added in v1.8.0

func FprintfOnColor223(w io.Writer, format string, args ...interface{})

FprintfOnColor223 wraps OnColor223 and fmt.Fprintf().

func FprintfOnColor224 added in v1.8.0

func FprintfOnColor224(w io.Writer, format string, args ...interface{})

FprintfOnColor224 wraps OnColor224 and fmt.Fprintf().

func FprintfOnColor225 added in v1.8.0

func FprintfOnColor225(w io.Writer, format string, args ...interface{})

FprintfOnColor225 wraps OnColor225 and fmt.Fprintf().

func FprintfOnColor226 added in v1.8.0

func FprintfOnColor226(w io.Writer, format string, args ...interface{})

FprintfOnColor226 wraps OnColor226 and fmt.Fprintf().

func FprintfOnColor227 added in v1.8.0

func FprintfOnColor227(w io.Writer, format string, args ...interface{})

FprintfOnColor227 wraps OnColor227 and fmt.Fprintf().

func FprintfOnColor228 added in v1.8.0

func FprintfOnColor228(w io.Writer, format string, args ...interface{})

FprintfOnColor228 wraps OnColor228 and fmt.Fprintf().

func FprintfOnColor229 added in v1.8.0

func FprintfOnColor229(w io.Writer, format string, args ...interface{})

FprintfOnColor229 wraps OnColor229 and fmt.Fprintf().

func FprintfOnColor230 added in v1.8.0

func FprintfOnColor230(w io.Writer, format string, args ...interface{})

FprintfOnColor230 wraps OnColor230 and fmt.Fprintf().

func FprintfOnColor231 added in v1.8.0

func FprintfOnColor231(w io.Writer, format string, args ...interface{})

FprintfOnColor231 wraps OnColor231 and fmt.Fprintf().

func FprintfOnColor232 added in v1.8.0

func FprintfOnColor232(w io.Writer, format string, args ...interface{})

FprintfOnColor232 wraps OnColor232 and fmt.Fprintf().

func FprintfOnColor233 added in v1.8.0

func FprintfOnColor233(w io.Writer, format string, args ...interface{})

FprintfOnColor233 wraps OnColor233 and fmt.Fprintf().

func FprintfOnColor234 added in v1.8.0

func FprintfOnColor234(w io.Writer, format string, args ...interface{})

FprintfOnColor234 wraps OnColor234 and fmt.Fprintf().

func FprintfOnColor235 added in v1.8.0

func FprintfOnColor235(w io.Writer, format string, args ...interface{})

FprintfOnColor235 wraps OnColor235 and fmt.Fprintf().

func FprintfOnColor236 added in v1.8.0

func FprintfOnColor236(w io.Writer, format string, args ...interface{})

FprintfOnColor236 wraps OnColor236 and fmt.Fprintf().

func FprintfOnColor237 added in v1.8.0

func FprintfOnColor237(w io.Writer, format string, args ...interface{})

FprintfOnColor237 wraps OnColor237 and fmt.Fprintf().

func FprintfOnColor238 added in v1.8.0

func FprintfOnColor238(w io.Writer, format string, args ...interface{})

FprintfOnColor238 wraps OnColor238 and fmt.Fprintf().

func FprintfOnColor239 added in v1.8.0

func FprintfOnColor239(w io.Writer, format string, args ...interface{})

FprintfOnColor239 wraps OnColor239 and fmt.Fprintf().

func FprintfOnColor240 added in v1.8.0

func FprintfOnColor240(w io.Writer, format string, args ...interface{})

FprintfOnColor240 wraps OnColor240 and fmt.Fprintf().

func FprintfOnColor241 added in v1.8.0

func FprintfOnColor241(w io.Writer, format string, args ...interface{})

FprintfOnColor241 wraps OnColor241 and fmt.Fprintf().

func FprintfOnColor242 added in v1.8.0

func FprintfOnColor242(w io.Writer, format string, args ...interface{})

FprintfOnColor242 wraps OnColor242 and fmt.Fprintf().

func FprintfOnColor243 added in v1.8.0

func FprintfOnColor243(w io.Writer, format string, args ...interface{})

FprintfOnColor243 wraps OnColor243 and fmt.Fprintf().

func FprintfOnColor244 added in v1.8.0

func FprintfOnColor244(w io.Writer, format string, args ...interface{})

FprintfOnColor244 wraps OnColor244 and fmt.Fprintf().

func FprintfOnColor245 added in v1.8.0

func FprintfOnColor245(w io.Writer, format string, args ...interface{})

FprintfOnColor245 wraps OnColor245 and fmt.Fprintf().

func FprintfOnColor246 added in v1.8.0

func FprintfOnColor246(w io.Writer, format string, args ...interface{})

FprintfOnColor246 wraps OnColor246 and fmt.Fprintf().

func FprintfOnColor247 added in v1.8.0

func FprintfOnColor247(w io.Writer, format string, args ...interface{})

FprintfOnColor247 wraps OnColor247 and fmt.Fprintf().

func FprintfOnColor248 added in v1.8.0

func FprintfOnColor248(w io.Writer, format string, args ...interface{})

FprintfOnColor248 wraps OnColor248 and fmt.Fprintf().

func FprintfOnColor249 added in v1.8.0

func FprintfOnColor249(w io.Writer, format string, args ...interface{})

FprintfOnColor249 wraps OnColor249 and fmt.Fprintf().

func FprintfOnColor250 added in v1.8.0

func FprintfOnColor250(w io.Writer, format string, args ...interface{})

FprintfOnColor250 wraps OnColor250 and fmt.Fprintf().

func FprintfOnColor251 added in v1.8.0

func FprintfOnColor251(w io.Writer, format string, args ...interface{})

FprintfOnColor251 wraps OnColor251 and fmt.Fprintf().

func FprintfOnColor252 added in v1.8.0

func FprintfOnColor252(w io.Writer, format string, args ...interface{})

FprintfOnColor252 wraps OnColor252 and fmt.Fprintf().

func FprintfOnColor253 added in v1.8.0

func FprintfOnColor253(w io.Writer, format string, args ...interface{})

FprintfOnColor253 wraps OnColor253 and fmt.Fprintf().

func FprintfOnColor254 added in v1.8.0

func FprintfOnColor254(w io.Writer, format string, args ...interface{})

FprintfOnColor254 wraps OnColor254 and fmt.Fprintf().

func FprintfOnColor255 added in v1.8.0

func FprintfOnColor255(w io.Writer, format string, args ...interface{})

FprintfOnColor255 wraps OnColor255 and fmt.Fprintf().

func FprintfOnCyan added in v1.8.0

func FprintfOnCyan(w io.Writer, format string, args ...interface{})

FprintfOnCyan wraps OnCyan and fmt.Fprintf().

func FprintfOnDefault added in v1.8.0

func FprintfOnDefault(w io.Writer, format string, args ...interface{})

FprintfOnDefault wraps OnDefault and fmt.Fprintf().

func FprintfOnGreen added in v1.8.0

func FprintfOnGreen(w io.Writer, format string, args ...interface{})

FprintfOnGreen wraps OnGreen and fmt.Fprintf().

func FprintfOnHex added in v1.8.0

func FprintfOnHex(w io.Writer, hex string, format string, args ...interface{})

FprintfOnHex wraps OnHex and fmt.Fprintf().

func FprintfOnLightBlack added in v1.8.0

func FprintfOnLightBlack(w io.Writer, format string, args ...interface{})

FprintfOnLightBlack wraps OnLightBlack and fmt.Fprintf().

func FprintfOnLightBlue added in v1.8.0

func FprintfOnLightBlue(w io.Writer, format string, args ...interface{})

FprintfOnLightBlue wraps OnLightBlue and fmt.Fprintf().

func FprintfOnLightCyan added in v1.8.0

func FprintfOnLightCyan(w io.Writer, format string, args ...interface{})

FprintfOnLightCyan wraps OnLightCyan and fmt.Fprintf().

func FprintfOnLightGreen added in v1.8.0

func FprintfOnLightGreen(w io.Writer, format string, args ...interface{})

FprintfOnLightGreen wraps OnLightGreen and fmt.Fprintf().

func FprintfOnLightMagenta added in v1.8.0

func FprintfOnLightMagenta(w io.Writer, format string, args ...interface{})

FprintfOnLightMagenta wraps OnLightMagenta and fmt.Fprintf().

func FprintfOnLightRed added in v1.8.0

func FprintfOnLightRed(w io.Writer, format string, args ...interface{})

FprintfOnLightRed wraps OnLightRed and fmt.Fprintf().

func FprintfOnLightWhite added in v1.8.0

func FprintfOnLightWhite(w io.Writer, format string, args ...interface{})

FprintfOnLightWhite wraps OnLightWhite and fmt.Fprintf().

func FprintfOnLightYellow added in v1.8.0

func FprintfOnLightYellow(w io.Writer, format string, args ...interface{})

FprintfOnLightYellow wraps OnLightYellow and fmt.Fprintf().

func FprintfOnMagenta added in v1.8.0

func FprintfOnMagenta(w io.Writer, format string, args ...interface{})

FprintfOnMagenta wraps OnMagenta and fmt.Fprintf().

func FprintfOnRainbow added in v1.8.0

func FprintfOnRainbow(w io.Writer, format string, args ...interface{})

FprintfOnRainbow wraps OnRainbow and fmt.Fprintf().

func FprintfOnRed added in v1.8.0

func FprintfOnRed(w io.Writer, format string, args ...interface{})

FprintfOnRed wraps OnRed and fmt.Fprintf().

func FprintfOnWhite added in v1.8.0

func FprintfOnWhite(w io.Writer, format string, args ...interface{})

FprintfOnWhite wraps OnWhite and fmt.Fprintf().

func FprintfOnYellow added in v1.8.0

func FprintfOnYellow(w io.Writer, format string, args ...interface{})

FprintfOnYellow wraps OnYellow and fmt.Fprintf().

func FprintfPlain added in v1.8.0

func FprintfPlain(w io.Writer, format string, args ...interface{})

FprintfPlain wraps Plain and fmt.Fprintf().

func FprintfRainbow added in v1.8.0

func FprintfRainbow(w io.Writer, format string, args ...interface{})

FprintfRainbow wraps Rainbow and fmt.Fprintf().

func FprintfRed added in v1.8.0

func FprintfRed(w io.Writer, format string, args ...interface{})

FprintfRed wraps Red and fmt.Fprintf().

func FprintfReset added in v1.8.0

func FprintfReset(w io.Writer, format string, args ...interface{})

FprintfReset wraps Reset and fmt.Fprintf().

func FprintfStrikethrough added in v1.8.0

func FprintfStrikethrough(w io.Writer, format string, args ...interface{})

FprintfStrikethrough wraps Strikethrough and fmt.Fprintf().

func FprintfSwap added in v1.8.0

func FprintfSwap(w io.Writer, format string, args ...interface{})

FprintfSwap wraps Swap and fmt.Fprintf().

func FprintfUnderline added in v1.8.0

func FprintfUnderline(w io.Writer, format string, args ...interface{})

FprintfUnderline wraps Underline and fmt.Fprintf().

func FprintfWhite added in v1.8.0

func FprintfWhite(w io.Writer, format string, args ...interface{})

FprintfWhite wraps White and fmt.Fprintf().

func FprintfWrap added in v1.8.0

func FprintfWrap(w io.Writer, width int, format string, args ...interface{})

FprintfWrap wraps Wrap and fmt.Fprintf().

func FprintfYellow added in v1.8.0

func FprintfYellow(w io.Writer, format string, args ...interface{})

FprintfYellow wraps Yellow and fmt.Fprintf().

func Fprintln added in v1.7.0

func Fprintln(w io.Writer, args ...interface{}) (int, error)

Fprintln wraps fmt.Fprintln().

func FprintlnBlack added in v1.8.0

func FprintlnBlack(w io.Writer, str string)

FprintlnBlack wraps Black() and fmt.Fprintln().

func FprintlnBlink(w io.Writer, str string)

FprintlnBlink wraps Blink() and fmt.Fprintln().

func FprintlnBlinkRapid added in v1.8.0

func FprintlnBlinkRapid(w io.Writer, str string)

FprintlnBlinkRapid wraps BlinkRapid() and fmt.Fprintln().

func FprintlnBlinkSlow added in v1.8.0

func FprintlnBlinkSlow(w io.Writer, str string)

FprintlnBlinkSlow wraps BlinkSlow() and fmt.Fprintln().

func FprintlnBlue added in v1.8.0

func FprintlnBlue(w io.Writer, str string)

FprintlnBlue wraps Blue() and fmt.Fprintln().

func FprintlnBold added in v1.8.0

func FprintlnBold(w io.Writer, str string)

FprintlnBold wraps Bold() and fmt.Fprintln().

func FprintlnColor000 added in v1.8.0

func FprintlnColor000(w io.Writer, str string)

FprintlnColor000 wraps Color000() and fmt.Fprintln().

func FprintlnColor001 added in v1.8.0

func FprintlnColor001(w io.Writer, str string)

FprintlnColor001 wraps Color001() and fmt.Fprintln().

func FprintlnColor002 added in v1.8.0

func FprintlnColor002(w io.Writer, str string)

FprintlnColor002 wraps Color002() and fmt.Fprintln().

func FprintlnColor003 added in v1.8.0

func FprintlnColor003(w io.Writer, str string)

FprintlnColor003 wraps Color003() and fmt.Fprintln().

func FprintlnColor004 added in v1.8.0

func FprintlnColor004(w io.Writer, str string)

FprintlnColor004 wraps Color004() and fmt.Fprintln().

func FprintlnColor005 added in v1.8.0

func FprintlnColor005(w io.Writer, str string)

FprintlnColor005 wraps Color005() and fmt.Fprintln().

func FprintlnColor006 added in v1.8.0

func FprintlnColor006(w io.Writer, str string)

FprintlnColor006 wraps Color006() and fmt.Fprintln().

func FprintlnColor007 added in v1.8.0

func FprintlnColor007(w io.Writer, str string)

FprintlnColor007 wraps Color007() and fmt.Fprintln().

func FprintlnColor008 added in v1.8.0

func FprintlnColor008(w io.Writer, str string)

FprintlnColor008 wraps Color008() and fmt.Fprintln().

func FprintlnColor009 added in v1.8.0

func FprintlnColor009(w io.Writer, str string)

FprintlnColor009 wraps Color009() and fmt.Fprintln().

func FprintlnColor010 added in v1.8.0

func FprintlnColor010(w io.Writer, str string)

FprintlnColor010 wraps Color010() and fmt.Fprintln().

func FprintlnColor011 added in v1.8.0

func FprintlnColor011(w io.Writer, str string)

FprintlnColor011 wraps Color011() and fmt.Fprintln().

func FprintlnColor012 added in v1.8.0

func FprintlnColor012(w io.Writer, str string)

FprintlnColor012 wraps Color012() and fmt.Fprintln().

func FprintlnColor013 added in v1.8.0

func FprintlnColor013(w io.Writer, str string)

FprintlnColor013 wraps Color013() and fmt.Fprintln().

func FprintlnColor014 added in v1.8.0

func FprintlnColor014(w io.Writer, str string)

FprintlnColor014 wraps Color014() and fmt.Fprintln().

func FprintlnColor015 added in v1.8.0

func FprintlnColor015(w io.Writer, str string)

FprintlnColor015 wraps Color015() and fmt.Fprintln().

func FprintlnColor016 added in v1.8.0

func FprintlnColor016(w io.Writer, str string)

FprintlnColor016 wraps Color016() and fmt.Fprintln().

func FprintlnColor017 added in v1.8.0

func FprintlnColor017(w io.Writer, str string)

FprintlnColor017 wraps Color017() and fmt.Fprintln().

func FprintlnColor018 added in v1.8.0

func FprintlnColor018(w io.Writer, str string)

FprintlnColor018 wraps Color018() and fmt.Fprintln().

func FprintlnColor019 added in v1.8.0

func FprintlnColor019(w io.Writer, str string)

FprintlnColor019 wraps Color019() and fmt.Fprintln().

func FprintlnColor020 added in v1.8.0

func FprintlnColor020(w io.Writer, str string)

FprintlnColor020 wraps Color020() and fmt.Fprintln().

func FprintlnColor021 added in v1.8.0

func FprintlnColor021(w io.Writer, str string)

FprintlnColor021 wraps Color021() and fmt.Fprintln().

func FprintlnColor022 added in v1.8.0

func FprintlnColor022(w io.Writer, str string)

FprintlnColor022 wraps Color022() and fmt.Fprintln().

func FprintlnColor023 added in v1.8.0

func FprintlnColor023(w io.Writer, str string)

FprintlnColor023 wraps Color023() and fmt.Fprintln().

func FprintlnColor024 added in v1.8.0

func FprintlnColor024(w io.Writer, str string)

FprintlnColor024 wraps Color024() and fmt.Fprintln().

func FprintlnColor025 added in v1.8.0

func FprintlnColor025(w io.Writer, str string)

FprintlnColor025 wraps Color025() and fmt.Fprintln().

func FprintlnColor026 added in v1.8.0

func FprintlnColor026(w io.Writer, str string)

FprintlnColor026 wraps Color026() and fmt.Fprintln().

func FprintlnColor027 added in v1.8.0

func FprintlnColor027(w io.Writer, str string)

FprintlnColor027 wraps Color027() and fmt.Fprintln().

func FprintlnColor028 added in v1.8.0

func FprintlnColor028(w io.Writer, str string)

FprintlnColor028 wraps Color028() and fmt.Fprintln().

func FprintlnColor029 added in v1.8.0

func FprintlnColor029(w io.Writer, str string)

FprintlnColor029 wraps Color029() and fmt.Fprintln().

func FprintlnColor030 added in v1.8.0

func FprintlnColor030(w io.Writer, str string)

FprintlnColor030 wraps Color030() and fmt.Fprintln().

func FprintlnColor031 added in v1.8.0

func FprintlnColor031(w io.Writer, str string)

FprintlnColor031 wraps Color031() and fmt.Fprintln().

func FprintlnColor032 added in v1.8.0

func FprintlnColor032(w io.Writer, str string)

FprintlnColor032 wraps Color032() and fmt.Fprintln().

func FprintlnColor033 added in v1.8.0

func FprintlnColor033(w io.Writer, str string)

FprintlnColor033 wraps Color033() and fmt.Fprintln().

func FprintlnColor034 added in v1.8.0

func FprintlnColor034(w io.Writer, str string)

FprintlnColor034 wraps Color034() and fmt.Fprintln().

func FprintlnColor035 added in v1.8.0

func FprintlnColor035(w io.Writer, str string)

FprintlnColor035 wraps Color035() and fmt.Fprintln().

func FprintlnColor036 added in v1.8.0

func FprintlnColor036(w io.Writer, str string)

FprintlnColor036 wraps Color036() and fmt.Fprintln().

func FprintlnColor037 added in v1.8.0

func FprintlnColor037(w io.Writer, str string)

FprintlnColor037 wraps Color037() and fmt.Fprintln().

func FprintlnColor038 added in v1.8.0

func FprintlnColor038(w io.Writer, str string)

FprintlnColor038 wraps Color038() and fmt.Fprintln().

func FprintlnColor039 added in v1.8.0

func FprintlnColor039(w io.Writer, str string)

FprintlnColor039 wraps Color039() and fmt.Fprintln().

func FprintlnColor040 added in v1.8.0

func FprintlnColor040(w io.Writer, str string)

FprintlnColor040 wraps Color040() and fmt.Fprintln().

func FprintlnColor041 added in v1.8.0

func FprintlnColor041(w io.Writer, str string)

FprintlnColor041 wraps Color041() and fmt.Fprintln().

func FprintlnColor042 added in v1.8.0

func FprintlnColor042(w io.Writer, str string)

FprintlnColor042 wraps Color042() and fmt.Fprintln().

func FprintlnColor043 added in v1.8.0

func FprintlnColor043(w io.Writer, str string)

FprintlnColor043 wraps Color043() and fmt.Fprintln().

func FprintlnColor044 added in v1.8.0

func FprintlnColor044(w io.Writer, str string)

FprintlnColor044 wraps Color044() and fmt.Fprintln().

func FprintlnColor045 added in v1.8.0

func FprintlnColor045(w io.Writer, str string)

FprintlnColor045 wraps Color045() and fmt.Fprintln().

func FprintlnColor046 added in v1.8.0

func FprintlnColor046(w io.Writer, str string)

FprintlnColor046 wraps Color046() and fmt.Fprintln().

func FprintlnColor047 added in v1.8.0

func FprintlnColor047(w io.Writer, str string)

FprintlnColor047 wraps Color047() and fmt.Fprintln().

func FprintlnColor048 added in v1.8.0

func FprintlnColor048(w io.Writer, str string)

FprintlnColor048 wraps Color048() and fmt.Fprintln().

func FprintlnColor049 added in v1.8.0

func FprintlnColor049(w io.Writer, str string)

FprintlnColor049 wraps Color049() and fmt.Fprintln().

func FprintlnColor050 added in v1.8.0

func FprintlnColor050(w io.Writer, str string)

FprintlnColor050 wraps Color050() and fmt.Fprintln().

func FprintlnColor051 added in v1.8.0

func FprintlnColor051(w io.Writer, str string)

FprintlnColor051 wraps Color051() and fmt.Fprintln().

func FprintlnColor052 added in v1.8.0

func FprintlnColor052(w io.Writer, str string)

FprintlnColor052 wraps Color052() and fmt.Fprintln().

func FprintlnColor053 added in v1.8.0

func FprintlnColor053(w io.Writer, str string)

FprintlnColor053 wraps Color053() and fmt.Fprintln().

func FprintlnColor054 added in v1.8.0

func FprintlnColor054(w io.Writer, str string)

FprintlnColor054 wraps Color054() and fmt.Fprintln().

func FprintlnColor055 added in v1.8.0

func FprintlnColor055(w io.Writer, str string)

FprintlnColor055 wraps Color055() and fmt.Fprintln().

func FprintlnColor056 added in v1.8.0

func FprintlnColor056(w io.Writer, str string)

FprintlnColor056 wraps Color056() and fmt.Fprintln().

func FprintlnColor057 added in v1.8.0

func FprintlnColor057(w io.Writer, str string)

FprintlnColor057 wraps Color057() and fmt.Fprintln().

func FprintlnColor058 added in v1.8.0

func FprintlnColor058(w io.Writer, str string)

FprintlnColor058 wraps Color058() and fmt.Fprintln().

func FprintlnColor059 added in v1.8.0

func FprintlnColor059(w io.Writer, str string)

FprintlnColor059 wraps Color059() and fmt.Fprintln().

func FprintlnColor060 added in v1.8.0

func FprintlnColor060(w io.Writer, str string)

FprintlnColor060 wraps Color060() and fmt.Fprintln().

func FprintlnColor061 added in v1.8.0

func FprintlnColor061(w io.Writer, str string)

FprintlnColor061 wraps Color061() and fmt.Fprintln().

func FprintlnColor062 added in v1.8.0

func FprintlnColor062(w io.Writer, str string)

FprintlnColor062 wraps Color062() and fmt.Fprintln().

func FprintlnColor063 added in v1.8.0

func FprintlnColor063(w io.Writer, str string)

FprintlnColor063 wraps Color063() and fmt.Fprintln().

func FprintlnColor064 added in v1.8.0

func FprintlnColor064(w io.Writer, str string)

FprintlnColor064 wraps Color064() and fmt.Fprintln().

func FprintlnColor065 added in v1.8.0

func FprintlnColor065(w io.Writer, str string)

FprintlnColor065 wraps Color065() and fmt.Fprintln().

func FprintlnColor066 added in v1.8.0

func FprintlnColor066(w io.Writer, str string)

FprintlnColor066 wraps Color066() and fmt.Fprintln().

func FprintlnColor067 added in v1.8.0

func FprintlnColor067(w io.Writer, str string)

FprintlnColor067 wraps Color067() and fmt.Fprintln().

func FprintlnColor068 added in v1.8.0

func FprintlnColor068(w io.Writer, str string)

FprintlnColor068 wraps Color068() and fmt.Fprintln().

func FprintlnColor069 added in v1.8.0

func FprintlnColor069(w io.Writer, str string)

FprintlnColor069 wraps Color069() and fmt.Fprintln().

func FprintlnColor070 added in v1.8.0

func FprintlnColor070(w io.Writer, str string)

FprintlnColor070 wraps Color070() and fmt.Fprintln().

func FprintlnColor071 added in v1.8.0

func FprintlnColor071(w io.Writer, str string)

FprintlnColor071 wraps Color071() and fmt.Fprintln().

func FprintlnColor072 added in v1.8.0

func FprintlnColor072(w io.Writer, str string)

FprintlnColor072 wraps Color072() and fmt.Fprintln().

func FprintlnColor073 added in v1.8.0

func FprintlnColor073(w io.Writer, str string)

FprintlnColor073 wraps Color073() and fmt.Fprintln().

func FprintlnColor074 added in v1.8.0

func FprintlnColor074(w io.Writer, str string)

FprintlnColor074 wraps Color074() and fmt.Fprintln().

func FprintlnColor075 added in v1.8.0

func FprintlnColor075(w io.Writer, str string)

FprintlnColor075 wraps Color075() and fmt.Fprintln().

func FprintlnColor076 added in v1.8.0

func FprintlnColor076(w io.Writer, str string)

FprintlnColor076 wraps Color076() and fmt.Fprintln().

func FprintlnColor077 added in v1.8.0

func FprintlnColor077(w io.Writer, str string)

FprintlnColor077 wraps Color077() and fmt.Fprintln().

func FprintlnColor078 added in v1.8.0

func FprintlnColor078(w io.Writer, str string)

FprintlnColor078 wraps Color078() and fmt.Fprintln().

func FprintlnColor079 added in v1.8.0

func FprintlnColor079(w io.Writer, str string)

FprintlnColor079 wraps Color079() and fmt.Fprintln().

func FprintlnColor080 added in v1.8.0

func FprintlnColor080(w io.Writer, str string)

FprintlnColor080 wraps Color080() and fmt.Fprintln().

func FprintlnColor081 added in v1.8.0

func FprintlnColor081(w io.Writer, str string)

FprintlnColor081 wraps Color081() and fmt.Fprintln().

func FprintlnColor082 added in v1.8.0

func FprintlnColor082(w io.Writer, str string)

FprintlnColor082 wraps Color082() and fmt.Fprintln().

func FprintlnColor083 added in v1.8.0

func FprintlnColor083(w io.Writer, str string)

FprintlnColor083 wraps Color083() and fmt.Fprintln().

func FprintlnColor084 added in v1.8.0

func FprintlnColor084(w io.Writer, str string)

FprintlnColor084 wraps Color084() and fmt.Fprintln().

func FprintlnColor085 added in v1.8.0

func FprintlnColor085(w io.Writer, str string)

FprintlnColor085 wraps Color085() and fmt.Fprintln().

func FprintlnColor086 added in v1.8.0

func FprintlnColor086(w io.Writer, str string)

FprintlnColor086 wraps Color086() and fmt.Fprintln().

func FprintlnColor087 added in v1.8.0

func FprintlnColor087(w io.Writer, str string)

FprintlnColor087 wraps Color087() and fmt.Fprintln().

func FprintlnColor088 added in v1.8.0

func FprintlnColor088(w io.Writer, str string)

FprintlnColor088 wraps Color088() and fmt.Fprintln().

func FprintlnColor089 added in v1.8.0

func FprintlnColor089(w io.Writer, str string)

FprintlnColor089 wraps Color089() and fmt.Fprintln().

func FprintlnColor090 added in v1.8.0

func FprintlnColor090(w io.Writer, str string)

FprintlnColor090 wraps Color090() and fmt.Fprintln().

func FprintlnColor091 added in v1.8.0

func FprintlnColor091(w io.Writer, str string)

FprintlnColor091 wraps Color091() and fmt.Fprintln().

func FprintlnColor092 added in v1.8.0

func FprintlnColor092(w io.Writer, str string)

FprintlnColor092 wraps Color092() and fmt.Fprintln().

func FprintlnColor093 added in v1.8.0

func FprintlnColor093(w io.Writer, str string)

FprintlnColor093 wraps Color093() and fmt.Fprintln().

func FprintlnColor094 added in v1.8.0

func FprintlnColor094(w io.Writer, str string)

FprintlnColor094 wraps Color094() and fmt.Fprintln().

func FprintlnColor095 added in v1.8.0

func FprintlnColor095(w io.Writer, str string)

FprintlnColor095 wraps Color095() and fmt.Fprintln().

func FprintlnColor096 added in v1.8.0

func FprintlnColor096(w io.Writer, str string)

FprintlnColor096 wraps Color096() and fmt.Fprintln().

func FprintlnColor097 added in v1.8.0

func FprintlnColor097(w io.Writer, str string)

FprintlnColor097 wraps Color097() and fmt.Fprintln().

func FprintlnColor098 added in v1.8.0

func FprintlnColor098(w io.Writer, str string)

FprintlnColor098 wraps Color098() and fmt.Fprintln().

func FprintlnColor099 added in v1.8.0

func FprintlnColor099(w io.Writer, str string)

FprintlnColor099 wraps Color099() and fmt.Fprintln().

func FprintlnColor100 added in v1.8.0

func FprintlnColor100(w io.Writer, str string)

FprintlnColor100 wraps Color100() and fmt.Fprintln().

func FprintlnColor101 added in v1.8.0

func FprintlnColor101(w io.Writer, str string)

FprintlnColor101 wraps Color101() and fmt.Fprintln().

func FprintlnColor102 added in v1.8.0

func FprintlnColor102(w io.Writer, str string)

FprintlnColor102 wraps Color102() and fmt.Fprintln().

func FprintlnColor103 added in v1.8.0

func FprintlnColor103(w io.Writer, str string)

FprintlnColor103 wraps Color103() and fmt.Fprintln().

func FprintlnColor104 added in v1.8.0

func FprintlnColor104(w io.Writer, str string)

FprintlnColor104 wraps Color104() and fmt.Fprintln().

func FprintlnColor105 added in v1.8.0

func FprintlnColor105(w io.Writer, str string)

FprintlnColor105 wraps Color105() and fmt.Fprintln().

func FprintlnColor106 added in v1.8.0

func FprintlnColor106(w io.Writer, str string)

FprintlnColor106 wraps Color106() and fmt.Fprintln().

func FprintlnColor107 added in v1.8.0

func FprintlnColor107(w io.Writer, str string)

FprintlnColor107 wraps Color107() and fmt.Fprintln().

func FprintlnColor108 added in v1.8.0

func FprintlnColor108(w io.Writer, str string)

FprintlnColor108 wraps Color108() and fmt.Fprintln().

func FprintlnColor109 added in v1.8.0

func FprintlnColor109(w io.Writer, str string)

FprintlnColor109 wraps Color109() and fmt.Fprintln().

func FprintlnColor110 added in v1.8.0

func FprintlnColor110(w io.Writer, str string)

FprintlnColor110 wraps Color110() and fmt.Fprintln().

func FprintlnColor111 added in v1.8.0

func FprintlnColor111(w io.Writer, str string)

FprintlnColor111 wraps Color111() and fmt.Fprintln().

func FprintlnColor112 added in v1.8.0

func FprintlnColor112(w io.Writer, str string)

FprintlnColor112 wraps Color112() and fmt.Fprintln().

func FprintlnColor113 added in v1.8.0

func FprintlnColor113(w io.Writer, str string)

FprintlnColor113 wraps Color113() and fmt.Fprintln().

func FprintlnColor114 added in v1.8.0

func FprintlnColor114(w io.Writer, str string)

FprintlnColor114 wraps Color114() and fmt.Fprintln().

func FprintlnColor115 added in v1.8.0

func FprintlnColor115(w io.Writer, str string)

FprintlnColor115 wraps Color115() and fmt.Fprintln().

func FprintlnColor116 added in v1.8.0

func FprintlnColor116(w io.Writer, str string)

FprintlnColor116 wraps Color116() and fmt.Fprintln().

func FprintlnColor117 added in v1.8.0

func FprintlnColor117(w io.Writer, str string)

FprintlnColor117 wraps Color117() and fmt.Fprintln().

func FprintlnColor118 added in v1.8.0

func FprintlnColor118(w io.Writer, str string)

FprintlnColor118 wraps Color118() and fmt.Fprintln().

func FprintlnColor119 added in v1.8.0

func FprintlnColor119(w io.Writer, str string)

FprintlnColor119 wraps Color119() and fmt.Fprintln().

func FprintlnColor120 added in v1.8.0

func FprintlnColor120(w io.Writer, str string)

FprintlnColor120 wraps Color120() and fmt.Fprintln().

func FprintlnColor121 added in v1.8.0

func FprintlnColor121(w io.Writer, str string)

FprintlnColor121 wraps Color121() and fmt.Fprintln().

func FprintlnColor122 added in v1.8.0

func FprintlnColor122(w io.Writer, str string)

FprintlnColor122 wraps Color122() and fmt.Fprintln().

func FprintlnColor123 added in v1.8.0

func FprintlnColor123(w io.Writer, str string)

FprintlnColor123 wraps Color123() and fmt.Fprintln().

func FprintlnColor124 added in v1.8.0

func FprintlnColor124(w io.Writer, str string)

FprintlnColor124 wraps Color124() and fmt.Fprintln().

func FprintlnColor125 added in v1.8.0

func FprintlnColor125(w io.Writer, str string)

FprintlnColor125 wraps Color125() and fmt.Fprintln().

func FprintlnColor126 added in v1.8.0

func FprintlnColor126(w io.Writer, str string)

FprintlnColor126 wraps Color126() and fmt.Fprintln().

func FprintlnColor127 added in v1.8.0

func FprintlnColor127(w io.Writer, str string)

FprintlnColor127 wraps Color127() and fmt.Fprintln().

func FprintlnColor128 added in v1.8.0

func FprintlnColor128(w io.Writer, str string)

FprintlnColor128 wraps Color128() and fmt.Fprintln().

func FprintlnColor129 added in v1.8.0

func FprintlnColor129(w io.Writer, str string)

FprintlnColor129 wraps Color129() and fmt.Fprintln().

func FprintlnColor130 added in v1.8.0

func FprintlnColor130(w io.Writer, str string)

FprintlnColor130 wraps Color130() and fmt.Fprintln().

func FprintlnColor131 added in v1.8.0

func FprintlnColor131(w io.Writer, str string)

FprintlnColor131 wraps Color131() and fmt.Fprintln().

func FprintlnColor132 added in v1.8.0

func FprintlnColor132(w io.Writer, str string)

FprintlnColor132 wraps Color132() and fmt.Fprintln().

func FprintlnColor133 added in v1.8.0

func FprintlnColor133(w io.Writer, str string)

FprintlnColor133 wraps Color133() and fmt.Fprintln().

func FprintlnColor134 added in v1.8.0

func FprintlnColor134(w io.Writer, str string)

FprintlnColor134 wraps Color134() and fmt.Fprintln().

func FprintlnColor135 added in v1.8.0

func FprintlnColor135(w io.Writer, str string)

FprintlnColor135 wraps Color135() and fmt.Fprintln().

func FprintlnColor136 added in v1.8.0

func FprintlnColor136(w io.Writer, str string)

FprintlnColor136 wraps Color136() and fmt.Fprintln().

func FprintlnColor137 added in v1.8.0

func FprintlnColor137(w io.Writer, str string)

FprintlnColor137 wraps Color137() and fmt.Fprintln().

func FprintlnColor138 added in v1.8.0

func FprintlnColor138(w io.Writer, str string)

FprintlnColor138 wraps Color138() and fmt.Fprintln().

func FprintlnColor139 added in v1.8.0

func FprintlnColor139(w io.Writer, str string)

FprintlnColor139 wraps Color139() and fmt.Fprintln().

func FprintlnColor140 added in v1.8.0

func FprintlnColor140(w io.Writer, str string)

FprintlnColor140 wraps Color140() and fmt.Fprintln().

func FprintlnColor141 added in v1.8.0

func FprintlnColor141(w io.Writer, str string)

FprintlnColor141 wraps Color141() and fmt.Fprintln().

func FprintlnColor142 added in v1.8.0

func FprintlnColor142(w io.Writer, str string)

FprintlnColor142 wraps Color142() and fmt.Fprintln().

func FprintlnColor143 added in v1.8.0

func FprintlnColor143(w io.Writer, str string)

FprintlnColor143 wraps Color143() and fmt.Fprintln().

func FprintlnColor144 added in v1.8.0

func FprintlnColor144(w io.Writer, str string)

FprintlnColor144 wraps Color144() and fmt.Fprintln().

func FprintlnColor145 added in v1.8.0

func FprintlnColor145(w io.Writer, str string)

FprintlnColor145 wraps Color145() and fmt.Fprintln().

func FprintlnColor146 added in v1.8.0

func FprintlnColor146(w io.Writer, str string)

FprintlnColor146 wraps Color146() and fmt.Fprintln().

func FprintlnColor147 added in v1.8.0

func FprintlnColor147(w io.Writer, str string)

FprintlnColor147 wraps Color147() and fmt.Fprintln().

func FprintlnColor148 added in v1.8.0

func FprintlnColor148(w io.Writer, str string)

FprintlnColor148 wraps Color148() and fmt.Fprintln().

func FprintlnColor149 added in v1.8.0

func FprintlnColor149(w io.Writer, str string)

FprintlnColor149 wraps Color149() and fmt.Fprintln().

func FprintlnColor150 added in v1.8.0

func FprintlnColor150(w io.Writer, str string)

FprintlnColor150 wraps Color150() and fmt.Fprintln().

func FprintlnColor151 added in v1.8.0

func FprintlnColor151(w io.Writer, str string)

FprintlnColor151 wraps Color151() and fmt.Fprintln().

func FprintlnColor152 added in v1.8.0

func FprintlnColor152(w io.Writer, str string)

FprintlnColor152 wraps Color152() and fmt.Fprintln().

func FprintlnColor153 added in v1.8.0

func FprintlnColor153(w io.Writer, str string)

FprintlnColor153 wraps Color153() and fmt.Fprintln().

func FprintlnColor154 added in v1.8.0

func FprintlnColor154(w io.Writer, str string)

FprintlnColor154 wraps Color154() and fmt.Fprintln().

func FprintlnColor155 added in v1.8.0

func FprintlnColor155(w io.Writer, str string)

FprintlnColor155 wraps Color155() and fmt.Fprintln().

func FprintlnColor156 added in v1.8.0

func FprintlnColor156(w io.Writer, str string)

FprintlnColor156 wraps Color156() and fmt.Fprintln().

func FprintlnColor157 added in v1.8.0

func FprintlnColor157(w io.Writer, str string)

FprintlnColor157 wraps Color157() and fmt.Fprintln().

func FprintlnColor158 added in v1.8.0

func FprintlnColor158(w io.Writer, str string)

FprintlnColor158 wraps Color158() and fmt.Fprintln().

func FprintlnColor159 added in v1.8.0

func FprintlnColor159(w io.Writer, str string)

FprintlnColor159 wraps Color159() and fmt.Fprintln().

func FprintlnColor160 added in v1.8.0

func FprintlnColor160(w io.Writer, str string)

FprintlnColor160 wraps Color160() and fmt.Fprintln().

func FprintlnColor161 added in v1.8.0

func FprintlnColor161(w io.Writer, str string)

FprintlnColor161 wraps Color161() and fmt.Fprintln().

func FprintlnColor162 added in v1.8.0

func FprintlnColor162(w io.Writer, str string)

FprintlnColor162 wraps Color162() and fmt.Fprintln().

func FprintlnColor163 added in v1.8.0

func FprintlnColor163(w io.Writer, str string)

FprintlnColor163 wraps Color163() and fmt.Fprintln().

func FprintlnColor164 added in v1.8.0

func FprintlnColor164(w io.Writer, str string)

FprintlnColor164 wraps Color164() and fmt.Fprintln().

func FprintlnColor165 added in v1.8.0

func FprintlnColor165(w io.Writer, str string)

FprintlnColor165 wraps Color165() and fmt.Fprintln().

func FprintlnColor166 added in v1.8.0

func FprintlnColor166(w io.Writer, str string)

FprintlnColor166 wraps Color166() and fmt.Fprintln().

func FprintlnColor167 added in v1.8.0

func FprintlnColor167(w io.Writer, str string)

FprintlnColor167 wraps Color167() and fmt.Fprintln().

func FprintlnColor168 added in v1.8.0

func FprintlnColor168(w io.Writer, str string)

FprintlnColor168 wraps Color168() and fmt.Fprintln().

func FprintlnColor169 added in v1.8.0

func FprintlnColor169(w io.Writer, str string)

FprintlnColor169 wraps Color169() and fmt.Fprintln().

func FprintlnColor170 added in v1.8.0

func FprintlnColor170(w io.Writer, str string)

FprintlnColor170 wraps Color170() and fmt.Fprintln().

func FprintlnColor171 added in v1.8.0

func FprintlnColor171(w io.Writer, str string)

FprintlnColor171 wraps Color171() and fmt.Fprintln().

func FprintlnColor172 added in v1.8.0

func FprintlnColor172(w io.Writer, str string)

FprintlnColor172 wraps Color172() and fmt.Fprintln().

func FprintlnColor173 added in v1.8.0

func FprintlnColor173(w io.Writer, str string)

FprintlnColor173 wraps Color173() and fmt.Fprintln().

func FprintlnColor174 added in v1.8.0

func FprintlnColor174(w io.Writer, str string)

FprintlnColor174 wraps Color174() and fmt.Fprintln().

func FprintlnColor175 added in v1.8.0

func FprintlnColor175(w io.Writer, str string)

FprintlnColor175 wraps Color175() and fmt.Fprintln().

func FprintlnColor176 added in v1.8.0

func FprintlnColor176(w io.Writer, str string)

FprintlnColor176 wraps Color176() and fmt.Fprintln().

func FprintlnColor177 added in v1.8.0

func FprintlnColor177(w io.Writer, str string)

FprintlnColor177 wraps Color177() and fmt.Fprintln().

func FprintlnColor178 added in v1.8.0

func FprintlnColor178(w io.Writer, str string)

FprintlnColor178 wraps Color178() and fmt.Fprintln().

func FprintlnColor179 added in v1.8.0

func FprintlnColor179(w io.Writer, str string)

FprintlnColor179 wraps Color179() and fmt.Fprintln().

func FprintlnColor180 added in v1.8.0

func FprintlnColor180(w io.Writer, str string)

FprintlnColor180 wraps Color180() and fmt.Fprintln().

func FprintlnColor181 added in v1.8.0

func FprintlnColor181(w io.Writer, str string)

FprintlnColor181 wraps Color181() and fmt.Fprintln().

func FprintlnColor182 added in v1.8.0

func FprintlnColor182(w io.Writer, str string)

FprintlnColor182 wraps Color182() and fmt.Fprintln().

func FprintlnColor183 added in v1.8.0

func FprintlnColor183(w io.Writer, str string)

FprintlnColor183 wraps Color183() and fmt.Fprintln().

func FprintlnColor184 added in v1.8.0

func FprintlnColor184(w io.Writer, str string)

FprintlnColor184 wraps Color184() and fmt.Fprintln().

func FprintlnColor185 added in v1.8.0

func FprintlnColor185(w io.Writer, str string)

FprintlnColor185 wraps Color185() and fmt.Fprintln().

func FprintlnColor186 added in v1.8.0

func FprintlnColor186(w io.Writer, str string)

FprintlnColor186 wraps Color186() and fmt.Fprintln().

func FprintlnColor187 added in v1.8.0

func FprintlnColor187(w io.Writer, str string)

FprintlnColor187 wraps Color187() and fmt.Fprintln().

func FprintlnColor188 added in v1.8.0

func FprintlnColor188(w io.Writer, str string)

FprintlnColor188 wraps Color188() and fmt.Fprintln().

func FprintlnColor189 added in v1.8.0

func FprintlnColor189(w io.Writer, str string)

FprintlnColor189 wraps Color189() and fmt.Fprintln().

func FprintlnColor190 added in v1.8.0

func FprintlnColor190(w io.Writer, str string)

FprintlnColor190 wraps Color190() and fmt.Fprintln().

func FprintlnColor191 added in v1.8.0

func FprintlnColor191(w io.Writer, str string)

FprintlnColor191 wraps Color191() and fmt.Fprintln().

func FprintlnColor192 added in v1.8.0

func FprintlnColor192(w io.Writer, str string)

FprintlnColor192 wraps Color192() and fmt.Fprintln().

func FprintlnColor193 added in v1.8.0

func FprintlnColor193(w io.Writer, str string)

FprintlnColor193 wraps Color193() and fmt.Fprintln().

func FprintlnColor194 added in v1.8.0

func FprintlnColor194(w io.Writer, str string)

FprintlnColor194 wraps Color194() and fmt.Fprintln().

func FprintlnColor195 added in v1.8.0

func FprintlnColor195(w io.Writer, str string)

FprintlnColor195 wraps Color195() and fmt.Fprintln().

func FprintlnColor196 added in v1.8.0

func FprintlnColor196(w io.Writer, str string)

FprintlnColor196 wraps Color196() and fmt.Fprintln().

func FprintlnColor197 added in v1.8.0

func FprintlnColor197(w io.Writer, str string)

FprintlnColor197 wraps Color197() and fmt.Fprintln().

func FprintlnColor198 added in v1.8.0

func FprintlnColor198(w io.Writer, str string)

FprintlnColor198 wraps Color198() and fmt.Fprintln().

func FprintlnColor199 added in v1.8.0

func FprintlnColor199(w io.Writer, str string)

FprintlnColor199 wraps Color199() and fmt.Fprintln().

func FprintlnColor200 added in v1.8.0

func FprintlnColor200(w io.Writer, str string)

FprintlnColor200 wraps Color200() and fmt.Fprintln().

func FprintlnColor201 added in v1.8.0

func FprintlnColor201(w io.Writer, str string)

FprintlnColor201 wraps Color201() and fmt.Fprintln().

func FprintlnColor202 added in v1.8.0

func FprintlnColor202(w io.Writer, str string)

FprintlnColor202 wraps Color202() and fmt.Fprintln().

func FprintlnColor203 added in v1.8.0

func FprintlnColor203(w io.Writer, str string)

FprintlnColor203 wraps Color203() and fmt.Fprintln().

func FprintlnColor204 added in v1.8.0

func FprintlnColor204(w io.Writer, str string)

FprintlnColor204 wraps Color204() and fmt.Fprintln().

func FprintlnColor205 added in v1.8.0

func FprintlnColor205(w io.Writer, str string)

FprintlnColor205 wraps Color205() and fmt.Fprintln().

func FprintlnColor206 added in v1.8.0

func FprintlnColor206(w io.Writer, str string)

FprintlnColor206 wraps Color206() and fmt.Fprintln().

func FprintlnColor207 added in v1.8.0

func FprintlnColor207(w io.Writer, str string)

FprintlnColor207 wraps Color207() and fmt.Fprintln().

func FprintlnColor208 added in v1.8.0

func FprintlnColor208(w io.Writer, str string)

FprintlnColor208 wraps Color208() and fmt.Fprintln().

func FprintlnColor209 added in v1.8.0

func FprintlnColor209(w io.Writer, str string)

FprintlnColor209 wraps Color209() and fmt.Fprintln().

func FprintlnColor210 added in v1.8.0

func FprintlnColor210(w io.Writer, str string)

FprintlnColor210 wraps Color210() and fmt.Fprintln().

func FprintlnColor211 added in v1.8.0

func FprintlnColor211(w io.Writer, str string)

FprintlnColor211 wraps Color211() and fmt.Fprintln().

func FprintlnColor212 added in v1.8.0

func FprintlnColor212(w io.Writer, str string)

FprintlnColor212 wraps Color212() and fmt.Fprintln().

func FprintlnColor213 added in v1.8.0

func FprintlnColor213(w io.Writer, str string)

FprintlnColor213 wraps Color213() and fmt.Fprintln().

func FprintlnColor214 added in v1.8.0

func FprintlnColor214(w io.Writer, str string)

FprintlnColor214 wraps Color214() and fmt.Fprintln().

func FprintlnColor215 added in v1.8.0

func FprintlnColor215(w io.Writer, str string)

FprintlnColor215 wraps Color215() and fmt.Fprintln().

func FprintlnColor216 added in v1.8.0

func FprintlnColor216(w io.Writer, str string)

FprintlnColor216 wraps Color216() and fmt.Fprintln().

func FprintlnColor217 added in v1.8.0

func FprintlnColor217(w io.Writer, str string)

FprintlnColor217 wraps Color217() and fmt.Fprintln().

func FprintlnColor218 added in v1.8.0

func FprintlnColor218(w io.Writer, str string)

FprintlnColor218 wraps Color218() and fmt.Fprintln().

func FprintlnColor219 added in v1.8.0

func FprintlnColor219(w io.Writer, str string)

FprintlnColor219 wraps Color219() and fmt.Fprintln().

func FprintlnColor220 added in v1.8.0

func FprintlnColor220(w io.Writer, str string)

FprintlnColor220 wraps Color220() and fmt.Fprintln().

func FprintlnColor221 added in v1.8.0

func FprintlnColor221(w io.Writer, str string)

FprintlnColor221 wraps Color221() and fmt.Fprintln().

func FprintlnColor222 added in v1.8.0

func FprintlnColor222(w io.Writer, str string)

FprintlnColor222 wraps Color222() and fmt.Fprintln().

func FprintlnColor223 added in v1.8.0

func FprintlnColor223(w io.Writer, str string)

FprintlnColor223 wraps Color223() and fmt.Fprintln().

func FprintlnColor224 added in v1.8.0

func FprintlnColor224(w io.Writer, str string)

FprintlnColor224 wraps Color224() and fmt.Fprintln().

func FprintlnColor225 added in v1.8.0

func FprintlnColor225(w io.Writer, str string)

FprintlnColor225 wraps Color225() and fmt.Fprintln().

func FprintlnColor226 added in v1.8.0

func FprintlnColor226(w io.Writer, str string)

FprintlnColor226 wraps Color226() and fmt.Fprintln().

func FprintlnColor227 added in v1.8.0

func FprintlnColor227(w io.Writer, str string)

FprintlnColor227 wraps Color227() and fmt.Fprintln().

func FprintlnColor228 added in v1.8.0

func FprintlnColor228(w io.Writer, str string)

FprintlnColor228 wraps Color228() and fmt.Fprintln().

func FprintlnColor229 added in v1.8.0

func FprintlnColor229(w io.Writer, str string)

FprintlnColor229 wraps Color229() and fmt.Fprintln().

func FprintlnColor230 added in v1.8.0

func FprintlnColor230(w io.Writer, str string)

FprintlnColor230 wraps Color230() and fmt.Fprintln().

func FprintlnColor231 added in v1.8.0

func FprintlnColor231(w io.Writer, str string)

FprintlnColor231 wraps Color231() and fmt.Fprintln().

func FprintlnColor232 added in v1.8.0

func FprintlnColor232(w io.Writer, str string)

FprintlnColor232 wraps Color232() and fmt.Fprintln().

func FprintlnColor233 added in v1.8.0

func FprintlnColor233(w io.Writer, str string)

FprintlnColor233 wraps Color233() and fmt.Fprintln().

func FprintlnColor234 added in v1.8.0

func FprintlnColor234(w io.Writer, str string)

FprintlnColor234 wraps Color234() and fmt.Fprintln().

func FprintlnColor235 added in v1.8.0

func FprintlnColor235(w io.Writer, str string)

FprintlnColor235 wraps Color235() and fmt.Fprintln().

func FprintlnColor236 added in v1.8.0

func FprintlnColor236(w io.Writer, str string)

FprintlnColor236 wraps Color236() and fmt.Fprintln().

func FprintlnColor237 added in v1.8.0

func FprintlnColor237(w io.Writer, str string)

FprintlnColor237 wraps Color237() and fmt.Fprintln().

func FprintlnColor238 added in v1.8.0

func FprintlnColor238(w io.Writer, str string)

FprintlnColor238 wraps Color238() and fmt.Fprintln().

func FprintlnColor239 added in v1.8.0

func FprintlnColor239(w io.Writer, str string)

FprintlnColor239 wraps Color239() and fmt.Fprintln().

func FprintlnColor240 added in v1.8.0

func FprintlnColor240(w io.Writer, str string)

FprintlnColor240 wraps Color240() and fmt.Fprintln().

func FprintlnColor241 added in v1.8.0

func FprintlnColor241(w io.Writer, str string)

FprintlnColor241 wraps Color241() and fmt.Fprintln().

func FprintlnColor242 added in v1.8.0

func FprintlnColor242(w io.Writer, str string)

FprintlnColor242 wraps Color242() and fmt.Fprintln().

func FprintlnColor243 added in v1.8.0

func FprintlnColor243(w io.Writer, str string)

FprintlnColor243 wraps Color243() and fmt.Fprintln().

func FprintlnColor244 added in v1.8.0

func FprintlnColor244(w io.Writer, str string)

FprintlnColor244 wraps Color244() and fmt.Fprintln().

func FprintlnColor245 added in v1.8.0

func FprintlnColor245(w io.Writer, str string)

FprintlnColor245 wraps Color245() and fmt.Fprintln().

func FprintlnColor246 added in v1.8.0

func FprintlnColor246(w io.Writer, str string)

FprintlnColor246 wraps Color246() and fmt.Fprintln().

func FprintlnColor247 added in v1.8.0

func FprintlnColor247(w io.Writer, str string)

FprintlnColor247 wraps Color247() and fmt.Fprintln().

func FprintlnColor248 added in v1.8.0

func FprintlnColor248(w io.Writer, str string)

FprintlnColor248 wraps Color248() and fmt.Fprintln().

func FprintlnColor249 added in v1.8.0

func FprintlnColor249(w io.Writer, str string)

FprintlnColor249 wraps Color249() and fmt.Fprintln().

func FprintlnColor250 added in v1.8.0

func FprintlnColor250(w io.Writer, str string)

FprintlnColor250 wraps Color250() and fmt.Fprintln().

func FprintlnColor251 added in v1.8.0

func FprintlnColor251(w io.Writer, str string)

FprintlnColor251 wraps Color251() and fmt.Fprintln().

func FprintlnColor252 added in v1.8.0

func FprintlnColor252(w io.Writer, str string)

FprintlnColor252 wraps Color252() and fmt.Fprintln().

func FprintlnColor253 added in v1.8.0

func FprintlnColor253(w io.Writer, str string)

FprintlnColor253 wraps Color253() and fmt.Fprintln().

func FprintlnColor254 added in v1.8.0

func FprintlnColor254(w io.Writer, str string)

FprintlnColor254 wraps Color254() and fmt.Fprintln().

func FprintlnColor255 added in v1.8.0

func FprintlnColor255(w io.Writer, str string)

FprintlnColor255 wraps Color255() and fmt.Fprintln().

func FprintlnConceal added in v1.8.0

func FprintlnConceal(w io.Writer, str string)

FprintlnConceal wraps Conceal() and fmt.Fprintln().

func FprintlnCrossedOut added in v1.8.0

func FprintlnCrossedOut(w io.Writer, str string)

FprintlnCrossedOut wraps CrossedOut() and fmt.Fprintln().

func FprintlnCyan added in v1.8.0

func FprintlnCyan(w io.Writer, str string)

FprintlnCyan wraps Cyan() and fmt.Fprintln().

func FprintlnDefault added in v1.8.0

func FprintlnDefault(w io.Writer, str string)

FprintlnDefault wraps Default() and fmt.Fprintln().

func FprintlnDim added in v1.8.0

func FprintlnDim(w io.Writer, str string)

FprintlnDim wraps Dim() and fmt.Fprintln().

func FprintlnFaint added in v1.8.0

func FprintlnFaint(w io.Writer, str string)

FprintlnFaint wraps Faint() and fmt.Fprintln().

func FprintlnFraktur added in v1.8.0

func FprintlnFraktur(w io.Writer, str string)

FprintlnFraktur wraps Fraktur() and fmt.Fprintln().

func FprintlnGreen added in v1.8.0

func FprintlnGreen(w io.Writer, str string)

FprintlnGreen wraps Green() and fmt.Fprintln().

func FprintlnHex added in v1.8.0

func FprintlnHex(w io.Writer, hex string, str string)

FprintlnHex wraps Hex() and fmt.Fprintln().

func FprintlnHide added in v1.8.0

func FprintlnHide(w io.Writer, str string)

FprintlnHide wraps Hide() and fmt.Fprintln().

func FprintlnHilight added in v1.8.0

func FprintlnHilight(w io.Writer, code string, str string)

FprintlnHilight wraps Hilight() and fmt.Fprintln().

func FprintlnHilights added in v1.8.0

func FprintlnHilights(w io.Writer, codes []string, str string)

FprintlnHilights wraps Hilights() and fmt.Fprintln().

func FprintlnInverse added in v1.8.0

func FprintlnInverse(w io.Writer, str string)

FprintlnInverse wraps Inverse() and fmt.Fprintln().

func FprintlnItalic added in v1.8.0

func FprintlnItalic(w io.Writer, str string)

FprintlnItalic wraps Italic() and fmt.Fprintln().

func FprintlnLightBlack added in v1.8.0

func FprintlnLightBlack(w io.Writer, str string)

FprintlnLightBlack wraps LightBlack() and fmt.Fprintln().

func FprintlnLightBlue added in v1.8.0

func FprintlnLightBlue(w io.Writer, str string)

FprintlnLightBlue wraps LightBlue() and fmt.Fprintln().

func FprintlnLightCyan added in v1.8.0

func FprintlnLightCyan(w io.Writer, str string)

FprintlnLightCyan wraps LightCyan() and fmt.Fprintln().

func FprintlnLightGreen added in v1.8.0

func FprintlnLightGreen(w io.Writer, str string)

FprintlnLightGreen wraps LightGreen() and fmt.Fprintln().

func FprintlnLightMagenta added in v1.8.0

func FprintlnLightMagenta(w io.Writer, str string)

FprintlnLightMagenta wraps LightMagenta() and fmt.Fprintln().

func FprintlnLightRed added in v1.8.0

func FprintlnLightRed(w io.Writer, str string)

FprintlnLightRed wraps LightRed() and fmt.Fprintln().

func FprintlnLightWhite added in v1.8.0

func FprintlnLightWhite(w io.Writer, str string)

FprintlnLightWhite wraps LightWhite() and fmt.Fprintln().

func FprintlnLightYellow added in v1.8.0

func FprintlnLightYellow(w io.Writer, str string)

FprintlnLightYellow wraps LightYellow() and fmt.Fprintln().

func FprintlnMagenta added in v1.8.0

func FprintlnMagenta(w io.Writer, str string)

FprintlnMagenta wraps Magenta() and fmt.Fprintln().

func FprintlnNegative added in v1.8.0

func FprintlnNegative(w io.Writer, str string)

FprintlnNegative wraps Negative() and fmt.Fprintln().

func FprintlnNoBlink(w io.Writer, str string)

FprintlnNoBlink wraps NoBlink() and fmt.Fprintln().

func FprintlnNoBlinkRapid added in v1.8.0

func FprintlnNoBlinkRapid(w io.Writer, str string)

FprintlnNoBlinkRapid wraps NoBlinkRapid() and fmt.Fprintln().

func FprintlnNoBlinkSlow added in v1.8.0

func FprintlnNoBlinkSlow(w io.Writer, str string)

FprintlnNoBlinkSlow wraps NoBlinkSlow() and fmt.Fprintln().

func FprintlnNoBold added in v1.8.0

func FprintlnNoBold(w io.Writer, str string)

FprintlnNoBold wraps NoBold() and fmt.Fprintln().

func FprintlnNoConceal added in v1.8.0

func FprintlnNoConceal(w io.Writer, str string)

FprintlnNoConceal wraps NoConceal() and fmt.Fprintln().

func FprintlnNoCrossedOut added in v1.8.0

func FprintlnNoCrossedOut(w io.Writer, str string)

FprintlnNoCrossedOut wraps NoCrossedOut() and fmt.Fprintln().

func FprintlnNoDim added in v1.8.0

func FprintlnNoDim(w io.Writer, str string)

FprintlnNoDim wraps NoDim() and fmt.Fprintln().

func FprintlnNoFaint added in v1.8.0

func FprintlnNoFaint(w io.Writer, str string)

FprintlnNoFaint wraps NoFaint() and fmt.Fprintln().

func FprintlnNoFraktur added in v1.8.0

func FprintlnNoFraktur(w io.Writer, str string)

FprintlnNoFraktur wraps NoFraktur() and fmt.Fprintln().

func FprintlnNoHide added in v1.8.0

func FprintlnNoHide(w io.Writer, str string)

FprintlnNoHide wraps NoHide() and fmt.Fprintln().

func FprintlnNoInverse added in v1.8.0

func FprintlnNoInverse(w io.Writer, str string)

FprintlnNoInverse wraps NoInverse() and fmt.Fprintln().

func FprintlnNoItalic added in v1.8.0

func FprintlnNoItalic(w io.Writer, str string)

FprintlnNoItalic wraps NoItalic() and fmt.Fprintln().

func FprintlnNoNegative added in v1.8.0

func FprintlnNoNegative(w io.Writer, str string)

FprintlnNoNegative wraps NoNegative() and fmt.Fprintln().

func FprintlnNoStrikethrough added in v1.8.0

func FprintlnNoStrikethrough(w io.Writer, str string)

FprintlnNoStrikethrough wraps NoStrikethrough() and fmt.Fprintln().

func FprintlnNoSwap added in v1.8.0

func FprintlnNoSwap(w io.Writer, str string)

FprintlnNoSwap wraps NoSwap() and fmt.Fprintln().

func FprintlnNoUnderline added in v1.8.0

func FprintlnNoUnderline(w io.Writer, str string)

FprintlnNoUnderline wraps NoUnderline() and fmt.Fprintln().

func FprintlnNormal added in v1.8.0

func FprintlnNormal(w io.Writer, str string)

FprintlnNormal wraps Normal() and fmt.Fprintln().

func FprintlnOnBlack added in v1.8.0

func FprintlnOnBlack(w io.Writer, str string)

FprintlnOnBlack wraps OnBlack() and fmt.Fprintln().

func FprintlnOnBlue added in v1.8.0

func FprintlnOnBlue(w io.Writer, str string)

FprintlnOnBlue wraps OnBlue() and fmt.Fprintln().

func FprintlnOnColor000 added in v1.8.0

func FprintlnOnColor000(w io.Writer, str string)

FprintlnOnColor000 wraps OnColor000() and fmt.Fprintln().

func FprintlnOnColor001 added in v1.8.0

func FprintlnOnColor001(w io.Writer, str string)

FprintlnOnColor001 wraps OnColor001() and fmt.Fprintln().

func FprintlnOnColor002 added in v1.8.0

func FprintlnOnColor002(w io.Writer, str string)

FprintlnOnColor002 wraps OnColor002() and fmt.Fprintln().

func FprintlnOnColor003 added in v1.8.0

func FprintlnOnColor003(w io.Writer, str string)

FprintlnOnColor003 wraps OnColor003() and fmt.Fprintln().

func FprintlnOnColor004 added in v1.8.0

func FprintlnOnColor004(w io.Writer, str string)

FprintlnOnColor004 wraps OnColor004() and fmt.Fprintln().

func FprintlnOnColor005 added in v1.8.0

func FprintlnOnColor005(w io.Writer, str string)

FprintlnOnColor005 wraps OnColor005() and fmt.Fprintln().

func FprintlnOnColor006 added in v1.8.0

func FprintlnOnColor006(w io.Writer, str string)

FprintlnOnColor006 wraps OnColor006() and fmt.Fprintln().

func FprintlnOnColor007 added in v1.8.0

func FprintlnOnColor007(w io.Writer, str string)

FprintlnOnColor007 wraps OnColor007() and fmt.Fprintln().

func FprintlnOnColor008 added in v1.8.0

func FprintlnOnColor008(w io.Writer, str string)

FprintlnOnColor008 wraps OnColor008() and fmt.Fprintln().

func FprintlnOnColor009 added in v1.8.0

func FprintlnOnColor009(w io.Writer, str string)

FprintlnOnColor009 wraps OnColor009() and fmt.Fprintln().

func FprintlnOnColor010 added in v1.8.0

func FprintlnOnColor010(w io.Writer, str string)

FprintlnOnColor010 wraps OnColor010() and fmt.Fprintln().

func FprintlnOnColor011 added in v1.8.0

func FprintlnOnColor011(w io.Writer, str string)

FprintlnOnColor011 wraps OnColor011() and fmt.Fprintln().

func FprintlnOnColor012 added in v1.8.0

func FprintlnOnColor012(w io.Writer, str string)

FprintlnOnColor012 wraps OnColor012() and fmt.Fprintln().

func FprintlnOnColor013 added in v1.8.0

func FprintlnOnColor013(w io.Writer, str string)

FprintlnOnColor013 wraps OnColor013() and fmt.Fprintln().

func FprintlnOnColor014 added in v1.8.0

func FprintlnOnColor014(w io.Writer, str string)

FprintlnOnColor014 wraps OnColor014() and fmt.Fprintln().

func FprintlnOnColor015 added in v1.8.0

func FprintlnOnColor015(w io.Writer, str string)

FprintlnOnColor015 wraps OnColor015() and fmt.Fprintln().

func FprintlnOnColor016 added in v1.8.0

func FprintlnOnColor016(w io.Writer, str string)

FprintlnOnColor016 wraps OnColor016() and fmt.Fprintln().

func FprintlnOnColor017 added in v1.8.0

func FprintlnOnColor017(w io.Writer, str string)

FprintlnOnColor017 wraps OnColor017() and fmt.Fprintln().

func FprintlnOnColor018 added in v1.8.0

func FprintlnOnColor018(w io.Writer, str string)

FprintlnOnColor018 wraps OnColor018() and fmt.Fprintln().

func FprintlnOnColor019 added in v1.8.0

func FprintlnOnColor019(w io.Writer, str string)

FprintlnOnColor019 wraps OnColor019() and fmt.Fprintln().

func FprintlnOnColor020 added in v1.8.0

func FprintlnOnColor020(w io.Writer, str string)

FprintlnOnColor020 wraps OnColor020() and fmt.Fprintln().

func FprintlnOnColor021 added in v1.8.0

func FprintlnOnColor021(w io.Writer, str string)

FprintlnOnColor021 wraps OnColor021() and fmt.Fprintln().

func FprintlnOnColor022 added in v1.8.0

func FprintlnOnColor022(w io.Writer, str string)

FprintlnOnColor022 wraps OnColor022() and fmt.Fprintln().

func FprintlnOnColor023 added in v1.8.0

func FprintlnOnColor023(w io.Writer, str string)

FprintlnOnColor023 wraps OnColor023() and fmt.Fprintln().

func FprintlnOnColor024 added in v1.8.0

func FprintlnOnColor024(w io.Writer, str string)

FprintlnOnColor024 wraps OnColor024() and fmt.Fprintln().

func FprintlnOnColor025 added in v1.8.0

func FprintlnOnColor025(w io.Writer, str string)

FprintlnOnColor025 wraps OnColor025() and fmt.Fprintln().

func FprintlnOnColor026 added in v1.8.0

func FprintlnOnColor026(w io.Writer, str string)

FprintlnOnColor026 wraps OnColor026() and fmt.Fprintln().

func FprintlnOnColor027 added in v1.8.0

func FprintlnOnColor027(w io.Writer, str string)

FprintlnOnColor027 wraps OnColor027() and fmt.Fprintln().

func FprintlnOnColor028 added in v1.8.0

func FprintlnOnColor028(w io.Writer, str string)

FprintlnOnColor028 wraps OnColor028() and fmt.Fprintln().

func FprintlnOnColor029 added in v1.8.0

func FprintlnOnColor029(w io.Writer, str string)

FprintlnOnColor029 wraps OnColor029() and fmt.Fprintln().

func FprintlnOnColor030 added in v1.8.0

func FprintlnOnColor030(w io.Writer, str string)

FprintlnOnColor030 wraps OnColor030() and fmt.Fprintln().

func FprintlnOnColor031 added in v1.8.0

func FprintlnOnColor031(w io.Writer, str string)

FprintlnOnColor031 wraps OnColor031() and fmt.Fprintln().

func FprintlnOnColor032 added in v1.8.0

func FprintlnOnColor032(w io.Writer, str string)

FprintlnOnColor032 wraps OnColor032() and fmt.Fprintln().

func FprintlnOnColor033 added in v1.8.0

func FprintlnOnColor033(w io.Writer, str string)

FprintlnOnColor033 wraps OnColor033() and fmt.Fprintln().

func FprintlnOnColor034 added in v1.8.0

func FprintlnOnColor034(w io.Writer, str string)

FprintlnOnColor034 wraps OnColor034() and fmt.Fprintln().

func FprintlnOnColor035 added in v1.8.0

func FprintlnOnColor035(w io.Writer, str string)

FprintlnOnColor035 wraps OnColor035() and fmt.Fprintln().

func FprintlnOnColor036 added in v1.8.0

func FprintlnOnColor036(w io.Writer, str string)

FprintlnOnColor036 wraps OnColor036() and fmt.Fprintln().

func FprintlnOnColor037 added in v1.8.0

func FprintlnOnColor037(w io.Writer, str string)

FprintlnOnColor037 wraps OnColor037() and fmt.Fprintln().

func FprintlnOnColor038 added in v1.8.0

func FprintlnOnColor038(w io.Writer, str string)

FprintlnOnColor038 wraps OnColor038() and fmt.Fprintln().

func FprintlnOnColor039 added in v1.8.0

func FprintlnOnColor039(w io.Writer, str string)

FprintlnOnColor039 wraps OnColor039() and fmt.Fprintln().

func FprintlnOnColor040 added in v1.8.0

func FprintlnOnColor040(w io.Writer, str string)

FprintlnOnColor040 wraps OnColor040() and fmt.Fprintln().

func FprintlnOnColor041 added in v1.8.0

func FprintlnOnColor041(w io.Writer, str string)

FprintlnOnColor041 wraps OnColor041() and fmt.Fprintln().

func FprintlnOnColor042 added in v1.8.0

func FprintlnOnColor042(w io.Writer, str string)

FprintlnOnColor042 wraps OnColor042() and fmt.Fprintln().

func FprintlnOnColor043 added in v1.8.0

func FprintlnOnColor043(w io.Writer, str string)

FprintlnOnColor043 wraps OnColor043() and fmt.Fprintln().

func FprintlnOnColor044 added in v1.8.0

func FprintlnOnColor044(w io.Writer, str string)

FprintlnOnColor044 wraps OnColor044() and fmt.Fprintln().

func FprintlnOnColor045 added in v1.8.0

func FprintlnOnColor045(w io.Writer, str string)

FprintlnOnColor045 wraps OnColor045() and fmt.Fprintln().

func FprintlnOnColor046 added in v1.8.0

func FprintlnOnColor046(w io.Writer, str string)

FprintlnOnColor046 wraps OnColor046() and fmt.Fprintln().

func FprintlnOnColor047 added in v1.8.0

func FprintlnOnColor047(w io.Writer, str string)

FprintlnOnColor047 wraps OnColor047() and fmt.Fprintln().

func FprintlnOnColor048 added in v1.8.0

func FprintlnOnColor048(w io.Writer, str string)

FprintlnOnColor048 wraps OnColor048() and fmt.Fprintln().

func FprintlnOnColor049 added in v1.8.0

func FprintlnOnColor049(w io.Writer, str string)

FprintlnOnColor049 wraps OnColor049() and fmt.Fprintln().

func FprintlnOnColor050 added in v1.8.0

func FprintlnOnColor050(w io.Writer, str string)

FprintlnOnColor050 wraps OnColor050() and fmt.Fprintln().

func FprintlnOnColor051 added in v1.8.0

func FprintlnOnColor051(w io.Writer, str string)

FprintlnOnColor051 wraps OnColor051() and fmt.Fprintln().

func FprintlnOnColor052 added in v1.8.0

func FprintlnOnColor052(w io.Writer, str string)

FprintlnOnColor052 wraps OnColor052() and fmt.Fprintln().

func FprintlnOnColor053 added in v1.8.0

func FprintlnOnColor053(w io.Writer, str string)

FprintlnOnColor053 wraps OnColor053() and fmt.Fprintln().

func FprintlnOnColor054 added in v1.8.0

func FprintlnOnColor054(w io.Writer, str string)

FprintlnOnColor054 wraps OnColor054() and fmt.Fprintln().

func FprintlnOnColor055 added in v1.8.0

func FprintlnOnColor055(w io.Writer, str string)

FprintlnOnColor055 wraps OnColor055() and fmt.Fprintln().

func FprintlnOnColor056 added in v1.8.0

func FprintlnOnColor056(w io.Writer, str string)

FprintlnOnColor056 wraps OnColor056() and fmt.Fprintln().

func FprintlnOnColor057 added in v1.8.0

func FprintlnOnColor057(w io.Writer, str string)

FprintlnOnColor057 wraps OnColor057() and fmt.Fprintln().

func FprintlnOnColor058 added in v1.8.0

func FprintlnOnColor058(w io.Writer, str string)

FprintlnOnColor058 wraps OnColor058() and fmt.Fprintln().

func FprintlnOnColor059 added in v1.8.0

func FprintlnOnColor059(w io.Writer, str string)

FprintlnOnColor059 wraps OnColor059() and fmt.Fprintln().

func FprintlnOnColor060 added in v1.8.0

func FprintlnOnColor060(w io.Writer, str string)

FprintlnOnColor060 wraps OnColor060() and fmt.Fprintln().

func FprintlnOnColor061 added in v1.8.0

func FprintlnOnColor061(w io.Writer, str string)

FprintlnOnColor061 wraps OnColor061() and fmt.Fprintln().

func FprintlnOnColor062 added in v1.8.0

func FprintlnOnColor062(w io.Writer, str string)

FprintlnOnColor062 wraps OnColor062() and fmt.Fprintln().

func FprintlnOnColor063 added in v1.8.0

func FprintlnOnColor063(w io.Writer, str string)

FprintlnOnColor063 wraps OnColor063() and fmt.Fprintln().

func FprintlnOnColor064 added in v1.8.0

func FprintlnOnColor064(w io.Writer, str string)

FprintlnOnColor064 wraps OnColor064() and fmt.Fprintln().

func FprintlnOnColor065 added in v1.8.0

func FprintlnOnColor065(w io.Writer, str string)

FprintlnOnColor065 wraps OnColor065() and fmt.Fprintln().

func FprintlnOnColor066 added in v1.8.0

func FprintlnOnColor066(w io.Writer, str string)

FprintlnOnColor066 wraps OnColor066() and fmt.Fprintln().

func FprintlnOnColor067 added in v1.8.0

func FprintlnOnColor067(w io.Writer, str string)

FprintlnOnColor067 wraps OnColor067() and fmt.Fprintln().

func FprintlnOnColor068 added in v1.8.0

func FprintlnOnColor068(w io.Writer, str string)

FprintlnOnColor068 wraps OnColor068() and fmt.Fprintln().

func FprintlnOnColor069 added in v1.8.0

func FprintlnOnColor069(w io.Writer, str string)

FprintlnOnColor069 wraps OnColor069() and fmt.Fprintln().

func FprintlnOnColor070 added in v1.8.0

func FprintlnOnColor070(w io.Writer, str string)

FprintlnOnColor070 wraps OnColor070() and fmt.Fprintln().

func FprintlnOnColor071 added in v1.8.0

func FprintlnOnColor071(w io.Writer, str string)

FprintlnOnColor071 wraps OnColor071() and fmt.Fprintln().

func FprintlnOnColor072 added in v1.8.0

func FprintlnOnColor072(w io.Writer, str string)

FprintlnOnColor072 wraps OnColor072() and fmt.Fprintln().

func FprintlnOnColor073 added in v1.8.0

func FprintlnOnColor073(w io.Writer, str string)

FprintlnOnColor073 wraps OnColor073() and fmt.Fprintln().

func FprintlnOnColor074 added in v1.8.0

func FprintlnOnColor074(w io.Writer, str string)

FprintlnOnColor074 wraps OnColor074() and fmt.Fprintln().

func FprintlnOnColor075 added in v1.8.0

func FprintlnOnColor075(w io.Writer, str string)

FprintlnOnColor075 wraps OnColor075() and fmt.Fprintln().

func FprintlnOnColor076 added in v1.8.0

func FprintlnOnColor076(w io.Writer, str string)

FprintlnOnColor076 wraps OnColor076() and fmt.Fprintln().

func FprintlnOnColor077 added in v1.8.0

func FprintlnOnColor077(w io.Writer, str string)

FprintlnOnColor077 wraps OnColor077() and fmt.Fprintln().

func FprintlnOnColor078 added in v1.8.0

func FprintlnOnColor078(w io.Writer, str string)

FprintlnOnColor078 wraps OnColor078() and fmt.Fprintln().

func FprintlnOnColor079 added in v1.8.0

func FprintlnOnColor079(w io.Writer, str string)

FprintlnOnColor079 wraps OnColor079() and fmt.Fprintln().

func FprintlnOnColor080 added in v1.8.0

func FprintlnOnColor080(w io.Writer, str string)

FprintlnOnColor080 wraps OnColor080() and fmt.Fprintln().

func FprintlnOnColor081 added in v1.8.0

func FprintlnOnColor081(w io.Writer, str string)

FprintlnOnColor081 wraps OnColor081() and fmt.Fprintln().

func FprintlnOnColor082 added in v1.8.0

func FprintlnOnColor082(w io.Writer, str string)

FprintlnOnColor082 wraps OnColor082() and fmt.Fprintln().

func FprintlnOnColor083 added in v1.8.0

func FprintlnOnColor083(w io.Writer, str string)

FprintlnOnColor083 wraps OnColor083() and fmt.Fprintln().

func FprintlnOnColor084 added in v1.8.0

func FprintlnOnColor084(w io.Writer, str string)

FprintlnOnColor084 wraps OnColor084() and fmt.Fprintln().

func FprintlnOnColor085 added in v1.8.0

func FprintlnOnColor085(w io.Writer, str string)

FprintlnOnColor085 wraps OnColor085() and fmt.Fprintln().

func FprintlnOnColor086 added in v1.8.0

func FprintlnOnColor086(w io.Writer, str string)

FprintlnOnColor086 wraps OnColor086() and fmt.Fprintln().

func FprintlnOnColor087 added in v1.8.0

func FprintlnOnColor087(w io.Writer, str string)

FprintlnOnColor087 wraps OnColor087() and fmt.Fprintln().

func FprintlnOnColor088 added in v1.8.0

func FprintlnOnColor088(w io.Writer, str string)

FprintlnOnColor088 wraps OnColor088() and fmt.Fprintln().

func FprintlnOnColor089 added in v1.8.0

func FprintlnOnColor089(w io.Writer, str string)

FprintlnOnColor089 wraps OnColor089() and fmt.Fprintln().

func FprintlnOnColor090 added in v1.8.0

func FprintlnOnColor090(w io.Writer, str string)

FprintlnOnColor090 wraps OnColor090() and fmt.Fprintln().

func FprintlnOnColor091 added in v1.8.0

func FprintlnOnColor091(w io.Writer, str string)

FprintlnOnColor091 wraps OnColor091() and fmt.Fprintln().

func FprintlnOnColor092 added in v1.8.0

func FprintlnOnColor092(w io.Writer, str string)

FprintlnOnColor092 wraps OnColor092() and fmt.Fprintln().

func FprintlnOnColor093 added in v1.8.0

func FprintlnOnColor093(w io.Writer, str string)

FprintlnOnColor093 wraps OnColor093() and fmt.Fprintln().

func FprintlnOnColor094 added in v1.8.0

func FprintlnOnColor094(w io.Writer, str string)

FprintlnOnColor094 wraps OnColor094() and fmt.Fprintln().

func FprintlnOnColor095 added in v1.8.0

func FprintlnOnColor095(w io.Writer, str string)

FprintlnOnColor095 wraps OnColor095() and fmt.Fprintln().

func FprintlnOnColor096 added in v1.8.0

func FprintlnOnColor096(w io.Writer, str string)

FprintlnOnColor096 wraps OnColor096() and fmt.Fprintln().

func FprintlnOnColor097 added in v1.8.0

func FprintlnOnColor097(w io.Writer, str string)

FprintlnOnColor097 wraps OnColor097() and fmt.Fprintln().

func FprintlnOnColor098 added in v1.8.0

func FprintlnOnColor098(w io.Writer, str string)

FprintlnOnColor098 wraps OnColor098() and fmt.Fprintln().

func FprintlnOnColor099 added in v1.8.0

func FprintlnOnColor099(w io.Writer, str string)

FprintlnOnColor099 wraps OnColor099() and fmt.Fprintln().

func FprintlnOnColor100 added in v1.8.0

func FprintlnOnColor100(w io.Writer, str string)

FprintlnOnColor100 wraps OnColor100() and fmt.Fprintln().

func FprintlnOnColor101 added in v1.8.0

func FprintlnOnColor101(w io.Writer, str string)

FprintlnOnColor101 wraps OnColor101() and fmt.Fprintln().

func FprintlnOnColor102 added in v1.8.0

func FprintlnOnColor102(w io.Writer, str string)

FprintlnOnColor102 wraps OnColor102() and fmt.Fprintln().

func FprintlnOnColor103 added in v1.8.0

func FprintlnOnColor103(w io.Writer, str string)

FprintlnOnColor103 wraps OnColor103() and fmt.Fprintln().

func FprintlnOnColor104 added in v1.8.0

func FprintlnOnColor104(w io.Writer, str string)

FprintlnOnColor104 wraps OnColor104() and fmt.Fprintln().

func FprintlnOnColor105 added in v1.8.0

func FprintlnOnColor105(w io.Writer, str string)

FprintlnOnColor105 wraps OnColor105() and fmt.Fprintln().

func FprintlnOnColor106 added in v1.8.0

func FprintlnOnColor106(w io.Writer, str string)

FprintlnOnColor106 wraps OnColor106() and fmt.Fprintln().

func FprintlnOnColor107 added in v1.8.0

func FprintlnOnColor107(w io.Writer, str string)

FprintlnOnColor107 wraps OnColor107() and fmt.Fprintln().

func FprintlnOnColor108 added in v1.8.0

func FprintlnOnColor108(w io.Writer, str string)

FprintlnOnColor108 wraps OnColor108() and fmt.Fprintln().

func FprintlnOnColor109 added in v1.8.0

func FprintlnOnColor109(w io.Writer, str string)

FprintlnOnColor109 wraps OnColor109() and fmt.Fprintln().

func FprintlnOnColor110 added in v1.8.0

func FprintlnOnColor110(w io.Writer, str string)

FprintlnOnColor110 wraps OnColor110() and fmt.Fprintln().

func FprintlnOnColor111 added in v1.8.0

func FprintlnOnColor111(w io.Writer, str string)

FprintlnOnColor111 wraps OnColor111() and fmt.Fprintln().

func FprintlnOnColor112 added in v1.8.0

func FprintlnOnColor112(w io.Writer, str string)

FprintlnOnColor112 wraps OnColor112() and fmt.Fprintln().

func FprintlnOnColor113 added in v1.8.0

func FprintlnOnColor113(w io.Writer, str string)

FprintlnOnColor113 wraps OnColor113() and fmt.Fprintln().

func FprintlnOnColor114 added in v1.8.0

func FprintlnOnColor114(w io.Writer, str string)

FprintlnOnColor114 wraps OnColor114() and fmt.Fprintln().

func FprintlnOnColor115 added in v1.8.0

func FprintlnOnColor115(w io.Writer, str string)

FprintlnOnColor115 wraps OnColor115() and fmt.Fprintln().

func FprintlnOnColor116 added in v1.8.0

func FprintlnOnColor116(w io.Writer, str string)

FprintlnOnColor116 wraps OnColor116() and fmt.Fprintln().

func FprintlnOnColor117 added in v1.8.0

func FprintlnOnColor117(w io.Writer, str string)

FprintlnOnColor117 wraps OnColor117() and fmt.Fprintln().

func FprintlnOnColor118 added in v1.8.0

func FprintlnOnColor118(w io.Writer, str string)

FprintlnOnColor118 wraps OnColor118() and fmt.Fprintln().

func FprintlnOnColor119 added in v1.8.0

func FprintlnOnColor119(w io.Writer, str string)

FprintlnOnColor119 wraps OnColor119() and fmt.Fprintln().

func FprintlnOnColor120 added in v1.8.0

func FprintlnOnColor120(w io.Writer, str string)

FprintlnOnColor120 wraps OnColor120() and fmt.Fprintln().

func FprintlnOnColor121 added in v1.8.0

func FprintlnOnColor121(w io.Writer, str string)

FprintlnOnColor121 wraps OnColor121() and fmt.Fprintln().

func FprintlnOnColor122 added in v1.8.0

func FprintlnOnColor122(w io.Writer, str string)

FprintlnOnColor122 wraps OnColor122() and fmt.Fprintln().

func FprintlnOnColor123 added in v1.8.0

func FprintlnOnColor123(w io.Writer, str string)

FprintlnOnColor123 wraps OnColor123() and fmt.Fprintln().

func FprintlnOnColor124 added in v1.8.0

func FprintlnOnColor124(w io.Writer, str string)

FprintlnOnColor124 wraps OnColor124() and fmt.Fprintln().

func FprintlnOnColor125 added in v1.8.0

func FprintlnOnColor125(w io.Writer, str string)

FprintlnOnColor125 wraps OnColor125() and fmt.Fprintln().

func FprintlnOnColor126 added in v1.8.0

func FprintlnOnColor126(w io.Writer, str string)

FprintlnOnColor126 wraps OnColor126() and fmt.Fprintln().

func FprintlnOnColor127 added in v1.8.0

func FprintlnOnColor127(w io.Writer, str string)

FprintlnOnColor127 wraps OnColor127() and fmt.Fprintln().

func FprintlnOnColor128 added in v1.8.0

func FprintlnOnColor128(w io.Writer, str string)

FprintlnOnColor128 wraps OnColor128() and fmt.Fprintln().

func FprintlnOnColor129 added in v1.8.0

func FprintlnOnColor129(w io.Writer, str string)

FprintlnOnColor129 wraps OnColor129() and fmt.Fprintln().

func FprintlnOnColor130 added in v1.8.0

func FprintlnOnColor130(w io.Writer, str string)

FprintlnOnColor130 wraps OnColor130() and fmt.Fprintln().

func FprintlnOnColor131 added in v1.8.0

func FprintlnOnColor131(w io.Writer, str string)

FprintlnOnColor131 wraps OnColor131() and fmt.Fprintln().

func FprintlnOnColor132 added in v1.8.0

func FprintlnOnColor132(w io.Writer, str string)

FprintlnOnColor132 wraps OnColor132() and fmt.Fprintln().

func FprintlnOnColor133 added in v1.8.0

func FprintlnOnColor133(w io.Writer, str string)

FprintlnOnColor133 wraps OnColor133() and fmt.Fprintln().

func FprintlnOnColor134 added in v1.8.0

func FprintlnOnColor134(w io.Writer, str string)

FprintlnOnColor134 wraps OnColor134() and fmt.Fprintln().

func FprintlnOnColor135 added in v1.8.0

func FprintlnOnColor135(w io.Writer, str string)

FprintlnOnColor135 wraps OnColor135() and fmt.Fprintln().

func FprintlnOnColor136 added in v1.8.0

func FprintlnOnColor136(w io.Writer, str string)

FprintlnOnColor136 wraps OnColor136() and fmt.Fprintln().

func FprintlnOnColor137 added in v1.8.0

func FprintlnOnColor137(w io.Writer, str string)

FprintlnOnColor137 wraps OnColor137() and fmt.Fprintln().

func FprintlnOnColor138 added in v1.8.0

func FprintlnOnColor138(w io.Writer, str string)

FprintlnOnColor138 wraps OnColor138() and fmt.Fprintln().

func FprintlnOnColor139 added in v1.8.0

func FprintlnOnColor139(w io.Writer, str string)

FprintlnOnColor139 wraps OnColor139() and fmt.Fprintln().

func FprintlnOnColor140 added in v1.8.0

func FprintlnOnColor140(w io.Writer, str string)

FprintlnOnColor140 wraps OnColor140() and fmt.Fprintln().

func FprintlnOnColor141 added in v1.8.0

func FprintlnOnColor141(w io.Writer, str string)

FprintlnOnColor141 wraps OnColor141() and fmt.Fprintln().

func FprintlnOnColor142 added in v1.8.0

func FprintlnOnColor142(w io.Writer, str string)

FprintlnOnColor142 wraps OnColor142() and fmt.Fprintln().

func FprintlnOnColor143 added in v1.8.0

func FprintlnOnColor143(w io.Writer, str string)

FprintlnOnColor143 wraps OnColor143() and fmt.Fprintln().

func FprintlnOnColor144 added in v1.8.0

func FprintlnOnColor144(w io.Writer, str string)

FprintlnOnColor144 wraps OnColor144() and fmt.Fprintln().

func FprintlnOnColor145 added in v1.8.0

func FprintlnOnColor145(w io.Writer, str string)

FprintlnOnColor145 wraps OnColor145() and fmt.Fprintln().

func FprintlnOnColor146 added in v1.8.0

func FprintlnOnColor146(w io.Writer, str string)

FprintlnOnColor146 wraps OnColor146() and fmt.Fprintln().

func FprintlnOnColor147 added in v1.8.0

func FprintlnOnColor147(w io.Writer, str string)

FprintlnOnColor147 wraps OnColor147() and fmt.Fprintln().

func FprintlnOnColor148 added in v1.8.0

func FprintlnOnColor148(w io.Writer, str string)

FprintlnOnColor148 wraps OnColor148() and fmt.Fprintln().

func FprintlnOnColor149 added in v1.8.0

func FprintlnOnColor149(w io.Writer, str string)

FprintlnOnColor149 wraps OnColor149() and fmt.Fprintln().

func FprintlnOnColor150 added in v1.8.0

func FprintlnOnColor150(w io.Writer, str string)

FprintlnOnColor150 wraps OnColor150() and fmt.Fprintln().

func FprintlnOnColor151 added in v1.8.0

func FprintlnOnColor151(w io.Writer, str string)

FprintlnOnColor151 wraps OnColor151() and fmt.Fprintln().

func FprintlnOnColor152 added in v1.8.0

func FprintlnOnColor152(w io.Writer, str string)

FprintlnOnColor152 wraps OnColor152() and fmt.Fprintln().

func FprintlnOnColor153 added in v1.8.0

func FprintlnOnColor153(w io.Writer, str string)

FprintlnOnColor153 wraps OnColor153() and fmt.Fprintln().

func FprintlnOnColor154 added in v1.8.0

func FprintlnOnColor154(w io.Writer, str string)

FprintlnOnColor154 wraps OnColor154() and fmt.Fprintln().

func FprintlnOnColor155 added in v1.8.0

func FprintlnOnColor155(w io.Writer, str string)

FprintlnOnColor155 wraps OnColor155() and fmt.Fprintln().

func FprintlnOnColor156 added in v1.8.0

func FprintlnOnColor156(w io.Writer, str string)

FprintlnOnColor156 wraps OnColor156() and fmt.Fprintln().

func FprintlnOnColor157 added in v1.8.0

func FprintlnOnColor157(w io.Writer, str string)

FprintlnOnColor157 wraps OnColor157() and fmt.Fprintln().

func FprintlnOnColor158 added in v1.8.0

func FprintlnOnColor158(w io.Writer, str string)

FprintlnOnColor158 wraps OnColor158() and fmt.Fprintln().

func FprintlnOnColor159 added in v1.8.0

func FprintlnOnColor159(w io.Writer, str string)

FprintlnOnColor159 wraps OnColor159() and fmt.Fprintln().

func FprintlnOnColor160 added in v1.8.0

func FprintlnOnColor160(w io.Writer, str string)

FprintlnOnColor160 wraps OnColor160() and fmt.Fprintln().

func FprintlnOnColor161 added in v1.8.0

func FprintlnOnColor161(w io.Writer, str string)

FprintlnOnColor161 wraps OnColor161() and fmt.Fprintln().

func FprintlnOnColor162 added in v1.8.0

func FprintlnOnColor162(w io.Writer, str string)

FprintlnOnColor162 wraps OnColor162() and fmt.Fprintln().

func FprintlnOnColor163 added in v1.8.0

func FprintlnOnColor163(w io.Writer, str string)

FprintlnOnColor163 wraps OnColor163() and fmt.Fprintln().

func FprintlnOnColor164 added in v1.8.0

func FprintlnOnColor164(w io.Writer, str string)

FprintlnOnColor164 wraps OnColor164() and fmt.Fprintln().

func FprintlnOnColor165 added in v1.8.0

func FprintlnOnColor165(w io.Writer, str string)

FprintlnOnColor165 wraps OnColor165() and fmt.Fprintln().

func FprintlnOnColor166 added in v1.8.0

func FprintlnOnColor166(w io.Writer, str string)

FprintlnOnColor166 wraps OnColor166() and fmt.Fprintln().

func FprintlnOnColor167 added in v1.8.0

func FprintlnOnColor167(w io.Writer, str string)

FprintlnOnColor167 wraps OnColor167() and fmt.Fprintln().

func FprintlnOnColor168 added in v1.8.0

func FprintlnOnColor168(w io.Writer, str string)

FprintlnOnColor168 wraps OnColor168() and fmt.Fprintln().

func FprintlnOnColor169 added in v1.8.0

func FprintlnOnColor169(w io.Writer, str string)

FprintlnOnColor169 wraps OnColor169() and fmt.Fprintln().

func FprintlnOnColor170 added in v1.8.0

func FprintlnOnColor170(w io.Writer, str string)

FprintlnOnColor170 wraps OnColor170() and fmt.Fprintln().

func FprintlnOnColor171 added in v1.8.0

func FprintlnOnColor171(w io.Writer, str string)

FprintlnOnColor171 wraps OnColor171() and fmt.Fprintln().

func FprintlnOnColor172 added in v1.8.0

func FprintlnOnColor172(w io.Writer, str string)

FprintlnOnColor172 wraps OnColor172() and fmt.Fprintln().

func FprintlnOnColor173 added in v1.8.0

func FprintlnOnColor173(w io.Writer, str string)

FprintlnOnColor173 wraps OnColor173() and fmt.Fprintln().

func FprintlnOnColor174 added in v1.8.0

func FprintlnOnColor174(w io.Writer, str string)

FprintlnOnColor174 wraps OnColor174() and fmt.Fprintln().

func FprintlnOnColor175 added in v1.8.0

func FprintlnOnColor175(w io.Writer, str string)

FprintlnOnColor175 wraps OnColor175() and fmt.Fprintln().

func FprintlnOnColor176 added in v1.8.0

func FprintlnOnColor176(w io.Writer, str string)

FprintlnOnColor176 wraps OnColor176() and fmt.Fprintln().

func FprintlnOnColor177 added in v1.8.0

func FprintlnOnColor177(w io.Writer, str string)

FprintlnOnColor177 wraps OnColor177() and fmt.Fprintln().

func FprintlnOnColor178 added in v1.8.0

func FprintlnOnColor178(w io.Writer, str string)

FprintlnOnColor178 wraps OnColor178() and fmt.Fprintln().

func FprintlnOnColor179 added in v1.8.0

func FprintlnOnColor179(w io.Writer, str string)

FprintlnOnColor179 wraps OnColor179() and fmt.Fprintln().

func FprintlnOnColor180 added in v1.8.0

func FprintlnOnColor180(w io.Writer, str string)

FprintlnOnColor180 wraps OnColor180() and fmt.Fprintln().

func FprintlnOnColor181 added in v1.8.0

func FprintlnOnColor181(w io.Writer, str string)

FprintlnOnColor181 wraps OnColor181() and fmt.Fprintln().

func FprintlnOnColor182 added in v1.8.0

func FprintlnOnColor182(w io.Writer, str string)

FprintlnOnColor182 wraps OnColor182() and fmt.Fprintln().

func FprintlnOnColor183 added in v1.8.0

func FprintlnOnColor183(w io.Writer, str string)

FprintlnOnColor183 wraps OnColor183() and fmt.Fprintln().

func FprintlnOnColor184 added in v1.8.0

func FprintlnOnColor184(w io.Writer, str string)

FprintlnOnColor184 wraps OnColor184() and fmt.Fprintln().

func FprintlnOnColor185 added in v1.8.0

func FprintlnOnColor185(w io.Writer, str string)

FprintlnOnColor185 wraps OnColor185() and fmt.Fprintln().

func FprintlnOnColor186 added in v1.8.0

func FprintlnOnColor186(w io.Writer, str string)

FprintlnOnColor186 wraps OnColor186() and fmt.Fprintln().

func FprintlnOnColor187 added in v1.8.0

func FprintlnOnColor187(w io.Writer, str string)

FprintlnOnColor187 wraps OnColor187() and fmt.Fprintln().

func FprintlnOnColor188 added in v1.8.0

func FprintlnOnColor188(w io.Writer, str string)

FprintlnOnColor188 wraps OnColor188() and fmt.Fprintln().

func FprintlnOnColor189 added in v1.8.0

func FprintlnOnColor189(w io.Writer, str string)

FprintlnOnColor189 wraps OnColor189() and fmt.Fprintln().

func FprintlnOnColor190 added in v1.8.0

func FprintlnOnColor190(w io.Writer, str string)

FprintlnOnColor190 wraps OnColor190() and fmt.Fprintln().

func FprintlnOnColor191 added in v1.8.0

func FprintlnOnColor191(w io.Writer, str string)

FprintlnOnColor191 wraps OnColor191() and fmt.Fprintln().

func FprintlnOnColor192 added in v1.8.0

func FprintlnOnColor192(w io.Writer, str string)

FprintlnOnColor192 wraps OnColor192() and fmt.Fprintln().

func FprintlnOnColor193 added in v1.8.0

func FprintlnOnColor193(w io.Writer, str string)

FprintlnOnColor193 wraps OnColor193() and fmt.Fprintln().

func FprintlnOnColor194 added in v1.8.0

func FprintlnOnColor194(w io.Writer, str string)

FprintlnOnColor194 wraps OnColor194() and fmt.Fprintln().

func FprintlnOnColor195 added in v1.8.0

func FprintlnOnColor195(w io.Writer, str string)

FprintlnOnColor195 wraps OnColor195() and fmt.Fprintln().

func FprintlnOnColor196 added in v1.8.0

func FprintlnOnColor196(w io.Writer, str string)

FprintlnOnColor196 wraps OnColor196() and fmt.Fprintln().

func FprintlnOnColor197 added in v1.8.0

func FprintlnOnColor197(w io.Writer, str string)

FprintlnOnColor197 wraps OnColor197() and fmt.Fprintln().

func FprintlnOnColor198 added in v1.8.0

func FprintlnOnColor198(w io.Writer, str string)

FprintlnOnColor198 wraps OnColor198() and fmt.Fprintln().

func FprintlnOnColor199 added in v1.8.0

func FprintlnOnColor199(w io.Writer, str string)

FprintlnOnColor199 wraps OnColor199() and fmt.Fprintln().

func FprintlnOnColor200 added in v1.8.0

func FprintlnOnColor200(w io.Writer, str string)

FprintlnOnColor200 wraps OnColor200() and fmt.Fprintln().

func FprintlnOnColor201 added in v1.8.0

func FprintlnOnColor201(w io.Writer, str string)

FprintlnOnColor201 wraps OnColor201() and fmt.Fprintln().

func FprintlnOnColor202 added in v1.8.0

func FprintlnOnColor202(w io.Writer, str string)

FprintlnOnColor202 wraps OnColor202() and fmt.Fprintln().

func FprintlnOnColor203 added in v1.8.0

func FprintlnOnColor203(w io.Writer, str string)

FprintlnOnColor203 wraps OnColor203() and fmt.Fprintln().

func FprintlnOnColor204 added in v1.8.0

func FprintlnOnColor204(w io.Writer, str string)

FprintlnOnColor204 wraps OnColor204() and fmt.Fprintln().

func FprintlnOnColor205 added in v1.8.0

func FprintlnOnColor205(w io.Writer, str string)

FprintlnOnColor205 wraps OnColor205() and fmt.Fprintln().

func FprintlnOnColor206 added in v1.8.0

func FprintlnOnColor206(w io.Writer, str string)

FprintlnOnColor206 wraps OnColor206() and fmt.Fprintln().

func FprintlnOnColor207 added in v1.8.0

func FprintlnOnColor207(w io.Writer, str string)

FprintlnOnColor207 wraps OnColor207() and fmt.Fprintln().

func FprintlnOnColor208 added in v1.8.0

func FprintlnOnColor208(w io.Writer, str string)

FprintlnOnColor208 wraps OnColor208() and fmt.Fprintln().

func FprintlnOnColor209 added in v1.8.0

func FprintlnOnColor209(w io.Writer, str string)

FprintlnOnColor209 wraps OnColor209() and fmt.Fprintln().

func FprintlnOnColor210 added in v1.8.0

func FprintlnOnColor210(w io.Writer, str string)

FprintlnOnColor210 wraps OnColor210() and fmt.Fprintln().

func FprintlnOnColor211 added in v1.8.0

func FprintlnOnColor211(w io.Writer, str string)

FprintlnOnColor211 wraps OnColor211() and fmt.Fprintln().

func FprintlnOnColor212 added in v1.8.0

func FprintlnOnColor212(w io.Writer, str string)

FprintlnOnColor212 wraps OnColor212() and fmt.Fprintln().

func FprintlnOnColor213 added in v1.8.0

func FprintlnOnColor213(w io.Writer, str string)

FprintlnOnColor213 wraps OnColor213() and fmt.Fprintln().

func FprintlnOnColor214 added in v1.8.0

func FprintlnOnColor214(w io.Writer, str string)

FprintlnOnColor214 wraps OnColor214() and fmt.Fprintln().

func FprintlnOnColor215 added in v1.8.0

func FprintlnOnColor215(w io.Writer, str string)

FprintlnOnColor215 wraps OnColor215() and fmt.Fprintln().

func FprintlnOnColor216 added in v1.8.0

func FprintlnOnColor216(w io.Writer, str string)

FprintlnOnColor216 wraps OnColor216() and fmt.Fprintln().

func FprintlnOnColor217 added in v1.8.0

func FprintlnOnColor217(w io.Writer, str string)

FprintlnOnColor217 wraps OnColor217() and fmt.Fprintln().

func FprintlnOnColor218 added in v1.8.0

func FprintlnOnColor218(w io.Writer, str string)

FprintlnOnColor218 wraps OnColor218() and fmt.Fprintln().

func FprintlnOnColor219 added in v1.8.0

func FprintlnOnColor219(w io.Writer, str string)

FprintlnOnColor219 wraps OnColor219() and fmt.Fprintln().

func FprintlnOnColor220 added in v1.8.0

func FprintlnOnColor220(w io.Writer, str string)

FprintlnOnColor220 wraps OnColor220() and fmt.Fprintln().

func FprintlnOnColor221 added in v1.8.0

func FprintlnOnColor221(w io.Writer, str string)

FprintlnOnColor221 wraps OnColor221() and fmt.Fprintln().

func FprintlnOnColor222 added in v1.8.0

func FprintlnOnColor222(w io.Writer, str string)

FprintlnOnColor222 wraps OnColor222() and fmt.Fprintln().

func FprintlnOnColor223 added in v1.8.0

func FprintlnOnColor223(w io.Writer, str string)

FprintlnOnColor223 wraps OnColor223() and fmt.Fprintln().

func FprintlnOnColor224 added in v1.8.0

func FprintlnOnColor224(w io.Writer, str string)

FprintlnOnColor224 wraps OnColor224() and fmt.Fprintln().

func FprintlnOnColor225 added in v1.8.0

func FprintlnOnColor225(w io.Writer, str string)

FprintlnOnColor225 wraps OnColor225() and fmt.Fprintln().

func FprintlnOnColor226 added in v1.8.0

func FprintlnOnColor226(w io.Writer, str string)

FprintlnOnColor226 wraps OnColor226() and fmt.Fprintln().

func FprintlnOnColor227 added in v1.8.0

func FprintlnOnColor227(w io.Writer, str string)

FprintlnOnColor227 wraps OnColor227() and fmt.Fprintln().

func FprintlnOnColor228 added in v1.8.0

func FprintlnOnColor228(w io.Writer, str string)

FprintlnOnColor228 wraps OnColor228() and fmt.Fprintln().

func FprintlnOnColor229 added in v1.8.0

func FprintlnOnColor229(w io.Writer, str string)

FprintlnOnColor229 wraps OnColor229() and fmt.Fprintln().

func FprintlnOnColor230 added in v1.8.0

func FprintlnOnColor230(w io.Writer, str string)

FprintlnOnColor230 wraps OnColor230() and fmt.Fprintln().

func FprintlnOnColor231 added in v1.8.0

func FprintlnOnColor231(w io.Writer, str string)

FprintlnOnColor231 wraps OnColor231() and fmt.Fprintln().

func FprintlnOnColor232 added in v1.8.0

func FprintlnOnColor232(w io.Writer, str string)

FprintlnOnColor232 wraps OnColor232() and fmt.Fprintln().

func FprintlnOnColor233 added in v1.8.0

func FprintlnOnColor233(w io.Writer, str string)

FprintlnOnColor233 wraps OnColor233() and fmt.Fprintln().

func FprintlnOnColor234 added in v1.8.0

func FprintlnOnColor234(w io.Writer, str string)

FprintlnOnColor234 wraps OnColor234() and fmt.Fprintln().

func FprintlnOnColor235 added in v1.8.0

func FprintlnOnColor235(w io.Writer, str string)

FprintlnOnColor235 wraps OnColor235() and fmt.Fprintln().

func FprintlnOnColor236 added in v1.8.0

func FprintlnOnColor236(w io.Writer, str string)

FprintlnOnColor236 wraps OnColor236() and fmt.Fprintln().

func FprintlnOnColor237 added in v1.8.0

func FprintlnOnColor237(w io.Writer, str string)

FprintlnOnColor237 wraps OnColor237() and fmt.Fprintln().

func FprintlnOnColor238 added in v1.8.0

func FprintlnOnColor238(w io.Writer, str string)

FprintlnOnColor238 wraps OnColor238() and fmt.Fprintln().

func FprintlnOnColor239 added in v1.8.0

func FprintlnOnColor239(w io.Writer, str string)

FprintlnOnColor239 wraps OnColor239() and fmt.Fprintln().

func FprintlnOnColor240 added in v1.8.0

func FprintlnOnColor240(w io.Writer, str string)

FprintlnOnColor240 wraps OnColor240() and fmt.Fprintln().

func FprintlnOnColor241 added in v1.8.0

func FprintlnOnColor241(w io.Writer, str string)

FprintlnOnColor241 wraps OnColor241() and fmt.Fprintln().

func FprintlnOnColor242 added in v1.8.0

func FprintlnOnColor242(w io.Writer, str string)

FprintlnOnColor242 wraps OnColor242() and fmt.Fprintln().

func FprintlnOnColor243 added in v1.8.0

func FprintlnOnColor243(w io.Writer, str string)

FprintlnOnColor243 wraps OnColor243() and fmt.Fprintln().

func FprintlnOnColor244 added in v1.8.0

func FprintlnOnColor244(w io.Writer, str string)

FprintlnOnColor244 wraps OnColor244() and fmt.Fprintln().

func FprintlnOnColor245 added in v1.8.0

func FprintlnOnColor245(w io.Writer, str string)

FprintlnOnColor245 wraps OnColor245() and fmt.Fprintln().

func FprintlnOnColor246 added in v1.8.0

func FprintlnOnColor246(w io.Writer, str string)

FprintlnOnColor246 wraps OnColor246() and fmt.Fprintln().

func FprintlnOnColor247 added in v1.8.0

func FprintlnOnColor247(w io.Writer, str string)

FprintlnOnColor247 wraps OnColor247() and fmt.Fprintln().

func FprintlnOnColor248 added in v1.8.0

func FprintlnOnColor248(w io.Writer, str string)

FprintlnOnColor248 wraps OnColor248() and fmt.Fprintln().

func FprintlnOnColor249 added in v1.8.0

func FprintlnOnColor249(w io.Writer, str string)

FprintlnOnColor249 wraps OnColor249() and fmt.Fprintln().

func FprintlnOnColor250 added in v1.8.0

func FprintlnOnColor250(w io.Writer, str string)

FprintlnOnColor250 wraps OnColor250() and fmt.Fprintln().

func FprintlnOnColor251 added in v1.8.0

func FprintlnOnColor251(w io.Writer, str string)

FprintlnOnColor251 wraps OnColor251() and fmt.Fprintln().

func FprintlnOnColor252 added in v1.8.0

func FprintlnOnColor252(w io.Writer, str string)

FprintlnOnColor252 wraps OnColor252() and fmt.Fprintln().

func FprintlnOnColor253 added in v1.8.0

func FprintlnOnColor253(w io.Writer, str string)

FprintlnOnColor253 wraps OnColor253() and fmt.Fprintln().

func FprintlnOnColor254 added in v1.8.0

func FprintlnOnColor254(w io.Writer, str string)

FprintlnOnColor254 wraps OnColor254() and fmt.Fprintln().

func FprintlnOnColor255 added in v1.8.0

func FprintlnOnColor255(w io.Writer, str string)

FprintlnOnColor255 wraps OnColor255() and fmt.Fprintln().

func FprintlnOnCyan added in v1.8.0

func FprintlnOnCyan(w io.Writer, str string)

FprintlnOnCyan wraps OnCyan() and fmt.Fprintln().

func FprintlnOnDefault added in v1.8.0

func FprintlnOnDefault(w io.Writer, str string)

FprintlnOnDefault wraps OnDefault() and fmt.Fprintln().

func FprintlnOnGreen added in v1.8.0

func FprintlnOnGreen(w io.Writer, str string)

FprintlnOnGreen wraps OnGreen() and fmt.Fprintln().

func FprintlnOnHex added in v1.8.0

func FprintlnOnHex(w io.Writer, hex string, str string)

FprintlnOnHex wraps OnHex() and fmt.Fprintln().

func FprintlnOnLightBlack added in v1.8.0

func FprintlnOnLightBlack(w io.Writer, str string)

FprintlnOnLightBlack wraps OnLightBlack() and fmt.Fprintln().

func FprintlnOnLightBlue added in v1.8.0

func FprintlnOnLightBlue(w io.Writer, str string)

FprintlnOnLightBlue wraps OnLightBlue() and fmt.Fprintln().

func FprintlnOnLightCyan added in v1.8.0

func FprintlnOnLightCyan(w io.Writer, str string)

FprintlnOnLightCyan wraps OnLightCyan() and fmt.Fprintln().

func FprintlnOnLightGreen added in v1.8.0

func FprintlnOnLightGreen(w io.Writer, str string)

FprintlnOnLightGreen wraps OnLightGreen() and fmt.Fprintln().

func FprintlnOnLightMagenta added in v1.8.0

func FprintlnOnLightMagenta(w io.Writer, str string)

FprintlnOnLightMagenta wraps OnLightMagenta() and fmt.Fprintln().

func FprintlnOnLightRed added in v1.8.0

func FprintlnOnLightRed(w io.Writer, str string)

FprintlnOnLightRed wraps OnLightRed() and fmt.Fprintln().

func FprintlnOnLightWhite added in v1.8.0

func FprintlnOnLightWhite(w io.Writer, str string)

FprintlnOnLightWhite wraps OnLightWhite() and fmt.Fprintln().

func FprintlnOnLightYellow added in v1.8.0

func FprintlnOnLightYellow(w io.Writer, str string)

FprintlnOnLightYellow wraps OnLightYellow() and fmt.Fprintln().

func FprintlnOnMagenta added in v1.8.0

func FprintlnOnMagenta(w io.Writer, str string)

FprintlnOnMagenta wraps OnMagenta() and fmt.Fprintln().

func FprintlnOnRainbow added in v1.8.0

func FprintlnOnRainbow(w io.Writer, str string)

FprintlnOnRainbow wraps OnRainbow() and fmt.Fprintln().

func FprintlnOnRed added in v1.8.0

func FprintlnOnRed(w io.Writer, str string)

FprintlnOnRed wraps OnRed() and fmt.Fprintln().

func FprintlnOnWhite added in v1.8.0

func FprintlnOnWhite(w io.Writer, str string)

FprintlnOnWhite wraps OnWhite() and fmt.Fprintln().

func FprintlnOnYellow added in v1.8.0

func FprintlnOnYellow(w io.Writer, str string)

FprintlnOnYellow wraps OnYellow() and fmt.Fprintln().

func FprintlnPlain added in v1.8.0

func FprintlnPlain(w io.Writer, str string)

FprintlnPlain wraps Plain() and fmt.Fprintln().

func FprintlnRainbow added in v1.8.0

func FprintlnRainbow(w io.Writer, str string)

FprintlnRainbow wraps Rainbow() and fmt.Fprintln().

func FprintlnRed added in v1.8.0

func FprintlnRed(w io.Writer, str string)

FprintlnRed wraps Red() and fmt.Fprintln().

func FprintlnReset added in v1.8.0

func FprintlnReset(w io.Writer, str string)

FprintlnReset wraps Reset() and fmt.Fprintln().

func FprintlnStrikethrough added in v1.8.0

func FprintlnStrikethrough(w io.Writer, str string)

FprintlnStrikethrough wraps Strikethrough() and fmt.Fprintln().

func FprintlnSwap added in v1.8.0

func FprintlnSwap(w io.Writer, str string)

FprintlnSwap wraps Swap() and fmt.Fprintln().

func FprintlnUnderline added in v1.8.0

func FprintlnUnderline(w io.Writer, str string)

FprintlnUnderline wraps Underline() and fmt.Fprintln().

func FprintlnWhite added in v1.8.0

func FprintlnWhite(w io.Writer, str string)

FprintlnWhite wraps White() and fmt.Fprintln().

func FprintlnWrap added in v1.8.0

func FprintlnWrap(w io.Writer, width int, str string)

FprintlnWrap wraps Wrap() and fmt.Fprintln().

func FprintlnYellow added in v1.8.0

func FprintlnYellow(w io.Writer, str string)

FprintlnYellow wraps Yellow() and fmt.Fprintln().

func Fraktur

func Fraktur(str string) string

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

func Frakturf added in v1.6.0

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

Frakturf wraps fmt.Sprintf() and Fraktur.

func Green

func Green(str string) string

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

func Greenf added in v1.6.0

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

Greenf wraps fmt.Sprintf() and Green.

func Hex

func Hex(hex string, str string) string

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

func HexToXterm256 added in v1.6.3

func HexToXterm256(hex string) string

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

func Hexf added in v1.6.0

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

Hexf wraps fmt.Sprintf() and Hex.

func Hide

func Hide(str string) string

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

func Hidef added in v1.6.0

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

Hidef wraps fmt.Sprintf() and Hide.

func Hilight

func Hilight(code string, str string) string

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

func Hilightf added in v1.6.0

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

Hilightf wraps fmt.Sprintf() and Hilight.

func Hilights

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

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

func Hilightsf added in v1.6.0

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

Hilightsf wraps fmt.Sprintf() and Hilights.

func Inverse

func Inverse(str string) string

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

func Inversef added in v1.6.0

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

Inversef wraps fmt.Sprintf() and Inverse.

func IsDisabled added in v1.6.2

func IsDisabled() bool

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

func Italic

func Italic(str string) string

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

func Italicf added in v1.6.0

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

Italicf wraps fmt.Sprintf() and Italic.

func LightBlack

func LightBlack(str string) string

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

func LightBlackf added in v1.6.0

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

LightBlackf wraps fmt.Sprintf() and LightBlack.

func LightBlue

func LightBlue(str string) string

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

func LightBluef added in v1.6.0

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

LightBluef wraps fmt.Sprintf() and LightBlue.

func LightCyan

func LightCyan(str string) string

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

func LightCyanf added in v1.6.0

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

LightCyanf wraps fmt.Sprintf() and LightCyan.

func LightGreen

func LightGreen(str string) string

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

func LightGreenf added in v1.6.0

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

LightGreenf wraps fmt.Sprintf() and LightGreen.

func LightMagenta

func LightMagenta(str string) string

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

func LightMagentaf added in v1.6.0

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

LightMagentaf wraps fmt.Sprintf() and LightMagenta.

func LightRed

func LightRed(str string) string

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

func LightRedf added in v1.6.0

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

LightRedf wraps fmt.Sprintf() and LightRed.

func LightWhite

func LightWhite(str string) string

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

func LightWhitef added in v1.6.0

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

LightWhitef wraps fmt.Sprintf() and LightWhite.

func LightYellow

func LightYellow(str string) string

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

func LightYellowf added in v1.6.0

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

LightYellowf wraps fmt.Sprintf() and LightYellow.

func Magenta

func Magenta(str string) string

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

func Magentaf added in v1.6.0

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

Magentaf wraps fmt.Sprintf() and Magenta.

func Negative

func Negative(str string) string

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

func Negativef added in v1.6.0

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

Negativef wraps fmt.Sprintf() and Negative.

func NoBlink(str string) string

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

func NoBlinkRapid

func NoBlinkRapid(str string) string

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

func NoBlinkRapidf added in v1.6.0

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

NoBlinkRapidf wraps fmt.Sprintf() and NoBlinkRapid.

func NoBlinkSlow

func NoBlinkSlow(str string) string

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

func NoBlinkSlowf added in v1.6.0

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

NoBlinkSlowf wraps fmt.Sprintf() and NoBlinkSlow.

func NoBlinkf added in v1.6.0

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

NoBlinkf wraps fmt.Sprintf() and NoBlink.

func NoBold

func NoBold(str string) string

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

func NoBoldf added in v1.6.0

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

NoBoldf wraps fmt.Sprintf() and NoBold.

func NoConceal

func NoConceal(str string) string

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

func NoConcealf added in v1.6.0

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

NoConcealf wraps fmt.Sprintf() and NoConceal.

func NoCrossedOut

func NoCrossedOut(str string) string

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

func NoCrossedOutf added in v1.6.0

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

NoCrossedOutf wraps fmt.Sprintf() and NoCrossedOut.

func NoDim

func NoDim(str string) string

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

func NoDimf added in v1.6.0

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

NoDimf wraps fmt.Sprintf() and NoDim.

func NoFaint

func NoFaint(str string) string

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

func NoFaintf added in v1.6.0

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

NoFaintf wraps fmt.Sprintf() and NoFaint.

func NoFraktur

func NoFraktur(str string) string

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

func NoFrakturf added in v1.6.0

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

NoFrakturf wraps fmt.Sprintf() and NoFraktur.

func NoHide

func NoHide(str string) string

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

func NoHidef added in v1.6.0

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

NoHidef wraps fmt.Sprintf() and NoHide.

func NoInverse

func NoInverse(str string) string

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

func NoInversef added in v1.6.0

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

NoInversef wraps fmt.Sprintf() and NoInverse.

func NoItalic

func NoItalic(str string) string

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

func NoItalicf added in v1.6.0

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

NoItalicf wraps fmt.Sprintf() and NoItalic.

func NoNegative

func NoNegative(str string) string

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

func NoNegativef added in v1.6.0

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

NoNegativef wraps fmt.Sprintf() and NoNegative.

func NoStrikethrough

func NoStrikethrough(str string) string

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

func NoStrikethroughf added in v1.6.0

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

NoStrikethroughf wraps fmt.Sprintf() and NoStrikethrough.

func NoSwap

func NoSwap(str string) string

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

func NoSwapf added in v1.6.0

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

NoSwapf wraps fmt.Sprintf() and NoSwap.

func NoUnderline

func NoUnderline(str string) string

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

func NoUnderlinef added in v1.6.0

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

NoUnderlinef wraps fmt.Sprintf() and NoUnderline.

func Normal

func Normal(str string) string

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

func Normalf added in v1.6.0

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

Normalf wraps fmt.Sprintf() and Normal.

func OnBlack

func OnBlack(str string) string

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

func OnBlackf added in v1.6.0

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

OnBlackf wraps fmt.Sprintf() and OnBlack.

func OnBlue

func OnBlue(str string) string

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

func OnBluef added in v1.6.0

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

OnBluef wraps fmt.Sprintf() and OnBlue.

func OnColor000

func OnColor000(str string) string

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

func OnColor000f added in v1.6.0

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

OnColor000f wraps fmt.Sprintf() and OnColor000.

func OnColor001

func OnColor001(str string) string

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

func OnColor001f added in v1.6.0

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

OnColor001f wraps fmt.Sprintf() and OnColor001.

func OnColor002

func OnColor002(str string) string

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

func OnColor002f added in v1.6.0

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

OnColor002f wraps fmt.Sprintf() and OnColor002.

func OnColor003

func OnColor003(str string) string

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

func OnColor003f added in v1.6.0

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

OnColor003f wraps fmt.Sprintf() and OnColor003.

func OnColor004

func OnColor004(str string) string

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

func OnColor004f added in v1.6.0

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

OnColor004f wraps fmt.Sprintf() and OnColor004.

func OnColor005

func OnColor005(str string) string

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

func OnColor005f added in v1.6.0

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

OnColor005f wraps fmt.Sprintf() and OnColor005.

func OnColor006

func OnColor006(str string) string

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

func OnColor006f added in v1.6.0

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

OnColor006f wraps fmt.Sprintf() and OnColor006.

func OnColor007

func OnColor007(str string) string

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

func OnColor007f added in v1.6.0

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

OnColor007f wraps fmt.Sprintf() and OnColor007.

func OnColor008

func OnColor008(str string) string

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

func OnColor008f added in v1.6.0

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

OnColor008f wraps fmt.Sprintf() and OnColor008.

func OnColor009

func OnColor009(str string) string

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

func OnColor009f added in v1.6.0

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

OnColor009f wraps fmt.Sprintf() and OnColor009.

func OnColor010

func OnColor010(str string) string

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

func OnColor010f added in v1.6.0

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

OnColor010f wraps fmt.Sprintf() and OnColor010.

func OnColor011

func OnColor011(str string) string

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

func OnColor011f added in v1.6.0

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

OnColor011f wraps fmt.Sprintf() and OnColor011.

func OnColor012

func OnColor012(str string) string

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

func OnColor012f added in v1.6.0

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

OnColor012f wraps fmt.Sprintf() and OnColor012.

func OnColor013

func OnColor013(str string) string

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

func OnColor013f added in v1.6.0

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

OnColor013f wraps fmt.Sprintf() and OnColor013.

func OnColor014

func OnColor014(str string) string

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

func OnColor014f added in v1.6.0

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

OnColor014f wraps fmt.Sprintf() and OnColor014.

func OnColor015

func OnColor015(str string) string

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

func OnColor015f added in v1.6.0

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

OnColor015f wraps fmt.Sprintf() and OnColor015.

func OnColor016

func OnColor016(str string) string

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

func OnColor016f added in v1.6.0

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

OnColor016f wraps fmt.Sprintf() and OnColor016.

func OnColor017

func OnColor017(str string) string

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

func OnColor017f added in v1.6.0

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

OnColor017f wraps fmt.Sprintf() and OnColor017.

func OnColor018

func OnColor018(str string) string

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

func OnColor018f added in v1.6.0

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

OnColor018f wraps fmt.Sprintf() and OnColor018.

func OnColor019

func OnColor019(str string) string

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

func OnColor019f added in v1.6.0

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

OnColor019f wraps fmt.Sprintf() and OnColor019.

func OnColor020

func OnColor020(str string) string

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

func OnColor020f added in v1.6.0

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

OnColor020f wraps fmt.Sprintf() and OnColor020.

func OnColor021

func OnColor021(str string) string

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

func OnColor021f added in v1.6.0

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

OnColor021f wraps fmt.Sprintf() and OnColor021.

func OnColor022

func OnColor022(str string) string

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

func OnColor022f added in v1.6.0

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

OnColor022f wraps fmt.Sprintf() and OnColor022.

func OnColor023

func OnColor023(str string) string

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

func OnColor023f added in v1.6.0

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

OnColor023f wraps fmt.Sprintf() and OnColor023.

func OnColor024

func OnColor024(str string) string

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

func OnColor024f added in v1.6.0

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

OnColor024f wraps fmt.Sprintf() and OnColor024.

func OnColor025

func OnColor025(str string) string

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

func OnColor025f added in v1.6.0

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

OnColor025f wraps fmt.Sprintf() and OnColor025.

func OnColor026

func OnColor026(str string) string

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

func OnColor026f added in v1.6.0

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

OnColor026f wraps fmt.Sprintf() and OnColor026.

func OnColor027

func OnColor027(str string) string

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

func OnColor027f added in v1.6.0

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

OnColor027f wraps fmt.Sprintf() and OnColor027.

func OnColor028

func OnColor028(str string) string

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

func OnColor028f added in v1.6.0

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

OnColor028f wraps fmt.Sprintf() and OnColor028.

func OnColor029

func OnColor029(str string) string

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

func OnColor029f added in v1.6.0

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

OnColor029f wraps fmt.Sprintf() and OnColor029.

func OnColor030

func OnColor030(str string) string

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

func OnColor030f added in v1.6.0

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

OnColor030f wraps fmt.Sprintf() and OnColor030.

func OnColor031

func OnColor031(str string) string

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

func OnColor031f added in v1.6.0

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

OnColor031f wraps fmt.Sprintf() and OnColor031.

func OnColor032

func OnColor032(str string) string

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

func OnColor032f added in v1.6.0

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

OnColor032f wraps fmt.Sprintf() and OnColor032.

func OnColor033

func OnColor033(str string) string

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

func OnColor033f added in v1.6.0

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

OnColor033f wraps fmt.Sprintf() and OnColor033.

func OnColor034

func OnColor034(str string) string

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

func OnColor034f added in v1.6.0

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

OnColor034f wraps fmt.Sprintf() and OnColor034.

func OnColor035

func OnColor035(str string) string

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

func OnColor035f added in v1.6.0

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

OnColor035f wraps fmt.Sprintf() and OnColor035.

func OnColor036

func OnColor036(str string) string

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

func OnColor036f added in v1.6.0

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

OnColor036f wraps fmt.Sprintf() and OnColor036.

func OnColor037

func OnColor037(str string) string

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

func OnColor037f added in v1.6.0

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

OnColor037f wraps fmt.Sprintf() and OnColor037.

func OnColor038

func OnColor038(str string) string

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

func OnColor038f added in v1.6.0

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

OnColor038f wraps fmt.Sprintf() and OnColor038.

func OnColor039

func OnColor039(str string) string

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

func OnColor039f added in v1.6.0

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

OnColor039f wraps fmt.Sprintf() and OnColor039.

func OnColor040

func OnColor040(str string) string

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

func OnColor040f added in v1.6.0

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

OnColor040f wraps fmt.Sprintf() and OnColor040.

func OnColor041

func OnColor041(str string) string

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

func OnColor041f added in v1.6.0

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

OnColor041f wraps fmt.Sprintf() and OnColor041.

func OnColor042

func OnColor042(str string) string

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

func OnColor042f added in v1.6.0

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

OnColor042f wraps fmt.Sprintf() and OnColor042.

func OnColor043

func OnColor043(str string) string

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

func OnColor043f added in v1.6.0

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

OnColor043f wraps fmt.Sprintf() and OnColor043.

func OnColor044

func OnColor044(str string) string

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

func OnColor044f added in v1.6.0

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

OnColor044f wraps fmt.Sprintf() and OnColor044.

func OnColor045

func OnColor045(str string) string

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

func OnColor045f added in v1.6.0

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

OnColor045f wraps fmt.Sprintf() and OnColor045.

func OnColor046

func OnColor046(str string) string

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

func OnColor046f added in v1.6.0

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

OnColor046f wraps fmt.Sprintf() and OnColor046.

func OnColor047

func OnColor047(str string) string

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

func OnColor047f added in v1.6.0

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

OnColor047f wraps fmt.Sprintf() and OnColor047.

func OnColor048

func OnColor048(str string) string

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

func OnColor048f added in v1.6.0

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

OnColor048f wraps fmt.Sprintf() and OnColor048.

func OnColor049

func OnColor049(str string) string

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

func OnColor049f added in v1.6.0

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

OnColor049f wraps fmt.Sprintf() and OnColor049.

func OnColor050

func OnColor050(str string) string

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

func OnColor050f added in v1.6.0

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

OnColor050f wraps fmt.Sprintf() and OnColor050.

func OnColor051

func OnColor051(str string) string

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

func OnColor051f added in v1.6.0

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

OnColor051f wraps fmt.Sprintf() and OnColor051.

func OnColor052

func OnColor052(str string) string

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

func OnColor052f added in v1.6.0

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

OnColor052f wraps fmt.Sprintf() and OnColor052.

func OnColor053

func OnColor053(str string) string

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

func OnColor053f added in v1.6.0

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

OnColor053f wraps fmt.Sprintf() and OnColor053.

func OnColor054

func OnColor054(str string) string

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

func OnColor054f added in v1.6.0

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

OnColor054f wraps fmt.Sprintf() and OnColor054.

func OnColor055

func OnColor055(str string) string

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

func OnColor055f added in v1.6.0

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

OnColor055f wraps fmt.Sprintf() and OnColor055.

func OnColor056

func OnColor056(str string) string

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

func OnColor056f added in v1.6.0

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

OnColor056f wraps fmt.Sprintf() and OnColor056.

func OnColor057

func OnColor057(str string) string

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

func OnColor057f added in v1.6.0

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

OnColor057f wraps fmt.Sprintf() and OnColor057.

func OnColor058

func OnColor058(str string) string

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

func OnColor058f added in v1.6.0

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

OnColor058f wraps fmt.Sprintf() and OnColor058.

func OnColor059

func OnColor059(str string) string

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

func OnColor059f added in v1.6.0

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

OnColor059f wraps fmt.Sprintf() and OnColor059.

func OnColor060

func OnColor060(str string) string

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

func OnColor060f added in v1.6.0

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

OnColor060f wraps fmt.Sprintf() and OnColor060.

func OnColor061

func OnColor061(str string) string

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

func OnColor061f added in v1.6.0

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

OnColor061f wraps fmt.Sprintf() and OnColor061.

func OnColor062

func OnColor062(str string) string

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

func OnColor062f added in v1.6.0

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

OnColor062f wraps fmt.Sprintf() and OnColor062.

func OnColor063

func OnColor063(str string) string

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

func OnColor063f added in v1.6.0

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

OnColor063f wraps fmt.Sprintf() and OnColor063.

func OnColor064

func OnColor064(str string) string

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

func OnColor064f added in v1.6.0

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

OnColor064f wraps fmt.Sprintf() and OnColor064.

func OnColor065

func OnColor065(str string) string

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

func OnColor065f added in v1.6.0

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

OnColor065f wraps fmt.Sprintf() and OnColor065.

func OnColor066

func OnColor066(str string) string

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

func OnColor066f added in v1.6.0

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

OnColor066f wraps fmt.Sprintf() and OnColor066.

func OnColor067

func OnColor067(str string) string

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

func OnColor067f added in v1.6.0

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

OnColor067f wraps fmt.Sprintf() and OnColor067.

func OnColor068

func OnColor068(str string) string

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

func OnColor068f added in v1.6.0

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

OnColor068f wraps fmt.Sprintf() and OnColor068.

func OnColor069

func OnColor069(str string) string

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

func OnColor069f added in v1.6.0

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

OnColor069f wraps fmt.Sprintf() and OnColor069.

func OnColor070

func OnColor070(str string) string

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

func OnColor070f added in v1.6.0

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

OnColor070f wraps fmt.Sprintf() and OnColor070.

func OnColor071

func OnColor071(str string) string

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

func OnColor071f added in v1.6.0

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

OnColor071f wraps fmt.Sprintf() and OnColor071.

func OnColor072

func OnColor072(str string) string

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

func OnColor072f added in v1.6.0

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

OnColor072f wraps fmt.Sprintf() and OnColor072.

func OnColor073

func OnColor073(str string) string

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

func OnColor073f added in v1.6.0

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

OnColor073f wraps fmt.Sprintf() and OnColor073.

func OnColor074

func OnColor074(str string) string

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

func OnColor074f added in v1.6.0

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

OnColor074f wraps fmt.Sprintf() and OnColor074.

func OnColor075

func OnColor075(str string) string

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

func OnColor075f added in v1.6.0

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

OnColor075f wraps fmt.Sprintf() and OnColor075.

func OnColor076

func OnColor076(str string) string

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

func OnColor076f added in v1.6.0

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

OnColor076f wraps fmt.Sprintf() and OnColor076.

func OnColor077

func OnColor077(str string) string

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

func OnColor077f added in v1.6.0

func OnColor077f(format string, args ...interface{}) string

OnColor077f wraps fmt.Sprintf() and OnColor077.

func OnColor078

func OnColor078(str string) string

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

func OnColor078f added in v1.6.0

func OnColor078f(format string, args ...interface{}) string

OnColor078f wraps fmt.Sprintf() and OnColor078.

func OnColor079

func OnColor079(str string) string

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

func OnColor079f added in v1.6.0

func OnColor079f(format string, args ...interface{}) string

OnColor079f wraps fmt.Sprintf() and OnColor079.

func OnColor080

func OnColor080(str string) string

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

func OnColor080f added in v1.6.0

func OnColor080f(format string, args ...interface{}) string

OnColor080f wraps fmt.Sprintf() and OnColor080.

func OnColor081

func OnColor081(str string) string

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

func OnColor081f added in v1.6.0

func OnColor081f(format string, args ...interface{}) string

OnColor081f wraps fmt.Sprintf() and OnColor081.

func OnColor082

func OnColor082(str string) string

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

func OnColor082f added in v1.6.0

func OnColor082f(format string, args ...interface{}) string

OnColor082f wraps fmt.Sprintf() and OnColor082.

func OnColor083

func OnColor083(str string) string

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

func OnColor083f added in v1.6.0

func OnColor083f(format string, args ...interface{}) string

OnColor083f wraps fmt.Sprintf() and OnColor083.

func OnColor084

func OnColor084(str string) string

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

func OnColor084f added in v1.6.0

func OnColor084f(format string, args ...interface{}) string

OnColor084f wraps fmt.Sprintf() and OnColor084.

func OnColor085

func OnColor085(str string) string

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

func OnColor085f added in v1.6.0

func OnColor085f(format string, args ...interface{}) string

OnColor085f wraps fmt.Sprintf() and OnColor085.

func OnColor086

func OnColor086(str string) string

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

func OnColor086f added in v1.6.0

func OnColor086f(format string, args ...interface{}) string

OnColor086f wraps fmt.Sprintf() and OnColor086.

func OnColor087

func OnColor087(str string) string

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

func OnColor087f added in v1.6.0

func OnColor087f(format string, args ...interface{}) string

OnColor087f wraps fmt.Sprintf() and OnColor087.

func OnColor088

func OnColor088(str string) string

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

func OnColor088f added in v1.6.0

func OnColor088f(format string, args ...interface{}) string

OnColor088f wraps fmt.Sprintf() and OnColor088.

func OnColor089

func OnColor089(str string) string

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

func OnColor089f added in v1.6.0

func OnColor089f(format string, args ...interface{}) string

OnColor089f wraps fmt.Sprintf() and OnColor089.

func OnColor090

func OnColor090(str string) string

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

func OnColor090f added in v1.6.0

func OnColor090f(format string, args ...interface{}) string

OnColor090f wraps fmt.Sprintf() and OnColor090.

func OnColor091

func OnColor091(str string) string

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

func OnColor091f added in v1.6.0

func OnColor091f(format string, args ...interface{}) string

OnColor091f wraps fmt.Sprintf() and OnColor091.

func OnColor092

func OnColor092(str string) string

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

func OnColor092f added in v1.6.0

func OnColor092f(format string, args ...interface{}) string

OnColor092f wraps fmt.Sprintf() and OnColor092.

func OnColor093

func OnColor093(str string) string

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

func OnColor093f added in v1.6.0

func OnColor093f(format string, args ...interface{}) string

OnColor093f wraps fmt.Sprintf() and OnColor093.

func OnColor094

func OnColor094(str string) string

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

func OnColor094f added in v1.6.0

func OnColor094f(format string, args ...interface{}) string

OnColor094f wraps fmt.Sprintf() and OnColor094.

func OnColor095

func OnColor095(str string) string

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

func OnColor095f added in v1.6.0

func OnColor095f(format string, args ...interface{}) string

OnColor095f wraps fmt.Sprintf() and OnColor095.

func OnColor096

func OnColor096(str string) string

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

func OnColor096f added in v1.6.0

func OnColor096f(format string, args ...interface{}) string

OnColor096f wraps fmt.Sprintf() and OnColor096.

func OnColor097

func OnColor097(str string) string

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

func OnColor097f added in v1.6.0

func OnColor097f(format string, args ...interface{}) string

OnColor097f wraps fmt.Sprintf() and OnColor097.

func OnColor098

func OnColor098(str string) string

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

func OnColor098f added in v1.6.0

func OnColor098f(format string, args ...interface{}) string

OnColor098f wraps fmt.Sprintf() and OnColor098.

func OnColor099

func OnColor099(str string) string

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

func OnColor099f added in v1.6.0

func OnColor099f(format string, args ...interface{}) string

OnColor099f wraps fmt.Sprintf() and OnColor099.

func OnColor100

func OnColor100(str string) string

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

func OnColor100f added in v1.6.0

func OnColor100f(format string, args ...interface{}) string

OnColor100f wraps fmt.Sprintf() and OnColor100.

func OnColor101

func OnColor101(str string) string

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

func OnColor101f added in v1.6.0

func OnColor101f(format string, args ...interface{}) string

OnColor101f wraps fmt.Sprintf() and OnColor101.

func OnColor102

func OnColor102(str string) string

OnColor102 will Hilight() the provided string with the specified ANSI code.

func OnColor102f added in v1.6.0

func OnColor102f(format string, args ...interface{}) string

OnColor102f wraps fmt.Sprintf() and OnColor102.

func OnColor103

func OnColor103(str string) string

OnColor103 will Hilight() the provided string with the specified ANSI code.

func OnColor103f added in v1.6.0

func OnColor103f(format string, args ...interface{}) string

OnColor103f wraps fmt.Sprintf() and OnColor103.

func OnColor104

func OnColor104(str string) string

OnColor104 will Hilight() the provided string with the specified ANSI code.

func OnColor104f added in v1.6.0

func OnColor104f(format string, args ...interface{}) string

OnColor104f wraps fmt.Sprintf() and OnColor104.

func OnColor105

func OnColor105(str string) string

OnColor105 will Hilight() the provided string with the specified ANSI code.

func OnColor105f added in v1.6.0

func OnColor105f(format string, args ...interface{}) string

OnColor105f wraps fmt.Sprintf() and OnColor105.

func OnColor106

func OnColor106(str string) string

OnColor106 will Hilight() the provided string with the specified ANSI code.

func OnColor106f added in v1.6.0

func OnColor106f(format string, args ...interface{}) string

OnColor106f wraps fmt.Sprintf() and OnColor106.

func OnColor107

func OnColor107(str string) string

OnColor107 will Hilight() the provided string with the specified ANSI code.

func OnColor107f added in v1.6.0

func OnColor107f(format string, args ...interface{}) string

OnColor107f wraps fmt.Sprintf() and OnColor107.

func OnColor108

func OnColor108(str string) string

OnColor108 will Hilight() the provided string with the specified ANSI code.

func OnColor108f added in v1.6.0

func OnColor108f(format string, args ...interface{}) string

OnColor108f wraps fmt.Sprintf() and OnColor108.

func OnColor109

func OnColor109(str string) string

OnColor109 will Hilight() the provided string with the specified ANSI code.

func OnColor109f added in v1.6.0

func OnColor109f(format string, args ...interface{}) string

OnColor109f wraps fmt.Sprintf() and OnColor109.

func OnColor110

func OnColor110(str string) string

OnColor110 will Hilight() the provided string with the specified ANSI code.

func OnColor110f added in v1.6.0

func OnColor110f(format string, args ...interface{}) string

OnColor110f wraps fmt.Sprintf() and OnColor110.

func OnColor111

func OnColor111(str string) string

OnColor111 will Hilight() the provided string with the specified ANSI code.

func OnColor111f added in v1.6.0

func OnColor111f(format string, args ...interface{}) string

OnColor111f wraps fmt.Sprintf() and OnColor111.

func OnColor112

func OnColor112(str string) string

OnColor112 will Hilight() the provided string with the specified ANSI code.

func OnColor112f added in v1.6.0

func OnColor112f(format string, args ...interface{}) string

OnColor112f wraps fmt.Sprintf() and OnColor112.

func OnColor113

func OnColor113(str string) string

OnColor113 will Hilight() the provided string with the specified ANSI code.

func OnColor113f added in v1.6.0

func OnColor113f(format string, args ...interface{}) string

OnColor113f wraps fmt.Sprintf() and OnColor113.

func OnColor114

func OnColor114(str string) string

OnColor114 will Hilight() the provided string with the specified ANSI code.

func OnColor114f added in v1.6.0

func OnColor114f(format string, args ...interface{}) string

OnColor114f wraps fmt.Sprintf() and OnColor114.

func OnColor115

func OnColor115(str string) string

OnColor115 will Hilight() the provided string with the specified ANSI code.

func OnColor115f added in v1.6.0

func OnColor115f(format string, args ...interface{}) string

OnColor115f wraps fmt.Sprintf() and OnColor115.

func OnColor116

func OnColor116(str string) string

OnColor116 will Hilight() the provided string with the specified ANSI code.

func OnColor116f added in v1.6.0

func OnColor116f(format string, args ...interface{}) string

OnColor116f wraps fmt.Sprintf() and OnColor116.

func OnColor117

func OnColor117(str string) string

OnColor117 will Hilight() the provided string with the specified ANSI code.

func OnColor117f added in v1.6.0

func OnColor117f(format string, args ...interface{}) string

OnColor117f wraps fmt.Sprintf() and OnColor117.

func OnColor118

func OnColor118(str string) string

OnColor118 will Hilight() the provided string with the specified ANSI code.

func OnColor118f added in v1.6.0

func OnColor118f(format string, args ...interface{}) string

OnColor118f wraps fmt.Sprintf() and OnColor118.

func OnColor119

func OnColor119(str string) string

OnColor119 will Hilight() the provided string with the specified ANSI code.

func OnColor119f added in v1.6.0

func OnColor119f(format string, args ...interface{}) string

OnColor119f wraps fmt.Sprintf() and OnColor119.

func OnColor120

func OnColor120(str string) string

OnColor120 will Hilight() the provided string with the specified ANSI code.

func OnColor120f added in v1.6.0

func OnColor120f(format string, args ...interface{}) string

OnColor120f wraps fmt.Sprintf() and OnColor120.

func OnColor121

func OnColor121(str string) string

OnColor121 will Hilight() the provided string with the specified ANSI code.

func OnColor121f added in v1.6.0

func OnColor121f(format string, args ...interface{}) string

OnColor121f wraps fmt.Sprintf() and OnColor121.

func OnColor122

func OnColor122(str string) string

OnColor122 will Hilight() the provided string with the specified ANSI code.

func OnColor122f added in v1.6.0

func OnColor122f(format string, args ...interface{}) string

OnColor122f wraps fmt.Sprintf() and OnColor122.

func OnColor123

func OnColor123(str string) string

OnColor123 will Hilight() the provided string with the specified ANSI code.

func OnColor123f added in v1.6.0

func OnColor123f(format string, args ...interface{}) string

OnColor123f wraps fmt.Sprintf() and OnColor123.

func OnColor124

func OnColor124(str string) string

OnColor124 will Hilight() the provided string with the specified ANSI code.

func OnColor124f added in v1.6.0

func OnColor124f(format string, args ...interface{}) string

OnColor124f wraps fmt.Sprintf() and OnColor124.

func OnColor125

func OnColor125(str string) string

OnColor125 will Hilight() the provided string with the specified ANSI code.

func OnColor125f added in v1.6.0

func OnColor125f(format string, args ...interface{}) string

OnColor125f wraps fmt.Sprintf() and OnColor125.

func OnColor126

func OnColor126(str string) string

OnColor126 will Hilight() the provided string with the specified ANSI code.

func OnColor126f added in v1.6.0

func OnColor126f(format string, args ...interface{}) string

OnColor126f wraps fmt.Sprintf() and OnColor126.

func OnColor127

func OnColor127(str string) string

OnColor127 will Hilight() the provided string with the specified ANSI code.

func OnColor127f added in v1.6.0

func OnColor127f(format string, args ...interface{}) string

OnColor127f wraps fmt.Sprintf() and OnColor127.

func OnColor128

func OnColor128(str string) string

OnColor128 will Hilight() the provided string with the specified ANSI code.

func OnColor128f added in v1.6.0

func OnColor128f(format string, args ...interface{}) string

OnColor128f wraps fmt.Sprintf() and OnColor128.

func OnColor129

func OnColor129(str string) string

OnColor129 will Hilight() the provided string with the specified ANSI code.

func OnColor129f added in v1.6.0

func OnColor129f(format string, args ...interface{}) string

OnColor129f wraps fmt.Sprintf() and OnColor129.

func OnColor130

func OnColor130(str string) string

OnColor130 will Hilight() the provided string with the specified ANSI code.

func OnColor130f added in v1.6.0

func OnColor130f(format string, args ...interface{}) string

OnColor130f wraps fmt.Sprintf() and OnColor130.

func OnColor131

func OnColor131(str string) string

OnColor131 will Hilight() the provided string with the specified ANSI code.

func OnColor131f added in v1.6.0

func OnColor131f(format string, args ...interface{}) string

OnColor131f wraps fmt.Sprintf() and OnColor131.

func OnColor132

func OnColor132(str string) string

OnColor132 will Hilight() the provided string with the specified ANSI code.

func OnColor132f added in v1.6.0

func OnColor132f(format string, args ...interface{}) string

OnColor132f wraps fmt.Sprintf() and OnColor132.

func OnColor133

func OnColor133(str string) string

OnColor133 will Hilight() the provided string with the specified ANSI code.

func OnColor133f added in v1.6.0

func OnColor133f(format string, args ...interface{}) string

OnColor133f wraps fmt.Sprintf() and OnColor133.

func OnColor134

func OnColor134(str string) string

OnColor134 will Hilight() the provided string with the specified ANSI code.

func OnColor134f added in v1.6.0

func OnColor134f(format string, args ...interface{}) string

OnColor134f wraps fmt.Sprintf() and OnColor134.

func OnColor135

func OnColor135(str string) string

OnColor135 will Hilight() the provided string with the specified ANSI code.

func OnColor135f added in v1.6.0

func OnColor135f(format string, args ...interface{}) string

OnColor135f wraps fmt.Sprintf() and OnColor135.

func OnColor136

func OnColor136(str string) string

OnColor136 will Hilight() the provided string with the specified ANSI code.

func OnColor136f added in v1.6.0

func OnColor136f(format string, args ...interface{}) string

OnColor136f wraps fmt.Sprintf() and OnColor136.

func OnColor137

func OnColor137(str string) string

OnColor137 will Hilight() the provided string with the specified ANSI code.

func OnColor137f added in v1.6.0

func OnColor137f(format string, args ...interface{}) string

OnColor137f wraps fmt.Sprintf() and OnColor137.

func OnColor138

func OnColor138(str string) string

OnColor138 will Hilight() the provided string with the specified ANSI code.

func OnColor138f added in v1.6.0

func OnColor138f(format string, args ...interface{}) string

OnColor138f wraps fmt.Sprintf() and OnColor138.

func OnColor139

func OnColor139(str string) string

OnColor139 will Hilight() the provided string with the specified ANSI code.

func OnColor139f added in v1.6.0

func OnColor139f(format string, args ...interface{}) string

OnColor139f wraps fmt.Sprintf() and OnColor139.

func OnColor140

func OnColor140(str string) string

OnColor140 will Hilight() the provided string with the specified ANSI code.

func OnColor140f added in v1.6.0

func OnColor140f(format string, args ...interface{}) string

OnColor140f wraps fmt.Sprintf() and OnColor140.

func OnColor141

func OnColor141(str string) string

OnColor141 will Hilight() the provided string with the specified ANSI code.

func OnColor141f added in v1.6.0

func OnColor141f(format string, args ...interface{}) string

OnColor141f wraps fmt.Sprintf() and OnColor141.

func OnColor142

func OnColor142(str string) string

OnColor142 will Hilight() the provided string with the specified ANSI code.

func OnColor142f added in v1.6.0

func OnColor142f(format string, args ...interface{}) string

OnColor142f wraps fmt.Sprintf() and OnColor142.

func OnColor143

func OnColor143(str string) string

OnColor143 will Hilight() the provided string with the specified ANSI code.

func OnColor143f added in v1.6.0

func OnColor143f(format string, args ...interface{}) string

OnColor143f wraps fmt.Sprintf() and OnColor143.

func OnColor144

func OnColor144(str string) string

OnColor144 will Hilight() the provided string with the specified ANSI code.

func OnColor144f added in v1.6.0

func OnColor144f(format string, args ...interface{}) string

OnColor144f wraps fmt.Sprintf() and OnColor144.

func OnColor145

func OnColor145(str string) string

OnColor145 will Hilight() the provided string with the specified ANSI code.

func OnColor145f added in v1.6.0

func OnColor145f(format string, args ...interface{}) string

OnColor145f wraps fmt.Sprintf() and OnColor145.

func OnColor146

func OnColor146(str string) string

OnColor146 will Hilight() the provided string with the specified ANSI code.

func OnColor146f added in v1.6.0

func OnColor146f(format string, args ...interface{}) string

OnColor146f wraps fmt.Sprintf() and OnColor146.

func OnColor147

func OnColor147(str string) string

OnColor147 will Hilight() the provided string with the specified ANSI code.

func OnColor147f added in v1.6.0

func OnColor147f(format string, args ...interface{}) string

OnColor147f wraps fmt.Sprintf() and OnColor147.

func OnColor148

func OnColor148(str string) string

OnColor148 will Hilight() the provided string with the specified ANSI code.

func OnColor148f added in v1.6.0

func OnColor148f(format string, args ...interface{}) string

OnColor148f wraps fmt.Sprintf() and OnColor148.

func OnColor149

func OnColor149(str string) string

OnColor149 will Hilight() the provided string with the specified ANSI code.

func OnColor149f added in v1.6.0

func OnColor149f(format string, args ...interface{}) string

OnColor149f wraps fmt.Sprintf() and OnColor149.

func OnColor150

func OnColor150(str string) string

OnColor150 will Hilight() the provided string with the specified ANSI code.

func OnColor150f added in v1.6.0

func OnColor150f(format string, args ...interface{}) string

OnColor150f wraps fmt.Sprintf() and OnColor150.

func OnColor151

func OnColor151(str string) string

OnColor151 will Hilight() the provided string with the specified ANSI code.

func OnColor151f added in v1.6.0

func OnColor151f(format string, args ...interface{}) string

OnColor151f wraps fmt.Sprintf() and OnColor151.

func OnColor152

func OnColor152(str string) string

OnColor152 will Hilight() the provided string with the specified ANSI code.

func OnColor152f added in v1.6.0

func OnColor152f(format string, args ...interface{}) string

OnColor152f wraps fmt.Sprintf() and OnColor152.

func OnColor153

func OnColor153(str string) string

OnColor153 will Hilight() the provided string with the specified ANSI code.

func OnColor153f added in v1.6.0

func OnColor153f(format string, args ...interface{}) string

OnColor153f wraps fmt.Sprintf() and OnColor153.

func OnColor154

func OnColor154(str string) string

OnColor154 will Hilight() the provided string with the specified ANSI code.

func OnColor154f added in v1.6.0

func OnColor154f(format string, args ...interface{}) string

OnColor154f wraps fmt.Sprintf() and OnColor154.

func OnColor155

func OnColor155(str string) string

OnColor155 will Hilight() the provided string with the specified ANSI code.

func OnColor155f added in v1.6.0

func OnColor155f(format string, args ...interface{}) string

OnColor155f wraps fmt.Sprintf() and OnColor155.

func OnColor156

func OnColor156(str string) string

OnColor156 will Hilight() the provided string with the specified ANSI code.

func OnColor156f added in v1.6.0

func OnColor156f(format string, args ...interface{}) string

OnColor156f wraps fmt.Sprintf() and OnColor156.

func OnColor157

func OnColor157(str string) string

OnColor157 will Hilight() the provided string with the specified ANSI code.

func OnColor157f added in v1.6.0

func OnColor157f(format string, args ...interface{}) string

OnColor157f wraps fmt.Sprintf() and OnColor157.

func OnColor158

func OnColor158(str string) string

OnColor158 will Hilight() the provided string with the specified ANSI code.

func OnColor158f added in v1.6.0

func OnColor158f(format string, args ...interface{}) string

OnColor158f wraps fmt.Sprintf() and OnColor158.

func OnColor159

func OnColor159(str string) string

OnColor159 will Hilight() the provided string with the specified ANSI code.

func OnColor159f added in v1.6.0

func OnColor159f(format string, args ...interface{}) string

OnColor159f wraps fmt.Sprintf() and OnColor159.

func OnColor160

func OnColor160(str string) string

OnColor160 will Hilight() the provided string with the specified ANSI code.

func OnColor160f added in v1.6.0

func OnColor160f(format string, args ...interface{}) string

OnColor160f wraps fmt.Sprintf() and OnColor160.

func OnColor161

func OnColor161(str string) string

OnColor161 will Hilight() the provided string with the specified ANSI code.

func OnColor161f added in v1.6.0

func OnColor161f(format string, args ...interface{}) string

OnColor161f wraps fmt.Sprintf() and OnColor161.

func OnColor162

func OnColor162(str string) string

OnColor162 will Hilight() the provided string with the specified ANSI code.

func OnColor162f added in v1.6.0

func OnColor162f(format string, args ...interface{}) string

OnColor162f wraps fmt.Sprintf() and OnColor162.

func OnColor163

func OnColor163(str string) string

OnColor163 will Hilight() the provided string with the specified ANSI code.

func OnColor163f added in v1.6.0

func OnColor163f(format string, args ...interface{}) string

OnColor163f wraps fmt.Sprintf() and OnColor163.

func OnColor164

func OnColor164(str string) string

OnColor164 will Hilight() the provided string with the specified ANSI code.

func OnColor164f added in v1.6.0

func OnColor164f(format string, args ...interface{}) string

OnColor164f wraps fmt.Sprintf() and OnColor164.

func OnColor165

func OnColor165(str string) string

OnColor165 will Hilight() the provided string with the specified ANSI code.

func OnColor165f added in v1.6.0

func OnColor165f(format string, args ...interface{}) string

OnColor165f wraps fmt.Sprintf() and OnColor165.

func OnColor166

func OnColor166(str string) string

OnColor166 will Hilight() the provided string with the specified ANSI code.

func OnColor166f added in v1.6.0

func OnColor166f(format string, args ...interface{}) string

OnColor166f wraps fmt.Sprintf() and OnColor166.

func OnColor167

func OnColor167(str string) string

OnColor167 will Hilight() the provided string with the specified ANSI code.

func OnColor167f added in v1.6.0

func OnColor167f(format string, args ...interface{}) string

OnColor167f wraps fmt.Sprintf() and OnColor167.

func OnColor168

func OnColor168(str string) string

OnColor168 will Hilight() the provided string with the specified ANSI code.

func OnColor168f added in v1.6.0

func OnColor168f(format string, args ...interface{}) string

OnColor168f wraps fmt.Sprintf() and OnColor168.

func OnColor169

func OnColor169(str string) string

OnColor169 will Hilight() the provided string with the specified ANSI code.

func OnColor169f added in v1.6.0

func OnColor169f(format string, args ...interface{}) string

OnColor169f wraps fmt.Sprintf() and OnColor169.

func OnColor170

func OnColor170(str string) string

OnColor170 will Hilight() the provided string with the specified ANSI code.

func OnColor170f added in v1.6.0

func OnColor170f(format string, args ...interface{}) string

OnColor170f wraps fmt.Sprintf() and OnColor170.

func OnColor171

func OnColor171(str string) string

OnColor171 will Hilight() the provided string with the specified ANSI code.

func OnColor171f added in v1.6.0

func OnColor171f(format string, args ...interface{}) string

OnColor171f wraps fmt.Sprintf() and OnColor171.

func OnColor172

func OnColor172(str string) string

OnColor172 will Hilight() the provided string with the specified ANSI code.

func OnColor172f added in v1.6.0

func OnColor172f(format string, args ...interface{}) string

OnColor172f wraps fmt.Sprintf() and OnColor172.

func OnColor173

func OnColor173(str string) string

OnColor173 will Hilight() the provided string with the specified ANSI code.

func OnColor173f added in v1.6.0

func OnColor173f(format string, args ...interface{}) string

OnColor173f wraps fmt.Sprintf() and OnColor173.

func OnColor174

func OnColor174(str string) string

OnColor174 will Hilight() the provided string with the specified ANSI code.

func OnColor174f added in v1.6.0

func OnColor174f(format string, args ...interface{}) string

OnColor174f wraps fmt.Sprintf() and OnColor174.

func OnColor175

func OnColor175(str string) string

OnColor175 will Hilight() the provided string with the specified ANSI code.

func OnColor175f added in v1.6.0

func OnColor175f(format string, args ...interface{}) string

OnColor175f wraps fmt.Sprintf() and OnColor175.

func OnColor176

func OnColor176(str string) string

OnColor176 will Hilight() the provided string with the specified ANSI code.

func OnColor176f added in v1.6.0

func OnColor176f(format string, args ...interface{}) string

OnColor176f wraps fmt.Sprintf() and OnColor176.

func OnColor177

func OnColor177(str string) string

OnColor177 will Hilight() the provided string with the specified ANSI code.

func OnColor177f added in v1.6.0

func OnColor177f(format string, args ...interface{}) string

OnColor177f wraps fmt.Sprintf() and OnColor177.

func OnColor178

func OnColor178(str string) string

OnColor178 will Hilight() the provided string with the specified ANSI code.

func OnColor178f added in v1.6.0

func OnColor178f(format string, args ...interface{}) string

OnColor178f wraps fmt.Sprintf() and OnColor178.

func OnColor179

func OnColor179(str string) string

OnColor179 will Hilight() the provided string with the specified ANSI code.

func OnColor179f added in v1.6.0

func OnColor179f(format string, args ...interface{}) string

OnColor179f wraps fmt.Sprintf() and OnColor179.

func OnColor180

func OnColor180(str string) string

OnColor180 will Hilight() the provided string with the specified ANSI code.

func OnColor180f added in v1.6.0

func OnColor180f(format string, args ...interface{}) string

OnColor180f wraps fmt.Sprintf() and OnColor180.

func OnColor181

func OnColor181(str string) string

OnColor181 will Hilight() the provided string with the specified ANSI code.

func OnColor181f added in v1.6.0

func OnColor181f(format string, args ...interface{}) string

OnColor181f wraps fmt.Sprintf() and OnColor181.

func OnColor182

func OnColor182(str string) string

OnColor182 will Hilight() the provided string with the specified ANSI code.

func OnColor182f added in v1.6.0

func OnColor182f(format string, args ...interface{}) string

OnColor182f wraps fmt.Sprintf() and OnColor182.

func OnColor183

func OnColor183(str string) string

OnColor183 will Hilight() the provided string with the specified ANSI code.

func OnColor183f added in v1.6.0

func OnColor183f(format string, args ...interface{}) string

OnColor183f wraps fmt.Sprintf() and OnColor183.

func OnColor184

func OnColor184(str string) string

OnColor184 will Hilight() the provided string with the specified ANSI code.

func OnColor184f added in v1.6.0

func OnColor184f(format string, args ...interface{}) string

OnColor184f wraps fmt.Sprintf() and OnColor184.

func OnColor185

func OnColor185(str string) string

OnColor185 will Hilight() the provided string with the specified ANSI code.

func OnColor185f added in v1.6.0

func OnColor185f(format string, args ...interface{}) string

OnColor185f wraps fmt.Sprintf() and OnColor185.

func OnColor186

func OnColor186(str string) string

OnColor186 will Hilight() the provided string with the specified ANSI code.

func OnColor186f added in v1.6.0

func OnColor186f(format string, args ...interface{}) string

OnColor186f wraps fmt.Sprintf() and OnColor186.

func OnColor187

func OnColor187(str string) string

OnColor187 will Hilight() the provided string with the specified ANSI code.

func OnColor187f added in v1.6.0

func OnColor187f(format string, args ...interface{}) string

OnColor187f wraps fmt.Sprintf() and OnColor187.

func OnColor188

func OnColor188(str string) string

OnColor188 will Hilight() the provided string with the specified ANSI code.

func OnColor188f added in v1.6.0

func OnColor188f(format string, args ...interface{}) string

OnColor188f wraps fmt.Sprintf() and OnColor188.

func OnColor189

func OnColor189(str string) string

OnColor189 will Hilight() the provided string with the specified ANSI code.

func OnColor189f added in v1.6.0

func OnColor189f(format string, args ...interface{}) string

OnColor189f wraps fmt.Sprintf() and OnColor189.

func OnColor190

func OnColor190(str string) string

OnColor190 will Hilight() the provided string with the specified ANSI code.

func OnColor190f added in v1.6.0

func OnColor190f(format string, args ...interface{}) string

OnColor190f wraps fmt.Sprintf() and OnColor190.

func OnColor191

func OnColor191(str string) string

OnColor191 will Hilight() the provided string with the specified ANSI code.

func OnColor191f added in v1.6.0

func OnColor191f(format string, args ...interface{}) string

OnColor191f wraps fmt.Sprintf() and OnColor191.

func OnColor192

func OnColor192(str string) string

OnColor192 will Hilight() the provided string with the specified ANSI code.

func OnColor192f added in v1.6.0

func OnColor192f(format string, args ...interface{}) string

OnColor192f wraps fmt.Sprintf() and OnColor192.

func OnColor193

func OnColor193(str string) string

OnColor193 will Hilight() the provided string with the specified ANSI code.

func OnColor193f added in v1.6.0

func OnColor193f(format string, args ...interface{}) string

OnColor193f wraps fmt.Sprintf() and OnColor193.

func OnColor194

func OnColor194(str string) string

OnColor194 will Hilight() the provided string with the specified ANSI code.

func OnColor194f added in v1.6.0

func OnColor194f(format string, args ...interface{}) string

OnColor194f wraps fmt.Sprintf() and OnColor194.

func OnColor195

func OnColor195(str string) string

OnColor195 will Hilight() the provided string with the specified ANSI code.

func OnColor195f added in v1.6.0

func OnColor195f(format string, args ...interface{}) string

OnColor195f wraps fmt.Sprintf() and OnColor195.

func OnColor196

func OnColor196(str string) string

OnColor196 will Hilight() the provided string with the specified ANSI code.

func OnColor196f added in v1.6.0

func OnColor196f(format string, args ...interface{}) string

OnColor196f wraps fmt.Sprintf() and OnColor196.

func OnColor197

func OnColor197(str string) string

OnColor197 will Hilight() the provided string with the specified ANSI code.

func OnColor197f added in v1.6.0

func OnColor197f(format string, args ...interface{}) string

OnColor197f wraps fmt.Sprintf() and OnColor197.

func OnColor198

func OnColor198(str string) string

OnColor198 will Hilight() the provided string with the specified ANSI code.

func OnColor198f added in v1.6.0

func OnColor198f(format string, args ...interface{}) string

OnColor198f wraps fmt.Sprintf() and OnColor198.

func OnColor199

func OnColor199(str string) string

OnColor199 will Hilight() the provided string with the specified ANSI code.

func OnColor199f added in v1.6.0

func OnColor199f(format string, args ...interface{}) string

OnColor199f wraps fmt.Sprintf() and OnColor199.

func OnColor200

func OnColor200(str string) string

OnColor200 will Hilight() the provided string with the specified ANSI code.

func OnColor200f added in v1.6.0

func OnColor200f(format string, args ...interface{}) string

OnColor200f wraps fmt.Sprintf() and OnColor200.

func OnColor201

func OnColor201(str string) string

OnColor201 will Hilight() the provided string with the specified ANSI code.

func OnColor201f added in v1.6.0

func OnColor201f(format string, args ...interface{}) string

OnColor201f wraps fmt.Sprintf() and OnColor201.

func OnColor202

func OnColor202(str string) string

OnColor202 will Hilight() the provided string with the specified ANSI code.

func OnColor202f added in v1.6.0

func OnColor202f(format string, args ...interface{}) string

OnColor202f wraps fmt.Sprintf() and OnColor202.

func OnColor203

func OnColor203(str string) string

OnColor203 will Hilight() the provided string with the specified ANSI code.

func OnColor203f added in v1.6.0

func OnColor203f(format string, args ...interface{}) string

OnColor203f wraps fmt.Sprintf() and OnColor203.

func OnColor204

func OnColor204(str string) string

OnColor204 will Hilight() the provided string with the specified ANSI code.

func OnColor204f added in v1.6.0

func OnColor204f(format string, args ...interface{}) string

OnColor204f wraps fmt.Sprintf() and OnColor204.

func OnColor205

func OnColor205(str string) string

OnColor205 will Hilight() the provided string with the specified ANSI code.

func OnColor205f added in v1.6.0

func OnColor205f(format string, args ...interface{}) string

OnColor205f wraps fmt.Sprintf() and OnColor205.

func OnColor206

func OnColor206(str string) string

OnColor206 will Hilight() the provided string with the specified ANSI code.

func OnColor206f added in v1.6.0

func OnColor206f(format string, args ...interface{}) string

OnColor206f wraps fmt.Sprintf() and OnColor206.

func OnColor207

func OnColor207(str string) string

OnColor207 will Hilight() the provided string with the specified ANSI code.

func OnColor207f added in v1.6.0

func OnColor207f(format string, args ...interface{}) string

OnColor207f wraps fmt.Sprintf() and OnColor207.

func OnColor208

func OnColor208(str string) string

OnColor208 will Hilight() the provided string with the specified ANSI code.

func OnColor208f added in v1.6.0

func OnColor208f(format string, args ...interface{}) string

OnColor208f wraps fmt.Sprintf() and OnColor208.

func OnColor209

func OnColor209(str string) string

OnColor209 will Hilight() the provided string with the specified ANSI code.

func OnColor209f added in v1.6.0

func OnColor209f(format string, args ...interface{}) string

OnColor209f wraps fmt.Sprintf() and OnColor209.

func OnColor210

func OnColor210(str string) string

OnColor210 will Hilight() the provided string with the specified ANSI code.

func OnColor210f added in v1.6.0

func OnColor210f(format string, args ...interface{}) string

OnColor210f wraps fmt.Sprintf() and OnColor210.

func OnColor211

func OnColor211(str string) string

OnColor211 will Hilight() the provided string with the specified ANSI code.

func OnColor211f added in v1.6.0

func OnColor211f(format string, args ...interface{}) string

OnColor211f wraps fmt.Sprintf() and OnColor211.

func OnColor212

func OnColor212(str string) string

OnColor212 will Hilight() the provided string with the specified ANSI code.

func OnColor212f added in v1.6.0

func OnColor212f(format string, args ...interface{}) string

OnColor212f wraps fmt.Sprintf() and OnColor212.

func OnColor213

func OnColor213(str string) string

OnColor213 will Hilight() the provided string with the specified ANSI code.

func OnColor213f added in v1.6.0

func OnColor213f(format string, args ...interface{}) string

OnColor213f wraps fmt.Sprintf() and OnColor213.

func OnColor214

func OnColor214(str string) string

OnColor214 will Hilight() the provided string with the specified ANSI code.

func OnColor214f added in v1.6.0

func OnColor214f(format string, args ...interface{}) string

OnColor214f wraps fmt.Sprintf() and OnColor214.

func OnColor215

func OnColor215(str string) string

OnColor215 will Hilight() the provided string with the specified ANSI code.

func OnColor215f added in v1.6.0

func OnColor215f(format string, args ...interface{}) string

OnColor215f wraps fmt.Sprintf() and OnColor215.

func OnColor216

func OnColor216(str string) string

OnColor216 will Hilight() the provided string with the specified ANSI code.

func OnColor216f added in v1.6.0

func OnColor216f(format string, args ...interface{}) string

OnColor216f wraps fmt.Sprintf() and OnColor216.

func OnColor217

func OnColor217(str string) string

OnColor217 will Hilight() the provided string with the specified ANSI code.

func OnColor217f added in v1.6.0

func OnColor217f(format string, args ...interface{}) string

OnColor217f wraps fmt.Sprintf() and OnColor217.

func OnColor218

func OnColor218(str string) string

OnColor218 will Hilight() the provided string with the specified ANSI code.

func OnColor218f added in v1.6.0

func OnColor218f(format string, args ...interface{}) string

OnColor218f wraps fmt.Sprintf() and OnColor218.

func OnColor219

func OnColor219(str string) string

OnColor219 will Hilight() the provided string with the specified ANSI code.

func OnColor219f added in v1.6.0

func OnColor219f(format string, args ...interface{}) string

OnColor219f wraps fmt.Sprintf() and OnColor219.

func OnColor220

func OnColor220(str string) string

OnColor220 will Hilight() the provided string with the specified ANSI code.

func OnColor220f added in v1.6.0

func OnColor220f(format string, args ...interface{}) string

OnColor220f wraps fmt.Sprintf() and OnColor220.

func OnColor221

func OnColor221(str string) string

OnColor221 will Hilight() the provided string with the specified ANSI code.

func OnColor221f added in v1.6.0

func OnColor221f(format string, args ...interface{}) string

OnColor221f wraps fmt.Sprintf() and OnColor221.

func OnColor222

func OnColor222(str string) string

OnColor222 will Hilight() the provided string with the specified ANSI code.

func OnColor222f added in v1.6.0

func OnColor222f(format string, args ...interface{}) string

OnColor222f wraps fmt.Sprintf() and OnColor222.

func OnColor223

func OnColor223(str string) string

OnColor223 will Hilight() the provided string with the specified ANSI code.

func OnColor223f added in v1.6.0

func OnColor223f(format string, args ...interface{}) string

OnColor223f wraps fmt.Sprintf() and OnColor223.

func OnColor224

func OnColor224(str string) string

OnColor224 will Hilight() the provided string with the specified ANSI code.

func OnColor224f added in v1.6.0

func OnColor224f(format string, args ...interface{}) string

OnColor224f wraps fmt.Sprintf() and OnColor224.

func OnColor225

func OnColor225(str string) string

OnColor225 will Hilight() the provided string with the specified ANSI code.

func OnColor225f added in v1.6.0

func OnColor225f(format string, args ...interface{}) string

OnColor225f wraps fmt.Sprintf() and OnColor225.

func OnColor226

func OnColor226(str string) string

OnColor226 will Hilight() the provided string with the specified ANSI code.

func OnColor226f added in v1.6.0

func OnColor226f(format string, args ...interface{}) string

OnColor226f wraps fmt.Sprintf() and OnColor226.

func OnColor227

func OnColor227(str string) string

OnColor227 will Hilight() the provided string with the specified ANSI code.

func OnColor227f added in v1.6.0

func OnColor227f(format string, args ...interface{}) string

OnColor227f wraps fmt.Sprintf() and OnColor227.

func OnColor228

func OnColor228(str string) string

OnColor228 will Hilight() the provided string with the specified ANSI code.

func OnColor228f added in v1.6.0

func OnColor228f(format string, args ...interface{}) string

OnColor228f wraps fmt.Sprintf() and OnColor228.

func OnColor229

func OnColor229(str string) string

OnColor229 will Hilight() the provided string with the specified ANSI code.

func OnColor229f added in v1.6.0

func OnColor229f(format string, args ...interface{}) string

OnColor229f wraps fmt.Sprintf() and OnColor229.

func OnColor230

func OnColor230(str string) string

OnColor230 will Hilight() the provided string with the specified ANSI code.

func OnColor230f added in v1.6.0

func OnColor230f(format string, args ...interface{}) string

OnColor230f wraps fmt.Sprintf() and OnColor230.

func OnColor231

func OnColor231(str string) string

OnColor231 will Hilight() the provided string with the specified ANSI code.

func OnColor231f added in v1.6.0

func OnColor231f(format string, args ...interface{}) string

OnColor231f wraps fmt.Sprintf() and OnColor231.

func OnColor232

func OnColor232(str string) string

OnColor232 will Hilight() the provided string with the specified ANSI code.

func OnColor232f added in v1.6.0

func OnColor232f(format string, args ...interface{}) string

OnColor232f wraps fmt.Sprintf() and OnColor232.

func OnColor233

func OnColor233(str string) string

OnColor233 will Hilight() the provided string with the specified ANSI code.

func OnColor233f added in v1.6.0

func OnColor233f(format string, args ...interface{}) string

OnColor233f wraps fmt.Sprintf() and OnColor233.

func OnColor234

func OnColor234(str string) string

OnColor234 will Hilight() the provided string with the specified ANSI code.

func OnColor234f added in v1.6.0

func OnColor234f(format string, args ...interface{}) string

OnColor234f wraps fmt.Sprintf() and OnColor234.

func OnColor235

func OnColor235(str string) string

OnColor235 will Hilight() the provided string with the specified ANSI code.

func OnColor235f added in v1.6.0

func OnColor235f(format string, args ...interface{}) string

OnColor235f wraps fmt.Sprintf() and OnColor235.

func OnColor236

func OnColor236(str string) string

OnColor236 will Hilight() the provided string with the specified ANSI code.

func OnColor236f added in v1.6.0

func OnColor236f(format string, args ...interface{}) string

OnColor236f wraps fmt.Sprintf() and OnColor236.

func OnColor237

func OnColor237(str string) string

OnColor237 will Hilight() the provided string with the specified ANSI code.

func OnColor237f added in v1.6.0

func OnColor237f(format string, args ...interface{}) string

OnColor237f wraps fmt.Sprintf() and OnColor237.

func OnColor238

func OnColor238(str string) string

OnColor238 will Hilight() the provided string with the specified ANSI code.

func OnColor238f added in v1.6.0

func OnColor238f(format string, args ...interface{}) string

OnColor238f wraps fmt.Sprintf() and OnColor238.

func OnColor239

func OnColor239(str string) string

OnColor239 will Hilight() the provided string with the specified ANSI code.

func OnColor239f added in v1.6.0

func OnColor239f(format string, args ...interface{}) string

OnColor239f wraps fmt.Sprintf() and OnColor239.

func OnColor240

func OnColor240(str string) string

OnColor240 will Hilight() the provided string with the specified ANSI code.

func OnColor240f added in v1.6.0

func OnColor240f(format string, args ...interface{}) string

OnColor240f wraps fmt.Sprintf() and OnColor240.

func OnColor241

func OnColor241(str string) string

OnColor241 will Hilight() the provided string with the specified ANSI code.

func OnColor241f added in v1.6.0

func OnColor241f(format string, args ...interface{}) string

OnColor241f wraps fmt.Sprintf() and OnColor241.

func OnColor242

func OnColor242(str string) string

OnColor242 will Hilight() the provided string with the specified ANSI code.

func OnColor242f added in v1.6.0

func OnColor242f(format string, args ...interface{}) string

OnColor242f wraps fmt.Sprintf() and OnColor242.

func OnColor243

func OnColor243(str string) string

OnColor243 will Hilight() the provided string with the specified ANSI code.

func OnColor243f added in v1.6.0

func OnColor243f(format string, args ...interface{}) string

OnColor243f wraps fmt.Sprintf() and OnColor243.

func OnColor244

func OnColor244(str string) string

OnColor244 will Hilight() the provided string with the specified ANSI code.

func OnColor244f added in v1.6.0

func OnColor244f(format string, args ...interface{}) string

OnColor244f wraps fmt.Sprintf() and OnColor244.

func OnColor245

func OnColor245(str string) string

OnColor245 will Hilight() the provided string with the specified ANSI code.

func OnColor245f added in v1.6.0

func OnColor245f(format string, args ...interface{}) string

OnColor245f wraps fmt.Sprintf() and OnColor245.

func OnColor246

func OnColor246(str string) string

OnColor246 will Hilight() the provided string with the specified ANSI code.

func OnColor246f added in v1.6.0

func OnColor246f(format string, args ...interface{}) string

OnColor246f wraps fmt.Sprintf() and OnColor246.

func OnColor247

func OnColor247(str string) string

OnColor247 will Hilight() the provided string with the specified ANSI code.

func OnColor247f added in v1.6.0

func OnColor247f(format string, args ...interface{}) string

OnColor247f wraps fmt.Sprintf() and OnColor247.

func OnColor248

func OnColor248(str string) string

OnColor248 will Hilight() the provided string with the specified ANSI code.

func OnColor248f added in v1.6.0

func OnColor248f(format string, args ...interface{}) string

OnColor248f wraps fmt.Sprintf() and OnColor248.

func OnColor249

func OnColor249(str string) string

OnColor249 will Hilight() the provided string with the specified ANSI code.

func OnColor249f added in v1.6.0

func OnColor249f(format string, args ...interface{}) string

OnColor249f wraps fmt.Sprintf() and OnColor249.

func OnColor250

func OnColor250(str string) string

OnColor250 will Hilight() the provided string with the specified ANSI code.

func OnColor250f added in v1.6.0

func OnColor250f(format string, args ...interface{}) string

OnColor250f wraps fmt.Sprintf() and OnColor250.

func OnColor251

func OnColor251(str string) string

OnColor251 will Hilight() the provided string with the specified ANSI code.

func OnColor251f added in v1.6.0

func OnColor251f(format string, args ...interface{}) string

OnColor251f wraps fmt.Sprintf() and OnColor251.

func OnColor252

func OnColor252(str string) string

OnColor252 will Hilight() the provided string with the specified ANSI code.

func OnColor252f added in v1.6.0

func OnColor252f(format string, args ...interface{}) string

OnColor252f wraps fmt.Sprintf() and OnColor252.

func OnColor253

func OnColor253(str string) string

OnColor253 will Hilight() the provided string with the specified ANSI code.

func OnColor253f added in v1.6.0

func OnColor253f(format string, args ...interface{}) string

OnColor253f wraps fmt.Sprintf() and OnColor253.

func OnColor254

func OnColor254(str string) string

OnColor254 will Hilight() the provided string with the specified ANSI code.

func OnColor254f added in v1.6.0

func OnColor254f(format string, args ...interface{}) string

OnColor254f wraps fmt.Sprintf() and OnColor254.

func OnColor255

func OnColor255(str string) string

OnColor255 will Hilight() the provided string with the specified ANSI code.

func OnColor255f added in v1.6.0

func OnColor255f(format string, args ...interface{}) string

OnColor255f wraps fmt.Sprintf() and OnColor255.

func OnCyan

func OnCyan(str string) string

OnCyan will Hilight() the provided string with the specified ANSI code.

func OnCyanf added in v1.6.0

func OnCyanf(format string, args ...interface{}) string

OnCyanf wraps fmt.Sprintf() and OnCyan.

func OnDefault

func OnDefault(str string) string

OnDefault will Hilight() the provided string with the specified ANSI code.

func OnDefaultf added in v1.6.0

func OnDefaultf(format string, args ...interface{}) string

OnDefaultf wraps fmt.Sprintf() and OnDefault.

func OnGreen

func OnGreen(str string) string

OnGreen will Hilight() the provided string with the specified ANSI code.

func OnGreenf added in v1.6.0

func OnGreenf(format string, args ...interface{}) string

OnGreenf wraps fmt.Sprintf() and OnGreen.

func OnHex

func OnHex(hex string, str string) string

OnHex will take a hex color code and add the appropriate ANSI color codes to the provided string.

func OnHexf added in v1.6.0

func OnHexf(hex string, format string, args ...interface{}) string

OnHexf wraps fmt.Sprintf() and OnHex.

func OnLightBlack

func OnLightBlack(str string) string

OnLightBlack will Hilight() the provided string with the specified ANSI code.

func OnLightBlackf added in v1.6.0

func OnLightBlackf(format string, args ...interface{}) string

OnLightBlackf wraps fmt.Sprintf() and OnLightBlack.

func OnLightBlue

func OnLightBlue(str string) string

OnLightBlue will Hilight() the provided string with the specified ANSI code.

func OnLightBluef added in v1.6.0

func OnLightBluef(format string, args ...interface{}) string

OnLightBluef wraps fmt.Sprintf() and OnLightBlue.

func OnLightCyan

func OnLightCyan(str string) string

OnLightCyan will Hilight() the provided string with the specified ANSI code.

func OnLightCyanf added in v1.6.0

func OnLightCyanf(format string, args ...interface{}) string

OnLightCyanf wraps fmt.Sprintf() and OnLightCyan.

func OnLightGreen

func OnLightGreen(str string) string

OnLightGreen will Hilight() the provided string with the specified ANSI code.

func OnLightGreenf added in v1.6.0

func OnLightGreenf(format string, args ...interface{}) string

OnLightGreenf wraps fmt.Sprintf() and OnLightGreen.

func OnLightMagenta

func OnLightMagenta(str string) string

OnLightMagenta will Hilight() the provided string with the specified ANSI code.

func OnLightMagentaf added in v1.6.0

func OnLightMagentaf(format string, args ...interface{}) string

OnLightMagentaf wraps fmt.Sprintf() and OnLightMagenta.

func OnLightRed

func OnLightRed(str string) string

OnLightRed will Hilight() the provided string with the specified ANSI code.

func OnLightRedf added in v1.6.0

func OnLightRedf(format string, args ...interface{}) string

OnLightRedf wraps fmt.Sprintf() and OnLightRed.

func OnLightWhite

func OnLightWhite(str string) string

OnLightWhite will Hilight() the provided string with the specified ANSI code.

func OnLightWhitef added in v1.6.0

func OnLightWhitef(format string, args ...interface{}) string

OnLightWhitef wraps fmt.Sprintf() and OnLightWhite.

func OnLightYellow

func OnLightYellow(str string) string

OnLightYellow will Hilight() the provided string with the specified ANSI code.

func OnLightYellowf added in v1.6.0

func OnLightYellowf(format string, args ...interface{}) string

OnLightYellowf wraps fmt.Sprintf() and OnLightYellow.

func OnMagenta

func OnMagenta(str string) string

OnMagenta will Hilight() the provided string with the specified ANSI code.

func OnMagentaf added in v1.6.0

func OnMagentaf(format string, args ...interface{}) string

OnMagentaf wraps fmt.Sprintf() and OnMagenta.

func OnRainbow

func OnRainbow(str string) string

OnRainbow will add multiple ANSI color codes to a string for a rainbow effect.

func OnRainbowf added in v1.6.0

func OnRainbowf(format string, args ...interface{}) string

OnRainbowf wraps fmt.Sprintf() and OnRainbow.

func OnRed

func OnRed(str string) string

OnRed will Hilight() the provided string with the specified ANSI code.

func OnRedf added in v1.6.0

func OnRedf(format string, args ...interface{}) string

OnRedf wraps fmt.Sprintf() and OnRed.

func OnWhite

func OnWhite(str string) string

OnWhite will Hilight() the provided string with the specified ANSI code.

func OnWhitef added in v1.6.0

func OnWhitef(format string, args ...interface{}) string

OnWhitef wraps fmt.Sprintf() and OnWhite.

func OnYellow

func OnYellow(str string) string

OnYellow will Hilight() the provided string with the specified ANSI code.

func OnYellowf added in v1.6.0

func OnYellowf(format string, args ...interface{}) string

OnYellowf wraps fmt.Sprintf() and OnYellow.

func Plain

func Plain(str string) string

Plain will strip all ANSI color codes from a string.

func Plainf added in v1.6.0

func Plainf(format string, args ...interface{}) string

Plainf wraps fmt.Sprintf() and Plain.

func Print

func Print(args ...interface{})

Print wraps fmt.Print().

func PrintBlack

func PrintBlack(str string)

PrintBlack wraps Black() and fmt.Print().

func PrintBlink(str string)

PrintBlink wraps Blink() and fmt.Print().

func PrintBlinkRapid

func PrintBlinkRapid(str string)

PrintBlinkRapid wraps BlinkRapid() and fmt.Print().

func PrintBlinkSlow

func PrintBlinkSlow(str string)

PrintBlinkSlow wraps BlinkSlow() and fmt.Print().

func PrintBlue

func PrintBlue(str string)

PrintBlue wraps Blue() and fmt.Print().

func PrintBold

func PrintBold(str string)

PrintBold wraps Bold() and fmt.Print().

func PrintColor000

func PrintColor000(str string)

PrintColor000 wraps Color000() and fmt.Print().

func PrintColor001

func PrintColor001(str string)

PrintColor001 wraps Color001() and fmt.Print().

func PrintColor002

func PrintColor002(str string)

PrintColor002 wraps Color002() and fmt.Print().

func PrintColor003

func PrintColor003(str string)

PrintColor003 wraps Color003() and fmt.Print().

func PrintColor004

func PrintColor004(str string)

PrintColor004 wraps Color004() and fmt.Print().

func PrintColor005

func PrintColor005(str string)

PrintColor005 wraps Color005() and fmt.Print().

func PrintColor006

func PrintColor006(str string)

PrintColor006 wraps Color006() and fmt.Print().

func PrintColor007

func PrintColor007(str string)

PrintColor007 wraps Color007() and fmt.Print().

func PrintColor008

func PrintColor008(str string)

PrintColor008 wraps Color008() and fmt.Print().

func PrintColor009

func PrintColor009(str string)

PrintColor009 wraps Color009() and fmt.Print().

func PrintColor010

func PrintColor010(str string)

PrintColor010 wraps Color010() and fmt.Print().

func PrintColor011

func PrintColor011(str string)

PrintColor011 wraps Color011() and fmt.Print().

func PrintColor012

func PrintColor012(str string)

PrintColor012 wraps Color012() and fmt.Print().

func PrintColor013

func PrintColor013(str string)

PrintColor013 wraps Color013() and fmt.Print().

func PrintColor014

func PrintColor014(str string)

PrintColor014 wraps Color014() and fmt.Print().

func PrintColor015

func PrintColor015(str string)

PrintColor015 wraps Color015() and fmt.Print().

func PrintColor016

func PrintColor016(str string)

PrintColor016 wraps Color016() and fmt.Print().

func PrintColor017

func PrintColor017(str string)

PrintColor017 wraps Color017() and fmt.Print().

func PrintColor018

func PrintColor018(str string)

PrintColor018 wraps Color018() and fmt.Print().

func PrintColor019

func PrintColor019(str string)

PrintColor019 wraps Color019() and fmt.Print().

func PrintColor020

func PrintColor020(str string)

PrintColor020 wraps Color020() and fmt.Print().

func PrintColor021

func PrintColor021(str string)

PrintColor021 wraps Color021() and fmt.Print().

func PrintColor022

func PrintColor022(str string)

PrintColor022 wraps Color022() and fmt.Print().

func PrintColor023

func PrintColor023(str string)

PrintColor023 wraps Color023() and fmt.Print().

func PrintColor024

func PrintColor024(str string)

PrintColor024 wraps Color024() and fmt.Print().

func PrintColor025

func PrintColor025(str string)

PrintColor025 wraps Color025() and fmt.Print().

func PrintColor026

func PrintColor026(str string)

PrintColor026 wraps Color026() and fmt.Print().

func PrintColor027

func PrintColor027(str string)

PrintColor027 wraps Color027() and fmt.Print().

func PrintColor028

func PrintColor028(str string)

PrintColor028 wraps Color028() and fmt.Print().

func PrintColor029

func PrintColor029(str string)

PrintColor029 wraps Color029() and fmt.Print().

func PrintColor030

func PrintColor030(str string)

PrintColor030 wraps Color030() and fmt.Print().

func PrintColor031

func PrintColor031(str string)

PrintColor031 wraps Color031() and fmt.Print().

func PrintColor032

func PrintColor032(str string)

PrintColor032 wraps Color032() and fmt.Print().

func PrintColor033

func PrintColor033(str string)

PrintColor033 wraps Color033() and fmt.Print().

func PrintColor034

func PrintColor034(str string)

PrintColor034 wraps Color034() and fmt.Print().

func PrintColor035

func PrintColor035(str string)

PrintColor035 wraps Color035() and fmt.Print().

func PrintColor036

func PrintColor036(str string)

PrintColor036 wraps Color036() and fmt.Print().

func PrintColor037

func PrintColor037(str string)

PrintColor037 wraps Color037() and fmt.Print().

func PrintColor038

func PrintColor038(str string)

PrintColor038 wraps Color038() and fmt.Print().

func PrintColor039

func PrintColor039(str string)

PrintColor039 wraps Color039() and fmt.Print().

func PrintColor040

func PrintColor040(str string)

PrintColor040 wraps Color040() and fmt.Print().

func PrintColor041

func PrintColor041(str string)

PrintColor041 wraps Color041() and fmt.Print().

func PrintColor042

func PrintColor042(str string)

PrintColor042 wraps Color042() and fmt.Print().

func PrintColor043

func PrintColor043(str string)

PrintColor043 wraps Color043() and fmt.Print().

func PrintColor044

func PrintColor044(str string)

PrintColor044 wraps Color044() and fmt.Print().

func PrintColor045

func PrintColor045(str string)

PrintColor045 wraps Color045() and fmt.Print().

func PrintColor046

func PrintColor046(str string)

PrintColor046 wraps Color046() and fmt.Print().

func PrintColor047

func PrintColor047(str string)

PrintColor047 wraps Color047() and fmt.Print().

func PrintColor048

func PrintColor048(str string)

PrintColor048 wraps Color048() and fmt.Print().

func PrintColor049

func PrintColor049(str string)

PrintColor049 wraps Color049() and fmt.Print().

func PrintColor050

func PrintColor050(str string)

PrintColor050 wraps Color050() and fmt.Print().

func PrintColor051

func PrintColor051(str string)

PrintColor051 wraps Color051() and fmt.Print().

func PrintColor052

func PrintColor052(str string)

PrintColor052 wraps Color052() and fmt.Print().

func PrintColor053

func PrintColor053(str string)

PrintColor053 wraps Color053() and fmt.Print().

func PrintColor054

func PrintColor054(str string)

PrintColor054 wraps Color054() and fmt.Print().

func PrintColor055

func PrintColor055(str string)

PrintColor055 wraps Color055() and fmt.Print().

func PrintColor056

func PrintColor056(str string)

PrintColor056 wraps Color056() and fmt.Print().

func PrintColor057

func PrintColor057(str string)

PrintColor057 wraps Color057() and fmt.Print().

func PrintColor058

func PrintColor058(str string)

PrintColor058 wraps Color058() and fmt.Print().

func PrintColor059

func PrintColor059(str string)

PrintColor059 wraps Color059() and fmt.Print().

func PrintColor060

func PrintColor060(str string)

PrintColor060 wraps Color060() and fmt.Print().

func PrintColor061

func PrintColor061(str string)

PrintColor061 wraps Color061() and fmt.Print().

func PrintColor062

func PrintColor062(str string)

PrintColor062 wraps Color062() and fmt.Print().

func PrintColor063

func PrintColor063(str string)

PrintColor063 wraps Color063() and fmt.Print().

func PrintColor064

func PrintColor064(str string)

PrintColor064 wraps Color064() and fmt.Print().

func PrintColor065

func PrintColor065(str string)

PrintColor065 wraps Color065() and fmt.Print().

func PrintColor066

func PrintColor066(str string)

PrintColor066 wraps Color066() and fmt.Print().

func PrintColor067

func PrintColor067(str string)

PrintColor067 wraps Color067() and fmt.Print().

func PrintColor068

func PrintColor068(str string)

PrintColor068 wraps Color068() and fmt.Print().

func PrintColor069

func PrintColor069(str string)

PrintColor069 wraps Color069() and fmt.Print().

func PrintColor070

func PrintColor070(str string)

PrintColor070 wraps Color070() and fmt.Print().

func PrintColor071

func PrintColor071(str string)

PrintColor071 wraps Color071() and fmt.Print().

func PrintColor072

func PrintColor072(str string)

PrintColor072 wraps Color072() and fmt.Print().

func PrintColor073

func PrintColor073(str string)

PrintColor073 wraps Color073() and fmt.Print().

func PrintColor074

func PrintColor074(str string)

PrintColor074 wraps Color074() and fmt.Print().

func PrintColor075

func PrintColor075(str string)

PrintColor075 wraps Color075() and fmt.Print().

func PrintColor076

func PrintColor076(str string)

PrintColor076 wraps Color076() and fmt.Print().

func PrintColor077

func PrintColor077(str string)

PrintColor077 wraps Color077() and fmt.Print().

func PrintColor078

func PrintColor078(str string)

PrintColor078 wraps Color078() and fmt.Print().

func PrintColor079

func PrintColor079(str string)

PrintColor079 wraps Color079() and fmt.Print().

func PrintColor080

func PrintColor080(str string)

PrintColor080 wraps Color080() and fmt.Print().

func PrintColor081

func PrintColor081(str string)

PrintColor081 wraps Color081() and fmt.Print().

func PrintColor082

func PrintColor082(str string)

PrintColor082 wraps Color082() and fmt.Print().

func PrintColor083

func PrintColor083(str string)

PrintColor083 wraps Color083() and fmt.Print().

func PrintColor084

func PrintColor084(str string)

PrintColor084 wraps Color084() and fmt.Print().

func PrintColor085

func PrintColor085(str string)

PrintColor085 wraps Color085() and fmt.Print().

func PrintColor086

func PrintColor086(str string)

PrintColor086 wraps Color086() and fmt.Print().

func PrintColor087

func PrintColor087(str string)

PrintColor087 wraps Color087() and fmt.Print().

func PrintColor088

func PrintColor088(str string)

PrintColor088 wraps Color088() and fmt.Print().

func PrintColor089

func PrintColor089(str string)

PrintColor089 wraps Color089() and fmt.Print().

func PrintColor090

func PrintColor090(str string)

PrintColor090 wraps Color090() and fmt.Print().

func PrintColor091

func PrintColor091(str string)

PrintColor091 wraps Color091() and fmt.Print().

func PrintColor092

func PrintColor092(str string)

PrintColor092 wraps Color092() and fmt.Print().

func PrintColor093

func PrintColor093(str string)

PrintColor093 wraps Color093() and fmt.Print().

func PrintColor094

func PrintColor094(str string)

PrintColor094 wraps Color094() and fmt.Print().

func PrintColor095

func PrintColor095(str string)

PrintColor095 wraps Color095() and fmt.Print().

func PrintColor096

func PrintColor096(str string)

PrintColor096 wraps Color096() and fmt.Print().

func PrintColor097

func PrintColor097(str string)

PrintColor097 wraps Color097() and fmt.Print().

func PrintColor098

func PrintColor098(str string)

PrintColor098 wraps Color098() and fmt.Print().

func PrintColor099

func PrintColor099(str string)

PrintColor099 wraps Color099() and fmt.Print().

func PrintColor100

func PrintColor100(str string)

PrintColor100 wraps Color100() and fmt.Print().

func PrintColor101

func PrintColor101(str string)

PrintColor101 wraps Color101() and fmt.Print().

func PrintColor102

func PrintColor102(str string)

PrintColor102 wraps Color102() and fmt.Print().

func PrintColor103

func PrintColor103(str string)

PrintColor103 wraps Color103() and fmt.Print().

func PrintColor104

func PrintColor104(str string)

PrintColor104 wraps Color104() and fmt.Print().

func PrintColor105

func PrintColor105(str string)

PrintColor105 wraps Color105() and fmt.Print().

func PrintColor106

func PrintColor106(str string)

PrintColor106 wraps Color106() and fmt.Print().

func PrintColor107

func PrintColor107(str string)

PrintColor107 wraps Color107() and fmt.Print().

func PrintColor108

func PrintColor108(str string)

PrintColor108 wraps Color108() and fmt.Print().

func PrintColor109

func PrintColor109(str string)

PrintColor109 wraps Color109() and fmt.Print().

func PrintColor110

func PrintColor110(str string)

PrintColor110 wraps Color110() and fmt.Print().

func PrintColor111

func PrintColor111(str string)

PrintColor111 wraps Color111() and fmt.Print().

func PrintColor112

func PrintColor112(str string)

PrintColor112 wraps Color112() and fmt.Print().

func PrintColor113

func PrintColor113(str string)

PrintColor113 wraps Color113() and fmt.Print().

func PrintColor114

func PrintColor114(str string)

PrintColor114 wraps Color114() and fmt.Print().

func PrintColor115

func PrintColor115(str string)

PrintColor115 wraps Color115() and fmt.Print().

func PrintColor116

func PrintColor116(str string)

PrintColor116 wraps Color116() and fmt.Print().

func PrintColor117

func PrintColor117(str string)

PrintColor117 wraps Color117() and fmt.Print().

func PrintColor118

func PrintColor118(str string)

PrintColor118 wraps Color118() and fmt.Print().

func PrintColor119

func PrintColor119(str string)

PrintColor119 wraps Color119() and fmt.Print().

func PrintColor120

func PrintColor120(str string)

PrintColor120 wraps Color120() and fmt.Print().

func PrintColor121

func PrintColor121(str string)

PrintColor121 wraps Color121() and fmt.Print().

func PrintColor122

func PrintColor122(str string)

PrintColor122 wraps Color122() and fmt.Print().

func PrintColor123

func PrintColor123(str string)

PrintColor123 wraps Color123() and fmt.Print().

func PrintColor124

func PrintColor124(str string)

PrintColor124 wraps Color124() and fmt.Print().

func PrintColor125

func PrintColor125(str string)

PrintColor125 wraps Color125() and fmt.Print().

func PrintColor126

func PrintColor126(str string)

PrintColor126 wraps Color126() and fmt.Print().

func PrintColor127

func PrintColor127(str string)

PrintColor127 wraps Color127() and fmt.Print().

func PrintColor128

func PrintColor128(str string)

PrintColor128 wraps Color128() and fmt.Print().

func PrintColor129

func PrintColor129(str string)

PrintColor129 wraps Color129() and fmt.Print().

func PrintColor130

func PrintColor130(str string)

PrintColor130 wraps Color130() and fmt.Print().

func PrintColor131

func PrintColor131(str string)

PrintColor131 wraps Color131() and fmt.Print().

func PrintColor132

func PrintColor132(str string)

PrintColor132 wraps Color132() and fmt.Print().

func PrintColor133

func PrintColor133(str string)

PrintColor133 wraps Color133() and fmt.Print().

func PrintColor134

func PrintColor134(str string)

PrintColor134 wraps Color134() and fmt.Print().

func PrintColor135

func PrintColor135(str string)

PrintColor135 wraps Color135() and fmt.Print().

func PrintColor136

func PrintColor136(str string)

PrintColor136 wraps Color136() and fmt.Print().

func PrintColor137

func PrintColor137(str string)

PrintColor137 wraps Color137() and fmt.Print().

func PrintColor138

func PrintColor138(str string)

PrintColor138 wraps Color138() and fmt.Print().

func PrintColor139

func PrintColor139(str string)

PrintColor139 wraps Color139() and fmt.Print().

func PrintColor140

func PrintColor140(str string)

PrintColor140 wraps Color140() and fmt.Print().

func PrintColor141

func PrintColor141(str string)

PrintColor141 wraps Color141() and fmt.Print().

func PrintColor142

func PrintColor142(str string)

PrintColor142 wraps Color142() and fmt.Print().

func PrintColor143

func PrintColor143(str string)

PrintColor143 wraps Color143() and fmt.Print().

func PrintColor144

func PrintColor144(str string)

PrintColor144 wraps Color144() and fmt.Print().

func PrintColor145

func PrintColor145(str string)

PrintColor145 wraps Color145() and fmt.Print().

func PrintColor146

func PrintColor146(str string)

PrintColor146 wraps Color146() and fmt.Print().

func PrintColor147

func PrintColor147(str string)

PrintColor147 wraps Color147() and fmt.Print().

func PrintColor148

func PrintColor148(str string)

PrintColor148 wraps Color148() and fmt.Print().

func PrintColor149

func PrintColor149(str string)

PrintColor149 wraps Color149() and fmt.Print().

func PrintColor150

func PrintColor150(str string)

PrintColor150 wraps Color150() and fmt.Print().

func PrintColor151

func PrintColor151(str string)

PrintColor151 wraps Color151() and fmt.Print().

func PrintColor152

func PrintColor152(str string)

PrintColor152 wraps Color152() and fmt.Print().

func PrintColor153

func PrintColor153(str string)

PrintColor153 wraps Color153() and fmt.Print().

func PrintColor154

func PrintColor154(str string)

PrintColor154 wraps Color154() and fmt.Print().

func PrintColor155

func PrintColor155(str string)

PrintColor155 wraps Color155() and fmt.Print().

func PrintColor156

func PrintColor156(str string)

PrintColor156 wraps Color156() and fmt.Print().

func PrintColor157

func PrintColor157(str string)

PrintColor157 wraps Color157() and fmt.Print().

func PrintColor158

func PrintColor158(str string)

PrintColor158 wraps Color158() and fmt.Print().

func PrintColor159

func PrintColor159(str string)

PrintColor159 wraps Color159() and fmt.Print().

func PrintColor160

func PrintColor160(str string)

PrintColor160 wraps Color160() and fmt.Print().

func PrintColor161

func PrintColor161(str string)

PrintColor161 wraps Color161() and fmt.Print().

func PrintColor162

func PrintColor162(str string)

PrintColor162 wraps Color162() and fmt.Print().

func PrintColor163

func PrintColor163(str string)

PrintColor163 wraps Color163() and fmt.Print().

func PrintColor164

func PrintColor164(str string)

PrintColor164 wraps Color164() and fmt.Print().

func PrintColor165

func PrintColor165(str string)

PrintColor165 wraps Color165() and fmt.Print().

func PrintColor166

func PrintColor166(str string)

PrintColor166 wraps Color166() and fmt.Print().

func PrintColor167

func PrintColor167(str string)

PrintColor167 wraps Color167() and fmt.Print().

func PrintColor168

func PrintColor168(str string)

PrintColor168 wraps Color168() and fmt.Print().

func PrintColor169

func PrintColor169(str string)

PrintColor169 wraps Color169() and fmt.Print().

func PrintColor170

func PrintColor170(str string)

PrintColor170 wraps Color170() and fmt.Print().

func PrintColor171

func PrintColor171(str string)

PrintColor171 wraps Color171() and fmt.Print().

func PrintColor172

func PrintColor172(str string)

PrintColor172 wraps Color172() and fmt.Print().

func PrintColor173

func PrintColor173(str string)

PrintColor173 wraps Color173() and fmt.Print().

func PrintColor174

func PrintColor174(str string)

PrintColor174 wraps Color174() and fmt.Print().

func PrintColor175

func PrintColor175(str string)

PrintColor175 wraps Color175() and fmt.Print().

func PrintColor176

func PrintColor176(str string)

PrintColor176 wraps Color176() and fmt.Print().

func PrintColor177

func PrintColor177(str string)

PrintColor177 wraps Color177() and fmt.Print().

func PrintColor178

func PrintColor178(str string)

PrintColor178 wraps Color178() and fmt.Print().

func PrintColor179

func PrintColor179(str string)

PrintColor179 wraps Color179() and fmt.Print().

func PrintColor180

func PrintColor180(str string)

PrintColor180 wraps Color180() and fmt.Print().

func PrintColor181

func PrintColor181(str string)

PrintColor181 wraps Color181() and fmt.Print().

func PrintColor182

func PrintColor182(str string)

PrintColor182 wraps Color182() and fmt.Print().

func PrintColor183

func PrintColor183(str string)

PrintColor183 wraps Color183() and fmt.Print().

func PrintColor184

func PrintColor184(str string)

PrintColor184 wraps Color184() and fmt.Print().

func PrintColor185

func PrintColor185(str string)

PrintColor185 wraps Color185() and fmt.Print().

func PrintColor186

func PrintColor186(str string)

PrintColor186 wraps Color186() and fmt.Print().

func PrintColor187

func PrintColor187(str string)

PrintColor187 wraps Color187() and fmt.Print().

func PrintColor188

func PrintColor188(str string)

PrintColor188 wraps Color188() and fmt.Print().

func PrintColor189

func PrintColor189(str string)

PrintColor189 wraps Color189() and fmt.Print().

func PrintColor190

func PrintColor190(str string)

PrintColor190 wraps Color190() and fmt.Print().

func PrintColor191

func PrintColor191(str string)

PrintColor191 wraps Color191() and fmt.Print().

func PrintColor192

func PrintColor192(str string)

PrintColor192 wraps Color192() and fmt.Print().

func PrintColor193

func PrintColor193(str string)

PrintColor193 wraps Color193() and fmt.Print().

func PrintColor194

func PrintColor194(str string)

PrintColor194 wraps Color194() and fmt.Print().

func PrintColor195

func PrintColor195(str string)

PrintColor195 wraps Color195() and fmt.Print().

func PrintColor196

func PrintColor196(str string)

PrintColor196 wraps Color196() and fmt.Print().

func PrintColor197

func PrintColor197(str string)

PrintColor197 wraps Color197() and fmt.Print().

func PrintColor198

func PrintColor198(str string)

PrintColor198 wraps Color198() and fmt.Print().

func PrintColor199

func PrintColor199(str string)

PrintColor199 wraps Color199() and fmt.Print().

func PrintColor200

func PrintColor200(str string)

PrintColor200 wraps Color200() and fmt.Print().

func PrintColor201

func PrintColor201(str string)

PrintColor201 wraps Color201() and fmt.Print().

func PrintColor202

func PrintColor202(str string)

PrintColor202 wraps Color202() and fmt.Print().

func PrintColor203

func PrintColor203(str string)

PrintColor203 wraps Color203() and fmt.Print().

func PrintColor204

func PrintColor204(str string)

PrintColor204 wraps Color204() and fmt.Print().

func PrintColor205

func PrintColor205(str string)

PrintColor205 wraps Color205() and fmt.Print().

func PrintColor206

func PrintColor206(str string)

PrintColor206 wraps Color206() and fmt.Print().

func PrintColor207

func PrintColor207(str string)

PrintColor207 wraps Color207() and fmt.Print().

func PrintColor208

func PrintColor208(str string)

PrintColor208 wraps Color208() and fmt.Print().

func PrintColor209

func PrintColor209(str string)

PrintColor209 wraps Color209() and fmt.Print().

func PrintColor210

func PrintColor210(str string)

PrintColor210 wraps Color210() and fmt.Print().

func PrintColor211

func PrintColor211(str string)

PrintColor211 wraps Color211() and fmt.Print().

func PrintColor212

func PrintColor212(str string)

PrintColor212 wraps Color212() and fmt.Print().

func PrintColor213

func PrintColor213(str string)

PrintColor213 wraps Color213() and fmt.Print().

func PrintColor214

func PrintColor214(str string)

PrintColor214 wraps Color214() and fmt.Print().

func PrintColor215

func PrintColor215(str string)

PrintColor215 wraps Color215() and fmt.Print().

func PrintColor216

func PrintColor216(str string)

PrintColor216 wraps Color216() and fmt.Print().

func PrintColor217

func PrintColor217(str string)

PrintColor217 wraps Color217() and fmt.Print().

func PrintColor218

func PrintColor218(str string)

PrintColor218 wraps Color218() and fmt.Print().

func PrintColor219

func PrintColor219(str string)

PrintColor219 wraps Color219() and fmt.Print().

func PrintColor220

func PrintColor220(str string)

PrintColor220 wraps Color220() and fmt.Print().

func PrintColor221

func PrintColor221(str string)

PrintColor221 wraps Color221() and fmt.Print().

func PrintColor222

func PrintColor222(str string)

PrintColor222 wraps Color222() and fmt.Print().

func PrintColor223

func PrintColor223(str string)

PrintColor223 wraps Color223() and fmt.Print().

func PrintColor224

func PrintColor224(str string)

PrintColor224 wraps Color224() and fmt.Print().

func PrintColor225

func PrintColor225(str string)

PrintColor225 wraps Color225() and fmt.Print().

func PrintColor226

func PrintColor226(str string)

PrintColor226 wraps Color226() and fmt.Print().

func PrintColor227

func PrintColor227(str string)

PrintColor227 wraps Color227() and fmt.Print().

func PrintColor228

func PrintColor228(str string)

PrintColor228 wraps Color228() and fmt.Print().

func PrintColor229

func PrintColor229(str string)

PrintColor229 wraps Color229() and fmt.Print().

func PrintColor230

func PrintColor230(str string)

PrintColor230 wraps Color230() and fmt.Print().

func PrintColor231

func PrintColor231(str string)

PrintColor231 wraps Color231() and fmt.Print().

func PrintColor232

func PrintColor232(str string)

PrintColor232 wraps Color232() and fmt.Print().

func PrintColor233

func PrintColor233(str string)

PrintColor233 wraps Color233() and fmt.Print().

func PrintColor234

func PrintColor234(str string)

PrintColor234 wraps Color234() and fmt.Print().

func PrintColor235

func PrintColor235(str string)

PrintColor235 wraps Color235() and fmt.Print().

func PrintColor236

func PrintColor236(str string)

PrintColor236 wraps Color236() and fmt.Print().

func PrintColor237

func PrintColor237(str string)

PrintColor237 wraps Color237() and fmt.Print().

func PrintColor238

func PrintColor238(str string)

PrintColor238 wraps Color238() and fmt.Print().

func PrintColor239

func PrintColor239(str string)

PrintColor239 wraps Color239() and fmt.Print().

func PrintColor240

func PrintColor240(str string)

PrintColor240 wraps Color240() and fmt.Print().

func PrintColor241

func PrintColor241(str string)

PrintColor241 wraps Color241() and fmt.Print().

func PrintColor242

func PrintColor242(str string)

PrintColor242 wraps Color242() and fmt.Print().

func PrintColor243

func PrintColor243(str string)

PrintColor243 wraps Color243() and fmt.Print().

func PrintColor244

func PrintColor244(str string)

PrintColor244 wraps Color244() and fmt.Print().

func PrintColor245

func PrintColor245(str string)

PrintColor245 wraps Color245() and fmt.Print().

func PrintColor246

func PrintColor246(str string)

PrintColor246 wraps Color246() and fmt.Print().

func PrintColor247

func PrintColor247(str string)

PrintColor247 wraps Color247() and fmt.Print().

func PrintColor248

func PrintColor248(str string)

PrintColor248 wraps Color248() and fmt.Print().

func PrintColor249

func PrintColor249(str string)

PrintColor249 wraps Color249() and fmt.Print().

func PrintColor250

func PrintColor250(str string)

PrintColor250 wraps Color250() and fmt.Print().

func PrintColor251

func PrintColor251(str string)

PrintColor251 wraps Color251() and fmt.Print().

func PrintColor252

func PrintColor252(str string)

PrintColor252 wraps Color252() and fmt.Print().

func PrintColor253

func PrintColor253(str string)

PrintColor253 wraps Color253() and fmt.Print().

func PrintColor254

func PrintColor254(str string)

PrintColor254 wraps Color254() and fmt.Print().

func PrintColor255

func PrintColor255(str string)

PrintColor255 wraps Color255() and fmt.Print().

func PrintConceal

func PrintConceal(str string)

PrintConceal wraps Conceal() and fmt.Print().

func PrintCrossedOut

func PrintCrossedOut(str string)

PrintCrossedOut wraps CrossedOut() and fmt.Print().

func PrintCyan

func PrintCyan(str string)

PrintCyan wraps Cyan() and fmt.Print().

func PrintDefault

func PrintDefault(str string)

PrintDefault wraps Default() and fmt.Print().

func PrintDim

func PrintDim(str string)

PrintDim wraps Dim() and fmt.Print().

func PrintFaint

func PrintFaint(str string)

PrintFaint wraps Faint() and fmt.Print().

func PrintFraktur

func PrintFraktur(str string)

PrintFraktur wraps Fraktur() and fmt.Print().

func PrintGreen

func PrintGreen(str string)

PrintGreen wraps Green() and fmt.Print().

func PrintHex

func PrintHex(hex string, str string)

PrintHex wraps Hex() and fmt.Print().

func PrintHide

func PrintHide(str string)

PrintHide wraps Hide() and fmt.Print().

func PrintHilight

func PrintHilight(code string, str string)

PrintHilight wraps Hilight() and fmt.Print().

func PrintHilights

func PrintHilights(codes []string, str string)

PrintHilights wraps Hilights() and fmt.Print().

func PrintInverse

func PrintInverse(str string)

PrintInverse wraps Inverse() and fmt.Print().

func PrintItalic

func PrintItalic(str string)

PrintItalic wraps Italic() and fmt.Print().

func PrintLightBlack

func PrintLightBlack(str string)

PrintLightBlack wraps LightBlack() and fmt.Print().

func PrintLightBlue

func PrintLightBlue(str string)

PrintLightBlue wraps LightBlue() and fmt.Print().

func PrintLightCyan

func PrintLightCyan(str string)

PrintLightCyan wraps LightCyan() and fmt.Print().

func PrintLightGreen

func PrintLightGreen(str string)

PrintLightGreen wraps LightGreen() and fmt.Print().

func PrintLightMagenta

func PrintLightMagenta(str string)

PrintLightMagenta wraps LightMagenta() and fmt.Print().

func PrintLightRed

func PrintLightRed(str string)

PrintLightRed wraps LightRed() and fmt.Print().

func PrintLightWhite

func PrintLightWhite(str string)

PrintLightWhite wraps LightWhite() and fmt.Print().

func PrintLightYellow

func PrintLightYellow(str string)

PrintLightYellow wraps LightYellow() and fmt.Print().

func PrintMagenta

func PrintMagenta(str string)

PrintMagenta wraps Magenta() and fmt.Print().

func PrintNegative

func PrintNegative(str string)

PrintNegative wraps Negative() and fmt.Print().

func PrintNoBlink(str string)

PrintNoBlink wraps NoBlink() and fmt.Print().

func PrintNoBlinkRapid

func PrintNoBlinkRapid(str string)

PrintNoBlinkRapid wraps NoBlinkRapid() and fmt.Print().

func PrintNoBlinkSlow

func PrintNoBlinkSlow(str string)

PrintNoBlinkSlow wraps NoBlinkSlow() and fmt.Print().

func PrintNoBold

func PrintNoBold(str string)

PrintNoBold wraps NoBold() and fmt.Print().

func PrintNoConceal

func PrintNoConceal(str string)

PrintNoConceal wraps NoConceal() and fmt.Print().

func PrintNoCrossedOut

func PrintNoCrossedOut(str string)

PrintNoCrossedOut wraps NoCrossedOut() and fmt.Print().

func PrintNoDim

func PrintNoDim(str string)

PrintNoDim wraps NoDim() and fmt.Print().

func PrintNoFaint

func PrintNoFaint(str string)

PrintNoFaint wraps NoFaint() and fmt.Print().

func PrintNoFraktur

func PrintNoFraktur(str string)

PrintNoFraktur wraps NoFraktur() and fmt.Print().

func PrintNoHide

func PrintNoHide(str string)

PrintNoHide wraps NoHide() and fmt.Print().

func PrintNoInverse

func PrintNoInverse(str string)

PrintNoInverse wraps NoInverse() and fmt.Print().

func PrintNoItalic

func PrintNoItalic(str string)

PrintNoItalic wraps NoItalic() and fmt.Print().

func PrintNoNegative

func PrintNoNegative(str string)

PrintNoNegative wraps NoNegative() and fmt.Print().

func PrintNoStrikethrough

func PrintNoStrikethrough(str string)

PrintNoStrikethrough wraps NoStrikethrough() and fmt.Print().

func PrintNoSwap

func PrintNoSwap(str string)

PrintNoSwap wraps NoSwap() and fmt.Print().

func PrintNoUnderline

func PrintNoUnderline(str string)

PrintNoUnderline wraps NoUnderline() and fmt.Print().

func PrintNormal

func PrintNormal(str string)

PrintNormal wraps Normal() and fmt.Print().

func PrintOnBlack

func PrintOnBlack(str string)

PrintOnBlack wraps OnBlack() and fmt.Print().

func PrintOnBlue

func PrintOnBlue(str string)

PrintOnBlue wraps OnBlue() and fmt.Print().

func PrintOnColor000

func PrintOnColor000(str string)

PrintOnColor000 wraps OnColor000() and fmt.Print().

func PrintOnColor001

func PrintOnColor001(str string)

PrintOnColor001 wraps OnColor001() and fmt.Print().

func PrintOnColor002

func PrintOnColor002(str string)

PrintOnColor002 wraps OnColor002() and fmt.Print().

func PrintOnColor003

func PrintOnColor003(str string)

PrintOnColor003 wraps OnColor003() and fmt.Print().

func PrintOnColor004

func PrintOnColor004(str string)

PrintOnColor004 wraps OnColor004() and fmt.Print().

func PrintOnColor005

func PrintOnColor005(str string)

PrintOnColor005 wraps OnColor005() and fmt.Print().

func PrintOnColor006

func PrintOnColor006(str string)

PrintOnColor006 wraps OnColor006() and fmt.Print().

func PrintOnColor007

func PrintOnColor007(str string)

PrintOnColor007 wraps OnColor007() and fmt.Print().

func PrintOnColor008

func PrintOnColor008(str string)

PrintOnColor008 wraps OnColor008() and fmt.Print().

func PrintOnColor009

func PrintOnColor009(str string)

PrintOnColor009 wraps OnColor009() and fmt.Print().

func PrintOnColor010

func PrintOnColor010(str string)

PrintOnColor010 wraps OnColor010() and fmt.Print().

func PrintOnColor011

func PrintOnColor011(str string)

PrintOnColor011 wraps OnColor011() and fmt.Print().

func PrintOnColor012

func PrintOnColor012(str string)

PrintOnColor012 wraps OnColor012() and fmt.Print().

func PrintOnColor013

func PrintOnColor013(str string)

PrintOnColor013 wraps OnColor013() and fmt.Print().

func PrintOnColor014

func PrintOnColor014(str string)

PrintOnColor014 wraps OnColor014() and fmt.Print().

func PrintOnColor015

func PrintOnColor015(str string)

PrintOnColor015 wraps OnColor015() and fmt.Print().

func PrintOnColor016

func PrintOnColor016(str string)

PrintOnColor016 wraps OnColor016() and fmt.Print().

func PrintOnColor017

func PrintOnColor017(str string)

PrintOnColor017 wraps OnColor017() and fmt.Print().

func PrintOnColor018

func PrintOnColor018(str string)

PrintOnColor018 wraps OnColor018() and fmt.Print().

func PrintOnColor019

func PrintOnColor019(str string)

PrintOnColor019 wraps OnColor019() and fmt.Print().

func PrintOnColor020

func PrintOnColor020(str string)

PrintOnColor020 wraps OnColor020() and fmt.Print().

func PrintOnColor021

func PrintOnColor021(str string)

PrintOnColor021 wraps OnColor021() and fmt.Print().

func PrintOnColor022

func PrintOnColor022(str string)

PrintOnColor022 wraps OnColor022() and fmt.Print().

func PrintOnColor023

func PrintOnColor023(str string)

PrintOnColor023 wraps OnColor023() and fmt.Print().

func PrintOnColor024

func PrintOnColor024(str string)

PrintOnColor024 wraps OnColor024() and fmt.Print().

func PrintOnColor025

func PrintOnColor025(str string)

PrintOnColor025 wraps OnColor025() and fmt.Print().

func PrintOnColor026

func PrintOnColor026(str string)

PrintOnColor026 wraps OnColor026() and fmt.Print().

func PrintOnColor027

func PrintOnColor027(str string)

PrintOnColor027 wraps OnColor027() and fmt.Print().

func PrintOnColor028

func PrintOnColor028(str string)

PrintOnColor028 wraps OnColor028() and fmt.Print().

func PrintOnColor029

func PrintOnColor029(str string)

PrintOnColor029 wraps OnColor029() and fmt.Print().

func PrintOnColor030

func PrintOnColor030(str string)

PrintOnColor030 wraps OnColor030() and fmt.Print().

func PrintOnColor031

func PrintOnColor031(str string)

PrintOnColor031 wraps OnColor031() and fmt.Print().

func PrintOnColor032

func PrintOnColor032(str string)

PrintOnColor032 wraps OnColor032() and fmt.Print().

func PrintOnColor033

func PrintOnColor033(str string)

PrintOnColor033 wraps OnColor033() and fmt.Print().

func PrintOnColor034

func PrintOnColor034(str string)

PrintOnColor034 wraps OnColor034() and fmt.Print().

func PrintOnColor035

func PrintOnColor035(str string)

PrintOnColor035 wraps OnColor035() and fmt.Print().

func PrintOnColor036

func PrintOnColor036(str string)

PrintOnColor036 wraps OnColor036() and fmt.Print().

func PrintOnColor037

func PrintOnColor037(str string)

PrintOnColor037 wraps OnColor037() and fmt.Print().

func PrintOnColor038

func PrintOnColor038(str string)

PrintOnColor038 wraps OnColor038() and fmt.Print().

func PrintOnColor039

func PrintOnColor039(str string)

PrintOnColor039 wraps OnColor039() and fmt.Print().

func PrintOnColor040

func PrintOnColor040(str string)

PrintOnColor040 wraps OnColor040() and fmt.Print().

func PrintOnColor041

func PrintOnColor041(str string)

PrintOnColor041 wraps OnColor041() and fmt.Print().

func PrintOnColor042

func PrintOnColor042(str string)

PrintOnColor042 wraps OnColor042() and fmt.Print().

func PrintOnColor043

func PrintOnColor043(str string)

PrintOnColor043 wraps OnColor043() and fmt.Print().

func PrintOnColor044

func PrintOnColor044(str string)

PrintOnColor044 wraps OnColor044() and fmt.Print().

func PrintOnColor045

func PrintOnColor045(str string)

PrintOnColor045 wraps OnColor045() and fmt.Print().

func PrintOnColor046

func PrintOnColor046(str string)

PrintOnColor046 wraps OnColor046() and fmt.Print().

func PrintOnColor047

func PrintOnColor047(str string)

PrintOnColor047 wraps OnColor047() and fmt.Print().

func PrintOnColor048

func PrintOnColor048(str string)

PrintOnColor048 wraps OnColor048() and fmt.Print().

func PrintOnColor049

func PrintOnColor049(str string)

PrintOnColor049 wraps OnColor049() and fmt.Print().

func PrintOnColor050

func PrintOnColor050(str string)

PrintOnColor050 wraps OnColor050() and fmt.Print().

func PrintOnColor051

func PrintOnColor051(str string)

PrintOnColor051 wraps OnColor051() and fmt.Print().

func PrintOnColor052

func PrintOnColor052(str string)

PrintOnColor052 wraps OnColor052() and fmt.Print().

func PrintOnColor053

func PrintOnColor053(str string)

PrintOnColor053 wraps OnColor053() and fmt.Print().

func PrintOnColor054

func PrintOnColor054(str string)

PrintOnColor054 wraps OnColor054() and fmt.Print().

func PrintOnColor055

func PrintOnColor055(str string)

PrintOnColor055 wraps OnColor055() and fmt.Print().

func PrintOnColor056

func PrintOnColor056(str string)

PrintOnColor056 wraps OnColor056() and fmt.Print().

func PrintOnColor057

func PrintOnColor057(str string)

PrintOnColor057 wraps OnColor057() and fmt.Print().

func PrintOnColor058

func PrintOnColor058(str string)

PrintOnColor058 wraps OnColor058() and fmt.Print().

func PrintOnColor059

func PrintOnColor059(str string)

PrintOnColor059 wraps OnColor059() and fmt.Print().

func PrintOnColor060

func PrintOnColor060(str string)

PrintOnColor060 wraps OnColor060() and fmt.Print().

func PrintOnColor061

func PrintOnColor061(str string)

PrintOnColor061 wraps OnColor061() and fmt.Print().

func PrintOnColor062

func PrintOnColor062(str string)

PrintOnColor062 wraps OnColor062() and fmt.Print().

func PrintOnColor063

func PrintOnColor063(str string)

PrintOnColor063 wraps OnColor063() and fmt.Print().

func PrintOnColor064

func PrintOnColor064(str string)

PrintOnColor064 wraps OnColor064() and fmt.Print().

func PrintOnColor065

func PrintOnColor065(str string)

PrintOnColor065 wraps OnColor065() and fmt.Print().

func PrintOnColor066

func PrintOnColor066(str string)

PrintOnColor066 wraps OnColor066() and fmt.Print().

func PrintOnColor067

func PrintOnColor067(str string)

PrintOnColor067 wraps OnColor067() and fmt.Print().

func PrintOnColor068

func PrintOnColor068(str string)

PrintOnColor068 wraps OnColor068() and fmt.Print().

func PrintOnColor069

func PrintOnColor069(str string)

PrintOnColor069 wraps OnColor069() and fmt.Print().

func PrintOnColor070

func PrintOnColor070(str string)

PrintOnColor070 wraps OnColor070() and fmt.Print().

func PrintOnColor071

func PrintOnColor071(str string)

PrintOnColor071 wraps OnColor071() and fmt.Print().

func PrintOnColor072

func PrintOnColor072(str string)

PrintOnColor072 wraps OnColor072() and fmt.Print().

func PrintOnColor073

func PrintOnColor073(str string)

PrintOnColor073 wraps OnColor073() and fmt.Print().

func PrintOnColor074

func PrintOnColor074(str string)

PrintOnColor074 wraps OnColor074() and fmt.Print().

func PrintOnColor075

func PrintOnColor075(str string)

PrintOnColor075 wraps OnColor075() and fmt.Print().

func PrintOnColor076

func PrintOnColor076(str string)

PrintOnColor076 wraps OnColor076() and fmt.Print().

func PrintOnColor077

func PrintOnColor077(str string)

PrintOnColor077 wraps OnColor077() and fmt.Print().

func PrintOnColor078

func PrintOnColor078(str string)

PrintOnColor078 wraps OnColor078() and fmt.Print().

func PrintOnColor079

func PrintOnColor079(str string)

PrintOnColor079 wraps OnColor079() and fmt.Print().

func PrintOnColor080

func PrintOnColor080(str string)

PrintOnColor080 wraps OnColor080() and fmt.Print().

func PrintOnColor081

func PrintOnColor081(str string)

PrintOnColor081 wraps OnColor081() and fmt.Print().

func PrintOnColor082

func PrintOnColor082(str string)

PrintOnColor082 wraps OnColor082() and fmt.Print().

func PrintOnColor083

func PrintOnColor083(str string)

PrintOnColor083 wraps OnColor083() and fmt.Print().

func PrintOnColor084

func PrintOnColor084(str string)

PrintOnColor084 wraps OnColor084() and fmt.Print().

func PrintOnColor085

func PrintOnColor085(str string)

PrintOnColor085 wraps OnColor085() and fmt.Print().

func PrintOnColor086

func PrintOnColor086(str string)

PrintOnColor086 wraps OnColor086() and fmt.Print().

func PrintOnColor087

func PrintOnColor087(str string)

PrintOnColor087 wraps OnColor087() and fmt.Print().

func PrintOnColor088

func PrintOnColor088(str string)

PrintOnColor088 wraps OnColor088() and fmt.Print().

func PrintOnColor089

func PrintOnColor089(str string)

PrintOnColor089 wraps OnColor089() and fmt.Print().

func PrintOnColor090

func PrintOnColor090(str string)

PrintOnColor090 wraps OnColor090() and fmt.Print().

func PrintOnColor091

func PrintOnColor091(str string)

PrintOnColor091 wraps OnColor091() and fmt.Print().

func PrintOnColor092

func PrintOnColor092(str string)

PrintOnColor092 wraps OnColor092() and fmt.Print().

func PrintOnColor093

func PrintOnColor093(str string)

PrintOnColor093 wraps OnColor093() and fmt.Print().

func PrintOnColor094

func PrintOnColor094(str string)

PrintOnColor094 wraps OnColor094() and fmt.Print().

func PrintOnColor095

func PrintOnColor095(str string)

PrintOnColor095 wraps OnColor095() and fmt.Print().

func PrintOnColor096

func PrintOnColor096(str string)

PrintOnColor096 wraps OnColor096() and fmt.Print().

func PrintOnColor097

func PrintOnColor097(str string)

PrintOnColor097 wraps OnColor097() and fmt.Print().

func PrintOnColor098

func PrintOnColor098(str string)

PrintOnColor098 wraps OnColor098() and fmt.Print().

func PrintOnColor099

func PrintOnColor099(str string)

PrintOnColor099 wraps OnColor099() and fmt.Print().

func PrintOnColor100

func PrintOnColor100(str string)

PrintOnColor100 wraps OnColor100() and fmt.Print().

func PrintOnColor101

func PrintOnColor101(str string)

PrintOnColor101 wraps OnColor101() and fmt.Print().

func PrintOnColor102

func PrintOnColor102(str string)

PrintOnColor102 wraps OnColor102() and fmt.Print().

func PrintOnColor103

func PrintOnColor103(str string)

PrintOnColor103 wraps OnColor103() and fmt.Print().

func PrintOnColor104

func PrintOnColor104(str string)

PrintOnColor104 wraps OnColor104() and fmt.Print().

func PrintOnColor105

func PrintOnColor105(str string)

PrintOnColor105 wraps OnColor105() and fmt.Print().

func PrintOnColor106

func PrintOnColor106(str string)

PrintOnColor106 wraps OnColor106() and fmt.Print().

func PrintOnColor107

func PrintOnColor107(str string)

PrintOnColor107 wraps OnColor107() and fmt.Print().

func PrintOnColor108

func PrintOnColor108(str string)

PrintOnColor108 wraps OnColor108() and fmt.Print().

func PrintOnColor109

func PrintOnColor109(str string)

PrintOnColor109 wraps OnColor109() and fmt.Print().

func PrintOnColor110

func PrintOnColor110(str string)

PrintOnColor110 wraps OnColor110() and fmt.Print().

func PrintOnColor111

func PrintOnColor111(str string)

PrintOnColor111 wraps OnColor111() and fmt.Print().

func PrintOnColor112

func PrintOnColor112(str string)

PrintOnColor112 wraps OnColor112() and fmt.Print().

func PrintOnColor113

func PrintOnColor113(str string)

PrintOnColor113 wraps OnColor113() and fmt.Print().

func PrintOnColor114

func PrintOnColor114(str string)

PrintOnColor114 wraps OnColor114() and fmt.Print().

func PrintOnColor115

func PrintOnColor115(str string)

PrintOnColor115 wraps OnColor115() and fmt.Print().

func PrintOnColor116

func PrintOnColor116(str string)

PrintOnColor116 wraps OnColor116() and fmt.Print().

func PrintOnColor117

func PrintOnColor117(str string)

PrintOnColor117 wraps OnColor117() and fmt.Print().

func PrintOnColor118

func PrintOnColor118(str string)

PrintOnColor118 wraps OnColor118() and fmt.Print().

func PrintOnColor119

func PrintOnColor119(str string)

PrintOnColor119 wraps OnColor119() and fmt.Print().

func PrintOnColor120

func PrintOnColor120(str string)

PrintOnColor120 wraps OnColor120() and fmt.Print().

func PrintOnColor121

func PrintOnColor121(str string)

PrintOnColor121 wraps OnColor121() and fmt.Print().

func PrintOnColor122

func PrintOnColor122(str string)

PrintOnColor122 wraps OnColor122() and fmt.Print().

func PrintOnColor123

func PrintOnColor123(str string)

PrintOnColor123 wraps OnColor123() and fmt.Print().

func PrintOnColor124

func PrintOnColor124(str string)

PrintOnColor124 wraps OnColor124() and fmt.Print().

func PrintOnColor125

func PrintOnColor125(str string)

PrintOnColor125 wraps OnColor125() and fmt.Print().

func PrintOnColor126

func PrintOnColor126(str string)

PrintOnColor126 wraps OnColor126() and fmt.Print().

func PrintOnColor127

func PrintOnColor127(str string)

PrintOnColor127 wraps OnColor127() and fmt.Print().

func PrintOnColor128

func PrintOnColor128(str string)

PrintOnColor128 wraps OnColor128() and fmt.Print().

func PrintOnColor129

func PrintOnColor129(str string)

PrintOnColor129 wraps OnColor129() and fmt.Print().

func PrintOnColor130

func PrintOnColor130(str string)

PrintOnColor130 wraps OnColor130() and fmt.Print().

func PrintOnColor131

func PrintOnColor131(str string)

PrintOnColor131 wraps OnColor131() and fmt.Print().

func PrintOnColor132

func PrintOnColor132(str string)

PrintOnColor132 wraps OnColor132() and fmt.Print().

func PrintOnColor133

func PrintOnColor133(str string)

PrintOnColor133 wraps OnColor133() and fmt.Print().

func PrintOnColor134

func PrintOnColor134(str string)

PrintOnColor134 wraps OnColor134() and fmt.Print().

func PrintOnColor135

func PrintOnColor135(str string)

PrintOnColor135 wraps OnColor135() and fmt.Print().

func PrintOnColor136

func PrintOnColor136(str string)

PrintOnColor136 wraps OnColor136() and fmt.Print().

func PrintOnColor137

func PrintOnColor137(str string)

PrintOnColor137 wraps OnColor137() and fmt.Print().

func PrintOnColor138

func PrintOnColor138(str string)

PrintOnColor138 wraps OnColor138() and fmt.Print().

func PrintOnColor139

func PrintOnColor139(str string)

PrintOnColor139 wraps OnColor139() and fmt.Print().

func PrintOnColor140

func PrintOnColor140(str string)

PrintOnColor140 wraps OnColor140() and fmt.Print().

func PrintOnColor141

func PrintOnColor141(str string)

PrintOnColor141 wraps OnColor141() and fmt.Print().

func PrintOnColor142

func PrintOnColor142(str string)

PrintOnColor142 wraps OnColor142() and fmt.Print().

func PrintOnColor143

func PrintOnColor143(str string)

PrintOnColor143 wraps OnColor143() and fmt.Print().

func PrintOnColor144

func PrintOnColor144(str string)

PrintOnColor144 wraps OnColor144() and fmt.Print().

func PrintOnColor145

func PrintOnColor145(str string)

PrintOnColor145 wraps OnColor145() and fmt.Print().

func PrintOnColor146

func PrintOnColor146(str string)

PrintOnColor146 wraps OnColor146() and fmt.Print().

func PrintOnColor147

func PrintOnColor147(str string)

PrintOnColor147 wraps OnColor147() and fmt.Print().

func PrintOnColor148

func PrintOnColor148(str string)

PrintOnColor148 wraps OnColor148() and fmt.Print().

func PrintOnColor149

func PrintOnColor149(str string)

PrintOnColor149 wraps OnColor149() and fmt.Print().

func PrintOnColor150

func PrintOnColor150(str string)

PrintOnColor150 wraps OnColor150() and fmt.Print().

func PrintOnColor151

func PrintOnColor151(str string)

PrintOnColor151 wraps OnColor151() and fmt.Print().

func PrintOnColor152

func PrintOnColor152(str string)

PrintOnColor152 wraps OnColor152() and fmt.Print().

func PrintOnColor153

func PrintOnColor153(str string)

PrintOnColor153 wraps OnColor153() and fmt.Print().

func PrintOnColor154

func PrintOnColor154(str string)

PrintOnColor154 wraps OnColor154() and fmt.Print().

func PrintOnColor155

func PrintOnColor155(str string)

PrintOnColor155 wraps OnColor155() and fmt.Print().

func PrintOnColor156

func PrintOnColor156(str string)

PrintOnColor156 wraps OnColor156() and fmt.Print().

func PrintOnColor157

func PrintOnColor157(str string)

PrintOnColor157 wraps OnColor157() and fmt.Print().

func PrintOnColor158

func PrintOnColor158(str string)

PrintOnColor158 wraps OnColor158() and fmt.Print().

func PrintOnColor159

func PrintOnColor159(str string)

PrintOnColor159 wraps OnColor159() and fmt.Print().

func PrintOnColor160

func PrintOnColor160(str string)

PrintOnColor160 wraps OnColor160() and fmt.Print().

func PrintOnColor161

func PrintOnColor161(str string)

PrintOnColor161 wraps OnColor161() and fmt.Print().

func PrintOnColor162

func PrintOnColor162(str string)

PrintOnColor162 wraps OnColor162() and fmt.Print().

func PrintOnColor163

func PrintOnColor163(str string)

PrintOnColor163 wraps OnColor163() and fmt.Print().

func PrintOnColor164

func PrintOnColor164(str string)

PrintOnColor164 wraps OnColor164() and fmt.Print().

func PrintOnColor165

func PrintOnColor165(str string)

PrintOnColor165 wraps OnColor165() and fmt.Print().

func PrintOnColor166

func PrintOnColor166(str string)

PrintOnColor166 wraps OnColor166() and fmt.Print().

func PrintOnColor167

func PrintOnColor167(str string)

PrintOnColor167 wraps OnColor167() and fmt.Print().

func PrintOnColor168

func PrintOnColor168(str string)

PrintOnColor168 wraps OnColor168() and fmt.Print().

func PrintOnColor169

func PrintOnColor169(str string)

PrintOnColor169 wraps OnColor169() and fmt.Print().

func PrintOnColor170

func PrintOnColor170(str string)

PrintOnColor170 wraps OnColor170() and fmt.Print().

func PrintOnColor171

func PrintOnColor171(str string)

PrintOnColor171 wraps OnColor171() and fmt.Print().

func PrintOnColor172

func PrintOnColor172(str string)

PrintOnColor172 wraps OnColor172() and fmt.Print().

func PrintOnColor173

func PrintOnColor173(str string)

PrintOnColor173 wraps OnColor173() and fmt.Print().

func PrintOnColor174

func PrintOnColor174(str string)

PrintOnColor174 wraps OnColor174() and fmt.Print().

func PrintOnColor175

func PrintOnColor175(str string)

PrintOnColor175 wraps OnColor175() and fmt.Print().

func PrintOnColor176

func PrintOnColor176(str string)

PrintOnColor176 wraps OnColor176() and fmt.Print().

func PrintOnColor177

func PrintOnColor177(str string)

PrintOnColor177 wraps OnColor177() and fmt.Print().

func PrintOnColor178

func PrintOnColor178(str string)

PrintOnColor178 wraps OnColor178() and fmt.Print().

func PrintOnColor179

func PrintOnColor179(str string)

PrintOnColor179 wraps OnColor179() and fmt.Print().

func PrintOnColor180

func PrintOnColor180(str string)

PrintOnColor180 wraps OnColor180() and fmt.Print().

func PrintOnColor181

func PrintOnColor181(str string)

PrintOnColor181 wraps OnColor181() and fmt.Print().

func PrintOnColor182

func PrintOnColor182(str string)

PrintOnColor182 wraps OnColor182() and fmt.Print().

func PrintOnColor183

func PrintOnColor183(str string)

PrintOnColor183 wraps OnColor183() and fmt.Print().

func PrintOnColor184

func PrintOnColor184(str string)

PrintOnColor184 wraps OnColor184() and fmt.Print().

func PrintOnColor185

func PrintOnColor185(str string)

PrintOnColor185 wraps OnColor185() and fmt.Print().

func PrintOnColor186

func PrintOnColor186(str string)

PrintOnColor186 wraps OnColor186() and fmt.Print().

func PrintOnColor187

func PrintOnColor187(str string)

PrintOnColor187 wraps OnColor187() and fmt.Print().

func PrintOnColor188

func PrintOnColor188(str string)

PrintOnColor188 wraps OnColor188() and fmt.Print().

func PrintOnColor189

func PrintOnColor189(str string)

PrintOnColor189 wraps OnColor189() and fmt.Print().

func PrintOnColor190

func PrintOnColor190(str string)

PrintOnColor190 wraps OnColor190() and fmt.Print().

func PrintOnColor191

func PrintOnColor191(str string)

PrintOnColor191 wraps OnColor191() and fmt.Print().

func PrintOnColor192

func PrintOnColor192(str string)

PrintOnColor192 wraps OnColor192() and fmt.Print().

func PrintOnColor193

func PrintOnColor193(str string)

PrintOnColor193 wraps OnColor193() and fmt.Print().

func PrintOnColor194

func PrintOnColor194(str string)

PrintOnColor194 wraps OnColor194() and fmt.Print().

func PrintOnColor195

func PrintOnColor195(str string)

PrintOnColor195 wraps OnColor195() and fmt.Print().

func PrintOnColor196

func PrintOnColor196(str string)

PrintOnColor196 wraps OnColor196() and fmt.Print().

func PrintOnColor197

func PrintOnColor197(str string)

PrintOnColor197 wraps OnColor197() and fmt.Print().

func PrintOnColor198

func PrintOnColor198(str string)

PrintOnColor198 wraps OnColor198() and fmt.Print().

func PrintOnColor199

func PrintOnColor199(str string)

PrintOnColor199 wraps OnColor199() and fmt.Print().

func PrintOnColor200

func PrintOnColor200(str string)

PrintOnColor200 wraps OnColor200() and fmt.Print().

func PrintOnColor201

func PrintOnColor201(str string)

PrintOnColor201 wraps OnColor201() and fmt.Print().

func PrintOnColor202

func PrintOnColor202(str string)

PrintOnColor202 wraps OnColor202() and fmt.Print().

func PrintOnColor203

func PrintOnColor203(str string)

PrintOnColor203 wraps OnColor203() and fmt.Print().

func PrintOnColor204

func PrintOnColor204(str string)

PrintOnColor204 wraps OnColor204() and fmt.Print().

func PrintOnColor205

func PrintOnColor205(str string)

PrintOnColor205 wraps OnColor205() and fmt.Print().

func PrintOnColor206

func PrintOnColor206(str string)

PrintOnColor206 wraps OnColor206() and fmt.Print().

func PrintOnColor207

func PrintOnColor207(str string)

PrintOnColor207 wraps OnColor207() and fmt.Print().

func PrintOnColor208

func PrintOnColor208(str string)

PrintOnColor208 wraps OnColor208() and fmt.Print().

func PrintOnColor209

func PrintOnColor209(str string)

PrintOnColor209 wraps OnColor209() and fmt.Print().

func PrintOnColor210

func PrintOnColor210(str string)

PrintOnColor210 wraps OnColor210() and fmt.Print().

func PrintOnColor211

func PrintOnColor211(str string)

PrintOnColor211 wraps OnColor211() and fmt.Print().

func PrintOnColor212

func PrintOnColor212(str string)

PrintOnColor212 wraps OnColor212() and fmt.Print().

func PrintOnColor213

func PrintOnColor213(str string)

PrintOnColor213 wraps OnColor213() and fmt.Print().

func PrintOnColor214

func PrintOnColor214(str string)

PrintOnColor214 wraps OnColor214() and fmt.Print().

func PrintOnColor215

func PrintOnColor215(str string)

PrintOnColor215 wraps OnColor215() and fmt.Print().

func PrintOnColor216

func PrintOnColor216(str string)

PrintOnColor216 wraps OnColor216() and fmt.Print().

func PrintOnColor217

func PrintOnColor217(str string)

PrintOnColor217 wraps OnColor217() and fmt.Print().

func PrintOnColor218

func PrintOnColor218(str string)

PrintOnColor218 wraps OnColor218() and fmt.Print().

func PrintOnColor219

func PrintOnColor219(str string)

PrintOnColor219 wraps OnColor219() and fmt.Print().

func PrintOnColor220

func PrintOnColor220(str string)

PrintOnColor220 wraps OnColor220() and fmt.Print().

func PrintOnColor221

func PrintOnColor221(str string)

PrintOnColor221 wraps OnColor221() and fmt.Print().

func PrintOnColor222

func PrintOnColor222(str string)

PrintOnColor222 wraps OnColor222() and fmt.Print().

func PrintOnColor223

func PrintOnColor223(str string)

PrintOnColor223 wraps OnColor223() and fmt.Print().

func PrintOnColor224

func PrintOnColor224(str string)

PrintOnColor224 wraps OnColor224() and fmt.Print().

func PrintOnColor225

func PrintOnColor225(str string)

PrintOnColor225 wraps OnColor225() and fmt.Print().

func PrintOnColor226

func PrintOnColor226(str string)

PrintOnColor226 wraps OnColor226() and fmt.Print().

func PrintOnColor227

func PrintOnColor227(str string)

PrintOnColor227 wraps OnColor227() and fmt.Print().

func PrintOnColor228

func PrintOnColor228(str string)

PrintOnColor228 wraps OnColor228() and fmt.Print().

func PrintOnColor229

func PrintOnColor229(str string)

PrintOnColor229 wraps OnColor229() and fmt.Print().

func PrintOnColor230

func PrintOnColor230(str string)

PrintOnColor230 wraps OnColor230() and fmt.Print().

func PrintOnColor231

func PrintOnColor231(str string)

PrintOnColor231 wraps OnColor231() and fmt.Print().

func PrintOnColor232

func PrintOnColor232(str string)

PrintOnColor232 wraps OnColor232() and fmt.Print().

func PrintOnColor233

func PrintOnColor233(str string)

PrintOnColor233 wraps OnColor233() and fmt.Print().

func PrintOnColor234

func PrintOnColor234(str string)

PrintOnColor234 wraps OnColor234() and fmt.Print().

func PrintOnColor235

func PrintOnColor235(str string)

PrintOnColor235 wraps OnColor235() and fmt.Print().

func PrintOnColor236

func PrintOnColor236(str string)

PrintOnColor236 wraps OnColor236() and fmt.Print().

func PrintOnColor237

func PrintOnColor237(str string)

PrintOnColor237 wraps OnColor237() and fmt.Print().

func PrintOnColor238

func PrintOnColor238(str string)

PrintOnColor238 wraps OnColor238() and fmt.Print().

func PrintOnColor239

func PrintOnColor239(str string)

PrintOnColor239 wraps OnColor239() and fmt.Print().

func PrintOnColor240

func PrintOnColor240(str string)

PrintOnColor240 wraps OnColor240() and fmt.Print().

func PrintOnColor241

func PrintOnColor241(str string)

PrintOnColor241 wraps OnColor241() and fmt.Print().

func PrintOnColor242

func PrintOnColor242(str string)

PrintOnColor242 wraps OnColor242() and fmt.Print().

func PrintOnColor243

func PrintOnColor243(str string)

PrintOnColor243 wraps OnColor243() and fmt.Print().

func PrintOnColor244

func PrintOnColor244(str string)

PrintOnColor244 wraps OnColor244() and fmt.Print().

func PrintOnColor245

func PrintOnColor245(str string)

PrintOnColor245 wraps OnColor245() and fmt.Print().

func PrintOnColor246

func PrintOnColor246(str string)

PrintOnColor246 wraps OnColor246() and fmt.Print().

func PrintOnColor247

func PrintOnColor247(str string)

PrintOnColor247 wraps OnColor247() and fmt.Print().

func PrintOnColor248

func PrintOnColor248(str string)

PrintOnColor248 wraps OnColor248() and fmt.Print().

func PrintOnColor249

func PrintOnColor249(str string)

PrintOnColor249 wraps OnColor249() and fmt.Print().

func PrintOnColor250

func PrintOnColor250(str string)

PrintOnColor250 wraps OnColor250() and fmt.Print().

func PrintOnColor251

func PrintOnColor251(str string)

PrintOnColor251 wraps OnColor251() and fmt.Print().

func PrintOnColor252

func PrintOnColor252(str string)

PrintOnColor252 wraps OnColor252() and fmt.Print().

func PrintOnColor253

func PrintOnColor253(str string)

PrintOnColor253 wraps OnColor253() and fmt.Print().

func PrintOnColor254

func PrintOnColor254(str string)

PrintOnColor254 wraps OnColor254() and fmt.Print().

func PrintOnColor255

func PrintOnColor255(str string)

PrintOnColor255 wraps OnColor255() and fmt.Print().

func PrintOnCyan

func PrintOnCyan(str string)

PrintOnCyan wraps OnCyan() and fmt.Print().

func PrintOnDefault

func PrintOnDefault(str string)

PrintOnDefault wraps OnDefault() and fmt.Print().

func PrintOnGreen

func PrintOnGreen(str string)

PrintOnGreen wraps OnGreen() and fmt.Print().

func PrintOnHex

func PrintOnHex(hex string, str string)

PrintOnHex wraps OnHex() and fmt.Print().

func PrintOnLightBlack

func PrintOnLightBlack(str string)

PrintOnLightBlack wraps OnLightBlack() and fmt.Print().

func PrintOnLightBlue

func PrintOnLightBlue(str string)

PrintOnLightBlue wraps OnLightBlue() and fmt.Print().

func PrintOnLightCyan

func PrintOnLightCyan(str string)

PrintOnLightCyan wraps OnLightCyan() and fmt.Print().

func PrintOnLightGreen

func PrintOnLightGreen(str string)

PrintOnLightGreen wraps OnLightGreen() and fmt.Print().

func PrintOnLightMagenta

func PrintOnLightMagenta(str string)

PrintOnLightMagenta wraps OnLightMagenta() and fmt.Print().

func PrintOnLightRed

func PrintOnLightRed(str string)

PrintOnLightRed wraps OnLightRed() and fmt.Print().

func PrintOnLightWhite

func PrintOnLightWhite(str string)

PrintOnLightWhite wraps OnLightWhite() and fmt.Print().

func PrintOnLightYellow

func PrintOnLightYellow(str string)

PrintOnLightYellow wraps OnLightYellow() and fmt.Print().

func PrintOnMagenta

func PrintOnMagenta(str string)

PrintOnMagenta wraps OnMagenta() and fmt.Print().

func PrintOnRainbow

func PrintOnRainbow(str string)

PrintOnRainbow wraps OnRainbow() and fmt.Print().

func PrintOnRed

func PrintOnRed(str string)

PrintOnRed wraps OnRed() and fmt.Print().

func PrintOnWhite

func PrintOnWhite(str string)

PrintOnWhite wraps OnWhite() and fmt.Print().

func PrintOnYellow

func PrintOnYellow(str string)

PrintOnYellow wraps OnYellow() and fmt.Print().

func PrintPlain added in v1.8.0

func PrintPlain(str string)

PrintPlain wraps Plain() and fmt.Print().

func PrintRainbow

func PrintRainbow(str string)

PrintRainbow wraps Rainbow() and fmt.Print().

func PrintRed

func PrintRed(str string)

PrintRed wraps Red() and fmt.Print().

func PrintReset

func PrintReset(str string)

PrintReset wraps Reset() and fmt.Print().

func PrintStrikethrough

func PrintStrikethrough(str string)

PrintStrikethrough wraps Strikethrough() and fmt.Print().

func PrintSwap

func PrintSwap(str string)

PrintSwap wraps Swap() and fmt.Print().

func PrintUnderline

func PrintUnderline(str string)

PrintUnderline wraps Underline() and fmt.Print().

func PrintWhite

func PrintWhite(str string)

PrintWhite wraps White() and fmt.Print().

func PrintWrap

func PrintWrap(width int, str string)

PrintWrap wraps Wrap() and fmt.Print().

func PrintYellow

func PrintYellow(str string)

PrintYellow wraps Yellow() and fmt.Print().

func Printf

func Printf(format string, args ...interface{})

Printf wraps fmt.Printf().

func PrintfBlack added in v1.8.0

func PrintfBlack(format string, args ...interface{})

PrintfBlack wraps Black() and fmt.Printf().

func PrintfBlink(format string, args ...interface{})

PrintfBlink wraps Blink() and fmt.Printf().

func PrintfBlinkRapid added in v1.8.0

func PrintfBlinkRapid(format string, args ...interface{})

PrintfBlinkRapid wraps BlinkRapid() and fmt.Printf().

func PrintfBlinkSlow added in v1.8.0

func PrintfBlinkSlow(format string, args ...interface{})

PrintfBlinkSlow wraps BlinkSlow() and fmt.Printf().

func PrintfBlue added in v1.8.0

func PrintfBlue(format string, args ...interface{})

PrintfBlue wraps Blue() and fmt.Printf().

func PrintfBold added in v1.8.0

func PrintfBold(format string, args ...interface{})

PrintfBold wraps Bold() and fmt.Printf().

func PrintfColor000 added in v1.8.0

func PrintfColor000(format string, args ...interface{})

PrintfColor000 wraps Color000() and fmt.Printf().

func PrintfColor001 added in v1.8.0

func PrintfColor001(format string, args ...interface{})

PrintfColor001 wraps Color001() and fmt.Printf().

func PrintfColor002 added in v1.8.0

func PrintfColor002(format string, args ...interface{})

PrintfColor002 wraps Color002() and fmt.Printf().

func PrintfColor003 added in v1.8.0

func PrintfColor003(format string, args ...interface{})

PrintfColor003 wraps Color003() and fmt.Printf().

func PrintfColor004 added in v1.8.0

func PrintfColor004(format string, args ...interface{})

PrintfColor004 wraps Color004() and fmt.Printf().

func PrintfColor005 added in v1.8.0

func PrintfColor005(format string, args ...interface{})

PrintfColor005 wraps Color005() and fmt.Printf().

func PrintfColor006 added in v1.8.0

func PrintfColor006(format string, args ...interface{})

PrintfColor006 wraps Color006() and fmt.Printf().

func PrintfColor007 added in v1.8.0

func PrintfColor007(format string, args ...interface{})

PrintfColor007 wraps Color007() and fmt.Printf().

func PrintfColor008 added in v1.8.0

func PrintfColor008(format string, args ...interface{})

PrintfColor008 wraps Color008() and fmt.Printf().

func PrintfColor009 added in v1.8.0

func PrintfColor009(format string, args ...interface{})

PrintfColor009 wraps Color009() and fmt.Printf().

func PrintfColor010 added in v1.8.0

func PrintfColor010(format string, args ...interface{})

PrintfColor010 wraps Color010() and fmt.Printf().

func PrintfColor011 added in v1.8.0

func PrintfColor011(format string, args ...interface{})

PrintfColor011 wraps Color011() and fmt.Printf().

func PrintfColor012 added in v1.8.0

func PrintfColor012(format string, args ...interface{})

PrintfColor012 wraps Color012() and fmt.Printf().

func PrintfColor013 added in v1.8.0

func PrintfColor013(format string, args ...interface{})

PrintfColor013 wraps Color013() and fmt.Printf().

func PrintfColor014 added in v1.8.0

func PrintfColor014(format string, args ...interface{})

PrintfColor014 wraps Color014() and fmt.Printf().

func PrintfColor015 added in v1.8.0

func PrintfColor015(format string, args ...interface{})

PrintfColor015 wraps Color015() and fmt.Printf().

func PrintfColor016 added in v1.8.0

func PrintfColor016(format string, args ...interface{})

PrintfColor016 wraps Color016() and fmt.Printf().

func PrintfColor017 added in v1.8.0

func PrintfColor017(format string, args ...interface{})

PrintfColor017 wraps Color017() and fmt.Printf().

func PrintfColor018 added in v1.8.0

func PrintfColor018(format string, args ...interface{})

PrintfColor018 wraps Color018() and fmt.Printf().

func PrintfColor019 added in v1.8.0

func PrintfColor019(format string, args ...interface{})

PrintfColor019 wraps Color019() and fmt.Printf().

func PrintfColor020 added in v1.8.0

func PrintfColor020(format string, args ...interface{})

PrintfColor020 wraps Color020() and fmt.Printf().

func PrintfColor021 added in v1.8.0

func PrintfColor021(format string, args ...interface{})

PrintfColor021 wraps Color021() and fmt.Printf().

func PrintfColor022 added in v1.8.0

func PrintfColor022(format string, args ...interface{})

PrintfColor022 wraps Color022() and fmt.Printf().

func PrintfColor023 added in v1.8.0

func PrintfColor023(format string, args ...interface{})

PrintfColor023 wraps Color023() and fmt.Printf().

func PrintfColor024 added in v1.8.0

func PrintfColor024(format string, args ...interface{})

PrintfColor024 wraps Color024() and fmt.Printf().

func PrintfColor025 added in v1.8.0

func PrintfColor025(format string, args ...interface{})

PrintfColor025 wraps Color025() and fmt.Printf().

func PrintfColor026 added in v1.8.0

func PrintfColor026(format string, args ...interface{})

PrintfColor026 wraps Color026() and fmt.Printf().

func PrintfColor027 added in v1.8.0

func PrintfColor027(format string, args ...interface{})

PrintfColor027 wraps Color027() and fmt.Printf().

func PrintfColor028 added in v1.8.0

func PrintfColor028(format string, args ...interface{})

PrintfColor028 wraps Color028() and fmt.Printf().

func PrintfColor029 added in v1.8.0

func PrintfColor029(format string, args ...interface{})

PrintfColor029 wraps Color029() and fmt.Printf().

func PrintfColor030 added in v1.8.0

func PrintfColor030(format string, args ...interface{})

PrintfColor030 wraps Color030() and fmt.Printf().

func PrintfColor031 added in v1.8.0

func PrintfColor031(format string, args ...interface{})

PrintfColor031 wraps Color031() and fmt.Printf().

func PrintfColor032 added in v1.8.0

func PrintfColor032(format string, args ...interface{})

PrintfColor032 wraps Color032() and fmt.Printf().

func PrintfColor033 added in v1.8.0

func PrintfColor033(format string, args ...interface{})

PrintfColor033 wraps Color033() and fmt.Printf().

func PrintfColor034 added in v1.8.0

func PrintfColor034(format string, args ...interface{})

PrintfColor034 wraps Color034() and fmt.Printf().

func PrintfColor035 added in v1.8.0

func PrintfColor035(format string, args ...interface{})

PrintfColor035 wraps Color035() and fmt.Printf().

func PrintfColor036 added in v1.8.0

func PrintfColor036(format string, args ...interface{})

PrintfColor036 wraps Color036() and fmt.Printf().

func PrintfColor037 added in v1.8.0

func PrintfColor037(format string, args ...interface{})

PrintfColor037 wraps Color037() and fmt.Printf().

func PrintfColor038 added in v1.8.0

func PrintfColor038(format string, args ...interface{})

PrintfColor038 wraps Color038() and fmt.Printf().

func PrintfColor039 added in v1.8.0

func PrintfColor039(format string, args ...interface{})

PrintfColor039 wraps Color039() and fmt.Printf().

func PrintfColor040 added in v1.8.0

func PrintfColor040(format string, args ...interface{})

PrintfColor040 wraps Color040() and fmt.Printf().

func PrintfColor041 added in v1.8.0

func PrintfColor041(format string, args ...interface{})

PrintfColor041 wraps Color041() and fmt.Printf().

func PrintfColor042 added in v1.8.0

func PrintfColor042(format string, args ...interface{})

PrintfColor042 wraps Color042() and fmt.Printf().

func PrintfColor043 added in v1.8.0

func PrintfColor043(format string, args ...interface{})

PrintfColor043 wraps Color043() and fmt.Printf().

func PrintfColor044 added in v1.8.0

func PrintfColor044(format string, args ...interface{})

PrintfColor044 wraps Color044() and fmt.Printf().

func PrintfColor045 added in v1.8.0

func PrintfColor045(format string, args ...interface{})

PrintfColor045 wraps Color045() and fmt.Printf().

func PrintfColor046 added in v1.8.0

func PrintfColor046(format string, args ...interface{})

PrintfColor046 wraps Color046() and fmt.Printf().

func PrintfColor047 added in v1.8.0

func PrintfColor047(format string, args ...interface{})

PrintfColor047 wraps Color047() and fmt.Printf().

func PrintfColor048 added in v1.8.0

func PrintfColor048(format string, args ...interface{})

PrintfColor048 wraps Color048() and fmt.Printf().

func PrintfColor049 added in v1.8.0

func PrintfColor049(format string, args ...interface{})

PrintfColor049 wraps Color049() and fmt.Printf().

func PrintfColor050 added in v1.8.0

func PrintfColor050(format string, args ...interface{})

PrintfColor050 wraps Color050() and fmt.Printf().

func PrintfColor051 added in v1.8.0

func PrintfColor051(format string, args ...interface{})

PrintfColor051 wraps Color051() and fmt.Printf().

func PrintfColor052 added in v1.8.0

func PrintfColor052(format string, args ...interface{})

PrintfColor052 wraps Color052() and fmt.Printf().

func PrintfColor053 added in v1.8.0

func PrintfColor053(format string, args ...interface{})

PrintfColor053 wraps Color053() and fmt.Printf().

func PrintfColor054 added in v1.8.0

func PrintfColor054(format string, args ...interface{})

PrintfColor054 wraps Color054() and fmt.Printf().

func PrintfColor055 added in v1.8.0

func PrintfColor055(format string, args ...interface{})

PrintfColor055 wraps Color055() and fmt.Printf().

func PrintfColor056 added in v1.8.0

func PrintfColor056(format string, args ...interface{})

PrintfColor056 wraps Color056() and fmt.Printf().

func PrintfColor057 added in v1.8.0

func PrintfColor057(format string, args ...interface{})

PrintfColor057 wraps Color057() and fmt.Printf().

func PrintfColor058 added in v1.8.0

func PrintfColor058(format string, args ...interface{})

PrintfColor058 wraps Color058() and fmt.Printf().

func PrintfColor059 added in v1.8.0

func PrintfColor059(format string, args ...interface{})

PrintfColor059 wraps Color059() and fmt.Printf().

func PrintfColor060 added in v1.8.0

func PrintfColor060(format string, args ...interface{})

PrintfColor060 wraps Color060() and fmt.Printf().

func PrintfColor061 added in v1.8.0

func PrintfColor061(format string, args ...interface{})

PrintfColor061 wraps Color061() and fmt.Printf().

func PrintfColor062 added in v1.8.0

func PrintfColor062(format string, args ...interface{})

PrintfColor062 wraps Color062() and fmt.Printf().

func PrintfColor063 added in v1.8.0

func PrintfColor063(format string, args ...interface{})

PrintfColor063 wraps Color063() and fmt.Printf().

func PrintfColor064 added in v1.8.0

func PrintfColor064(format string, args ...interface{})

PrintfColor064 wraps Color064() and fmt.Printf().

func PrintfColor065 added in v1.8.0

func PrintfColor065(format string, args ...interface{})

PrintfColor065 wraps Color065() and fmt.Printf().

func PrintfColor066 added in v1.8.0

func PrintfColor066(format string, args ...interface{})

PrintfColor066 wraps Color066() and fmt.Printf().

func PrintfColor067 added in v1.8.0

func PrintfColor067(format string, args ...interface{})

PrintfColor067 wraps Color067() and fmt.Printf().

func PrintfColor068 added in v1.8.0

func PrintfColor068(format string, args ...interface{})

PrintfColor068 wraps Color068() and fmt.Printf().

func PrintfColor069 added in v1.8.0

func PrintfColor069(format string, args ...interface{})

PrintfColor069 wraps Color069() and fmt.Printf().

func PrintfColor070 added in v1.8.0

func PrintfColor070(format string, args ...interface{})

PrintfColor070 wraps Color070() and fmt.Printf().

func PrintfColor071 added in v1.8.0

func PrintfColor071(format string, args ...interface{})

PrintfColor071 wraps Color071() and fmt.Printf().

func PrintfColor072 added in v1.8.0

func PrintfColor072(format string, args ...interface{})

PrintfColor072 wraps Color072() and fmt.Printf().

func PrintfColor073 added in v1.8.0

func PrintfColor073(format string, args ...interface{})

PrintfColor073 wraps Color073() and fmt.Printf().

func PrintfColor074 added in v1.8.0

func PrintfColor074(format string, args ...interface{})

PrintfColor074 wraps Color074() and fmt.Printf().

func PrintfColor075 added in v1.8.0

func PrintfColor075(format string, args ...interface{})

PrintfColor075 wraps Color075() and fmt.Printf().

func PrintfColor076 added in v1.8.0

func PrintfColor076(format string, args ...interface{})

PrintfColor076 wraps Color076() and fmt.Printf().

func PrintfColor077 added in v1.8.0

func PrintfColor077(format string, args ...interface{})

PrintfColor077 wraps Color077() and fmt.Printf().

func PrintfColor078 added in v1.8.0

func PrintfColor078(format string, args ...interface{})

PrintfColor078 wraps Color078() and fmt.Printf().

func PrintfColor079 added in v1.8.0

func PrintfColor079(format string, args ...interface{})

PrintfColor079 wraps Color079() and fmt.Printf().

func PrintfColor080 added in v1.8.0

func PrintfColor080(format string, args ...interface{})

PrintfColor080 wraps Color080() and fmt.Printf().

func PrintfColor081 added in v1.8.0

func PrintfColor081(format string, args ...interface{})

PrintfColor081 wraps Color081() and fmt.Printf().

func PrintfColor082 added in v1.8.0

func PrintfColor082(format string, args ...interface{})

PrintfColor082 wraps Color082() and fmt.Printf().

func PrintfColor083 added in v1.8.0

func PrintfColor083(format string, args ...interface{})

PrintfColor083 wraps Color083() and fmt.Printf().

func PrintfColor084 added in v1.8.0

func PrintfColor084(format string, args ...interface{})

PrintfColor084 wraps Color084() and fmt.Printf().

func PrintfColor085 added in v1.8.0

func PrintfColor085(format string, args ...interface{})

PrintfColor085 wraps Color085() and fmt.Printf().

func PrintfColor086 added in v1.8.0

func PrintfColor086(format string, args ...interface{})

PrintfColor086 wraps Color086() and fmt.Printf().

func PrintfColor087 added in v1.8.0

func PrintfColor087(format string, args ...interface{})

PrintfColor087 wraps Color087() and fmt.Printf().

func PrintfColor088 added in v1.8.0

func PrintfColor088(format string, args ...interface{})

PrintfColor088 wraps Color088() and fmt.Printf().

func PrintfColor089 added in v1.8.0

func PrintfColor089(format string, args ...interface{})

PrintfColor089 wraps Color089() and fmt.Printf().

func PrintfColor090 added in v1.8.0

func PrintfColor090(format string, args ...interface{})

PrintfColor090 wraps Color090() and fmt.Printf().

func PrintfColor091 added in v1.8.0

func PrintfColor091(format string, args ...interface{})

PrintfColor091 wraps Color091() and fmt.Printf().

func PrintfColor092 added in v1.8.0

func PrintfColor092(format string, args ...interface{})

PrintfColor092 wraps Color092() and fmt.Printf().

func PrintfColor093 added in v1.8.0

func PrintfColor093(format string, args ...interface{})

PrintfColor093 wraps Color093() and fmt.Printf().

func PrintfColor094 added in v1.8.0

func PrintfColor094(format string, args ...interface{})

PrintfColor094 wraps Color094() and fmt.Printf().

func PrintfColor095 added in v1.8.0

func PrintfColor095(format string, args ...interface{})

PrintfColor095 wraps Color095() and fmt.Printf().

func PrintfColor096 added in v1.8.0

func PrintfColor096(format string, args ...interface{})

PrintfColor096 wraps Color096() and fmt.Printf().

func PrintfColor097 added in v1.8.0

func PrintfColor097(format string, args ...interface{})

PrintfColor097 wraps Color097() and fmt.Printf().

func PrintfColor098 added in v1.8.0

func PrintfColor098(format string, args ...interface{})

PrintfColor098 wraps Color098() and fmt.Printf().

func PrintfColor099 added in v1.8.0

func PrintfColor099(format string, args ...interface{})

PrintfColor099 wraps Color099() and fmt.Printf().

func PrintfColor100 added in v1.8.0

func PrintfColor100(format string, args ...interface{})

PrintfColor100 wraps Color100() and fmt.Printf().

func PrintfColor101 added in v1.8.0

func PrintfColor101(format string, args ...interface{})

PrintfColor101 wraps Color101() and fmt.Printf().

func PrintfColor102 added in v1.8.0

func PrintfColor102(format string, args ...interface{})

PrintfColor102 wraps Color102() and fmt.Printf().

func PrintfColor103 added in v1.8.0

func PrintfColor103(format string, args ...interface{})

PrintfColor103 wraps Color103() and fmt.Printf().

func PrintfColor104 added in v1.8.0

func PrintfColor104(format string, args ...interface{})

PrintfColor104 wraps Color104() and fmt.Printf().

func PrintfColor105 added in v1.8.0

func PrintfColor105(format string, args ...interface{})

PrintfColor105 wraps Color105() and fmt.Printf().

func PrintfColor106 added in v1.8.0

func PrintfColor106(format string, args ...interface{})

PrintfColor106 wraps Color106() and fmt.Printf().

func PrintfColor107 added in v1.8.0

func PrintfColor107(format string, args ...interface{})

PrintfColor107 wraps Color107() and fmt.Printf().

func PrintfColor108 added in v1.8.0

func PrintfColor108(format string, args ...interface{})

PrintfColor108 wraps Color108() and fmt.Printf().

func PrintfColor109 added in v1.8.0

func PrintfColor109(format string, args ...interface{})

PrintfColor109 wraps Color109() and fmt.Printf().

func PrintfColor110 added in v1.8.0

func PrintfColor110(format string, args ...interface{})

PrintfColor110 wraps Color110() and fmt.Printf().

func PrintfColor111 added in v1.8.0

func PrintfColor111(format string, args ...interface{})

PrintfColor111 wraps Color111() and fmt.Printf().

func PrintfColor112 added in v1.8.0

func PrintfColor112(format string, args ...interface{})

PrintfColor112 wraps Color112() and fmt.Printf().

func PrintfColor113 added in v1.8.0

func PrintfColor113(format string, args ...interface{})

PrintfColor113 wraps Color113() and fmt.Printf().

func PrintfColor114 added in v1.8.0

func PrintfColor114(format string, args ...interface{})

PrintfColor114 wraps Color114() and fmt.Printf().

func PrintfColor115 added in v1.8.0

func PrintfColor115(format string, args ...interface{})

PrintfColor115 wraps Color115() and fmt.Printf().

func PrintfColor116 added in v1.8.0

func PrintfColor116(format string, args ...interface{})

PrintfColor116 wraps Color116() and fmt.Printf().

func PrintfColor117 added in v1.8.0

func PrintfColor117(format string, args ...interface{})

PrintfColor117 wraps Color117() and fmt.Printf().

func PrintfColor118 added in v1.8.0

func PrintfColor118(format string, args ...interface{})

PrintfColor118 wraps Color118() and fmt.Printf().

func PrintfColor119 added in v1.8.0

func PrintfColor119(format string, args ...interface{})

PrintfColor119 wraps Color119() and fmt.Printf().

func PrintfColor120 added in v1.8.0

func PrintfColor120(format string, args ...interface{})

PrintfColor120 wraps Color120() and fmt.Printf().

func PrintfColor121 added in v1.8.0

func PrintfColor121(format string, args ...interface{})

PrintfColor121 wraps Color121() and fmt.Printf().

func PrintfColor122 added in v1.8.0

func PrintfColor122(format string, args ...interface{})

PrintfColor122 wraps Color122() and fmt.Printf().

func PrintfColor123 added in v1.8.0

func PrintfColor123(format string, args ...interface{})

PrintfColor123 wraps Color123() and fmt.Printf().

func PrintfColor124 added in v1.8.0

func PrintfColor124(format string, args ...interface{})

PrintfColor124 wraps Color124() and fmt.Printf().

func PrintfColor125 added in v1.8.0

func PrintfColor125(format string, args ...interface{})

PrintfColor125 wraps Color125() and fmt.Printf().

func PrintfColor126 added in v1.8.0

func PrintfColor126(format string, args ...interface{})

PrintfColor126 wraps Color126() and fmt.Printf().

func PrintfColor127 added in v1.8.0

func PrintfColor127(format string, args ...interface{})

PrintfColor127 wraps Color127() and fmt.Printf().

func PrintfColor128 added in v1.8.0

func PrintfColor128(format string, args ...interface{})

PrintfColor128 wraps Color128() and fmt.Printf().

func PrintfColor129 added in v1.8.0

func PrintfColor129(format string, args ...interface{})

PrintfColor129 wraps Color129() and fmt.Printf().

func PrintfColor130 added in v1.8.0

func PrintfColor130(format string, args ...interface{})

PrintfColor130 wraps Color130() and fmt.Printf().

func PrintfColor131 added in v1.8.0

func PrintfColor131(format string, args ...interface{})

PrintfColor131 wraps Color131() and fmt.Printf().

func PrintfColor132 added in v1.8.0

func PrintfColor132(format string, args ...interface{})

PrintfColor132 wraps Color132() and fmt.Printf().

func PrintfColor133 added in v1.8.0

func PrintfColor133(format string, args ...interface{})

PrintfColor133 wraps Color133() and fmt.Printf().

func PrintfColor134 added in v1.8.0

func PrintfColor134(format string, args ...interface{})

PrintfColor134 wraps Color134() and fmt.Printf().

func PrintfColor135 added in v1.8.0

func PrintfColor135(format string, args ...interface{})

PrintfColor135 wraps Color135() and fmt.Printf().

func PrintfColor136 added in v1.8.0

func PrintfColor136(format string, args ...interface{})

PrintfColor136 wraps Color136() and fmt.Printf().

func PrintfColor137 added in v1.8.0

func PrintfColor137(format string, args ...interface{})

PrintfColor137 wraps Color137() and fmt.Printf().

func PrintfColor138 added in v1.8.0

func PrintfColor138(format string, args ...interface{})

PrintfColor138 wraps Color138() and fmt.Printf().

func PrintfColor139 added in v1.8.0

func PrintfColor139(format string, args ...interface{})

PrintfColor139 wraps Color139() and fmt.Printf().

func PrintfColor140 added in v1.8.0

func PrintfColor140(format string, args ...interface{})

PrintfColor140 wraps Color140() and fmt.Printf().

func PrintfColor141 added in v1.8.0

func PrintfColor141(format string, args ...interface{})

PrintfColor141 wraps Color141() and fmt.Printf().

func PrintfColor142 added in v1.8.0

func PrintfColor142(format string, args ...interface{})

PrintfColor142 wraps Color142() and fmt.Printf().

func PrintfColor143 added in v1.8.0

func PrintfColor143(format string, args ...interface{})

PrintfColor143 wraps Color143() and fmt.Printf().

func PrintfColor144 added in v1.8.0

func PrintfColor144(format string, args ...interface{})

PrintfColor144 wraps Color144() and fmt.Printf().

func PrintfColor145 added in v1.8.0

func PrintfColor145(format string, args ...interface{})

PrintfColor145 wraps Color145() and fmt.Printf().

func PrintfColor146 added in v1.8.0

func PrintfColor146(format string, args ...interface{})

PrintfColor146 wraps Color146() and fmt.Printf().

func PrintfColor147 added in v1.8.0

func PrintfColor147(format string, args ...interface{})

PrintfColor147 wraps Color147() and fmt.Printf().

func PrintfColor148 added in v1.8.0

func PrintfColor148(format string, args ...interface{})

PrintfColor148 wraps Color148() and fmt.Printf().

func PrintfColor149 added in v1.8.0

func PrintfColor149(format string, args ...interface{})

PrintfColor149 wraps Color149() and fmt.Printf().

func PrintfColor150 added in v1.8.0

func PrintfColor150(format string, args ...interface{})

PrintfColor150 wraps Color150() and fmt.Printf().

func PrintfColor151 added in v1.8.0

func PrintfColor151(format string, args ...interface{})

PrintfColor151 wraps Color151() and fmt.Printf().

func PrintfColor152 added in v1.8.0

func PrintfColor152(format string, args ...interface{})

PrintfColor152 wraps Color152() and fmt.Printf().

func PrintfColor153 added in v1.8.0

func PrintfColor153(format string, args ...interface{})

PrintfColor153 wraps Color153() and fmt.Printf().

func PrintfColor154 added in v1.8.0

func PrintfColor154(format string, args ...interface{})

PrintfColor154 wraps Color154() and fmt.Printf().

func PrintfColor155 added in v1.8.0

func PrintfColor155(format string, args ...interface{})

PrintfColor155 wraps Color155() and fmt.Printf().

func PrintfColor156 added in v1.8.0

func PrintfColor156(format string, args ...interface{})

PrintfColor156 wraps Color156() and fmt.Printf().

func PrintfColor157 added in v1.8.0

func PrintfColor157(format string, args ...interface{})

PrintfColor157 wraps Color157() and fmt.Printf().

func PrintfColor158 added in v1.8.0

func PrintfColor158(format string, args ...interface{})

PrintfColor158 wraps Color158() and fmt.Printf().

func PrintfColor159 added in v1.8.0

func PrintfColor159(format string, args ...interface{})

PrintfColor159 wraps Color159() and fmt.Printf().

func PrintfColor160 added in v1.8.0

func PrintfColor160(format string, args ...interface{})

PrintfColor160 wraps Color160() and fmt.Printf().

func PrintfColor161 added in v1.8.0

func PrintfColor161(format string, args ...interface{})

PrintfColor161 wraps Color161() and fmt.Printf().

func PrintfColor162 added in v1.8.0

func PrintfColor162(format string, args ...interface{})

PrintfColor162 wraps Color162() and fmt.Printf().

func PrintfColor163 added in v1.8.0

func PrintfColor163(format string, args ...interface{})

PrintfColor163 wraps Color163() and fmt.Printf().

func PrintfColor164 added in v1.8.0

func PrintfColor164(format string, args ...interface{})

PrintfColor164 wraps Color164() and fmt.Printf().

func PrintfColor165 added in v1.8.0

func PrintfColor165(format string, args ...interface{})

PrintfColor165 wraps Color165() and fmt.Printf().

func PrintfColor166 added in v1.8.0

func PrintfColor166(format string, args ...interface{})

PrintfColor166 wraps Color166() and fmt.Printf().

func PrintfColor167 added in v1.8.0

func PrintfColor167(format string, args ...interface{})

PrintfColor167 wraps Color167() and fmt.Printf().

func PrintfColor168 added in v1.8.0

func PrintfColor168(format string, args ...interface{})

PrintfColor168 wraps Color168() and fmt.Printf().

func PrintfColor169 added in v1.8.0

func PrintfColor169(format string, args ...interface{})

PrintfColor169 wraps Color169() and fmt.Printf().

func PrintfColor170 added in v1.8.0

func PrintfColor170(format string, args ...interface{})

PrintfColor170 wraps Color170() and fmt.Printf().

func PrintfColor171 added in v1.8.0

func PrintfColor171(format string, args ...interface{})

PrintfColor171 wraps Color171() and fmt.Printf().

func PrintfColor172 added in v1.8.0

func PrintfColor172(format string, args ...interface{})

PrintfColor172 wraps Color172() and fmt.Printf().

func PrintfColor173 added in v1.8.0

func PrintfColor173(format string, args ...interface{})

PrintfColor173 wraps Color173() and fmt.Printf().

func PrintfColor174 added in v1.8.0

func PrintfColor174(format string, args ...interface{})

PrintfColor174 wraps Color174() and fmt.Printf().

func PrintfColor175 added in v1.8.0

func PrintfColor175(format string, args ...interface{})

PrintfColor175 wraps Color175() and fmt.Printf().

func PrintfColor176 added in v1.8.0

func PrintfColor176(format string, args ...interface{})

PrintfColor176 wraps Color176() and fmt.Printf().

func PrintfColor177 added in v1.8.0

func PrintfColor177(format string, args ...interface{})

PrintfColor177 wraps Color177() and fmt.Printf().

func PrintfColor178 added in v1.8.0

func PrintfColor178(format string, args ...interface{})

PrintfColor178 wraps Color178() and fmt.Printf().

func PrintfColor179 added in v1.8.0

func PrintfColor179(format string, args ...interface{})

PrintfColor179 wraps Color179() and fmt.Printf().

func PrintfColor180 added in v1.8.0

func PrintfColor180(format string, args ...interface{})

PrintfColor180 wraps Color180() and fmt.Printf().

func PrintfColor181 added in v1.8.0

func PrintfColor181(format string, args ...interface{})

PrintfColor181 wraps Color181() and fmt.Printf().

func PrintfColor182 added in v1.8.0

func PrintfColor182(format string, args ...interface{})

PrintfColor182 wraps Color182() and fmt.Printf().

func PrintfColor183 added in v1.8.0

func PrintfColor183(format string, args ...interface{})

PrintfColor183 wraps Color183() and fmt.Printf().

func PrintfColor184 added in v1.8.0

func PrintfColor184(format string, args ...interface{})

PrintfColor184 wraps Color184() and fmt.Printf().

func PrintfColor185 added in v1.8.0

func PrintfColor185(format string, args ...interface{})

PrintfColor185 wraps Color185() and fmt.Printf().

func PrintfColor186 added in v1.8.0

func PrintfColor186(format string, args ...interface{})

PrintfColor186 wraps Color186() and fmt.Printf().

func PrintfColor187 added in v1.8.0

func PrintfColor187(format string, args ...interface{})

PrintfColor187 wraps Color187() and fmt.Printf().

func PrintfColor188 added in v1.8.0

func PrintfColor188(format string, args ...interface{})

PrintfColor188 wraps Color188() and fmt.Printf().

func PrintfColor189 added in v1.8.0

func PrintfColor189(format string, args ...interface{})

PrintfColor189 wraps Color189() and fmt.Printf().

func PrintfColor190 added in v1.8.0

func PrintfColor190(format string, args ...interface{})

PrintfColor190 wraps Color190() and fmt.Printf().

func PrintfColor191 added in v1.8.0

func PrintfColor191(format string, args ...interface{})

PrintfColor191 wraps Color191() and fmt.Printf().

func PrintfColor192 added in v1.8.0

func PrintfColor192(format string, args ...interface{})

PrintfColor192 wraps Color192() and fmt.Printf().

func PrintfColor193 added in v1.8.0

func PrintfColor193(format string, args ...interface{})

PrintfColor193 wraps Color193() and fmt.Printf().

func PrintfColor194 added in v1.8.0

func PrintfColor194(format string, args ...interface{})

PrintfColor194 wraps Color194() and fmt.Printf().

func PrintfColor195 added in v1.8.0

func PrintfColor195(format string, args ...interface{})

PrintfColor195 wraps Color195() and fmt.Printf().

func PrintfColor196 added in v1.8.0

func PrintfColor196(format string, args ...interface{})

PrintfColor196 wraps Color196() and fmt.Printf().

func PrintfColor197 added in v1.8.0

func PrintfColor197(format string, args ...interface{})

PrintfColor197 wraps Color197() and fmt.Printf().

func PrintfColor198 added in v1.8.0

func PrintfColor198(format string, args ...interface{})

PrintfColor198 wraps Color198() and fmt.Printf().

func PrintfColor199 added in v1.8.0

func PrintfColor199(format string, args ...interface{})

PrintfColor199 wraps Color199() and fmt.Printf().

func PrintfColor200 added in v1.8.0

func PrintfColor200(format string, args ...interface{})

PrintfColor200 wraps Color200() and fmt.Printf().

func PrintfColor201 added in v1.8.0

func PrintfColor201(format string, args ...interface{})

PrintfColor201 wraps Color201() and fmt.Printf().

func PrintfColor202 added in v1.8.0

func PrintfColor202(format string, args ...interface{})

PrintfColor202 wraps Color202() and fmt.Printf().

func PrintfColor203 added in v1.8.0

func PrintfColor203(format string, args ...interface{})

PrintfColor203 wraps Color203() and fmt.Printf().

func PrintfColor204 added in v1.8.0

func PrintfColor204(format string, args ...interface{})

PrintfColor204 wraps Color204() and fmt.Printf().

func PrintfColor205 added in v1.8.0

func PrintfColor205(format string, args ...interface{})

PrintfColor205 wraps Color205() and fmt.Printf().

func PrintfColor206 added in v1.8.0

func PrintfColor206(format string, args ...interface{})

PrintfColor206 wraps Color206() and fmt.Printf().

func PrintfColor207 added in v1.8.0

func PrintfColor207(format string, args ...interface{})

PrintfColor207 wraps Color207() and fmt.Printf().

func PrintfColor208 added in v1.8.0

func PrintfColor208(format string, args ...interface{})

PrintfColor208 wraps Color208() and fmt.Printf().

func PrintfColor209 added in v1.8.0

func PrintfColor209(format string, args ...interface{})

PrintfColor209 wraps Color209() and fmt.Printf().

func PrintfColor210 added in v1.8.0

func PrintfColor210(format string, args ...interface{})

PrintfColor210 wraps Color210() and fmt.Printf().

func PrintfColor211 added in v1.8.0

func PrintfColor211(format string, args ...interface{})

PrintfColor211 wraps Color211() and fmt.Printf().

func PrintfColor212 added in v1.8.0

func PrintfColor212(format string, args ...interface{})

PrintfColor212 wraps Color212() and fmt.Printf().

func PrintfColor213 added in v1.8.0

func PrintfColor213(format string, args ...interface{})

PrintfColor213 wraps Color213() and fmt.Printf().

func PrintfColor214 added in v1.8.0

func PrintfColor214(format string, args ...interface{})

PrintfColor214 wraps Color214() and fmt.Printf().

func PrintfColor215 added in v1.8.0

func PrintfColor215(format string, args ...interface{})

PrintfColor215 wraps Color215() and fmt.Printf().

func PrintfColor216 added in v1.8.0

func PrintfColor216(format string, args ...interface{})

PrintfColor216 wraps Color216() and fmt.Printf().

func PrintfColor217 added in v1.8.0

func PrintfColor217(format string, args ...interface{})

PrintfColor217 wraps Color217() and fmt.Printf().

func PrintfColor218 added in v1.8.0

func PrintfColor218(format string, args ...interface{})

PrintfColor218 wraps Color218() and fmt.Printf().

func PrintfColor219 added in v1.8.0

func PrintfColor219(format string, args ...interface{})

PrintfColor219 wraps Color219() and fmt.Printf().

func PrintfColor220 added in v1.8.0

func PrintfColor220(format string, args ...interface{})

PrintfColor220 wraps Color220() and fmt.Printf().

func PrintfColor221 added in v1.8.0

func PrintfColor221(format string, args ...interface{})

PrintfColor221 wraps Color221() and fmt.Printf().

func PrintfColor222 added in v1.8.0

func PrintfColor222(format string, args ...interface{})

PrintfColor222 wraps Color222() and fmt.Printf().

func PrintfColor223 added in v1.8.0

func PrintfColor223(format string, args ...interface{})

PrintfColor223 wraps Color223() and fmt.Printf().

func PrintfColor224 added in v1.8.0

func PrintfColor224(format string, args ...interface{})

PrintfColor224 wraps Color224() and fmt.Printf().

func PrintfColor225 added in v1.8.0

func PrintfColor225(format string, args ...interface{})

PrintfColor225 wraps Color225() and fmt.Printf().

func PrintfColor226 added in v1.8.0

func PrintfColor226(format string, args ...interface{})

PrintfColor226 wraps Color226() and fmt.Printf().

func PrintfColor227 added in v1.8.0

func PrintfColor227(format string, args ...interface{})

PrintfColor227 wraps Color227() and fmt.Printf().

func PrintfColor228 added in v1.8.0

func PrintfColor228(format string, args ...interface{})

PrintfColor228 wraps Color228() and fmt.Printf().

func PrintfColor229 added in v1.8.0

func PrintfColor229(format string, args ...interface{})

PrintfColor229 wraps Color229() and fmt.Printf().

func PrintfColor230 added in v1.8.0

func PrintfColor230(format string, args ...interface{})

PrintfColor230 wraps Color230() and fmt.Printf().

func PrintfColor231 added in v1.8.0

func PrintfColor231(format string, args ...interface{})

PrintfColor231 wraps Color231() and fmt.Printf().

func PrintfColor232 added in v1.8.0

func PrintfColor232(format string, args ...interface{})

PrintfColor232 wraps Color232() and fmt.Printf().

func PrintfColor233 added in v1.8.0

func PrintfColor233(format string, args ...interface{})

PrintfColor233 wraps Color233() and fmt.Printf().

func PrintfColor234 added in v1.8.0

func PrintfColor234(format string, args ...interface{})

PrintfColor234 wraps Color234() and fmt.Printf().

func PrintfColor235 added in v1.8.0

func PrintfColor235(format string, args ...interface{})

PrintfColor235 wraps Color235() and fmt.Printf().

func PrintfColor236 added in v1.8.0

func PrintfColor236(format string, args ...interface{})

PrintfColor236 wraps Color236() and fmt.Printf().

func PrintfColor237 added in v1.8.0

func PrintfColor237(format string, args ...interface{})

PrintfColor237 wraps Color237() and fmt.Printf().

func PrintfColor238 added in v1.8.0

func PrintfColor238(format string, args ...interface{})

PrintfColor238 wraps Color238() and fmt.Printf().

func PrintfColor239 added in v1.8.0

func PrintfColor239(format string, args ...interface{})

PrintfColor239 wraps Color239() and fmt.Printf().

func PrintfColor240 added in v1.8.0

func PrintfColor240(format string, args ...interface{})

PrintfColor240 wraps Color240() and fmt.Printf().

func PrintfColor241 added in v1.8.0

func PrintfColor241(format string, args ...interface{})

PrintfColor241 wraps Color241() and fmt.Printf().

func PrintfColor242 added in v1.8.0

func PrintfColor242(format string, args ...interface{})

PrintfColor242 wraps Color242() and fmt.Printf().

func PrintfColor243 added in v1.8.0

func PrintfColor243(format string, args ...interface{})

PrintfColor243 wraps Color243() and fmt.Printf().

func PrintfColor244 added in v1.8.0

func PrintfColor244(format string, args ...interface{})

PrintfColor244 wraps Color244() and fmt.Printf().

func PrintfColor245 added in v1.8.0

func PrintfColor245(format string, args ...interface{})

PrintfColor245 wraps Color245() and fmt.Printf().

func PrintfColor246 added in v1.8.0

func PrintfColor246(format string, args ...interface{})

PrintfColor246 wraps Color246() and fmt.Printf().

func PrintfColor247 added in v1.8.0

func PrintfColor247(format string, args ...interface{})

PrintfColor247 wraps Color247() and fmt.Printf().

func PrintfColor248 added in v1.8.0

func PrintfColor248(format string, args ...interface{})

PrintfColor248 wraps Color248() and fmt.Printf().

func PrintfColor249 added in v1.8.0

func PrintfColor249(format string, args ...interface{})

PrintfColor249 wraps Color249() and fmt.Printf().

func PrintfColor250 added in v1.8.0

func PrintfColor250(format string, args ...interface{})

PrintfColor250 wraps Color250() and fmt.Printf().

func PrintfColor251 added in v1.8.0

func PrintfColor251(format string, args ...interface{})

PrintfColor251 wraps Color251() and fmt.Printf().

func PrintfColor252 added in v1.8.0

func PrintfColor252(format string, args ...interface{})

PrintfColor252 wraps Color252() and fmt.Printf().

func PrintfColor253 added in v1.8.0

func PrintfColor253(format string, args ...interface{})

PrintfColor253 wraps Color253() and fmt.Printf().

func PrintfColor254 added in v1.8.0

func PrintfColor254(format string, args ...interface{})

PrintfColor254 wraps Color254() and fmt.Printf().

func PrintfColor255 added in v1.8.0

func PrintfColor255(format string, args ...interface{})

PrintfColor255 wraps Color255() and fmt.Printf().

func PrintfConceal added in v1.8.0

func PrintfConceal(format string, args ...interface{})

PrintfConceal wraps Conceal() and fmt.Printf().

func PrintfCrossedOut added in v1.8.0

func PrintfCrossedOut(format string, args ...interface{})

PrintfCrossedOut wraps CrossedOut() and fmt.Printf().

func PrintfCyan added in v1.8.0

func PrintfCyan(format string, args ...interface{})

PrintfCyan wraps Cyan() and fmt.Printf().

func PrintfDefault added in v1.8.0

func PrintfDefault(format string, args ...interface{})

PrintfDefault wraps Default() and fmt.Printf().

func PrintfDim added in v1.8.0

func PrintfDim(format string, args ...interface{})

PrintfDim wraps Dim() and fmt.Printf().

func PrintfFaint added in v1.8.0

func PrintfFaint(format string, args ...interface{})

PrintfFaint wraps Faint() and fmt.Printf().

func PrintfFraktur added in v1.8.0

func PrintfFraktur(format string, args ...interface{})

PrintfFraktur wraps Fraktur() and fmt.Printf().

func PrintfGreen added in v1.8.0

func PrintfGreen(format string, args ...interface{})

PrintfGreen wraps Green() and fmt.Printf().

func PrintfHex added in v1.8.0

func PrintfHex(hex string, format string, args ...interface{})

PrintfHex wraps Hex() and fmt.Printf().

func PrintfHide added in v1.8.0

func PrintfHide(format string, args ...interface{})

PrintfHide wraps Hide() and fmt.Printf().

func PrintfHilight added in v1.8.0

func PrintfHilight(code string, format string, args ...interface{})

PrintfHilight wraps Hilight() and fmt.Printf().

func PrintfHilights added in v1.8.0

func PrintfHilights(codes []string, format string, args ...interface{})

PrintfHilights wraps Hilights() and fmt.Printf().

func PrintfInverse added in v1.8.0

func PrintfInverse(format string, args ...interface{})

PrintfInverse wraps Inverse() and fmt.Printf().

func PrintfItalic added in v1.8.0

func PrintfItalic(format string, args ...interface{})

PrintfItalic wraps Italic() and fmt.Printf().

func PrintfLightBlack added in v1.8.0

func PrintfLightBlack(format string, args ...interface{})

PrintfLightBlack wraps LightBlack() and fmt.Printf().

func PrintfLightBlue added in v1.8.0

func PrintfLightBlue(format string, args ...interface{})

PrintfLightBlue wraps LightBlue() and fmt.Printf().

func PrintfLightCyan added in v1.8.0

func PrintfLightCyan(format string, args ...interface{})

PrintfLightCyan wraps LightCyan() and fmt.Printf().

func PrintfLightGreen added in v1.8.0

func PrintfLightGreen(format string, args ...interface{})

PrintfLightGreen wraps LightGreen() and fmt.Printf().

func PrintfLightMagenta added in v1.8.0

func PrintfLightMagenta(format string, args ...interface{})

PrintfLightMagenta wraps LightMagenta() and fmt.Printf().

func PrintfLightRed added in v1.8.0

func PrintfLightRed(format string, args ...interface{})

PrintfLightRed wraps LightRed() and fmt.Printf().

func PrintfLightWhite added in v1.8.0

func PrintfLightWhite(format string, args ...interface{})

PrintfLightWhite wraps LightWhite() and fmt.Printf().

func PrintfLightYellow added in v1.8.0

func PrintfLightYellow(format string, args ...interface{})

PrintfLightYellow wraps LightYellow() and fmt.Printf().

func PrintfMagenta added in v1.8.0

func PrintfMagenta(format string, args ...interface{})

PrintfMagenta wraps Magenta() and fmt.Printf().

func PrintfNegative added in v1.8.0

func PrintfNegative(format string, args ...interface{})

PrintfNegative wraps Negative() and fmt.Printf().

func PrintfNoBlink(format string, args ...interface{})

PrintfNoBlink wraps NoBlink() and fmt.Printf().

func PrintfNoBlinkRapid added in v1.8.0

func PrintfNoBlinkRapid(format string, args ...interface{})

PrintfNoBlinkRapid wraps NoBlinkRapid() and fmt.Printf().

func PrintfNoBlinkSlow added in v1.8.0

func PrintfNoBlinkSlow(format string, args ...interface{})

PrintfNoBlinkSlow wraps NoBlinkSlow() and fmt.Printf().

func PrintfNoBold added in v1.8.0

func PrintfNoBold(format string, args ...interface{})

PrintfNoBold wraps NoBold() and fmt.Printf().

func PrintfNoConceal added in v1.8.0

func PrintfNoConceal(format string, args ...interface{})

PrintfNoConceal wraps NoConceal() and fmt.Printf().

func PrintfNoCrossedOut added in v1.8.0

func PrintfNoCrossedOut(format string, args ...interface{})

PrintfNoCrossedOut wraps NoCrossedOut() and fmt.Printf().

func PrintfNoDim added in v1.8.0

func PrintfNoDim(format string, args ...interface{})

PrintfNoDim wraps NoDim() and fmt.Printf().

func PrintfNoFaint added in v1.8.0

func PrintfNoFaint(format string, args ...interface{})

PrintfNoFaint wraps NoFaint() and fmt.Printf().

func PrintfNoFraktur added in v1.8.0

func PrintfNoFraktur(format string, args ...interface{})

PrintfNoFraktur wraps NoFraktur() and fmt.Printf().

func PrintfNoHide added in v1.8.0

func PrintfNoHide(format string, args ...interface{})

PrintfNoHide wraps NoHide() and fmt.Printf().

func PrintfNoInverse added in v1.8.0

func PrintfNoInverse(format string, args ...interface{})

PrintfNoInverse wraps NoInverse() and fmt.Printf().

func PrintfNoItalic added in v1.8.0

func PrintfNoItalic(format string, args ...interface{})

PrintfNoItalic wraps NoItalic() and fmt.Printf().

func PrintfNoNegative added in v1.8.0

func PrintfNoNegative(format string, args ...interface{})

PrintfNoNegative wraps NoNegative() and fmt.Printf().

func PrintfNoStrikethrough added in v1.8.0

func PrintfNoStrikethrough(format string, args ...interface{})

PrintfNoStrikethrough wraps NoStrikethrough() and fmt.Printf().

func PrintfNoSwap added in v1.8.0

func PrintfNoSwap(format string, args ...interface{})

PrintfNoSwap wraps NoSwap() and fmt.Printf().

func PrintfNoUnderline added in v1.8.0

func PrintfNoUnderline(format string, args ...interface{})

PrintfNoUnderline wraps NoUnderline() and fmt.Printf().

func PrintfNormal added in v1.8.0

func PrintfNormal(format string, args ...interface{})

PrintfNormal wraps Normal() and fmt.Printf().

func PrintfOnBlack added in v1.8.0

func PrintfOnBlack(format string, args ...interface{})

PrintfOnBlack wraps OnBlack() and fmt.Printf().

func PrintfOnBlue added in v1.8.0

func PrintfOnBlue(format string, args ...interface{})

PrintfOnBlue wraps OnBlue() and fmt.Printf().

func PrintfOnColor000 added in v1.8.0

func PrintfOnColor000(format string, args ...interface{})

PrintfOnColor000 wraps OnColor000() and fmt.Printf().

func PrintfOnColor001 added in v1.8.0

func PrintfOnColor001(format string, args ...interface{})

PrintfOnColor001 wraps OnColor001() and fmt.Printf().

func PrintfOnColor002 added in v1.8.0

func PrintfOnColor002(format string, args ...interface{})

PrintfOnColor002 wraps OnColor002() and fmt.Printf().

func PrintfOnColor003 added in v1.8.0

func PrintfOnColor003(format string, args ...interface{})

PrintfOnColor003 wraps OnColor003() and fmt.Printf().

func PrintfOnColor004 added in v1.8.0

func PrintfOnColor004(format string, args ...interface{})

PrintfOnColor004 wraps OnColor004() and fmt.Printf().

func PrintfOnColor005 added in v1.8.0

func PrintfOnColor005(format string, args ...interface{})

PrintfOnColor005 wraps OnColor005() and fmt.Printf().

func PrintfOnColor006 added in v1.8.0

func PrintfOnColor006(format string, args ...interface{})

PrintfOnColor006 wraps OnColor006() and fmt.Printf().

func PrintfOnColor007 added in v1.8.0

func PrintfOnColor007(format string, args ...interface{})

PrintfOnColor007 wraps OnColor007() and fmt.Printf().

func PrintfOnColor008 added in v1.8.0

func PrintfOnColor008(format string, args ...interface{})

PrintfOnColor008 wraps OnColor008() and fmt.Printf().

func PrintfOnColor009 added in v1.8.0

func PrintfOnColor009(format string, args ...interface{})

PrintfOnColor009 wraps OnColor009() and fmt.Printf().

func PrintfOnColor010 added in v1.8.0

func PrintfOnColor010(format string, args ...interface{})

PrintfOnColor010 wraps OnColor010() and fmt.Printf().

func PrintfOnColor011 added in v1.8.0

func PrintfOnColor011(format string, args ...interface{})

PrintfOnColor011 wraps OnColor011() and fmt.Printf().

func PrintfOnColor012 added in v1.8.0

func PrintfOnColor012(format string, args ...interface{})

PrintfOnColor012 wraps OnColor012() and fmt.Printf().

func PrintfOnColor013 added in v1.8.0

func PrintfOnColor013(format string, args ...interface{})

PrintfOnColor013 wraps OnColor013() and fmt.Printf().

func PrintfOnColor014 added in v1.8.0

func PrintfOnColor014(format string, args ...interface{})

PrintfOnColor014 wraps OnColor014() and fmt.Printf().

func PrintfOnColor015 added in v1.8.0

func PrintfOnColor015(format string, args ...interface{})

PrintfOnColor015 wraps OnColor015() and fmt.Printf().

func PrintfOnColor016 added in v1.8.0

func PrintfOnColor016(format string, args ...interface{})

PrintfOnColor016 wraps OnColor016() and fmt.Printf().

func PrintfOnColor017 added in v1.8.0

func PrintfOnColor017(format string, args ...interface{})

PrintfOnColor017 wraps OnColor017() and fmt.Printf().

func PrintfOnColor018 added in v1.8.0

func PrintfOnColor018(format string, args ...interface{})

PrintfOnColor018 wraps OnColor018() and fmt.Printf().

func PrintfOnColor019 added in v1.8.0

func PrintfOnColor019(format string, args ...interface{})

PrintfOnColor019 wraps OnColor019() and fmt.Printf().

func PrintfOnColor020 added in v1.8.0

func PrintfOnColor020(format string, args ...interface{})

PrintfOnColor020 wraps OnColor020() and fmt.Printf().

func PrintfOnColor021 added in v1.8.0

func PrintfOnColor021(format string, args ...interface{})

PrintfOnColor021 wraps OnColor021() and fmt.Printf().

func PrintfOnColor022 added in v1.8.0

func PrintfOnColor022(format string, args ...interface{})

PrintfOnColor022 wraps OnColor022() and fmt.Printf().

func PrintfOnColor023 added in v1.8.0

func PrintfOnColor023(format string, args ...interface{})

PrintfOnColor023 wraps OnColor023() and fmt.Printf().

func PrintfOnColor024 added in v1.8.0

func PrintfOnColor024(format string, args ...interface{})

PrintfOnColor024 wraps OnColor024() and fmt.Printf().

func PrintfOnColor025 added in v1.8.0

func PrintfOnColor025(format string, args ...interface{})

PrintfOnColor025 wraps OnColor025() and fmt.Printf().

func PrintfOnColor026 added in v1.8.0

func PrintfOnColor026(format string, args ...interface{})

PrintfOnColor026 wraps OnColor026() and fmt.Printf().

func PrintfOnColor027 added in v1.8.0

func PrintfOnColor027(format string, args ...interface{})

PrintfOnColor027 wraps OnColor027() and fmt.Printf().

func PrintfOnColor028 added in v1.8.0

func PrintfOnColor028(format string, args ...interface{})

PrintfOnColor028 wraps OnColor028() and fmt.Printf().

func PrintfOnColor029 added in v1.8.0

func PrintfOnColor029(format string, args ...interface{})

PrintfOnColor029 wraps OnColor029() and fmt.Printf().

func PrintfOnColor030 added in v1.8.0

func PrintfOnColor030(format string, args ...interface{})

PrintfOnColor030 wraps OnColor030() and fmt.Printf().

func PrintfOnColor031 added in v1.8.0

func PrintfOnColor031(format string, args ...interface{})

PrintfOnColor031 wraps OnColor031() and fmt.Printf().

func PrintfOnColor032 added in v1.8.0

func PrintfOnColor032(format string, args ...interface{})

PrintfOnColor032 wraps OnColor032() and fmt.Printf().

func PrintfOnColor033 added in v1.8.0

func PrintfOnColor033(format string, args ...interface{})

PrintfOnColor033 wraps OnColor033() and fmt.Printf().

func PrintfOnColor034 added in v1.8.0

func PrintfOnColor034(format string, args ...interface{})

PrintfOnColor034 wraps OnColor034() and fmt.Printf().

func PrintfOnColor035 added in v1.8.0

func PrintfOnColor035(format string, args ...interface{})

PrintfOnColor035 wraps OnColor035() and fmt.Printf().

func PrintfOnColor036 added in v1.8.0

func PrintfOnColor036(format string, args ...interface{})

PrintfOnColor036 wraps OnColor036() and fmt.Printf().

func PrintfOnColor037 added in v1.8.0

func PrintfOnColor037(format string, args ...interface{})

PrintfOnColor037 wraps OnColor037() and fmt.Printf().

func PrintfOnColor038 added in v1.8.0

func PrintfOnColor038(format string, args ...interface{})

PrintfOnColor038 wraps OnColor038() and fmt.Printf().

func PrintfOnColor039 added in v1.8.0

func PrintfOnColor039(format string, args ...interface{})

PrintfOnColor039 wraps OnColor039() and fmt.Printf().

func PrintfOnColor040 added in v1.8.0

func PrintfOnColor040(format string, args ...interface{})

PrintfOnColor040 wraps OnColor040() and fmt.Printf().

func PrintfOnColor041 added in v1.8.0

func PrintfOnColor041(format string, args ...interface{})

PrintfOnColor041 wraps OnColor041() and fmt.Printf().

func PrintfOnColor042 added in v1.8.0

func PrintfOnColor042(format string, args ...interface{})

PrintfOnColor042 wraps OnColor042() and fmt.Printf().

func PrintfOnColor043 added in v1.8.0

func PrintfOnColor043(format string, args ...interface{})

PrintfOnColor043 wraps OnColor043() and fmt.Printf().

func PrintfOnColor044 added in v1.8.0

func PrintfOnColor044(format string, args ...interface{})

PrintfOnColor044 wraps OnColor044() and fmt.Printf().

func PrintfOnColor045 added in v1.8.0

func PrintfOnColor045(format string, args ...interface{})

PrintfOnColor045 wraps OnColor045() and fmt.Printf().

func PrintfOnColor046 added in v1.8.0

func PrintfOnColor046(format string, args ...interface{})

PrintfOnColor046 wraps OnColor046() and fmt.Printf().

func PrintfOnColor047 added in v1.8.0

func PrintfOnColor047(format string, args ...interface{})

PrintfOnColor047 wraps OnColor047() and fmt.Printf().

func PrintfOnColor048 added in v1.8.0

func PrintfOnColor048(format string, args ...interface{})

PrintfOnColor048 wraps OnColor048() and fmt.Printf().

func PrintfOnColor049 added in v1.8.0

func PrintfOnColor049(format string, args ...interface{})

PrintfOnColor049 wraps OnColor049() and fmt.Printf().

func PrintfOnColor050 added in v1.8.0

func PrintfOnColor050(format string, args ...interface{})

PrintfOnColor050 wraps OnColor050() and fmt.Printf().

func PrintfOnColor051 added in v1.8.0

func PrintfOnColor051(format string, args ...interface{})

PrintfOnColor051 wraps OnColor051() and fmt.Printf().

func PrintfOnColor052 added in v1.8.0

func PrintfOnColor052(format string, args ...interface{})

PrintfOnColor052 wraps OnColor052() and fmt.Printf().

func PrintfOnColor053 added in v1.8.0

func PrintfOnColor053(format string, args ...interface{})

PrintfOnColor053 wraps OnColor053() and fmt.Printf().

func PrintfOnColor054 added in v1.8.0

func PrintfOnColor054(format string, args ...interface{})

PrintfOnColor054 wraps OnColor054() and fmt.Printf().

func PrintfOnColor055 added in v1.8.0

func PrintfOnColor055(format string, args ...interface{})

PrintfOnColor055 wraps OnColor055() and fmt.Printf().

func PrintfOnColor056 added in v1.8.0

func PrintfOnColor056(format string, args ...interface{})

PrintfOnColor056 wraps OnColor056() and fmt.Printf().

func PrintfOnColor057 added in v1.8.0

func PrintfOnColor057(format string, args ...interface{})

PrintfOnColor057 wraps OnColor057() and fmt.Printf().

func PrintfOnColor058 added in v1.8.0

func PrintfOnColor058(format string, args ...interface{})

PrintfOnColor058 wraps OnColor058() and fmt.Printf().

func PrintfOnColor059 added in v1.8.0

func PrintfOnColor059(format string, args ...interface{})

PrintfOnColor059 wraps OnColor059() and fmt.Printf().

func PrintfOnColor060 added in v1.8.0

func PrintfOnColor060(format string, args ...interface{})

PrintfOnColor060 wraps OnColor060() and fmt.Printf().

func PrintfOnColor061 added in v1.8.0

func PrintfOnColor061(format string, args ...interface{})

PrintfOnColor061 wraps OnColor061() and fmt.Printf().

func PrintfOnColor062 added in v1.8.0

func PrintfOnColor062(format string, args ...interface{})

PrintfOnColor062 wraps OnColor062() and fmt.Printf().

func PrintfOnColor063 added in v1.8.0

func PrintfOnColor063(format string, args ...interface{})

PrintfOnColor063 wraps OnColor063() and fmt.Printf().

func PrintfOnColor064 added in v1.8.0

func PrintfOnColor064(format string, args ...interface{})

PrintfOnColor064 wraps OnColor064() and fmt.Printf().

func PrintfOnColor065 added in v1.8.0

func PrintfOnColor065(format string, args ...interface{})

PrintfOnColor065 wraps OnColor065() and fmt.Printf().

func PrintfOnColor066 added in v1.8.0

func PrintfOnColor066(format string, args ...interface{})

PrintfOnColor066 wraps OnColor066() and fmt.Printf().

func PrintfOnColor067 added in v1.8.0

func PrintfOnColor067(format string, args ...interface{})

PrintfOnColor067 wraps OnColor067() and fmt.Printf().

func PrintfOnColor068 added in v1.8.0

func PrintfOnColor068(format string, args ...interface{})

PrintfOnColor068 wraps OnColor068() and fmt.Printf().

func PrintfOnColor069 added in v1.8.0

func PrintfOnColor069(format string, args ...interface{})

PrintfOnColor069 wraps OnColor069() and fmt.Printf().

func PrintfOnColor070 added in v1.8.0

func PrintfOnColor070(format string, args ...interface{})

PrintfOnColor070 wraps OnColor070() and fmt.Printf().

func PrintfOnColor071 added in v1.8.0

func PrintfOnColor071(format string, args ...interface{})

PrintfOnColor071 wraps OnColor071() and fmt.Printf().

func PrintfOnColor072 added in v1.8.0

func PrintfOnColor072(format string, args ...interface{})

PrintfOnColor072 wraps OnColor072() and fmt.Printf().

func PrintfOnColor073 added in v1.8.0

func PrintfOnColor073(format string, args ...interface{})

PrintfOnColor073 wraps OnColor073() and fmt.Printf().

func PrintfOnColor074 added in v1.8.0

func PrintfOnColor074(format string, args ...interface{})

PrintfOnColor074 wraps OnColor074() and fmt.Printf().

func PrintfOnColor075 added in v1.8.0

func PrintfOnColor075(format string, args ...interface{})

PrintfOnColor075 wraps OnColor075() and fmt.Printf().

func PrintfOnColor076 added in v1.8.0

func PrintfOnColor076(format string, args ...interface{})

PrintfOnColor076 wraps OnColor076() and fmt.Printf().

func PrintfOnColor077 added in v1.8.0

func PrintfOnColor077(format string, args ...interface{})

PrintfOnColor077 wraps OnColor077() and fmt.Printf().

func PrintfOnColor078 added in v1.8.0

func PrintfOnColor078(format string, args ...interface{})

PrintfOnColor078 wraps OnColor078() and fmt.Printf().

func PrintfOnColor079 added in v1.8.0

func PrintfOnColor079(format string, args ...interface{})

PrintfOnColor079 wraps OnColor079() and fmt.Printf().

func PrintfOnColor080 added in v1.8.0

func PrintfOnColor080(format string, args ...interface{})

PrintfOnColor080 wraps OnColor080() and fmt.Printf().

func PrintfOnColor081 added in v1.8.0

func PrintfOnColor081(format string, args ...interface{})

PrintfOnColor081 wraps OnColor081() and fmt.Printf().

func PrintfOnColor082 added in v1.8.0

func PrintfOnColor082(format string, args ...interface{})

PrintfOnColor082 wraps OnColor082() and fmt.Printf().

func PrintfOnColor083 added in v1.8.0

func PrintfOnColor083(format string, args ...interface{})

PrintfOnColor083 wraps OnColor083() and fmt.Printf().

func PrintfOnColor084 added in v1.8.0

func PrintfOnColor084(format string, args ...interface{})

PrintfOnColor084 wraps OnColor084() and fmt.Printf().

func PrintfOnColor085 added in v1.8.0

func PrintfOnColor085(format string, args ...interface{})

PrintfOnColor085 wraps OnColor085() and fmt.Printf().

func PrintfOnColor086 added in v1.8.0

func PrintfOnColor086(format string, args ...interface{})

PrintfOnColor086 wraps OnColor086() and fmt.Printf().

func PrintfOnColor087 added in v1.8.0

func PrintfOnColor087(format string, args ...interface{})

PrintfOnColor087 wraps OnColor087() and fmt.Printf().

func PrintfOnColor088 added in v1.8.0

func PrintfOnColor088(format string, args ...interface{})

PrintfOnColor088 wraps OnColor088() and fmt.Printf().

func PrintfOnColor089 added in v1.8.0

func PrintfOnColor089(format string, args ...interface{})

PrintfOnColor089 wraps OnColor089() and fmt.Printf().

func PrintfOnColor090 added in v1.8.0

func PrintfOnColor090(format string, args ...interface{})

PrintfOnColor090 wraps OnColor090() and fmt.Printf().

func PrintfOnColor091 added in v1.8.0

func PrintfOnColor091(format string, args ...interface{})

PrintfOnColor091 wraps OnColor091() and fmt.Printf().

func PrintfOnColor092 added in v1.8.0

func PrintfOnColor092(format string, args ...interface{})

PrintfOnColor092 wraps OnColor092() and fmt.Printf().

func PrintfOnColor093 added in v1.8.0

func PrintfOnColor093(format string, args ...interface{})

PrintfOnColor093 wraps OnColor093() and fmt.Printf().

func PrintfOnColor094 added in v1.8.0

func PrintfOnColor094(format string, args ...interface{})

PrintfOnColor094 wraps OnColor094() and fmt.Printf().

func PrintfOnColor095 added in v1.8.0

func PrintfOnColor095(format string, args ...interface{})

PrintfOnColor095 wraps OnColor095() and fmt.Printf().

func PrintfOnColor096 added in v1.8.0

func PrintfOnColor096(format string, args ...interface{})

PrintfOnColor096 wraps OnColor096() and fmt.Printf().

func PrintfOnColor097 added in v1.8.0

func PrintfOnColor097(format string, args ...interface{})

PrintfOnColor097 wraps OnColor097() and fmt.Printf().

func PrintfOnColor098 added in v1.8.0

func PrintfOnColor098(format string, args ...interface{})

PrintfOnColor098 wraps OnColor098() and fmt.Printf().

func PrintfOnColor099 added in v1.8.0

func PrintfOnColor099(format string, args ...interface{})

PrintfOnColor099 wraps OnColor099() and fmt.Printf().

func PrintfOnColor100 added in v1.8.0

func PrintfOnColor100(format string, args ...interface{})

PrintfOnColor100 wraps OnColor100() and fmt.Printf().

func PrintfOnColor101 added in v1.8.0

func PrintfOnColor101(format string, args ...interface{})

PrintfOnColor101 wraps OnColor101() and fmt.Printf().

func PrintfOnColor102 added in v1.8.0

func PrintfOnColor102(format string, args ...interface{})

PrintfOnColor102 wraps OnColor102() and fmt.Printf().

func PrintfOnColor103 added in v1.8.0

func PrintfOnColor103(format string, args ...interface{})

PrintfOnColor103 wraps OnColor103() and fmt.Printf().

func PrintfOnColor104 added in v1.8.0

func PrintfOnColor104(format string, args ...interface{})

PrintfOnColor104 wraps OnColor104() and fmt.Printf().

func PrintfOnColor105 added in v1.8.0

func PrintfOnColor105(format string, args ...interface{})

PrintfOnColor105 wraps OnColor105() and fmt.Printf().

func PrintfOnColor106 added in v1.8.0

func PrintfOnColor106(format string, args ...interface{})

PrintfOnColor106 wraps OnColor106() and fmt.Printf().

func PrintfOnColor107 added in v1.8.0

func PrintfOnColor107(format string, args ...interface{})

PrintfOnColor107 wraps OnColor107() and fmt.Printf().

func PrintfOnColor108 added in v1.8.0

func PrintfOnColor108(format string, args ...interface{})

PrintfOnColor108 wraps OnColor108() and fmt.Printf().

func PrintfOnColor109 added in v1.8.0

func PrintfOnColor109(format string, args ...interface{})

PrintfOnColor109 wraps OnColor109() and fmt.Printf().

func PrintfOnColor110 added in v1.8.0

func PrintfOnColor110(format string, args ...interface{})

PrintfOnColor110 wraps OnColor110() and fmt.Printf().

func PrintfOnColor111 added in v1.8.0

func PrintfOnColor111(format string, args ...interface{})

PrintfOnColor111 wraps OnColor111() and fmt.Printf().

func PrintfOnColor112 added in v1.8.0

func PrintfOnColor112(format string, args ...interface{})

PrintfOnColor112 wraps OnColor112() and fmt.Printf().

func PrintfOnColor113 added in v1.8.0

func PrintfOnColor113(format string, args ...interface{})

PrintfOnColor113 wraps OnColor113() and fmt.Printf().

func PrintfOnColor114 added in v1.8.0

func PrintfOnColor114(format string, args ...interface{})

PrintfOnColor114 wraps OnColor114() and fmt.Printf().

func PrintfOnColor115 added in v1.8.0

func PrintfOnColor115(format string, args ...interface{})

PrintfOnColor115 wraps OnColor115() and fmt.Printf().

func PrintfOnColor116 added in v1.8.0

func PrintfOnColor116(format string, args ...interface{})

PrintfOnColor116 wraps OnColor116() and fmt.Printf().

func PrintfOnColor117 added in v1.8.0

func PrintfOnColor117(format string, args ...interface{})

PrintfOnColor117 wraps OnColor117() and fmt.Printf().

func PrintfOnColor118 added in v1.8.0

func PrintfOnColor118(format string, args ...interface{})

PrintfOnColor118 wraps OnColor118() and fmt.Printf().

func PrintfOnColor119 added in v1.8.0

func PrintfOnColor119(format string, args ...interface{})

PrintfOnColor119 wraps OnColor119() and fmt.Printf().

func PrintfOnColor120 added in v1.8.0

func PrintfOnColor120(format string, args ...interface{})

PrintfOnColor120 wraps OnColor120() and fmt.Printf().

func PrintfOnColor121 added in v1.8.0

func PrintfOnColor121(format string, args ...interface{})

PrintfOnColor121 wraps OnColor121() and fmt.Printf().

func PrintfOnColor122 added in v1.8.0

func PrintfOnColor122(format string, args ...interface{})

PrintfOnColor122 wraps OnColor122() and fmt.Printf().

func PrintfOnColor123 added in v1.8.0

func PrintfOnColor123(format string, args ...interface{})

PrintfOnColor123 wraps OnColor123() and fmt.Printf().

func PrintfOnColor124 added in v1.8.0

func PrintfOnColor124(format string, args ...interface{})

PrintfOnColor124 wraps OnColor124() and fmt.Printf().

func PrintfOnColor125 added in v1.8.0

func PrintfOnColor125(format string, args ...interface{})

PrintfOnColor125 wraps OnColor125() and fmt.Printf().

func PrintfOnColor126 added in v1.8.0

func PrintfOnColor126(format string, args ...interface{})

PrintfOnColor126 wraps OnColor126() and fmt.Printf().

func PrintfOnColor127 added in v1.8.0

func PrintfOnColor127(format string, args ...interface{})

PrintfOnColor127 wraps OnColor127() and fmt.Printf().

func PrintfOnColor128 added in v1.8.0

func PrintfOnColor128(format string, args ...interface{})

PrintfOnColor128 wraps OnColor128() and fmt.Printf().

func PrintfOnColor129 added in v1.8.0

func PrintfOnColor129(format string, args ...interface{})

PrintfOnColor129 wraps OnColor129() and fmt.Printf().

func PrintfOnColor130 added in v1.8.0

func PrintfOnColor130(format string, args ...interface{})

PrintfOnColor130 wraps OnColor130() and fmt.Printf().

func PrintfOnColor131 added in v1.8.0

func PrintfOnColor131(format string, args ...interface{})

PrintfOnColor131 wraps OnColor131() and fmt.Printf().

func PrintfOnColor132 added in v1.8.0

func PrintfOnColor132(format string, args ...interface{})

PrintfOnColor132 wraps OnColor132() and fmt.Printf().

func PrintfOnColor133 added in v1.8.0

func PrintfOnColor133(format string, args ...interface{})

PrintfOnColor133 wraps OnColor133() and fmt.Printf().

func PrintfOnColor134 added in v1.8.0

func PrintfOnColor134(format string, args ...interface{})

PrintfOnColor134 wraps OnColor134() and fmt.Printf().

func PrintfOnColor135 added in v1.8.0

func PrintfOnColor135(format string, args ...interface{})

PrintfOnColor135 wraps OnColor135() and fmt.Printf().

func PrintfOnColor136 added in v1.8.0

func PrintfOnColor136(format string, args ...interface{})

PrintfOnColor136 wraps OnColor136() and fmt.Printf().

func PrintfOnColor137 added in v1.8.0

func PrintfOnColor137(format string, args ...interface{})

PrintfOnColor137 wraps OnColor137() and fmt.Printf().

func PrintfOnColor138 added in v1.8.0

func PrintfOnColor138(format string, args ...interface{})

PrintfOnColor138 wraps OnColor138() and fmt.Printf().

func PrintfOnColor139 added in v1.8.0

func PrintfOnColor139(format string, args ...interface{})

PrintfOnColor139 wraps OnColor139() and fmt.Printf().

func PrintfOnColor140 added in v1.8.0

func PrintfOnColor140(format string, args ...interface{})

PrintfOnColor140 wraps OnColor140() and fmt.Printf().

func PrintfOnColor141 added in v1.8.0

func PrintfOnColor141(format string, args ...interface{})

PrintfOnColor141 wraps OnColor141() and fmt.Printf().

func PrintfOnColor142 added in v1.8.0

func PrintfOnColor142(format string, args ...interface{})

PrintfOnColor142 wraps OnColor142() and fmt.Printf().

func PrintfOnColor143 added in v1.8.0

func PrintfOnColor143(format string, args ...interface{})

PrintfOnColor143 wraps OnColor143() and fmt.Printf().

func PrintfOnColor144 added in v1.8.0

func PrintfOnColor144(format string, args ...interface{})

PrintfOnColor144 wraps OnColor144() and fmt.Printf().

func PrintfOnColor145 added in v1.8.0

func PrintfOnColor145(format string, args ...interface{})

PrintfOnColor145 wraps OnColor145() and fmt.Printf().

func PrintfOnColor146 added in v1.8.0

func PrintfOnColor146(format string, args ...interface{})

PrintfOnColor146 wraps OnColor146() and fmt.Printf().

func PrintfOnColor147 added in v1.8.0

func PrintfOnColor147(format string, args ...interface{})

PrintfOnColor147 wraps OnColor147() and fmt.Printf().

func PrintfOnColor148 added in v1.8.0

func PrintfOnColor148(format string, args ...interface{})

PrintfOnColor148 wraps OnColor148() and fmt.Printf().

func PrintfOnColor149 added in v1.8.0

func PrintfOnColor149(format string, args ...interface{})

PrintfOnColor149 wraps OnColor149() and fmt.Printf().

func PrintfOnColor150 added in v1.8.0

func PrintfOnColor150(format string, args ...interface{})

PrintfOnColor150 wraps OnColor150() and fmt.Printf().

func PrintfOnColor151 added in v1.8.0

func PrintfOnColor151(format string, args ...interface{})

PrintfOnColor151 wraps OnColor151() and fmt.Printf().

func PrintfOnColor152 added in v1.8.0

func PrintfOnColor152(format string, args ...interface{})

PrintfOnColor152 wraps OnColor152() and fmt.Printf().

func PrintfOnColor153 added in v1.8.0

func PrintfOnColor153(format string, args ...interface{})

PrintfOnColor153 wraps OnColor153() and fmt.Printf().

func PrintfOnColor154 added in v1.8.0

func PrintfOnColor154(format string, args ...interface{})

PrintfOnColor154 wraps OnColor154() and fmt.Printf().

func PrintfOnColor155 added in v1.8.0

func PrintfOnColor155(format string, args ...interface{})

PrintfOnColor155 wraps OnColor155() and fmt.Printf().

func PrintfOnColor156 added in v1.8.0

func PrintfOnColor156(format string, args ...interface{})

PrintfOnColor156 wraps OnColor156() and fmt.Printf().

func PrintfOnColor157 added in v1.8.0

func PrintfOnColor157(format string, args ...interface{})

PrintfOnColor157 wraps OnColor157() and fmt.Printf().

func PrintfOnColor158 added in v1.8.0

func PrintfOnColor158(format string, args ...interface{})

PrintfOnColor158 wraps OnColor158() and fmt.Printf().

func PrintfOnColor159 added in v1.8.0

func PrintfOnColor159(format string, args ...interface{})

PrintfOnColor159 wraps OnColor159() and fmt.Printf().

func PrintfOnColor160 added in v1.8.0

func PrintfOnColor160(format string, args ...interface{})

PrintfOnColor160 wraps OnColor160() and fmt.Printf().

func PrintfOnColor161 added in v1.8.0

func PrintfOnColor161(format string, args ...interface{})

PrintfOnColor161 wraps OnColor161() and fmt.Printf().

func PrintfOnColor162 added in v1.8.0

func PrintfOnColor162(format string, args ...interface{})

PrintfOnColor162 wraps OnColor162() and fmt.Printf().

func PrintfOnColor163 added in v1.8.0

func PrintfOnColor163(format string, args ...interface{})

PrintfOnColor163 wraps OnColor163() and fmt.Printf().

func PrintfOnColor164 added in v1.8.0

func PrintfOnColor164(format string, args ...interface{})

PrintfOnColor164 wraps OnColor164() and fmt.Printf().

func PrintfOnColor165 added in v1.8.0

func PrintfOnColor165(format string, args ...interface{})

PrintfOnColor165 wraps OnColor165() and fmt.Printf().

func PrintfOnColor166 added in v1.8.0

func PrintfOnColor166(format string, args ...interface{})

PrintfOnColor166 wraps OnColor166() and fmt.Printf().

func PrintfOnColor167 added in v1.8.0

func PrintfOnColor167(format string, args ...interface{})

PrintfOnColor167 wraps OnColor167() and fmt.Printf().

func PrintfOnColor168 added in v1.8.0

func PrintfOnColor168(format string, args ...interface{})

PrintfOnColor168 wraps OnColor168() and fmt.Printf().

func PrintfOnColor169 added in v1.8.0

func PrintfOnColor169(format string, args ...interface{})

PrintfOnColor169 wraps OnColor169() and fmt.Printf().

func PrintfOnColor170 added in v1.8.0

func PrintfOnColor170(format string, args ...interface{})

PrintfOnColor170 wraps OnColor170() and fmt.Printf().

func PrintfOnColor171 added in v1.8.0

func PrintfOnColor171(format string, args ...interface{})

PrintfOnColor171 wraps OnColor171() and fmt.Printf().

func PrintfOnColor172 added in v1.8.0

func PrintfOnColor172(format string, args ...interface{})

PrintfOnColor172 wraps OnColor172() and fmt.Printf().

func PrintfOnColor173 added in v1.8.0

func PrintfOnColor173(format string, args ...interface{})

PrintfOnColor173 wraps OnColor173() and fmt.Printf().

func PrintfOnColor174 added in v1.8.0

func PrintfOnColor174(format string, args ...interface{})

PrintfOnColor174 wraps OnColor174() and fmt.Printf().

func PrintfOnColor175 added in v1.8.0

func PrintfOnColor175(format string, args ...interface{})

PrintfOnColor175 wraps OnColor175() and fmt.Printf().

func PrintfOnColor176 added in v1.8.0

func PrintfOnColor176(format string, args ...interface{})

PrintfOnColor176 wraps OnColor176() and fmt.Printf().

func PrintfOnColor177 added in v1.8.0

func PrintfOnColor177(format string, args ...interface{})

PrintfOnColor177 wraps OnColor177() and fmt.Printf().

func PrintfOnColor178 added in v1.8.0

func PrintfOnColor178(format string, args ...interface{})

PrintfOnColor178 wraps OnColor178() and fmt.Printf().

func PrintfOnColor179 added in v1.8.0

func PrintfOnColor179(format string, args ...interface{})

PrintfOnColor179 wraps OnColor179() and fmt.Printf().

func PrintfOnColor180 added in v1.8.0

func PrintfOnColor180(format string, args ...interface{})

PrintfOnColor180 wraps OnColor180() and fmt.Printf().

func PrintfOnColor181 added in v1.8.0

func PrintfOnColor181(format string, args ...interface{})

PrintfOnColor181 wraps OnColor181() and fmt.Printf().

func PrintfOnColor182 added in v1.8.0

func PrintfOnColor182(format string, args ...interface{})

PrintfOnColor182 wraps OnColor182() and fmt.Printf().

func PrintfOnColor183 added in v1.8.0

func PrintfOnColor183(format string, args ...interface{})

PrintfOnColor183 wraps OnColor183() and fmt.Printf().

func PrintfOnColor184 added in v1.8.0

func PrintfOnColor184(format string, args ...interface{})

PrintfOnColor184 wraps OnColor184() and fmt.Printf().

func PrintfOnColor185 added in v1.8.0

func PrintfOnColor185(format string, args ...interface{})

PrintfOnColor185 wraps OnColor185() and fmt.Printf().

func PrintfOnColor186 added in v1.8.0

func PrintfOnColor186(format string, args ...interface{})

PrintfOnColor186 wraps OnColor186() and fmt.Printf().

func PrintfOnColor187 added in v1.8.0

func PrintfOnColor187(format string, args ...interface{})

PrintfOnColor187 wraps OnColor187() and fmt.Printf().

func PrintfOnColor188 added in v1.8.0

func PrintfOnColor188(format string, args ...interface{})

PrintfOnColor188 wraps OnColor188() and fmt.Printf().

func PrintfOnColor189 added in v1.8.0

func PrintfOnColor189(format string, args ...interface{})

PrintfOnColor189 wraps OnColor189() and fmt.Printf().

func PrintfOnColor190 added in v1.8.0

func PrintfOnColor190(format string, args ...interface{})

PrintfOnColor190 wraps OnColor190() and fmt.Printf().

func PrintfOnColor191 added in v1.8.0

func PrintfOnColor191(format string, args ...interface{})

PrintfOnColor191 wraps OnColor191() and fmt.Printf().

func PrintfOnColor192 added in v1.8.0

func PrintfOnColor192(format string, args ...interface{})

PrintfOnColor192 wraps OnColor192() and fmt.Printf().

func PrintfOnColor193 added in v1.8.0

func PrintfOnColor193(format string, args ...interface{})

PrintfOnColor193 wraps OnColor193() and fmt.Printf().

func PrintfOnColor194 added in v1.8.0

func PrintfOnColor194(format string, args ...interface{})

PrintfOnColor194 wraps OnColor194() and fmt.Printf().

func PrintfOnColor195 added in v1.8.0

func PrintfOnColor195(format string, args ...interface{})

PrintfOnColor195 wraps OnColor195() and fmt.Printf().

func PrintfOnColor196 added in v1.8.0

func PrintfOnColor196(format string, args ...interface{})

PrintfOnColor196 wraps OnColor196() and fmt.Printf().

func PrintfOnColor197 added in v1.8.0

func PrintfOnColor197(format string, args ...interface{})

PrintfOnColor197 wraps OnColor197() and fmt.Printf().

func PrintfOnColor198 added in v1.8.0

func PrintfOnColor198(format string, args ...interface{})

PrintfOnColor198 wraps OnColor198() and fmt.Printf().

func PrintfOnColor199 added in v1.8.0

func PrintfOnColor199(format string, args ...interface{})

PrintfOnColor199 wraps OnColor199() and fmt.Printf().

func PrintfOnColor200 added in v1.8.0

func PrintfOnColor200(format string, args ...interface{})

PrintfOnColor200 wraps OnColor200() and fmt.Printf().

func PrintfOnColor201 added in v1.8.0

func PrintfOnColor201(format string, args ...interface{})

PrintfOnColor201 wraps OnColor201() and fmt.Printf().

func PrintfOnColor202 added in v1.8.0

func PrintfOnColor202(format string, args ...interface{})

PrintfOnColor202 wraps OnColor202() and fmt.Printf().

func PrintfOnColor203 added in v1.8.0

func PrintfOnColor203(format string, args ...interface{})

PrintfOnColor203 wraps OnColor203() and fmt.Printf().

func PrintfOnColor204 added in v1.8.0

func PrintfOnColor204(format string, args ...interface{})

PrintfOnColor204 wraps OnColor204() and fmt.Printf().

func PrintfOnColor205 added in v1.8.0

func PrintfOnColor205(format string, args ...interface{})

PrintfOnColor205 wraps OnColor205() and fmt.Printf().

func PrintfOnColor206 added in v1.8.0

func PrintfOnColor206(format string, args ...interface{})

PrintfOnColor206 wraps OnColor206() and fmt.Printf().

func PrintfOnColor207 added in v1.8.0

func PrintfOnColor207(format string, args ...interface{})

PrintfOnColor207 wraps OnColor207() and fmt.Printf().

func PrintfOnColor208 added in v1.8.0

func PrintfOnColor208(format string, args ...interface{})

PrintfOnColor208 wraps OnColor208() and fmt.Printf().

func PrintfOnColor209 added in v1.8.0

func PrintfOnColor209(format string, args ...interface{})

PrintfOnColor209 wraps OnColor209() and fmt.Printf().

func PrintfOnColor210 added in v1.8.0

func PrintfOnColor210(format string, args ...interface{})

PrintfOnColor210 wraps OnColor210() and fmt.Printf().

func PrintfOnColor211 added in v1.8.0

func PrintfOnColor211(format string, args ...interface{})

PrintfOnColor211 wraps OnColor211() and fmt.Printf().

func PrintfOnColor212 added in v1.8.0

func PrintfOnColor212(format string, args ...interface{})

PrintfOnColor212 wraps OnColor212() and fmt.Printf().

func PrintfOnColor213 added in v1.8.0

func PrintfOnColor213(format string, args ...interface{})

PrintfOnColor213 wraps OnColor213() and fmt.Printf().

func PrintfOnColor214 added in v1.8.0

func PrintfOnColor214(format string, args ...interface{})

PrintfOnColor214 wraps OnColor214() and fmt.Printf().

func PrintfOnColor215 added in v1.8.0

func PrintfOnColor215(format string, args ...interface{})

PrintfOnColor215 wraps OnColor215() and fmt.Printf().

func PrintfOnColor216 added in v1.8.0

func PrintfOnColor216(format string, args ...interface{})

PrintfOnColor216 wraps OnColor216() and fmt.Printf().

func PrintfOnColor217 added in v1.8.0

func PrintfOnColor217(format string, args ...interface{})

PrintfOnColor217 wraps OnColor217() and fmt.Printf().

func PrintfOnColor218 added in v1.8.0

func PrintfOnColor218(format string, args ...interface{})

PrintfOnColor218 wraps OnColor218() and fmt.Printf().

func PrintfOnColor219 added in v1.8.0

func PrintfOnColor219(format string, args ...interface{})

PrintfOnColor219 wraps OnColor219() and fmt.Printf().

func PrintfOnColor220 added in v1.8.0

func PrintfOnColor220(format string, args ...interface{})

PrintfOnColor220 wraps OnColor220() and fmt.Printf().

func PrintfOnColor221 added in v1.8.0

func PrintfOnColor221(format string, args ...interface{})

PrintfOnColor221 wraps OnColor221() and fmt.Printf().

func PrintfOnColor222 added in v1.8.0

func PrintfOnColor222(format string, args ...interface{})

PrintfOnColor222 wraps OnColor222() and fmt.Printf().

func PrintfOnColor223 added in v1.8.0

func PrintfOnColor223(format string, args ...interface{})

PrintfOnColor223 wraps OnColor223() and fmt.Printf().

func PrintfOnColor224 added in v1.8.0

func PrintfOnColor224(format string, args ...interface{})

PrintfOnColor224 wraps OnColor224() and fmt.Printf().

func PrintfOnColor225 added in v1.8.0

func PrintfOnColor225(format string, args ...interface{})

PrintfOnColor225 wraps OnColor225() and fmt.Printf().

func PrintfOnColor226 added in v1.8.0

func PrintfOnColor226(format string, args ...interface{})

PrintfOnColor226 wraps OnColor226() and fmt.Printf().

func PrintfOnColor227 added in v1.8.0

func PrintfOnColor227(format string, args ...interface{})

PrintfOnColor227 wraps OnColor227() and fmt.Printf().

func PrintfOnColor228 added in v1.8.0

func PrintfOnColor228(format string, args ...interface{})

PrintfOnColor228 wraps OnColor228() and fmt.Printf().

func PrintfOnColor229 added in v1.8.0

func PrintfOnColor229(format string, args ...interface{})

PrintfOnColor229 wraps OnColor229() and fmt.Printf().

func PrintfOnColor230 added in v1.8.0

func PrintfOnColor230(format string, args ...interface{})

PrintfOnColor230 wraps OnColor230() and fmt.Printf().

func PrintfOnColor231 added in v1.8.0

func PrintfOnColor231(format string, args ...interface{})

PrintfOnColor231 wraps OnColor231() and fmt.Printf().

func PrintfOnColor232 added in v1.8.0

func PrintfOnColor232(format string, args ...interface{})

PrintfOnColor232 wraps OnColor232() and fmt.Printf().

func PrintfOnColor233 added in v1.8.0

func PrintfOnColor233(format string, args ...interface{})

PrintfOnColor233 wraps OnColor233() and fmt.Printf().

func PrintfOnColor234 added in v1.8.0

func PrintfOnColor234(format string, args ...interface{})

PrintfOnColor234 wraps OnColor234() and fmt.Printf().

func PrintfOnColor235 added in v1.8.0

func PrintfOnColor235(format string, args ...interface{})

PrintfOnColor235 wraps OnColor235() and fmt.Printf().

func PrintfOnColor236 added in v1.8.0

func PrintfOnColor236(format string, args ...interface{})

PrintfOnColor236 wraps OnColor236() and fmt.Printf().

func PrintfOnColor237 added in v1.8.0

func PrintfOnColor237(format string, args ...interface{})

PrintfOnColor237 wraps OnColor237() and fmt.Printf().

func PrintfOnColor238 added in v1.8.0

func PrintfOnColor238(format string, args ...interface{})

PrintfOnColor238 wraps OnColor238() and fmt.Printf().

func PrintfOnColor239 added in v1.8.0

func PrintfOnColor239(format string, args ...interface{})

PrintfOnColor239 wraps OnColor239() and fmt.Printf().

func PrintfOnColor240 added in v1.8.0

func PrintfOnColor240(format string, args ...interface{})

PrintfOnColor240 wraps OnColor240() and fmt.Printf().

func PrintfOnColor241 added in v1.8.0

func PrintfOnColor241(format string, args ...interface{})

PrintfOnColor241 wraps OnColor241() and fmt.Printf().

func PrintfOnColor242 added in v1.8.0

func PrintfOnColor242(format string, args ...interface{})

PrintfOnColor242 wraps OnColor242() and fmt.Printf().

func PrintfOnColor243 added in v1.8.0

func PrintfOnColor243(format string, args ...interface{})

PrintfOnColor243 wraps OnColor243() and fmt.Printf().

func PrintfOnColor244 added in v1.8.0

func PrintfOnColor244(format string, args ...interface{})

PrintfOnColor244 wraps OnColor244() and fmt.Printf().

func PrintfOnColor245 added in v1.8.0

func PrintfOnColor245(format string, args ...interface{})

PrintfOnColor245 wraps OnColor245() and fmt.Printf().

func PrintfOnColor246 added in v1.8.0

func PrintfOnColor246(format string, args ...interface{})

PrintfOnColor246 wraps OnColor246() and fmt.Printf().

func PrintfOnColor247 added in v1.8.0

func PrintfOnColor247(format string, args ...interface{})

PrintfOnColor247 wraps OnColor247() and fmt.Printf().

func PrintfOnColor248 added in v1.8.0

func PrintfOnColor248(format string, args ...interface{})

PrintfOnColor248 wraps OnColor248() and fmt.Printf().

func PrintfOnColor249 added in v1.8.0

func PrintfOnColor249(format string, args ...interface{})

PrintfOnColor249 wraps OnColor249() and fmt.Printf().

func PrintfOnColor250 added in v1.8.0

func PrintfOnColor250(format string, args ...interface{})

PrintfOnColor250 wraps OnColor250() and fmt.Printf().

func PrintfOnColor251 added in v1.8.0

func PrintfOnColor251(format string, args ...interface{})

PrintfOnColor251 wraps OnColor251() and fmt.Printf().

func PrintfOnColor252 added in v1.8.0

func PrintfOnColor252(format string, args ...interface{})

PrintfOnColor252 wraps OnColor252() and fmt.Printf().

func PrintfOnColor253 added in v1.8.0

func PrintfOnColor253(format string, args ...interface{})

PrintfOnColor253 wraps OnColor253() and fmt.Printf().

func PrintfOnColor254 added in v1.8.0

func PrintfOnColor254(format string, args ...interface{})

PrintfOnColor254 wraps OnColor254() and fmt.Printf().

func PrintfOnColor255 added in v1.8.0

func PrintfOnColor255(format string, args ...interface{})

PrintfOnColor255 wraps OnColor255() and fmt.Printf().

func PrintfOnCyan added in v1.8.0

func PrintfOnCyan(format string, args ...interface{})

PrintfOnCyan wraps OnCyan() and fmt.Printf().

func PrintfOnDefault added in v1.8.0

func PrintfOnDefault(format string, args ...interface{})

PrintfOnDefault wraps OnDefault() and fmt.Printf().

func PrintfOnGreen added in v1.8.0

func PrintfOnGreen(format string, args ...interface{})

PrintfOnGreen wraps OnGreen() and fmt.Printf().

func PrintfOnHex added in v1.8.0

func PrintfOnHex(hex string, format string, args ...interface{})

PrintfOnHex wraps OnHex() and fmt.Printf().

func PrintfOnLightBlack added in v1.8.0

func PrintfOnLightBlack(format string, args ...interface{})

PrintfOnLightBlack wraps OnLightBlack() and fmt.Printf().

func PrintfOnLightBlue added in v1.8.0

func PrintfOnLightBlue(format string, args ...interface{})

PrintfOnLightBlue wraps OnLightBlue() and fmt.Printf().

func PrintfOnLightCyan added in v1.8.0

func PrintfOnLightCyan(format string, args ...interface{})

PrintfOnLightCyan wraps OnLightCyan() and fmt.Printf().

func PrintfOnLightGreen added in v1.8.0

func PrintfOnLightGreen(format string, args ...interface{})

PrintfOnLightGreen wraps OnLightGreen() and fmt.Printf().

func PrintfOnLightMagenta added in v1.8.0

func PrintfOnLightMagenta(format string, args ...interface{})

PrintfOnLightMagenta wraps OnLightMagenta() and fmt.Printf().

func PrintfOnLightRed added in v1.8.0

func PrintfOnLightRed(format string, args ...interface{})

PrintfOnLightRed wraps OnLightRed() and fmt.Printf().

func PrintfOnLightWhite added in v1.8.0

func PrintfOnLightWhite(format string, args ...interface{})

PrintfOnLightWhite wraps OnLightWhite() and fmt.Printf().

func PrintfOnLightYellow added in v1.8.0

func PrintfOnLightYellow(format string, args ...interface{})

PrintfOnLightYellow wraps OnLightYellow() and fmt.Printf().

func PrintfOnMagenta added in v1.8.0

func PrintfOnMagenta(format string, args ...interface{})

PrintfOnMagenta wraps OnMagenta() and fmt.Printf().

func PrintfOnRainbow added in v1.8.0

func PrintfOnRainbow(format string, args ...interface{})

PrintfOnRainbow wraps OnRainbow() and fmt.Printf().

func PrintfOnRed added in v1.8.0

func PrintfOnRed(format string, args ...interface{})

PrintfOnRed wraps OnRed() and fmt.Printf().

func PrintfOnWhite added in v1.8.0

func PrintfOnWhite(format string, args ...interface{})

PrintfOnWhite wraps OnWhite() and fmt.Printf().

func PrintfOnYellow added in v1.8.0

func PrintfOnYellow(format string, args ...interface{})

PrintfOnYellow wraps OnYellow() and fmt.Printf().

func PrintfPlain added in v1.8.0

func PrintfPlain(format string, args ...interface{})

PrintfPlain wraps Plain() and fmt.Printf().

func PrintfRainbow added in v1.8.0

func PrintfRainbow(format string, args ...interface{})

PrintfRainbow wraps Rainbow() and fmt.Printf().

func PrintfRed added in v1.8.0

func PrintfRed(format string, args ...interface{})

PrintfRed wraps Red() and fmt.Printf().

func PrintfReset added in v1.8.0

func PrintfReset(format string, args ...interface{})

PrintfReset wraps Reset() and fmt.Printf().

func PrintfStrikethrough added in v1.8.0

func PrintfStrikethrough(format string, args ...interface{})

PrintfStrikethrough wraps Strikethrough() and fmt.Printf().

func PrintfSwap added in v1.8.0

func PrintfSwap(format string, args ...interface{})

PrintfSwap wraps Swap() and fmt.Printf().

func PrintfUnderline added in v1.8.0

func PrintfUnderline(format string, args ...interface{})

PrintfUnderline wraps Underline() and fmt.Printf().

func PrintfWhite added in v1.8.0

func PrintfWhite(format string, args ...interface{})

PrintfWhite wraps White() and fmt.Printf().

func PrintfWrap added in v1.8.0

func PrintfWrap(width int, format string, args ...interface{})

PrintfWrap wraps Wrap() and fmt.Printf().

func PrintfYellow added in v1.8.0

func PrintfYellow(format string, args ...interface{})

PrintfYellow wraps Yellow() and fmt.Printf().

func Println

func Println(args ...interface{})

Println wraps fmt.Println().

func PrintlnBlack

func PrintlnBlack(str string)

PrintlnBlack wraps Black() and fmt.Println().

func PrintlnBlink(str string)

PrintlnBlink wraps Blink() and fmt.Println().

func PrintlnBlinkRapid

func PrintlnBlinkRapid(str string)

PrintlnBlinkRapid wraps BlinkRapid() and fmt.Println().

func PrintlnBlinkSlow

func PrintlnBlinkSlow(str string)

PrintlnBlinkSlow wraps BlinkSlow() and fmt.Println().

func PrintlnBlue

func PrintlnBlue(str string)

PrintlnBlue wraps Blue() and fmt.Println().

func PrintlnBold

func PrintlnBold(str string)

PrintlnBold wraps Bold() and fmt.Println().

func PrintlnColor000

func PrintlnColor000(str string)

PrintlnColor000 wraps Color000() and fmt.Println().

func PrintlnColor001

func PrintlnColor001(str string)

PrintlnColor001 wraps Color001() and fmt.Println().

func PrintlnColor002

func PrintlnColor002(str string)

PrintlnColor002 wraps Color002() and fmt.Println().

func PrintlnColor003

func PrintlnColor003(str string)

PrintlnColor003 wraps Color003() and fmt.Println().

func PrintlnColor004

func PrintlnColor004(str string)

PrintlnColor004 wraps Color004() and fmt.Println().

func PrintlnColor005

func PrintlnColor005(str string)

PrintlnColor005 wraps Color005() and fmt.Println().

func PrintlnColor006

func PrintlnColor006(str string)

PrintlnColor006 wraps Color006() and fmt.Println().

func PrintlnColor007

func PrintlnColor007(str string)

PrintlnColor007 wraps Color007() and fmt.Println().

func PrintlnColor008

func PrintlnColor008(str string)

PrintlnColor008 wraps Color008() and fmt.Println().

func PrintlnColor009

func PrintlnColor009(str string)

PrintlnColor009 wraps Color009() and fmt.Println().

func PrintlnColor010

func PrintlnColor010(str string)

PrintlnColor010 wraps Color010() and fmt.Println().

func PrintlnColor011

func PrintlnColor011(str string)

PrintlnColor011 wraps Color011() and fmt.Println().

func PrintlnColor012

func PrintlnColor012(str string)

PrintlnColor012 wraps Color012() and fmt.Println().

func PrintlnColor013

func PrintlnColor013(str string)

PrintlnColor013 wraps Color013() and fmt.Println().

func PrintlnColor014

func PrintlnColor014(str string)

PrintlnColor014 wraps Color014() and fmt.Println().

func PrintlnColor015

func PrintlnColor015(str string)

PrintlnColor015 wraps Color015() and fmt.Println().

func PrintlnColor016

func PrintlnColor016(str string)

PrintlnColor016 wraps Color016() and fmt.Println().

func PrintlnColor017

func PrintlnColor017(str string)

PrintlnColor017 wraps Color017() and fmt.Println().

func PrintlnColor018

func PrintlnColor018(str string)

PrintlnColor018 wraps Color018() and fmt.Println().

func PrintlnColor019

func PrintlnColor019(str string)

PrintlnColor019 wraps Color019() and fmt.Println().

func PrintlnColor020

func PrintlnColor020(str string)

PrintlnColor020 wraps Color020() and fmt.Println().

func PrintlnColor021

func PrintlnColor021(str string)

PrintlnColor021 wraps Color021() and fmt.Println().

func PrintlnColor022

func PrintlnColor022(str string)

PrintlnColor022 wraps Color022() and fmt.Println().

func PrintlnColor023

func PrintlnColor023(str string)

PrintlnColor023 wraps Color023() and fmt.Println().

func PrintlnColor024

func PrintlnColor024(str string)

PrintlnColor024 wraps Color024() and fmt.Println().

func PrintlnColor025

func PrintlnColor025(str string)

PrintlnColor025 wraps Color025() and fmt.Println().

func PrintlnColor026

func PrintlnColor026(str string)

PrintlnColor026 wraps Color026() and fmt.Println().

func PrintlnColor027

func PrintlnColor027(str string)

PrintlnColor027 wraps Color027() and fmt.Println().

func PrintlnColor028

func PrintlnColor028(str string)

PrintlnColor028 wraps Color028() and fmt.Println().

func PrintlnColor029

func PrintlnColor029(str string)

PrintlnColor029 wraps Color029() and fmt.Println().

func PrintlnColor030

func PrintlnColor030(str string)

PrintlnColor030 wraps Color030() and fmt.Println().

func PrintlnColor031

func PrintlnColor031(str string)

PrintlnColor031 wraps Color031() and fmt.Println().

func PrintlnColor032

func PrintlnColor032(str string)

PrintlnColor032 wraps Color032() and fmt.Println().

func PrintlnColor033

func PrintlnColor033(str string)

PrintlnColor033 wraps Color033() and fmt.Println().

func PrintlnColor034

func PrintlnColor034(str string)

PrintlnColor034 wraps Color034() and fmt.Println().

func PrintlnColor035

func PrintlnColor035(str string)

PrintlnColor035 wraps Color035() and fmt.Println().

func PrintlnColor036

func PrintlnColor036(str string)

PrintlnColor036 wraps Color036() and fmt.Println().

func PrintlnColor037

func PrintlnColor037(str string)

PrintlnColor037 wraps Color037() and fmt.Println().

func PrintlnColor038

func PrintlnColor038(str string)

PrintlnColor038 wraps Color038() and fmt.Println().

func PrintlnColor039

func PrintlnColor039(str string)

PrintlnColor039 wraps Color039() and fmt.Println().

func PrintlnColor040

func PrintlnColor040(str string)

PrintlnColor040 wraps Color040() and fmt.Println().

func PrintlnColor041

func PrintlnColor041(str string)

PrintlnColor041 wraps Color041() and fmt.Println().

func PrintlnColor042

func PrintlnColor042(str string)

PrintlnColor042 wraps Color042() and fmt.Println().

func PrintlnColor043

func PrintlnColor043(str string)

PrintlnColor043 wraps Color043() and fmt.Println().

func PrintlnColor044

func PrintlnColor044(str string)

PrintlnColor044 wraps Color044() and fmt.Println().

func PrintlnColor045

func PrintlnColor045(str string)

PrintlnColor045 wraps Color045() and fmt.Println().

func PrintlnColor046

func PrintlnColor046(str string)

PrintlnColor046 wraps Color046() and fmt.Println().

func PrintlnColor047

func PrintlnColor047(str string)

PrintlnColor047 wraps Color047() and fmt.Println().

func PrintlnColor048

func PrintlnColor048(str string)

PrintlnColor048 wraps Color048() and fmt.Println().

func PrintlnColor049

func PrintlnColor049(str string)

PrintlnColor049 wraps Color049() and fmt.Println().

func PrintlnColor050

func PrintlnColor050(str string)

PrintlnColor050 wraps Color050() and fmt.Println().

func PrintlnColor051

func PrintlnColor051(str string)

PrintlnColor051 wraps Color051() and fmt.Println().

func PrintlnColor052

func PrintlnColor052(str string)

PrintlnColor052 wraps Color052() and fmt.Println().

func PrintlnColor053

func PrintlnColor053(str string)

PrintlnColor053 wraps Color053() and fmt.Println().

func PrintlnColor054

func PrintlnColor054(str string)

PrintlnColor054 wraps Color054() and fmt.Println().

func PrintlnColor055

func PrintlnColor055(str string)

PrintlnColor055 wraps Color055() and fmt.Println().

func PrintlnColor056

func PrintlnColor056(str string)

PrintlnColor056 wraps Color056() and fmt.Println().

func PrintlnColor057

func PrintlnColor057(str string)

PrintlnColor057 wraps Color057() and fmt.Println().

func PrintlnColor058

func PrintlnColor058(str string)

PrintlnColor058 wraps Color058() and fmt.Println().

func PrintlnColor059

func PrintlnColor059(str string)

PrintlnColor059 wraps Color059() and fmt.Println().

func PrintlnColor060

func PrintlnColor060(str string)

PrintlnColor060 wraps Color060() and fmt.Println().

func PrintlnColor061

func PrintlnColor061(str string)

PrintlnColor061 wraps Color061() and fmt.Println().

func PrintlnColor062

func PrintlnColor062(str string)

PrintlnColor062 wraps Color062() and fmt.Println().

func PrintlnColor063

func PrintlnColor063(str string)

PrintlnColor063 wraps Color063() and fmt.Println().

func PrintlnColor064

func PrintlnColor064(str string)

PrintlnColor064 wraps Color064() and fmt.Println().

func PrintlnColor065

func PrintlnColor065(str string)

PrintlnColor065 wraps Color065() and fmt.Println().

func PrintlnColor066

func PrintlnColor066(str string)

PrintlnColor066 wraps Color066() and fmt.Println().

func PrintlnColor067

func PrintlnColor067(str string)

PrintlnColor067 wraps Color067() and fmt.Println().

func PrintlnColor068

func PrintlnColor068(str string)

PrintlnColor068 wraps Color068() and fmt.Println().

func PrintlnColor069

func PrintlnColor069(str string)

PrintlnColor069 wraps Color069() and fmt.Println().

func PrintlnColor070

func PrintlnColor070(str string)

PrintlnColor070 wraps Color070() and fmt.Println().

func PrintlnColor071

func PrintlnColor071(str string)

PrintlnColor071 wraps Color071() and fmt.Println().

func PrintlnColor072

func PrintlnColor072(str string)

PrintlnColor072 wraps Color072() and fmt.Println().

func PrintlnColor073

func PrintlnColor073(str string)

PrintlnColor073 wraps Color073() and fmt.Println().

func PrintlnColor074

func PrintlnColor074(str string)

PrintlnColor074 wraps Color074() and fmt.Println().

func PrintlnColor075

func PrintlnColor075(str string)

PrintlnColor075 wraps Color075() and fmt.Println().

func PrintlnColor076

func PrintlnColor076(str string)

PrintlnColor076 wraps Color076() and fmt.Println().

func PrintlnColor077

func PrintlnColor077(str string)

PrintlnColor077 wraps Color077() and fmt.Println().

func PrintlnColor078

func PrintlnColor078(str string)

PrintlnColor078 wraps Color078() and fmt.Println().

func PrintlnColor079

func PrintlnColor079(str string)

PrintlnColor079 wraps Color079() and fmt.Println().

func PrintlnColor080

func PrintlnColor080(str string)

PrintlnColor080 wraps Color080() and fmt.Println().

func PrintlnColor081

func PrintlnColor081(str string)

PrintlnColor081 wraps Color081() and fmt.Println().

func PrintlnColor082

func PrintlnColor082(str string)

PrintlnColor082 wraps Color082() and fmt.Println().

func PrintlnColor083

func PrintlnColor083(str string)

PrintlnColor083 wraps Color083() and fmt.Println().

func PrintlnColor084

func PrintlnColor084(str string)

PrintlnColor084 wraps Color084() and fmt.Println().

func PrintlnColor085

func PrintlnColor085(str string)

PrintlnColor085 wraps Color085() and fmt.Println().

func PrintlnColor086

func PrintlnColor086(str string)

PrintlnColor086 wraps Color086() and fmt.Println().

func PrintlnColor087

func PrintlnColor087(str string)

PrintlnColor087 wraps Color087() and fmt.Println().

func PrintlnColor088

func PrintlnColor088(str string)

PrintlnColor088 wraps Color088() and fmt.Println().

func PrintlnColor089

func PrintlnColor089(str string)

PrintlnColor089 wraps Color089() and fmt.Println().

func PrintlnColor090

func PrintlnColor090(str string)

PrintlnColor090 wraps Color090() and fmt.Println().

func PrintlnColor091

func PrintlnColor091(str string)

PrintlnColor091 wraps Color091() and fmt.Println().

func PrintlnColor092

func PrintlnColor092(str string)

PrintlnColor092 wraps Color092() and fmt.Println().

func PrintlnColor093

func PrintlnColor093(str string)

PrintlnColor093 wraps Color093() and fmt.Println().

func PrintlnColor094

func PrintlnColor094(str string)

PrintlnColor094 wraps Color094() and fmt.Println().

func PrintlnColor095

func PrintlnColor095(str string)

PrintlnColor095 wraps Color095() and fmt.Println().

func PrintlnColor096

func PrintlnColor096(str string)

PrintlnColor096 wraps Color096() and fmt.Println().

func PrintlnColor097

func PrintlnColor097(str string)

PrintlnColor097 wraps Color097() and fmt.Println().

func PrintlnColor098

func PrintlnColor098(str string)

PrintlnColor098 wraps Color098() and fmt.Println().

func PrintlnColor099

func PrintlnColor099(str string)

PrintlnColor099 wraps Color099() and fmt.Println().

func PrintlnColor100

func PrintlnColor100(str string)

PrintlnColor100 wraps Color100() and fmt.Println().

func PrintlnColor101

func PrintlnColor101(str string)

PrintlnColor101 wraps Color101() and fmt.Println().

func PrintlnColor102

func PrintlnColor102(str string)

PrintlnColor102 wraps Color102() and fmt.Println().

func PrintlnColor103

func PrintlnColor103(str string)

PrintlnColor103 wraps Color103() and fmt.Println().

func PrintlnColor104

func PrintlnColor104(str string)

PrintlnColor104 wraps Color104() and fmt.Println().

func PrintlnColor105

func PrintlnColor105(str string)

PrintlnColor105 wraps Color105() and fmt.Println().

func PrintlnColor106

func PrintlnColor106(str string)

PrintlnColor106 wraps Color106() and fmt.Println().

func PrintlnColor107

func PrintlnColor107(str string)

PrintlnColor107 wraps Color107() and fmt.Println().

func PrintlnColor108

func PrintlnColor108(str string)

PrintlnColor108 wraps Color108() and fmt.Println().

func PrintlnColor109

func PrintlnColor109(str string)

PrintlnColor109 wraps Color109() and fmt.Println().

func PrintlnColor110

func PrintlnColor110(str string)

PrintlnColor110 wraps Color110() and fmt.Println().

func PrintlnColor111

func PrintlnColor111(str string)

PrintlnColor111 wraps Color111() and fmt.Println().

func PrintlnColor112

func PrintlnColor112(str string)

PrintlnColor112 wraps Color112() and fmt.Println().

func PrintlnColor113

func PrintlnColor113(str string)

PrintlnColor113 wraps Color113() and fmt.Println().

func PrintlnColor114

func PrintlnColor114(str string)

PrintlnColor114 wraps Color114() and fmt.Println().

func PrintlnColor115

func PrintlnColor115(str string)

PrintlnColor115 wraps Color115() and fmt.Println().

func PrintlnColor116

func PrintlnColor116(str string)

PrintlnColor116 wraps Color116() and fmt.Println().

func PrintlnColor117

func PrintlnColor117(str string)

PrintlnColor117 wraps Color117() and fmt.Println().

func PrintlnColor118

func PrintlnColor118(str string)

PrintlnColor118 wraps Color118() and fmt.Println().

func PrintlnColor119

func PrintlnColor119(str string)

PrintlnColor119 wraps Color119() and fmt.Println().

func PrintlnColor120

func PrintlnColor120(str string)

PrintlnColor120 wraps Color120() and fmt.Println().

func PrintlnColor121

func PrintlnColor121(str string)

PrintlnColor121 wraps Color121() and fmt.Println().

func PrintlnColor122

func PrintlnColor122(str string)

PrintlnColor122 wraps Color122() and fmt.Println().

func PrintlnColor123

func PrintlnColor123(str string)

PrintlnColor123 wraps Color123() and fmt.Println().

func PrintlnColor124

func PrintlnColor124(str string)

PrintlnColor124 wraps Color124() and fmt.Println().

func PrintlnColor125

func PrintlnColor125(str string)

PrintlnColor125 wraps Color125() and fmt.Println().

func PrintlnColor126

func PrintlnColor126(str string)

PrintlnColor126 wraps Color126() and fmt.Println().

func PrintlnColor127

func PrintlnColor127(str string)

PrintlnColor127 wraps Color127() and fmt.Println().

func PrintlnColor128

func PrintlnColor128(str string)

PrintlnColor128 wraps Color128() and fmt.Println().

func PrintlnColor129

func PrintlnColor129(str string)

PrintlnColor129 wraps Color129() and fmt.Println().

func PrintlnColor130

func PrintlnColor130(str string)

PrintlnColor130 wraps Color130() and fmt.Println().

func PrintlnColor131

func PrintlnColor131(str string)

PrintlnColor131 wraps Color131() and fmt.Println().

func PrintlnColor132

func PrintlnColor132(str string)

PrintlnColor132 wraps Color132() and fmt.Println().

func PrintlnColor133

func PrintlnColor133(str string)

PrintlnColor133 wraps Color133() and fmt.Println().

func PrintlnColor134

func PrintlnColor134(str string)

PrintlnColor134 wraps Color134() and fmt.Println().

func PrintlnColor135

func PrintlnColor135(str string)

PrintlnColor135 wraps Color135() and fmt.Println().

func PrintlnColor136

func PrintlnColor136(str string)

PrintlnColor136 wraps Color136() and fmt.Println().

func PrintlnColor137

func PrintlnColor137(str string)

PrintlnColor137 wraps Color137() and fmt.Println().

func PrintlnColor138

func PrintlnColor138(str string)

PrintlnColor138 wraps Color138() and fmt.Println().

func PrintlnColor139

func PrintlnColor139(str string)

PrintlnColor139 wraps Color139() and fmt.Println().

func PrintlnColor140

func PrintlnColor140(str string)

PrintlnColor140 wraps Color140() and fmt.Println().

func PrintlnColor141

func PrintlnColor141(str string)

PrintlnColor141 wraps Color141() and fmt.Println().

func PrintlnColor142

func PrintlnColor142(str string)

PrintlnColor142 wraps Color142() and fmt.Println().

func PrintlnColor143

func PrintlnColor143(str string)

PrintlnColor143 wraps Color143() and fmt.Println().

func PrintlnColor144

func PrintlnColor144(str string)

PrintlnColor144 wraps Color144() and fmt.Println().

func PrintlnColor145

func PrintlnColor145(str string)

PrintlnColor145 wraps Color145() and fmt.Println().

func PrintlnColor146

func PrintlnColor146(str string)

PrintlnColor146 wraps Color146() and fmt.Println().

func PrintlnColor147

func PrintlnColor147(str string)

PrintlnColor147 wraps Color147() and fmt.Println().

func PrintlnColor148

func PrintlnColor148(str string)

PrintlnColor148 wraps Color148() and fmt.Println().

func PrintlnColor149

func PrintlnColor149(str string)

PrintlnColor149 wraps Color149() and fmt.Println().

func PrintlnColor150

func PrintlnColor150(str string)

PrintlnColor150 wraps Color150() and fmt.Println().

func PrintlnColor151

func PrintlnColor151(str string)

PrintlnColor151 wraps Color151() and fmt.Println().

func PrintlnColor152

func PrintlnColor152(str string)

PrintlnColor152 wraps Color152() and fmt.Println().

func PrintlnColor153

func PrintlnColor153(str string)

PrintlnColor153 wraps Color153() and fmt.Println().

func PrintlnColor154

func PrintlnColor154(str string)

PrintlnColor154 wraps Color154() and fmt.Println().

func PrintlnColor155

func PrintlnColor155(str string)

PrintlnColor155 wraps Color155() and fmt.Println().

func PrintlnColor156

func PrintlnColor156(str string)

PrintlnColor156 wraps Color156() and fmt.Println().

func PrintlnColor157

func PrintlnColor157(str string)

PrintlnColor157 wraps Color157() and fmt.Println().

func PrintlnColor158

func PrintlnColor158(str string)

PrintlnColor158 wraps Color158() and fmt.Println().

func PrintlnColor159

func PrintlnColor159(str string)

PrintlnColor159 wraps Color159() and fmt.Println().

func PrintlnColor160

func PrintlnColor160(str string)

PrintlnColor160 wraps Color160() and fmt.Println().

func PrintlnColor161

func PrintlnColor161(str string)

PrintlnColor161 wraps Color161() and fmt.Println().

func PrintlnColor162

func PrintlnColor162(str string)

PrintlnColor162 wraps Color162() and fmt.Println().

func PrintlnColor163

func PrintlnColor163(str string)

PrintlnColor163 wraps Color163() and fmt.Println().

func PrintlnColor164

func PrintlnColor164(str string)

PrintlnColor164 wraps Color164() and fmt.Println().

func PrintlnColor165

func PrintlnColor165(str string)

PrintlnColor165 wraps Color165() and fmt.Println().

func PrintlnColor166

func PrintlnColor166(str string)

PrintlnColor166 wraps Color166() and fmt.Println().

func PrintlnColor167

func PrintlnColor167(str string)

PrintlnColor167 wraps Color167() and fmt.Println().

func PrintlnColor168

func PrintlnColor168(str string)

PrintlnColor168 wraps Color168() and fmt.Println().

func PrintlnColor169

func PrintlnColor169(str string)

PrintlnColor169 wraps Color169() and fmt.Println().

func PrintlnColor170

func PrintlnColor170(str string)

PrintlnColor170 wraps Color170() and fmt.Println().

func PrintlnColor171

func PrintlnColor171(str string)

PrintlnColor171 wraps Color171() and fmt.Println().

func PrintlnColor172

func PrintlnColor172(str string)

PrintlnColor172 wraps Color172() and fmt.Println().

func PrintlnColor173

func PrintlnColor173(str string)

PrintlnColor173 wraps Color173() and fmt.Println().

func PrintlnColor174

func PrintlnColor174(str string)

PrintlnColor174 wraps Color174() and fmt.Println().

func PrintlnColor175

func PrintlnColor175(str string)

PrintlnColor175 wraps Color175() and fmt.Println().

func PrintlnColor176

func PrintlnColor176(str string)

PrintlnColor176 wraps Color176() and fmt.Println().

func PrintlnColor177

func PrintlnColor177(str string)

PrintlnColor177 wraps Color177() and fmt.Println().

func PrintlnColor178

func PrintlnColor178(str string)

PrintlnColor178 wraps Color178() and fmt.Println().

func PrintlnColor179

func PrintlnColor179(str string)

PrintlnColor179 wraps Color179() and fmt.Println().

func PrintlnColor180

func PrintlnColor180(str string)

PrintlnColor180 wraps Color180() and fmt.Println().

func PrintlnColor181

func PrintlnColor181(str string)

PrintlnColor181 wraps Color181() and fmt.Println().

func PrintlnColor182

func PrintlnColor182(str string)

PrintlnColor182 wraps Color182() and fmt.Println().

func PrintlnColor183

func PrintlnColor183(str string)

PrintlnColor183 wraps Color183() and fmt.Println().

func PrintlnColor184

func PrintlnColor184(str string)

PrintlnColor184 wraps Color184() and fmt.Println().

func PrintlnColor185

func PrintlnColor185(str string)

PrintlnColor185 wraps Color185() and fmt.Println().

func PrintlnColor186

func PrintlnColor186(str string)

PrintlnColor186 wraps Color186() and fmt.Println().

func PrintlnColor187

func PrintlnColor187(str string)

PrintlnColor187 wraps Color187() and fmt.Println().

func PrintlnColor188

func PrintlnColor188(str string)

PrintlnColor188 wraps Color188() and fmt.Println().

func PrintlnColor189

func PrintlnColor189(str string)

PrintlnColor189 wraps Color189() and fmt.Println().

func PrintlnColor190

func PrintlnColor190(str string)

PrintlnColor190 wraps Color190() and fmt.Println().

func PrintlnColor191

func PrintlnColor191(str string)

PrintlnColor191 wraps Color191() and fmt.Println().

func PrintlnColor192

func PrintlnColor192(str string)

PrintlnColor192 wraps Color192() and fmt.Println().

func PrintlnColor193

func PrintlnColor193(str string)

PrintlnColor193 wraps Color193() and fmt.Println().

func PrintlnColor194

func PrintlnColor194(str string)

PrintlnColor194 wraps Color194() and fmt.Println().

func PrintlnColor195

func PrintlnColor195(str string)

PrintlnColor195 wraps Color195() and fmt.Println().

func PrintlnColor196

func PrintlnColor196(str string)

PrintlnColor196 wraps Color196() and fmt.Println().

func PrintlnColor197

func PrintlnColor197(str string)

PrintlnColor197 wraps Color197() and fmt.Println().

func PrintlnColor198

func PrintlnColor198(str string)

PrintlnColor198 wraps Color198() and fmt.Println().

func PrintlnColor199

func PrintlnColor199(str string)

PrintlnColor199 wraps Color199() and fmt.Println().

func PrintlnColor200

func PrintlnColor200(str string)

PrintlnColor200 wraps Color200() and fmt.Println().

func PrintlnColor201

func PrintlnColor201(str string)

PrintlnColor201 wraps Color201() and fmt.Println().

func PrintlnColor202

func PrintlnColor202(str string)

PrintlnColor202 wraps Color202() and fmt.Println().

func PrintlnColor203

func PrintlnColor203(str string)

PrintlnColor203 wraps Color203() and fmt.Println().

func PrintlnColor204

func PrintlnColor204(str string)

PrintlnColor204 wraps Color204() and fmt.Println().

func PrintlnColor205

func PrintlnColor205(str string)

PrintlnColor205 wraps Color205() and fmt.Println().

func PrintlnColor206

func PrintlnColor206(str string)

PrintlnColor206 wraps Color206() and fmt.Println().

func PrintlnColor207

func PrintlnColor207(str string)

PrintlnColor207 wraps Color207() and fmt.Println().

func PrintlnColor208

func PrintlnColor208(str string)

PrintlnColor208 wraps Color208() and fmt.Println().

func PrintlnColor209

func PrintlnColor209(str string)

PrintlnColor209 wraps Color209() and fmt.Println().

func PrintlnColor210

func PrintlnColor210(str string)

PrintlnColor210 wraps Color210() and fmt.Println().

func PrintlnColor211

func PrintlnColor211(str string)

PrintlnColor211 wraps Color211() and fmt.Println().

func PrintlnColor212

func PrintlnColor212(str string)

PrintlnColor212 wraps Color212() and fmt.Println().

func PrintlnColor213

func PrintlnColor213(str string)

PrintlnColor213 wraps Color213() and fmt.Println().

func PrintlnColor214

func PrintlnColor214(str string)

PrintlnColor214 wraps Color214() and fmt.Println().

func PrintlnColor215

func PrintlnColor215(str string)

PrintlnColor215 wraps Color215() and fmt.Println().

func PrintlnColor216

func PrintlnColor216(str string)

PrintlnColor216 wraps Color216() and fmt.Println().

func PrintlnColor217

func PrintlnColor217(str string)

PrintlnColor217 wraps Color217() and fmt.Println().

func PrintlnColor218

func PrintlnColor218(str string)

PrintlnColor218 wraps Color218() and fmt.Println().

func PrintlnColor219

func PrintlnColor219(str string)

PrintlnColor219 wraps Color219() and fmt.Println().

func PrintlnColor220

func PrintlnColor220(str string)

PrintlnColor220 wraps Color220() and fmt.Println().

func PrintlnColor221

func PrintlnColor221(str string)

PrintlnColor221 wraps Color221() and fmt.Println().

func PrintlnColor222

func PrintlnColor222(str string)

PrintlnColor222 wraps Color222() and fmt.Println().

func PrintlnColor223

func PrintlnColor223(str string)

PrintlnColor223 wraps Color223() and fmt.Println().

func PrintlnColor224

func PrintlnColor224(str string)

PrintlnColor224 wraps Color224() and fmt.Println().

func PrintlnColor225

func PrintlnColor225(str string)

PrintlnColor225 wraps Color225() and fmt.Println().

func PrintlnColor226

func PrintlnColor226(str string)

PrintlnColor226 wraps Color226() and fmt.Println().

func PrintlnColor227

func PrintlnColor227(str string)

PrintlnColor227 wraps Color227() and fmt.Println().

func PrintlnColor228

func PrintlnColor228(str string)

PrintlnColor228 wraps Color228() and fmt.Println().

func PrintlnColor229

func PrintlnColor229(str string)

PrintlnColor229 wraps Color229() and fmt.Println().

func PrintlnColor230

func PrintlnColor230(str string)

PrintlnColor230 wraps Color230() and fmt.Println().

func PrintlnColor231

func PrintlnColor231(str string)

PrintlnColor231 wraps Color231() and fmt.Println().

func PrintlnColor232

func PrintlnColor232(str string)

PrintlnColor232 wraps Color232() and fmt.Println().

func PrintlnColor233

func PrintlnColor233(str string)

PrintlnColor233 wraps Color233() and fmt.Println().

func PrintlnColor234

func PrintlnColor234(str string)

PrintlnColor234 wraps Color234() and fmt.Println().

func PrintlnColor235

func PrintlnColor235(str string)

PrintlnColor235 wraps Color235() and fmt.Println().

func PrintlnColor236

func PrintlnColor236(str string)

PrintlnColor236 wraps Color236() and fmt.Println().

func PrintlnColor237

func PrintlnColor237(str string)

PrintlnColor237 wraps Color237() and fmt.Println().

func PrintlnColor238

func PrintlnColor238(str string)

PrintlnColor238 wraps Color238() and fmt.Println().

func PrintlnColor239

func PrintlnColor239(str string)

PrintlnColor239 wraps Color239() and fmt.Println().

func PrintlnColor240

func PrintlnColor240(str string)

PrintlnColor240 wraps Color240() and fmt.Println().

func PrintlnColor241

func PrintlnColor241(str string)

PrintlnColor241 wraps Color241() and fmt.Println().

func PrintlnColor242

func PrintlnColor242(str string)

PrintlnColor242 wraps Color242() and fmt.Println().

func PrintlnColor243

func PrintlnColor243(str string)

PrintlnColor243 wraps Color243() and fmt.Println().

func PrintlnColor244

func PrintlnColor244(str string)

PrintlnColor244 wraps Color244() and fmt.Println().

func PrintlnColor245

func PrintlnColor245(str string)

PrintlnColor245 wraps Color245() and fmt.Println().

func PrintlnColor246

func PrintlnColor246(str string)

PrintlnColor246 wraps Color246() and fmt.Println().

func PrintlnColor247

func PrintlnColor247(str string)

PrintlnColor247 wraps Color247() and fmt.Println().

func PrintlnColor248

func PrintlnColor248(str string)

PrintlnColor248 wraps Color248() and fmt.Println().

func PrintlnColor249

func PrintlnColor249(str string)

PrintlnColor249 wraps Color249() and fmt.Println().

func PrintlnColor250

func PrintlnColor250(str string)

PrintlnColor250 wraps Color250() and fmt.Println().

func PrintlnColor251

func PrintlnColor251(str string)

PrintlnColor251 wraps Color251() and fmt.Println().

func PrintlnColor252

func PrintlnColor252(str string)

PrintlnColor252 wraps Color252() and fmt.Println().

func PrintlnColor253

func PrintlnColor253(str string)

PrintlnColor253 wraps Color253() and fmt.Println().

func PrintlnColor254

func PrintlnColor254(str string)

PrintlnColor254 wraps Color254() and fmt.Println().

func PrintlnColor255

func PrintlnColor255(str string)

PrintlnColor255 wraps Color255() and fmt.Println().

func PrintlnConceal

func PrintlnConceal(str string)

PrintlnConceal wraps Conceal() and fmt.Println().

func PrintlnCrossedOut

func PrintlnCrossedOut(str string)

PrintlnCrossedOut wraps CrossedOut() and fmt.Println().

func PrintlnCyan

func PrintlnCyan(str string)

PrintlnCyan wraps Cyan() and fmt.Println().

func PrintlnDefault

func PrintlnDefault(str string)

PrintlnDefault wraps Default() and fmt.Println().

func PrintlnDim

func PrintlnDim(str string)

PrintlnDim wraps Dim() and fmt.Println().

func PrintlnFaint

func PrintlnFaint(str string)

PrintlnFaint wraps Faint() and fmt.Println().

func PrintlnFraktur

func PrintlnFraktur(str string)

PrintlnFraktur wraps Fraktur() and fmt.Println().

func PrintlnGreen

func PrintlnGreen(str string)

PrintlnGreen wraps Green() and fmt.Println().

func PrintlnHex

func PrintlnHex(hex string, str string)

PrintlnHex wraps Hex() and fmt.Println().

func PrintlnHide

func PrintlnHide(str string)

PrintlnHide wraps Hide() and fmt.Println().

func PrintlnHilight

func PrintlnHilight(code string, str string)

PrintlnHilight wraps Hilight() and fmt.Println().

func PrintlnHilights

func PrintlnHilights(codes []string, str string)

PrintlnHilights wraps Hilights() and fmt.Println().

func PrintlnInverse

func PrintlnInverse(str string)

PrintlnInverse wraps Inverse() and fmt.Println().

func PrintlnItalic

func PrintlnItalic(str string)

PrintlnItalic wraps Italic() and fmt.Println().

func PrintlnLightBlack

func PrintlnLightBlack(str string)

PrintlnLightBlack wraps LightBlack() and fmt.Println().

func PrintlnLightBlue

func PrintlnLightBlue(str string)

PrintlnLightBlue wraps LightBlue() and fmt.Println().

func PrintlnLightCyan

func PrintlnLightCyan(str string)

PrintlnLightCyan wraps LightCyan() and fmt.Println().

func PrintlnLightGreen

func PrintlnLightGreen(str string)

PrintlnLightGreen wraps LightGreen() and fmt.Println().

func PrintlnLightMagenta

func PrintlnLightMagenta(str string)

PrintlnLightMagenta wraps LightMagenta() and fmt.Println().

func PrintlnLightRed

func PrintlnLightRed(str string)

PrintlnLightRed wraps LightRed() and fmt.Println().

func PrintlnLightWhite

func PrintlnLightWhite(str string)

PrintlnLightWhite wraps LightWhite() and fmt.Println().

func PrintlnLightYellow

func PrintlnLightYellow(str string)

PrintlnLightYellow wraps LightYellow() and fmt.Println().

func PrintlnMagenta

func PrintlnMagenta(str string)

PrintlnMagenta wraps Magenta() and fmt.Println().

func PrintlnNegative

func PrintlnNegative(str string)

PrintlnNegative wraps Negative() and fmt.Println().

func PrintlnNoBlink(str string)

PrintlnNoBlink wraps NoBlink() and fmt.Println().

func PrintlnNoBlinkRapid

func PrintlnNoBlinkRapid(str string)

PrintlnNoBlinkRapid wraps NoBlinkRapid() and fmt.Println().

func PrintlnNoBlinkSlow

func PrintlnNoBlinkSlow(str string)

PrintlnNoBlinkSlow wraps NoBlinkSlow() and fmt.Println().

func PrintlnNoBold

func PrintlnNoBold(str string)

PrintlnNoBold wraps NoBold() and fmt.Println().

func PrintlnNoConceal

func PrintlnNoConceal(str string)

PrintlnNoConceal wraps NoConceal() and fmt.Println().

func PrintlnNoCrossedOut

func PrintlnNoCrossedOut(str string)

PrintlnNoCrossedOut wraps NoCrossedOut() and fmt.Println().

func PrintlnNoDim

func PrintlnNoDim(str string)

PrintlnNoDim wraps NoDim() and fmt.Println().

func PrintlnNoFaint

func PrintlnNoFaint(str string)

PrintlnNoFaint wraps NoFaint() and fmt.Println().

func PrintlnNoFraktur

func PrintlnNoFraktur(str string)

PrintlnNoFraktur wraps NoFraktur() and fmt.Println().

func PrintlnNoHide

func PrintlnNoHide(str string)

PrintlnNoHide wraps NoHide() and fmt.Println().

func PrintlnNoInverse

func PrintlnNoInverse(str string)

PrintlnNoInverse wraps NoInverse() and fmt.Println().

func PrintlnNoItalic

func PrintlnNoItalic(str string)

PrintlnNoItalic wraps NoItalic() and fmt.Println().

func PrintlnNoNegative

func PrintlnNoNegative(str string)

PrintlnNoNegative wraps NoNegative() and fmt.Println().

func PrintlnNoStrikethrough

func PrintlnNoStrikethrough(str string)

PrintlnNoStrikethrough wraps NoStrikethrough() and fmt.Println().

func PrintlnNoSwap

func PrintlnNoSwap(str string)

PrintlnNoSwap wraps NoSwap() and fmt.Println().

func PrintlnNoUnderline

func PrintlnNoUnderline(str string)

PrintlnNoUnderline wraps NoUnderline() and fmt.Println().

func PrintlnNormal

func PrintlnNormal(str string)

PrintlnNormal wraps Normal() and fmt.Println().

func PrintlnOnBlack

func PrintlnOnBlack(str string)

PrintlnOnBlack wraps OnBlack() and fmt.Println().

func PrintlnOnBlue

func PrintlnOnBlue(str string)

PrintlnOnBlue wraps OnBlue() and fmt.Println().

func PrintlnOnColor000

func PrintlnOnColor000(str string)

PrintlnOnColor000 wraps OnColor000() and fmt.Println().

func PrintlnOnColor001

func PrintlnOnColor001(str string)

PrintlnOnColor001 wraps OnColor001() and fmt.Println().

func PrintlnOnColor002

func PrintlnOnColor002(str string)

PrintlnOnColor002 wraps OnColor002() and fmt.Println().

func PrintlnOnColor003

func PrintlnOnColor003(str string)

PrintlnOnColor003 wraps OnColor003() and fmt.Println().

func PrintlnOnColor004

func PrintlnOnColor004(str string)

PrintlnOnColor004 wraps OnColor004() and fmt.Println().

func PrintlnOnColor005

func PrintlnOnColor005(str string)

PrintlnOnColor005 wraps OnColor005() and fmt.Println().

func PrintlnOnColor006

func PrintlnOnColor006(str string)

PrintlnOnColor006 wraps OnColor006() and fmt.Println().

func PrintlnOnColor007

func PrintlnOnColor007(str string)

PrintlnOnColor007 wraps OnColor007() and fmt.Println().

func PrintlnOnColor008

func PrintlnOnColor008(str string)

PrintlnOnColor008 wraps OnColor008() and fmt.Println().

func PrintlnOnColor009

func PrintlnOnColor009(str string)

PrintlnOnColor009 wraps OnColor009() and fmt.Println().

func PrintlnOnColor010

func PrintlnOnColor010(str string)

PrintlnOnColor010 wraps OnColor010() and fmt.Println().

func PrintlnOnColor011

func PrintlnOnColor011(str string)

PrintlnOnColor011 wraps OnColor011() and fmt.Println().

func PrintlnOnColor012

func PrintlnOnColor012(str string)

PrintlnOnColor012 wraps OnColor012() and fmt.Println().

func PrintlnOnColor013

func PrintlnOnColor013(str string)

PrintlnOnColor013 wraps OnColor013() and fmt.Println().

func PrintlnOnColor014

func PrintlnOnColor014(str string)

PrintlnOnColor014 wraps OnColor014() and fmt.Println().

func PrintlnOnColor015

func PrintlnOnColor015(str string)

PrintlnOnColor015 wraps OnColor015() and fmt.Println().

func PrintlnOnColor016

func PrintlnOnColor016(str string)

PrintlnOnColor016 wraps OnColor016() and fmt.Println().

func PrintlnOnColor017

func PrintlnOnColor017(str string)

PrintlnOnColor017 wraps OnColor017() and fmt.Println().

func PrintlnOnColor018

func PrintlnOnColor018(str string)

PrintlnOnColor018 wraps OnColor018() and fmt.Println().

func PrintlnOnColor019

func PrintlnOnColor019(str string)

PrintlnOnColor019 wraps OnColor019() and fmt.Println().

func PrintlnOnColor020

func PrintlnOnColor020(str string)

PrintlnOnColor020 wraps OnColor020() and fmt.Println().

func PrintlnOnColor021

func PrintlnOnColor021(str string)

PrintlnOnColor021 wraps OnColor021() and fmt.Println().

func PrintlnOnColor022

func PrintlnOnColor022(str string)

PrintlnOnColor022 wraps OnColor022() and fmt.Println().

func PrintlnOnColor023

func PrintlnOnColor023(str string)

PrintlnOnColor023 wraps OnColor023() and fmt.Println().

func PrintlnOnColor024

func PrintlnOnColor024(str string)

PrintlnOnColor024 wraps OnColor024() and fmt.Println().

func PrintlnOnColor025

func PrintlnOnColor025(str string)

PrintlnOnColor025 wraps OnColor025() and fmt.Println().

func PrintlnOnColor026

func PrintlnOnColor026(str string)

PrintlnOnColor026 wraps OnColor026() and fmt.Println().

func PrintlnOnColor027

func PrintlnOnColor027(str string)

PrintlnOnColor027 wraps OnColor027() and fmt.Println().

func PrintlnOnColor028

func PrintlnOnColor028(str string)

PrintlnOnColor028 wraps OnColor028() and fmt.Println().

func PrintlnOnColor029

func PrintlnOnColor029(str string)

PrintlnOnColor029 wraps OnColor029() and fmt.Println().

func PrintlnOnColor030

func PrintlnOnColor030(str string)

PrintlnOnColor030 wraps OnColor030() and fmt.Println().

func PrintlnOnColor031

func PrintlnOnColor031(str string)

PrintlnOnColor031 wraps OnColor031() and fmt.Println().

func PrintlnOnColor032

func PrintlnOnColor032(str string)

PrintlnOnColor032 wraps OnColor032() and fmt.Println().

func PrintlnOnColor033

func PrintlnOnColor033(str string)

PrintlnOnColor033 wraps OnColor033() and fmt.Println().

func PrintlnOnColor034

func PrintlnOnColor034(str string)

PrintlnOnColor034 wraps OnColor034() and fmt.Println().

func PrintlnOnColor035

func PrintlnOnColor035(str string)

PrintlnOnColor035 wraps OnColor035() and fmt.Println().

func PrintlnOnColor036

func PrintlnOnColor036(str string)

PrintlnOnColor036 wraps OnColor036() and fmt.Println().

func PrintlnOnColor037

func PrintlnOnColor037(str string)

PrintlnOnColor037 wraps OnColor037() and fmt.Println().

func PrintlnOnColor038

func PrintlnOnColor038(str string)

PrintlnOnColor038 wraps OnColor038() and fmt.Println().

func PrintlnOnColor039

func PrintlnOnColor039(str string)

PrintlnOnColor039 wraps OnColor039() and fmt.Println().

func PrintlnOnColor040

func PrintlnOnColor040(str string)

PrintlnOnColor040 wraps OnColor040() and fmt.Println().

func PrintlnOnColor041

func PrintlnOnColor041(str string)

PrintlnOnColor041 wraps OnColor041() and fmt.Println().

func PrintlnOnColor042

func PrintlnOnColor042(str string)

PrintlnOnColor042 wraps OnColor042() and fmt.Println().

func PrintlnOnColor043

func PrintlnOnColor043(str string)

PrintlnOnColor043 wraps OnColor043() and fmt.Println().

func PrintlnOnColor044

func PrintlnOnColor044(str string)

PrintlnOnColor044 wraps OnColor044() and fmt.Println().

func PrintlnOnColor045

func PrintlnOnColor045(str string)

PrintlnOnColor045 wraps OnColor045() and fmt.Println().

func PrintlnOnColor046

func PrintlnOnColor046(str string)

PrintlnOnColor046 wraps OnColor046() and fmt.Println().

func PrintlnOnColor047

func PrintlnOnColor047(str string)

PrintlnOnColor047 wraps OnColor047() and fmt.Println().

func PrintlnOnColor048

func PrintlnOnColor048(str string)

PrintlnOnColor048 wraps OnColor048() and fmt.Println().

func PrintlnOnColor049

func PrintlnOnColor049(str string)

PrintlnOnColor049 wraps OnColor049() and fmt.Println().

func PrintlnOnColor050

func PrintlnOnColor050(str string)

PrintlnOnColor050 wraps OnColor050() and fmt.Println().

func PrintlnOnColor051

func PrintlnOnColor051(str string)

PrintlnOnColor051 wraps OnColor051() and fmt.Println().

func PrintlnOnColor052

func PrintlnOnColor052(str string)

PrintlnOnColor052 wraps OnColor052() and fmt.Println().

func PrintlnOnColor053

func PrintlnOnColor053(str string)

PrintlnOnColor053 wraps OnColor053() and fmt.Println().

func PrintlnOnColor054

func PrintlnOnColor054(str string)

PrintlnOnColor054 wraps OnColor054() and fmt.Println().

func PrintlnOnColor055

func PrintlnOnColor055(str string)

PrintlnOnColor055 wraps OnColor055() and fmt.Println().

func PrintlnOnColor056

func PrintlnOnColor056(str string)

PrintlnOnColor056 wraps OnColor056() and fmt.Println().

func PrintlnOnColor057

func PrintlnOnColor057(str string)

PrintlnOnColor057 wraps OnColor057() and fmt.Println().

func PrintlnOnColor058

func PrintlnOnColor058(str string)

PrintlnOnColor058 wraps OnColor058() and fmt.Println().

func PrintlnOnColor059

func PrintlnOnColor059(str string)

PrintlnOnColor059 wraps OnColor059() and fmt.Println().

func PrintlnOnColor060

func PrintlnOnColor060(str string)

PrintlnOnColor060 wraps OnColor060() and fmt.Println().

func PrintlnOnColor061

func PrintlnOnColor061(str string)

PrintlnOnColor061 wraps OnColor061() and fmt.Println().

func PrintlnOnColor062

func PrintlnOnColor062(str string)

PrintlnOnColor062 wraps OnColor062() and fmt.Println().

func PrintlnOnColor063

func PrintlnOnColor063(str string)

PrintlnOnColor063 wraps OnColor063() and fmt.Println().

func PrintlnOnColor064

func PrintlnOnColor064(str string)

PrintlnOnColor064 wraps OnColor064() and fmt.Println().

func PrintlnOnColor065

func PrintlnOnColor065(str string)

PrintlnOnColor065 wraps OnColor065() and fmt.Println().

func PrintlnOnColor066

func PrintlnOnColor066(str string)

PrintlnOnColor066 wraps OnColor066() and fmt.Println().

func PrintlnOnColor067

func PrintlnOnColor067(str string)

PrintlnOnColor067 wraps OnColor067() and fmt.Println().

func PrintlnOnColor068

func PrintlnOnColor068(str string)

PrintlnOnColor068 wraps OnColor068() and fmt.Println().

func PrintlnOnColor069

func PrintlnOnColor069(str string)

PrintlnOnColor069 wraps OnColor069() and fmt.Println().

func PrintlnOnColor070

func PrintlnOnColor070(str string)

PrintlnOnColor070 wraps OnColor070() and fmt.Println().

func PrintlnOnColor071

func PrintlnOnColor071(str string)

PrintlnOnColor071 wraps OnColor071() and fmt.Println().

func PrintlnOnColor072

func PrintlnOnColor072(str string)

PrintlnOnColor072 wraps OnColor072() and fmt.Println().

func PrintlnOnColor073

func PrintlnOnColor073(str string)

PrintlnOnColor073 wraps OnColor073() and fmt.Println().

func PrintlnOnColor074

func PrintlnOnColor074(str string)

PrintlnOnColor074 wraps OnColor074() and fmt.Println().

func PrintlnOnColor075

func PrintlnOnColor075(str string)

PrintlnOnColor075 wraps OnColor075() and fmt.Println().

func PrintlnOnColor076

func PrintlnOnColor076(str string)

PrintlnOnColor076 wraps OnColor076() and fmt.Println().

func PrintlnOnColor077

func PrintlnOnColor077(str string)

PrintlnOnColor077 wraps OnColor077() and fmt.Println().

func PrintlnOnColor078

func PrintlnOnColor078(str string)

PrintlnOnColor078 wraps OnColor078() and fmt.Println().

func PrintlnOnColor079

func PrintlnOnColor079(str string)

PrintlnOnColor079 wraps OnColor079() and fmt.Println().

func PrintlnOnColor080

func PrintlnOnColor080(str string)

PrintlnOnColor080 wraps OnColor080() and fmt.Println().

func PrintlnOnColor081

func PrintlnOnColor081(str string)

PrintlnOnColor081 wraps OnColor081() and fmt.Println().

func PrintlnOnColor082

func PrintlnOnColor082(str string)

PrintlnOnColor082 wraps OnColor082() and fmt.Println().

func PrintlnOnColor083

func PrintlnOnColor083(str string)

PrintlnOnColor083 wraps OnColor083() and fmt.Println().

func PrintlnOnColor084

func PrintlnOnColor084(str string)

PrintlnOnColor084 wraps OnColor084() and fmt.Println().

func PrintlnOnColor085

func PrintlnOnColor085(str string)

PrintlnOnColor085 wraps OnColor085() and fmt.Println().

func PrintlnOnColor086

func PrintlnOnColor086(str string)

PrintlnOnColor086 wraps OnColor086() and fmt.Println().

func PrintlnOnColor087

func PrintlnOnColor087(str string)

PrintlnOnColor087 wraps OnColor087() and fmt.Println().

func PrintlnOnColor088

func PrintlnOnColor088(str string)

PrintlnOnColor088 wraps OnColor088() and fmt.Println().

func PrintlnOnColor089

func PrintlnOnColor089(str string)

PrintlnOnColor089 wraps OnColor089() and fmt.Println().

func PrintlnOnColor090

func PrintlnOnColor090(str string)

PrintlnOnColor090 wraps OnColor090() and fmt.Println().

func PrintlnOnColor091

func PrintlnOnColor091(str string)

PrintlnOnColor091 wraps OnColor091() and fmt.Println().

func PrintlnOnColor092

func PrintlnOnColor092(str string)

PrintlnOnColor092 wraps OnColor092() and fmt.Println().

func PrintlnOnColor093

func PrintlnOnColor093(str string)

PrintlnOnColor093 wraps OnColor093() and fmt.Println().

func PrintlnOnColor094

func PrintlnOnColor094(str string)

PrintlnOnColor094 wraps OnColor094() and fmt.Println().

func PrintlnOnColor095

func PrintlnOnColor095(str string)

PrintlnOnColor095 wraps OnColor095() and fmt.Println().

func PrintlnOnColor096

func PrintlnOnColor096(str string)

PrintlnOnColor096 wraps OnColor096() and fmt.Println().

func PrintlnOnColor097

func PrintlnOnColor097(str string)

PrintlnOnColor097 wraps OnColor097() and fmt.Println().

func PrintlnOnColor098

func PrintlnOnColor098(str string)

PrintlnOnColor098 wraps OnColor098() and fmt.Println().

func PrintlnOnColor099

func PrintlnOnColor099(str string)

PrintlnOnColor099 wraps OnColor099() and fmt.Println().

func PrintlnOnColor100

func PrintlnOnColor100(str string)

PrintlnOnColor100 wraps OnColor100() and fmt.Println().

func PrintlnOnColor101

func PrintlnOnColor101(str string)

PrintlnOnColor101 wraps OnColor101() and fmt.Println().

func PrintlnOnColor102

func PrintlnOnColor102(str string)

PrintlnOnColor102 wraps OnColor102() and fmt.Println().

func PrintlnOnColor103

func PrintlnOnColor103(str string)

PrintlnOnColor103 wraps OnColor103() and fmt.Println().

func PrintlnOnColor104

func PrintlnOnColor104(str string)

PrintlnOnColor104 wraps OnColor104() and fmt.Println().

func PrintlnOnColor105

func PrintlnOnColor105(str string)

PrintlnOnColor105 wraps OnColor105() and fmt.Println().

func PrintlnOnColor106

func PrintlnOnColor106(str string)

PrintlnOnColor106 wraps OnColor106() and fmt.Println().

func PrintlnOnColor107

func PrintlnOnColor107(str string)

PrintlnOnColor107 wraps OnColor107() and fmt.Println().

func PrintlnOnColor108

func PrintlnOnColor108(str string)

PrintlnOnColor108 wraps OnColor108() and fmt.Println().

func PrintlnOnColor109

func PrintlnOnColor109(str string)

PrintlnOnColor109 wraps OnColor109() and fmt.Println().

func PrintlnOnColor110

func PrintlnOnColor110(str string)

PrintlnOnColor110 wraps OnColor110() and fmt.Println().

func PrintlnOnColor111

func PrintlnOnColor111(str string)

PrintlnOnColor111 wraps OnColor111() and fmt.Println().

func PrintlnOnColor112

func PrintlnOnColor112(str string)

PrintlnOnColor112 wraps OnColor112() and fmt.Println().

func PrintlnOnColor113

func PrintlnOnColor113(str string)

PrintlnOnColor113 wraps OnColor113() and fmt.Println().

func PrintlnOnColor114

func PrintlnOnColor114(str string)

PrintlnOnColor114 wraps OnColor114() and fmt.Println().

func PrintlnOnColor115

func PrintlnOnColor115(str string)

PrintlnOnColor115 wraps OnColor115() and fmt.Println().

func PrintlnOnColor116

func PrintlnOnColor116(str string)

PrintlnOnColor116 wraps OnColor116() and fmt.Println().

func PrintlnOnColor117

func PrintlnOnColor117(str string)

PrintlnOnColor117 wraps OnColor117() and fmt.Println().

func PrintlnOnColor118

func PrintlnOnColor118(str string)

PrintlnOnColor118 wraps OnColor118() and fmt.Println().

func PrintlnOnColor119

func PrintlnOnColor119(str string)

PrintlnOnColor119 wraps OnColor119() and fmt.Println().

func PrintlnOnColor120

func PrintlnOnColor120(str string)

PrintlnOnColor120 wraps OnColor120() and fmt.Println().

func PrintlnOnColor121

func PrintlnOnColor121(str string)

PrintlnOnColor121 wraps OnColor121() and fmt.Println().

func PrintlnOnColor122

func PrintlnOnColor122(str string)

PrintlnOnColor122 wraps OnColor122() and fmt.Println().

func PrintlnOnColor123

func PrintlnOnColor123(str string)

PrintlnOnColor123 wraps OnColor123() and fmt.Println().

func PrintlnOnColor124

func PrintlnOnColor124(str string)

PrintlnOnColor124 wraps OnColor124() and fmt.Println().

func PrintlnOnColor125

func PrintlnOnColor125(str string)

PrintlnOnColor125 wraps OnColor125() and fmt.Println().

func PrintlnOnColor126

func PrintlnOnColor126(str string)

PrintlnOnColor126 wraps OnColor126() and fmt.Println().

func PrintlnOnColor127

func PrintlnOnColor127(str string)

PrintlnOnColor127 wraps OnColor127() and fmt.Println().

func PrintlnOnColor128

func PrintlnOnColor128(str string)

PrintlnOnColor128 wraps OnColor128() and fmt.Println().

func PrintlnOnColor129

func PrintlnOnColor129(str string)

PrintlnOnColor129 wraps OnColor129() and fmt.Println().

func PrintlnOnColor130

func PrintlnOnColor130(str string)

PrintlnOnColor130 wraps OnColor130() and fmt.Println().

func PrintlnOnColor131

func PrintlnOnColor131(str string)

PrintlnOnColor131 wraps OnColor131() and fmt.Println().

func PrintlnOnColor132

func PrintlnOnColor132(str string)

PrintlnOnColor132 wraps OnColor132() and fmt.Println().

func PrintlnOnColor133

func PrintlnOnColor133(str string)

PrintlnOnColor133 wraps OnColor133() and fmt.Println().

func PrintlnOnColor134

func PrintlnOnColor134(str string)

PrintlnOnColor134 wraps OnColor134() and fmt.Println().

func PrintlnOnColor135

func PrintlnOnColor135(str string)

PrintlnOnColor135 wraps OnColor135() and fmt.Println().

func PrintlnOnColor136

func PrintlnOnColor136(str string)

PrintlnOnColor136 wraps OnColor136() and fmt.Println().

func PrintlnOnColor137

func PrintlnOnColor137(str string)

PrintlnOnColor137 wraps OnColor137() and fmt.Println().

func PrintlnOnColor138

func PrintlnOnColor138(str string)

PrintlnOnColor138 wraps OnColor138() and fmt.Println().

func PrintlnOnColor139

func PrintlnOnColor139(str string)

PrintlnOnColor139 wraps OnColor139() and fmt.Println().

func PrintlnOnColor140

func PrintlnOnColor140(str string)

PrintlnOnColor140 wraps OnColor140() and fmt.Println().

func PrintlnOnColor141

func PrintlnOnColor141(str string)

PrintlnOnColor141 wraps OnColor141() and fmt.Println().

func PrintlnOnColor142

func PrintlnOnColor142(str string)

PrintlnOnColor142 wraps OnColor142() and fmt.Println().

func PrintlnOnColor143

func PrintlnOnColor143(str string)

PrintlnOnColor143 wraps OnColor143() and fmt.Println().

func PrintlnOnColor144

func PrintlnOnColor144(str string)

PrintlnOnColor144 wraps OnColor144() and fmt.Println().

func PrintlnOnColor145

func PrintlnOnColor145(str string)

PrintlnOnColor145 wraps OnColor145() and fmt.Println().

func PrintlnOnColor146

func PrintlnOnColor146(str string)

PrintlnOnColor146 wraps OnColor146() and fmt.Println().

func PrintlnOnColor147

func PrintlnOnColor147(str string)

PrintlnOnColor147 wraps OnColor147() and fmt.Println().

func PrintlnOnColor148

func PrintlnOnColor148(str string)

PrintlnOnColor148 wraps OnColor148() and fmt.Println().

func PrintlnOnColor149

func PrintlnOnColor149(str string)

PrintlnOnColor149 wraps OnColor149() and fmt.Println().

func PrintlnOnColor150

func PrintlnOnColor150(str string)

PrintlnOnColor150 wraps OnColor150() and fmt.Println().

func PrintlnOnColor151

func PrintlnOnColor151(str string)

PrintlnOnColor151 wraps OnColor151() and fmt.Println().

func PrintlnOnColor152

func PrintlnOnColor152(str string)

PrintlnOnColor152 wraps OnColor152() and fmt.Println().

func PrintlnOnColor153

func PrintlnOnColor153(str string)

PrintlnOnColor153 wraps OnColor153() and fmt.Println().

func PrintlnOnColor154

func PrintlnOnColor154(str string)

PrintlnOnColor154 wraps OnColor154() and fmt.Println().

func PrintlnOnColor155

func PrintlnOnColor155(str string)

PrintlnOnColor155 wraps OnColor155() and fmt.Println().

func PrintlnOnColor156

func PrintlnOnColor156(str string)

PrintlnOnColor156 wraps OnColor156() and fmt.Println().

func PrintlnOnColor157

func PrintlnOnColor157(str string)

PrintlnOnColor157 wraps OnColor157() and fmt.Println().

func PrintlnOnColor158

func PrintlnOnColor158(str string)

PrintlnOnColor158 wraps OnColor158() and fmt.Println().

func PrintlnOnColor159

func PrintlnOnColor159(str string)

PrintlnOnColor159 wraps OnColor159() and fmt.Println().

func PrintlnOnColor160

func PrintlnOnColor160(str string)

PrintlnOnColor160 wraps OnColor160() and fmt.Println().

func PrintlnOnColor161

func PrintlnOnColor161(str string)

PrintlnOnColor161 wraps OnColor161() and fmt.Println().

func PrintlnOnColor162

func PrintlnOnColor162(str string)

PrintlnOnColor162 wraps OnColor162() and fmt.Println().

func PrintlnOnColor163

func PrintlnOnColor163(str string)

PrintlnOnColor163 wraps OnColor163() and fmt.Println().

func PrintlnOnColor164

func PrintlnOnColor164(str string)

PrintlnOnColor164 wraps OnColor164() and fmt.Println().

func PrintlnOnColor165

func PrintlnOnColor165(str string)

PrintlnOnColor165 wraps OnColor165() and fmt.Println().

func PrintlnOnColor166

func PrintlnOnColor166(str string)

PrintlnOnColor166 wraps OnColor166() and fmt.Println().

func PrintlnOnColor167

func PrintlnOnColor167(str string)

PrintlnOnColor167 wraps OnColor167() and fmt.Println().

func PrintlnOnColor168

func PrintlnOnColor168(str string)

PrintlnOnColor168 wraps OnColor168() and fmt.Println().

func PrintlnOnColor169

func PrintlnOnColor169(str string)

PrintlnOnColor169 wraps OnColor169() and fmt.Println().

func PrintlnOnColor170

func PrintlnOnColor170(str string)

PrintlnOnColor170 wraps OnColor170() and fmt.Println().

func PrintlnOnColor171

func PrintlnOnColor171(str string)

PrintlnOnColor171 wraps OnColor171() and fmt.Println().

func PrintlnOnColor172

func PrintlnOnColor172(str string)

PrintlnOnColor172 wraps OnColor172() and fmt.Println().

func PrintlnOnColor173

func PrintlnOnColor173(str string)

PrintlnOnColor173 wraps OnColor173() and fmt.Println().

func PrintlnOnColor174

func PrintlnOnColor174(str string)

PrintlnOnColor174 wraps OnColor174() and fmt.Println().

func PrintlnOnColor175

func PrintlnOnColor175(str string)

PrintlnOnColor175 wraps OnColor175() and fmt.Println().

func PrintlnOnColor176

func PrintlnOnColor176(str string)

PrintlnOnColor176 wraps OnColor176() and fmt.Println().

func PrintlnOnColor177

func PrintlnOnColor177(str string)

PrintlnOnColor177 wraps OnColor177() and fmt.Println().

func PrintlnOnColor178

func PrintlnOnColor178(str string)

PrintlnOnColor178 wraps OnColor178() and fmt.Println().

func PrintlnOnColor179

func PrintlnOnColor179(str string)

PrintlnOnColor179 wraps OnColor179() and fmt.Println().

func PrintlnOnColor180

func PrintlnOnColor180(str string)

PrintlnOnColor180 wraps OnColor180() and fmt.Println().

func PrintlnOnColor181

func PrintlnOnColor181(str string)

PrintlnOnColor181 wraps OnColor181() and fmt.Println().

func PrintlnOnColor182

func PrintlnOnColor182(str string)

PrintlnOnColor182 wraps OnColor182() and fmt.Println().

func PrintlnOnColor183

func PrintlnOnColor183(str string)

PrintlnOnColor183 wraps OnColor183() and fmt.Println().

func PrintlnOnColor184

func PrintlnOnColor184(str string)

PrintlnOnColor184 wraps OnColor184() and fmt.Println().

func PrintlnOnColor185

func PrintlnOnColor185(str string)

PrintlnOnColor185 wraps OnColor185() and fmt.Println().

func PrintlnOnColor186

func PrintlnOnColor186(str string)

PrintlnOnColor186 wraps OnColor186() and fmt.Println().

func PrintlnOnColor187

func PrintlnOnColor187(str string)

PrintlnOnColor187 wraps OnColor187() and fmt.Println().

func PrintlnOnColor188

func PrintlnOnColor188(str string)

PrintlnOnColor188 wraps OnColor188() and fmt.Println().

func PrintlnOnColor189

func PrintlnOnColor189(str string)

PrintlnOnColor189 wraps OnColor189() and fmt.Println().

func PrintlnOnColor190

func PrintlnOnColor190(str string)

PrintlnOnColor190 wraps OnColor190() and fmt.Println().

func PrintlnOnColor191

func PrintlnOnColor191(str string)

PrintlnOnColor191 wraps OnColor191() and fmt.Println().

func PrintlnOnColor192

func PrintlnOnColor192(str string)

PrintlnOnColor192 wraps OnColor192() and fmt.Println().

func PrintlnOnColor193

func PrintlnOnColor193(str string)

PrintlnOnColor193 wraps OnColor193() and fmt.Println().

func PrintlnOnColor194

func PrintlnOnColor194(str string)

PrintlnOnColor194 wraps OnColor194() and fmt.Println().

func PrintlnOnColor195

func PrintlnOnColor195(str string)

PrintlnOnColor195 wraps OnColor195() and fmt.Println().

func PrintlnOnColor196

func PrintlnOnColor196(str string)

PrintlnOnColor196 wraps OnColor196() and fmt.Println().

func PrintlnOnColor197

func PrintlnOnColor197(str string)

PrintlnOnColor197 wraps OnColor197() and fmt.Println().

func PrintlnOnColor198

func PrintlnOnColor198(str string)

PrintlnOnColor198 wraps OnColor198() and fmt.Println().

func PrintlnOnColor199

func PrintlnOnColor199(str string)

PrintlnOnColor199 wraps OnColor199() and fmt.Println().

func PrintlnOnColor200

func PrintlnOnColor200(str string)

PrintlnOnColor200 wraps OnColor200() and fmt.Println().

func PrintlnOnColor201

func PrintlnOnColor201(str string)

PrintlnOnColor201 wraps OnColor201() and fmt.Println().

func PrintlnOnColor202

func PrintlnOnColor202(str string)

PrintlnOnColor202 wraps OnColor202() and fmt.Println().

func PrintlnOnColor203

func PrintlnOnColor203(str string)

PrintlnOnColor203 wraps OnColor203() and fmt.Println().

func PrintlnOnColor204

func PrintlnOnColor204(str string)

PrintlnOnColor204 wraps OnColor204() and fmt.Println().

func PrintlnOnColor205

func PrintlnOnColor205(str string)

PrintlnOnColor205 wraps OnColor205() and fmt.Println().

func PrintlnOnColor206

func PrintlnOnColor206(str string)

PrintlnOnColor206 wraps OnColor206() and fmt.Println().

func PrintlnOnColor207

func PrintlnOnColor207(str string)

PrintlnOnColor207 wraps OnColor207() and fmt.Println().

func PrintlnOnColor208

func PrintlnOnColor208(str string)

PrintlnOnColor208 wraps OnColor208() and fmt.Println().

func PrintlnOnColor209

func PrintlnOnColor209(str string)

PrintlnOnColor209 wraps OnColor209() and fmt.Println().

func PrintlnOnColor210

func PrintlnOnColor210(str string)

PrintlnOnColor210 wraps OnColor210() and fmt.Println().

func PrintlnOnColor211

func PrintlnOnColor211(str string)

PrintlnOnColor211 wraps OnColor211() and fmt.Println().

func PrintlnOnColor212

func PrintlnOnColor212(str string)

PrintlnOnColor212 wraps OnColor212() and fmt.Println().

func PrintlnOnColor213

func PrintlnOnColor213(str string)

PrintlnOnColor213 wraps OnColor213() and fmt.Println().

func PrintlnOnColor214

func PrintlnOnColor214(str string)

PrintlnOnColor214 wraps OnColor214() and fmt.Println().

func PrintlnOnColor215

func PrintlnOnColor215(str string)

PrintlnOnColor215 wraps OnColor215() and fmt.Println().

func PrintlnOnColor216

func PrintlnOnColor216(str string)

PrintlnOnColor216 wraps OnColor216() and fmt.Println().

func PrintlnOnColor217

func PrintlnOnColor217(str string)

PrintlnOnColor217 wraps OnColor217() and fmt.Println().

func PrintlnOnColor218

func PrintlnOnColor218(str string)

PrintlnOnColor218 wraps OnColor218() and fmt.Println().

func PrintlnOnColor219

func PrintlnOnColor219(str string)

PrintlnOnColor219 wraps OnColor219() and fmt.Println().

func PrintlnOnColor220

func PrintlnOnColor220(str string)

PrintlnOnColor220 wraps OnColor220() and fmt.Println().

func PrintlnOnColor221

func PrintlnOnColor221(str string)

PrintlnOnColor221 wraps OnColor221() and fmt.Println().

func PrintlnOnColor222

func PrintlnOnColor222(str string)

PrintlnOnColor222 wraps OnColor222() and fmt.Println().

func PrintlnOnColor223

func PrintlnOnColor223(str string)

PrintlnOnColor223 wraps OnColor223() and fmt.Println().

func PrintlnOnColor224

func PrintlnOnColor224(str string)

PrintlnOnColor224 wraps OnColor224() and fmt.Println().

func PrintlnOnColor225

func PrintlnOnColor225(str string)

PrintlnOnColor225 wraps OnColor225() and fmt.Println().

func PrintlnOnColor226

func PrintlnOnColor226(str string)

PrintlnOnColor226 wraps OnColor226() and fmt.Println().

func PrintlnOnColor227

func PrintlnOnColor227(str string)

PrintlnOnColor227 wraps OnColor227() and fmt.Println().

func PrintlnOnColor228

func PrintlnOnColor228(str string)

PrintlnOnColor228 wraps OnColor228() and fmt.Println().

func PrintlnOnColor229

func PrintlnOnColor229(str string)

PrintlnOnColor229 wraps OnColor229() and fmt.Println().

func PrintlnOnColor230

func PrintlnOnColor230(str string)

PrintlnOnColor230 wraps OnColor230() and fmt.Println().

func PrintlnOnColor231

func PrintlnOnColor231(str string)

PrintlnOnColor231 wraps OnColor231() and fmt.Println().

func PrintlnOnColor232

func PrintlnOnColor232(str string)

PrintlnOnColor232 wraps OnColor232() and fmt.Println().

func PrintlnOnColor233

func PrintlnOnColor233(str string)

PrintlnOnColor233 wraps OnColor233() and fmt.Println().

func PrintlnOnColor234

func PrintlnOnColor234(str string)

PrintlnOnColor234 wraps OnColor234() and fmt.Println().

func PrintlnOnColor235

func PrintlnOnColor235(str string)

PrintlnOnColor235 wraps OnColor235() and fmt.Println().

func PrintlnOnColor236

func PrintlnOnColor236(str string)

PrintlnOnColor236 wraps OnColor236() and fmt.Println().

func PrintlnOnColor237

func PrintlnOnColor237(str string)

PrintlnOnColor237 wraps OnColor237() and fmt.Println().

func PrintlnOnColor238

func PrintlnOnColor238(str string)

PrintlnOnColor238 wraps OnColor238() and fmt.Println().

func PrintlnOnColor239

func PrintlnOnColor239(str string)

PrintlnOnColor239 wraps OnColor239() and fmt.Println().

func PrintlnOnColor240

func PrintlnOnColor240(str string)

PrintlnOnColor240 wraps OnColor240() and fmt.Println().

func PrintlnOnColor241

func PrintlnOnColor241(str string)

PrintlnOnColor241 wraps OnColor241() and fmt.Println().

func PrintlnOnColor242

func PrintlnOnColor242(str string)

PrintlnOnColor242 wraps OnColor242() and fmt.Println().

func PrintlnOnColor243

func PrintlnOnColor243(str string)

PrintlnOnColor243 wraps OnColor243() and fmt.Println().

func PrintlnOnColor244

func PrintlnOnColor244(str string)

PrintlnOnColor244 wraps OnColor244() and fmt.Println().

func PrintlnOnColor245

func PrintlnOnColor245(str string)

PrintlnOnColor245 wraps OnColor245() and fmt.Println().

func PrintlnOnColor246

func PrintlnOnColor246(str string)

PrintlnOnColor246 wraps OnColor246() and fmt.Println().

func PrintlnOnColor247

func PrintlnOnColor247(str string)

PrintlnOnColor247 wraps OnColor247() and fmt.Println().

func PrintlnOnColor248

func PrintlnOnColor248(str string)

PrintlnOnColor248 wraps OnColor248() and fmt.Println().

func PrintlnOnColor249

func PrintlnOnColor249(str string)

PrintlnOnColor249 wraps OnColor249() and fmt.Println().

func PrintlnOnColor250

func PrintlnOnColor250(str string)

PrintlnOnColor250 wraps OnColor250() and fmt.Println().

func PrintlnOnColor251

func PrintlnOnColor251(str string)

PrintlnOnColor251 wraps OnColor251() and fmt.Println().

func PrintlnOnColor252

func PrintlnOnColor252(str string)

PrintlnOnColor252 wraps OnColor252() and fmt.Println().

func PrintlnOnColor253

func PrintlnOnColor253(str string)

PrintlnOnColor253 wraps OnColor253() and fmt.Println().

func PrintlnOnColor254

func PrintlnOnColor254(str string)

PrintlnOnColor254 wraps OnColor254() and fmt.Println().

func PrintlnOnColor255

func PrintlnOnColor255(str string)

PrintlnOnColor255 wraps OnColor255() and fmt.Println().

func PrintlnOnCyan

func PrintlnOnCyan(str string)

PrintlnOnCyan wraps OnCyan() and fmt.Println().

func PrintlnOnDefault

func PrintlnOnDefault(str string)

PrintlnOnDefault wraps OnDefault() and fmt.Println().

func PrintlnOnGreen

func PrintlnOnGreen(str string)

PrintlnOnGreen wraps OnGreen() and fmt.Println().

func PrintlnOnHex

func PrintlnOnHex(hex string, str string)

PrintlnOnHex wraps OnHex() and fmt.Println().

func PrintlnOnLightBlack

func PrintlnOnLightBlack(str string)

PrintlnOnLightBlack wraps OnLightBlack() and fmt.Println().

func PrintlnOnLightBlue

func PrintlnOnLightBlue(str string)

PrintlnOnLightBlue wraps OnLightBlue() and fmt.Println().

func PrintlnOnLightCyan

func PrintlnOnLightCyan(str string)

PrintlnOnLightCyan wraps OnLightCyan() and fmt.Println().

func PrintlnOnLightGreen

func PrintlnOnLightGreen(str string)

PrintlnOnLightGreen wraps OnLightGreen() and fmt.Println().

func PrintlnOnLightMagenta

func PrintlnOnLightMagenta(str string)

PrintlnOnLightMagenta wraps OnLightMagenta() and fmt.Println().

func PrintlnOnLightRed

func PrintlnOnLightRed(str string)

PrintlnOnLightRed wraps OnLightRed() and fmt.Println().

func PrintlnOnLightWhite

func PrintlnOnLightWhite(str string)

PrintlnOnLightWhite wraps OnLightWhite() and fmt.Println().

func PrintlnOnLightYellow

func PrintlnOnLightYellow(str string)

PrintlnOnLightYellow wraps OnLightYellow() and fmt.Println().

func PrintlnOnMagenta

func PrintlnOnMagenta(str string)

PrintlnOnMagenta wraps OnMagenta() and fmt.Println().

func PrintlnOnRainbow

func PrintlnOnRainbow(str string)

PrintlnOnRainbow wraps OnRainbow() and fmt.Println().

func PrintlnOnRed

func PrintlnOnRed(str string)

PrintlnOnRed wraps OnRed() and fmt.Println().

func PrintlnOnWhite

func PrintlnOnWhite(str string)

PrintlnOnWhite wraps OnWhite() and fmt.Println().

func PrintlnOnYellow

func PrintlnOnYellow(str string)

PrintlnOnYellow wraps OnYellow() and fmt.Println().

func PrintlnPlain added in v1.8.0

func PrintlnPlain(str string)

PrintlnPlain wraps Plain() and fmt.Println().

func PrintlnRainbow

func PrintlnRainbow(str string)

PrintlnRainbow wraps Rainbow() and fmt.Println().

func PrintlnRed

func PrintlnRed(str string)

PrintlnRed wraps Red() and fmt.Println().

func PrintlnReset

func PrintlnReset(str string)

PrintlnReset wraps Reset() and fmt.Println().

func PrintlnStrikethrough

func PrintlnStrikethrough(str string)

PrintlnStrikethrough wraps Strikethrough() and fmt.Println().

func PrintlnSwap

func PrintlnSwap(str string)

PrintlnSwap wraps Swap() and fmt.Println().

func PrintlnUnderline

func PrintlnUnderline(str string)

PrintlnUnderline wraps Underline() and fmt.Println().

func PrintlnWhite

func PrintlnWhite(str string)

PrintlnWhite wraps White() and fmt.Println().

func PrintlnWrap

func PrintlnWrap(width int, str string)

PrintlnWrap wraps Wrap() and fmt.Println().

func PrintlnYellow

func PrintlnYellow(str string)

PrintlnYellow wraps Yellow() and fmt.Println().

func RGBAToXterm256 added in v1.6.5

func RGBAToXterm256(r uint8, g uint8, b uint8, a uint8) string

RGBAToXterm256 will convert the RGBA values to the closest xterm256 representation.

func Rainbow

func Rainbow(str string) string

Rainbow will add multiple ANSI color codes to a string for a rainbow effect.

func Rainbowf added in v1.6.0

func Rainbowf(format string, args ...interface{}) string

Rainbowf wraps fmt.Sprintf() and Rainbow.

func Red

func Red(str string) string

Red will Hilight() the provided string with the specified ANSI code.

func Redf added in v1.6.0

func Redf(format string, args ...interface{}) string

Redf wraps fmt.Sprintf() and Red.

func Reset

func Reset(str string) string

Reset will Hilight() the provided string with the specified ANSI code.

func Resetf added in v1.6.0

func Resetf(format string, args ...interface{}) string

Resetf wraps fmt.Sprintf() and Reset.

func Sample

func Sample() (lines []string)

Sample will return all bg/fg combos of the first 16 8-bit colors.

func Sprint

func Sprint(args ...interface{}) string

Sprint wraps fmt.Sprint().

func Sprintf

func Sprintf(format string, args ...interface{}) string

Sprintf wraps fmt.Sprintf().

func Sprintln

func Sprintln(args ...interface{}) string

Sprintln wraps fmt.Sprintln().

func Strikethrough

func Strikethrough(str string) string

Strikethrough will Hilight() the provided string with the specified ANSI code.

func Strikethroughf added in v1.6.0

func Strikethroughf(format string, args ...interface{}) string

Strikethroughf wraps fmt.Sprintf() and Strikethrough.

func Swap

func Swap(str string) string

Swap will Hilight() the provided string with the specified ANSI code.

func Swapf added in v1.6.0

func Swapf(format string, args ...interface{}) string

Swapf wraps fmt.Sprintf() and Swap.

func Table

func Table() (lines []string)

Table will return a pretty table of all 8-bit colors.

func Underline

func Underline(str string) string

Underline will Hilight() the provided string with the specified ANSI code.

func Underlinef added in v1.6.0

func Underlinef(format string, args ...interface{}) string

Underlinef wraps fmt.Sprintf() and Underline.

func White

func White(str string) string

White will Hilight() the provided string with the specified ANSI code.

func Whitef added in v1.6.0

func Whitef(format string, args ...interface{}) string

Whitef wraps fmt.Sprintf() and White.

func Wrap

func Wrap(width int, str string) string

Wrap will wrap a string to the specified width.

func Wrapf added in v1.6.0

func Wrapf(width int, format string, args ...interface{}) string

Wrapf wraps fmt.Sprintf() and Wrap.

func Yellow

func Yellow(str string) string

Yellow will Hilight() the provided string with the specified ANSI code.

func Yellowf added in v1.6.0

func Yellowf(format string, args ...interface{}) string

Yellowf wraps fmt.Sprintf() and Yellow.

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