hilighter

package module
v1.11.9 Latest Latest
Warning

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

Go to latest
Published: Mar 26, 2024 License: GPL-3.0 Imports: 9 Imported by: 29

README

Hilighter

Yum

Go Report Card License

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

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 "github.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 string = "1.11.9"

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

func Blackf(format string, args ...any) 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

func BlinkRapidf(format string, args ...any) 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

func BlinkSlowf(format string, args ...any) string

BlinkSlowf wraps fmt.Sprintf() and BlinkSlow.

func Blinkf

func Blinkf(format string, args ...any) 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

func Bluef(format string, args ...any) 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

func Boldf(format string, args ...any) 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

func Color000f(format string, args ...any) 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

func Color001f(format string, args ...any) 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

func Color002f(format string, args ...any) 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

func Color003f(format string, args ...any) 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

func Color004f(format string, args ...any) 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

func Color005f(format string, args ...any) 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

func Color006f(format string, args ...any) 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

func Color007f(format string, args ...any) 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

func Color008f(format string, args ...any) 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

func Color009f(format string, args ...any) 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

func Color010f(format string, args ...any) 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

func Color011f(format string, args ...any) 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

func Color012f(format string, args ...any) 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

func Color013f(format string, args ...any) 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

func Color014f(format string, args ...any) 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

func Color015f(format string, args ...any) 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

func Color016f(format string, args ...any) 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

func Color017f(format string, args ...any) 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

func Color018f(format string, args ...any) 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

func Color019f(format string, args ...any) 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

func Color020f(format string, args ...any) 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

func Color021f(format string, args ...any) 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

func Color022f(format string, args ...any) 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

func Color023f(format string, args ...any) 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

func Color024f(format string, args ...any) 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

func Color025f(format string, args ...any) 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

func Color026f(format string, args ...any) 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

func Color027f(format string, args ...any) 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

func Color028f(format string, args ...any) 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

func Color029f(format string, args ...any) 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

func Color030f(format string, args ...any) 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

func Color031f(format string, args ...any) 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

func Color032f(format string, args ...any) 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

func Color033f(format string, args ...any) 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

func Color034f(format string, args ...any) 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

func Color035f(format string, args ...any) 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

func Color036f(format string, args ...any) 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

func Color037f(format string, args ...any) 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

func Color038f(format string, args ...any) 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

func Color039f(format string, args ...any) 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

func Color040f(format string, args ...any) 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

func Color041f(format string, args ...any) 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

func Color042f(format string, args ...any) 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

func Color043f(format string, args ...any) 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

func Color044f(format string, args ...any) 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

func Color045f(format string, args ...any) 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

func Color046f(format string, args ...any) 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

func Color047f(format string, args ...any) 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

func Color048f(format string, args ...any) 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

func Color049f(format string, args ...any) 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

func Color050f(format string, args ...any) 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

func Color051f(format string, args ...any) 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

func Color052f(format string, args ...any) 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

func Color053f(format string, args ...any) 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

func Color054f(format string, args ...any) 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

func Color055f(format string, args ...any) 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

func Color056f(format string, args ...any) 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

func Color057f(format string, args ...any) 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

func Color058f(format string, args ...any) 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

func Color059f(format string, args ...any) 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

func Color060f(format string, args ...any) 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

func Color061f(format string, args ...any) 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

func Color062f(format string, args ...any) 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

func Color063f(format string, args ...any) 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

func Color064f(format string, args ...any) 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

func Color065f(format string, args ...any) 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

func Color066f(format string, args ...any) 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

func Color067f(format string, args ...any) 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

func Color068f(format string, args ...any) 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

func Color069f(format string, args ...any) 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

func Color070f(format string, args ...any) 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

func Color071f(format string, args ...any) 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

func Color072f(format string, args ...any) 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

func Color073f(format string, args ...any) 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

func Color074f(format string, args ...any) 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

func Color075f(format string, args ...any) 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

func Color076f(format string, args ...any) 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

func Color077f(format string, args ...any) 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

func Color078f(format string, args ...any) 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

func Color079f(format string, args ...any) 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

func Color080f(format string, args ...any) 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

func Color081f(format string, args ...any) 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

func Color082f(format string, args ...any) 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

func Color083f(format string, args ...any) 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

func Color084f(format string, args ...any) 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

func Color085f(format string, args ...any) 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

func Color086f(format string, args ...any) 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

func Color087f(format string, args ...any) 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

func Color088f(format string, args ...any) 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

func Color089f(format string, args ...any) 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

func Color090f(format string, args ...any) 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

func Color091f(format string, args ...any) 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

func Color092f(format string, args ...any) 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

func Color093f(format string, args ...any) 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

func Color094f(format string, args ...any) 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

func Color095f(format string, args ...any) 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

func Color096f(format string, args ...any) 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

func Color097f(format string, args ...any) 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

func Color098f(format string, args ...any) 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

func Color099f(format string, args ...any) 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

func Color100f(format string, args ...any) 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

func Color101f(format string, args ...any) 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

func Color102f(format string, args ...any) 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

func Color103f(format string, args ...any) 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

func Color104f(format string, args ...any) 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

func Color105f(format string, args ...any) 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

func Color106f(format string, args ...any) 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

func Color107f(format string, args ...any) 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

func Color108f(format string, args ...any) 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

func Color109f(format string, args ...any) 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

func Color110f(format string, args ...any) 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

func Color111f(format string, args ...any) 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

func Color112f(format string, args ...any) 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

func Color113f(format string, args ...any) 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

func Color114f(format string, args ...any) 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

func Color115f(format string, args ...any) 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

func Color116f(format string, args ...any) 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

func Color117f(format string, args ...any) 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

func Color118f(format string, args ...any) 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

func Color119f(format string, args ...any) 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

func Color120f(format string, args ...any) 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

func Color121f(format string, args ...any) 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

func Color122f(format string, args ...any) 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

func Color123f(format string, args ...any) 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

func Color124f(format string, args ...any) 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

func Color125f(format string, args ...any) 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

func Color126f(format string, args ...any) 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

func Color127f(format string, args ...any) 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

func Color128f(format string, args ...any) 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

func Color129f(format string, args ...any) 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

func Color130f(format string, args ...any) 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

func Color131f(format string, args ...any) 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

func Color132f(format string, args ...any) 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

func Color133f(format string, args ...any) 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

func Color134f(format string, args ...any) 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

func Color135f(format string, args ...any) 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

func Color136f(format string, args ...any) 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

func Color137f(format string, args ...any) 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

func Color138f(format string, args ...any) 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

func Color139f(format string, args ...any) 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

func Color140f(format string, args ...any) 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

func Color141f(format string, args ...any) 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

func Color142f(format string, args ...any) 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

func Color143f(format string, args ...any) 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

func Color144f(format string, args ...any) 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

func Color145f(format string, args ...any) 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

func Color146f(format string, args ...any) 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

func Color147f(format string, args ...any) 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

func Color148f(format string, args ...any) 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

func Color149f(format string, args ...any) 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

func Color150f(format string, args ...any) 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

func Color151f(format string, args ...any) 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

func Color152f(format string, args ...any) 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

func Color153f(format string, args ...any) 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

func Color154f(format string, args ...any) 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

func Color155f(format string, args ...any) 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

func Color156f(format string, args ...any) 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

func Color157f(format string, args ...any) 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

func Color158f(format string, args ...any) 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

func Color159f(format string, args ...any) 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

func Color160f(format string, args ...any) 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

func Color161f(format string, args ...any) 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

func Color162f(format string, args ...any) 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

func Color163f(format string, args ...any) 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

func Color164f(format string, args ...any) 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

func Color165f(format string, args ...any) 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

func Color166f(format string, args ...any) 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

func Color167f(format string, args ...any) 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

func Color168f(format string, args ...any) 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

func Color169f(format string, args ...any) 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

func Color170f(format string, args ...any) 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

func Color171f(format string, args ...any) 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

func Color172f(format string, args ...any) 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

func Color173f(format string, args ...any) 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

func Color174f(format string, args ...any) 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

func Color175f(format string, args ...any) 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

func Color176f(format string, args ...any) 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

func Color177f(format string, args ...any) 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

func Color178f(format string, args ...any) 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

func Color179f(format string, args ...any) 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

func Color180f(format string, args ...any) 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

func Color181f(format string, args ...any) 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

func Color182f(format string, args ...any) 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

func Color183f(format string, args ...any) 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

func Color184f(format string, args ...any) 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

func Color185f(format string, args ...any) 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

func Color186f(format string, args ...any) 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

func Color187f(format string, args ...any) 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

func Color188f(format string, args ...any) 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

func Color189f(format string, args ...any) 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

func Color190f(format string, args ...any) 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

func Color191f(format string, args ...any) 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

func Color192f(format string, args ...any) 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

func Color193f(format string, args ...any) 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

func Color194f(format string, args ...any) 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

func Color195f(format string, args ...any) 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

func Color196f(format string, args ...any) 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

func Color197f(format string, args ...any) 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

func Color198f(format string, args ...any) 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

func Color199f(format string, args ...any) 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

func Color200f(format string, args ...any) 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

func Color201f(format string, args ...any) 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

func Color202f(format string, args ...any) 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

func Color203f(format string, args ...any) 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

func Color204f(format string, args ...any) 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

func Color205f(format string, args ...any) 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

func Color206f(format string, args ...any) 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

func Color207f(format string, args ...any) 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

func Color208f(format string, args ...any) 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

func Color209f(format string, args ...any) 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

func Color210f(format string, args ...any) 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

func Color211f(format string, args ...any) 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

func Color212f(format string, args ...any) 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

func Color213f(format string, args ...any) 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

func Color214f(format string, args ...any) 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

func Color215f(format string, args ...any) 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

func Color216f(format string, args ...any) 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

func Color217f(format string, args ...any) 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

func Color218f(format string, args ...any) 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

func Color219f(format string, args ...any) 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

func Color220f(format string, args ...any) 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

func Color221f(format string, args ...any) 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

func Color222f(format string, args ...any) 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

func Color223f(format string, args ...any) 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

func Color224f(format string, args ...any) 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

func Color225f(format string, args ...any) 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

func Color226f(format string, args ...any) 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

func Color227f(format string, args ...any) 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

func Color228f(format string, args ...any) 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

func Color229f(format string, args ...any) 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

func Color230f(format string, args ...any) 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

func Color231f(format string, args ...any) 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

func Color232f(format string, args ...any) 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

func Color233f(format string, args ...any) 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

func Color234f(format string, args ...any) 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

func Color235f(format string, args ...any) 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

func Color236f(format string, args ...any) 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

func Color237f(format string, args ...any) 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

func Color238f(format string, args ...any) 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

func Color239f(format string, args ...any) 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

func Color240f(format string, args ...any) 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

func Color241f(format string, args ...any) 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

func Color242f(format string, args ...any) 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

func Color243f(format string, args ...any) 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

func Color244f(format string, args ...any) 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

func Color245f(format string, args ...any) 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

func Color246f(format string, args ...any) 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

func Color247f(format string, args ...any) 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

func Color248f(format string, args ...any) 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

func Color249f(format string, args ...any) 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

func Color250f(format string, args ...any) 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

func Color251f(format string, args ...any) 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

func Color252f(format string, args ...any) 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

func Color253f(format string, args ...any) 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

func Color254f(format string, args ...any) 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

func Color255f(format string, args ...any) string

Color255f wraps fmt.Sprintf() and Color255.

func ColorToTrueColor

func ColorToTrueColor(c color.Color) string

ColorToTrueColor will convert the color instance to its truecolor representation.

func ColorToXterm256

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

func Concealf(format string, args ...any) 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

func CrossedOutf(format string, args ...any) 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

func Cyanf(format string, args ...any) 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

func Defaultf(format string, args ...any) 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

func Dimf(format string, args ...any) string

Dimf wraps fmt.Sprintf() and Dim.

func Disable

func Disable(b bool)

Disable will prevent color codes from being used.

func Errorf

func Errorf(format string, args ...any) 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

func Faintf(format string, args ...any) string

Faintf wraps fmt.Sprintf() and Faint.

func Fprint

func Fprint(w io.Writer, args ...any) (int, error)

Fprint wraps fmt.Fprint().

func FprintBlack

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

func FprintBlinkRapid(w io.Writer, str string)

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

func FprintBlinkSlow

func FprintBlinkSlow(w io.Writer, str string)

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

func FprintBlue

func FprintBlue(w io.Writer, str string)

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

func FprintBold

func FprintBold(w io.Writer, str string)

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

func FprintColor000

func FprintColor000(w io.Writer, str string)

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

func FprintColor001

func FprintColor001(w io.Writer, str string)

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

func FprintColor002

func FprintColor002(w io.Writer, str string)

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

func FprintColor003

func FprintColor003(w io.Writer, str string)

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

func FprintColor004

func FprintColor004(w io.Writer, str string)

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

func FprintColor005

func FprintColor005(w io.Writer, str string)

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

func FprintColor006

func FprintColor006(w io.Writer, str string)

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

func FprintColor007

func FprintColor007(w io.Writer, str string)

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

func FprintColor008

func FprintColor008(w io.Writer, str string)

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

func FprintColor009

func FprintColor009(w io.Writer, str string)

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

func FprintColor010

func FprintColor010(w io.Writer, str string)

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

func FprintColor011

func FprintColor011(w io.Writer, str string)

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

func FprintColor012

func FprintColor012(w io.Writer, str string)

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

func FprintColor013

func FprintColor013(w io.Writer, str string)

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

func FprintColor014

func FprintColor014(w io.Writer, str string)

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

func FprintColor015

func FprintColor015(w io.Writer, str string)

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

func FprintColor016

func FprintColor016(w io.Writer, str string)

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

func FprintColor017

func FprintColor017(w io.Writer, str string)

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

func FprintColor018

func FprintColor018(w io.Writer, str string)

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

func FprintColor019

func FprintColor019(w io.Writer, str string)

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

func FprintColor020

func FprintColor020(w io.Writer, str string)

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

func FprintColor021

func FprintColor021(w io.Writer, str string)

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

func FprintColor022

func FprintColor022(w io.Writer, str string)

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

func FprintColor023

func FprintColor023(w io.Writer, str string)

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

func FprintColor024

func FprintColor024(w io.Writer, str string)

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

func FprintColor025

func FprintColor025(w io.Writer, str string)

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

func FprintColor026

func FprintColor026(w io.Writer, str string)

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

func FprintColor027

func FprintColor027(w io.Writer, str string)

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

func FprintColor028

func FprintColor028(w io.Writer, str string)

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

func FprintColor029

func FprintColor029(w io.Writer, str string)

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

func FprintColor030

func FprintColor030(w io.Writer, str string)

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

func FprintColor031

func FprintColor031(w io.Writer, str string)

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

func FprintColor032

func FprintColor032(w io.Writer, str string)

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

func FprintColor033

func FprintColor033(w io.Writer, str string)

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

func FprintColor034

func FprintColor034(w io.Writer, str string)

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

func FprintColor035

func FprintColor035(w io.Writer, str string)

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

func FprintColor036

func FprintColor036(w io.Writer, str string)

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

func FprintColor037

func FprintColor037(w io.Writer, str string)

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

func FprintColor038

func FprintColor038(w io.Writer, str string)

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

func FprintColor039

func FprintColor039(w io.Writer, str string)

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

func FprintColor040

func FprintColor040(w io.Writer, str string)

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

func FprintColor041

func FprintColor041(w io.Writer, str string)

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

func FprintColor042

func FprintColor042(w io.Writer, str string)

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

func FprintColor043

func FprintColor043(w io.Writer, str string)

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

func FprintColor044

func FprintColor044(w io.Writer, str string)

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

func FprintColor045

func FprintColor045(w io.Writer, str string)

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

func FprintColor046

func FprintColor046(w io.Writer, str string)

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

func FprintColor047

func FprintColor047(w io.Writer, str string)

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

func FprintColor048

func FprintColor048(w io.Writer, str string)

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

func FprintColor049

func FprintColor049(w io.Writer, str string)

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

func FprintColor050

func FprintColor050(w io.Writer, str string)

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

func FprintColor051

func FprintColor051(w io.Writer, str string)

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

func FprintColor052

func FprintColor052(w io.Writer, str string)

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

func FprintColor053

func FprintColor053(w io.Writer, str string)

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

func FprintColor054

func FprintColor054(w io.Writer, str string)

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

func FprintColor055

func FprintColor055(w io.Writer, str string)

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

func FprintColor056

func FprintColor056(w io.Writer, str string)

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

func FprintColor057

func FprintColor057(w io.Writer, str string)

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

func FprintColor058

func FprintColor058(w io.Writer, str string)

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

func FprintColor059

func FprintColor059(w io.Writer, str string)

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

func FprintColor060

func FprintColor060(w io.Writer, str string)

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

func FprintColor061

func FprintColor061(w io.Writer, str string)

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

func FprintColor062

func FprintColor062(w io.Writer, str string)

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

func FprintColor063

func FprintColor063(w io.Writer, str string)

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

func FprintColor064

func FprintColor064(w io.Writer, str string)

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

func FprintColor065

func FprintColor065(w io.Writer, str string)

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

func FprintColor066

func FprintColor066(w io.Writer, str string)

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

func FprintColor067

func FprintColor067(w io.Writer, str string)

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

func FprintColor068

func FprintColor068(w io.Writer, str string)

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

func FprintColor069

func FprintColor069(w io.Writer, str string)

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

func FprintColor070

func FprintColor070(w io.Writer, str string)

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

func FprintColor071

func FprintColor071(w io.Writer, str string)

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

func FprintColor072

func FprintColor072(w io.Writer, str string)

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

func FprintColor073

func FprintColor073(w io.Writer, str string)

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

func FprintColor074

func FprintColor074(w io.Writer, str string)

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

func FprintColor075

func FprintColor075(w io.Writer, str string)

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

func FprintColor076

func FprintColor076(w io.Writer, str string)

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

func FprintColor077

func FprintColor077(w io.Writer, str string)

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

func FprintColor078

func FprintColor078(w io.Writer, str string)

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

func FprintColor079

func FprintColor079(w io.Writer, str string)

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

func FprintColor080

func FprintColor080(w io.Writer, str string)

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

func FprintColor081

func FprintColor081(w io.Writer, str string)

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

func FprintColor082

func FprintColor082(w io.Writer, str string)

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

func FprintColor083

func FprintColor083(w io.Writer, str string)

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

func FprintColor084

func FprintColor084(w io.Writer, str string)

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

func FprintColor085

func FprintColor085(w io.Writer, str string)

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

func FprintColor086

func FprintColor086(w io.Writer, str string)

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

func FprintColor087

func FprintColor087(w io.Writer, str string)

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

func FprintColor088

func FprintColor088(w io.Writer, str string)

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

func FprintColor089

func FprintColor089(w io.Writer, str string)

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

func FprintColor090

func FprintColor090(w io.Writer, str string)

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

func FprintColor091

func FprintColor091(w io.Writer, str string)

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

func FprintColor092

func FprintColor092(w io.Writer, str string)

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

func FprintColor093

func FprintColor093(w io.Writer, str string)

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

func FprintColor094

func FprintColor094(w io.Writer, str string)

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

func FprintColor095

func FprintColor095(w io.Writer, str string)

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

func FprintColor096

func FprintColor096(w io.Writer, str string)

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

func FprintColor097

func FprintColor097(w io.Writer, str string)

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

func FprintColor098

func FprintColor098(w io.Writer, str string)

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

func FprintColor099

func FprintColor099(w io.Writer, str string)

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

func FprintColor100

func FprintColor100(w io.Writer, str string)

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

func FprintColor101

func FprintColor101(w io.Writer, str string)

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

func FprintColor102

func FprintColor102(w io.Writer, str string)

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

func FprintColor103

func FprintColor103(w io.Writer, str string)

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

func FprintColor104

func FprintColor104(w io.Writer, str string)

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

func FprintColor105

func FprintColor105(w io.Writer, str string)

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

func FprintColor106

func FprintColor106(w io.Writer, str string)

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

func FprintColor107

func FprintColor107(w io.Writer, str string)

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

func FprintColor108

func FprintColor108(w io.Writer, str string)

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

func FprintColor109

func FprintColor109(w io.Writer, str string)

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

func FprintColor110

func FprintColor110(w io.Writer, str string)

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

func FprintColor111

func FprintColor111(w io.Writer, str string)

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

func FprintColor112

func FprintColor112(w io.Writer, str string)

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

func FprintColor113

func FprintColor113(w io.Writer, str string)

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

func FprintColor114

func FprintColor114(w io.Writer, str string)

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

func FprintColor115

func FprintColor115(w io.Writer, str string)

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

func FprintColor116

func FprintColor116(w io.Writer, str string)

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

func FprintColor117

func FprintColor117(w io.Writer, str string)

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

func FprintColor118

func FprintColor118(w io.Writer, str string)

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

func FprintColor119

func FprintColor119(w io.Writer, str string)

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

func FprintColor120

func FprintColor120(w io.Writer, str string)

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

func FprintColor121

func FprintColor121(w io.Writer, str string)

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

func FprintColor122

func FprintColor122(w io.Writer, str string)

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

func FprintColor123

func FprintColor123(w io.Writer, str string)

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

func FprintColor124

func FprintColor124(w io.Writer, str string)

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

func FprintColor125

func FprintColor125(w io.Writer, str string)

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

func FprintColor126

func FprintColor126(w io.Writer, str string)

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

func FprintColor127

func FprintColor127(w io.Writer, str string)

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

func FprintColor128

func FprintColor128(w io.Writer, str string)

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

func FprintColor129

func FprintColor129(w io.Writer, str string)

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

func FprintColor130

func FprintColor130(w io.Writer, str string)

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

func FprintColor131

func FprintColor131(w io.Writer, str string)

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

func FprintColor132

func FprintColor132(w io.Writer, str string)

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

func FprintColor133

func FprintColor133(w io.Writer, str string)

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

func FprintColor134

func FprintColor134(w io.Writer, str string)

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

func FprintColor135

func FprintColor135(w io.Writer, str string)

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

func FprintColor136

func FprintColor136(w io.Writer, str string)

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

func FprintColor137

func FprintColor137(w io.Writer, str string)

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

func FprintColor138

func FprintColor138(w io.Writer, str string)

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

func FprintColor139

func FprintColor139(w io.Writer, str string)

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

func FprintColor140

func FprintColor140(w io.Writer, str string)

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

func FprintColor141

func FprintColor141(w io.Writer, str string)

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

func FprintColor142

func FprintColor142(w io.Writer, str string)

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

func FprintColor143

func FprintColor143(w io.Writer, str string)

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

func FprintColor144

func FprintColor144(w io.Writer, str string)

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

func FprintColor145

func FprintColor145(w io.Writer, str string)

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

func FprintColor146

func FprintColor146(w io.Writer, str string)

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

func FprintColor147

func FprintColor147(w io.Writer, str string)

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

func FprintColor148

func FprintColor148(w io.Writer, str string)

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

func FprintColor149

func FprintColor149(w io.Writer, str string)

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

func FprintColor150

func FprintColor150(w io.Writer, str string)

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

func FprintColor151

func FprintColor151(w io.Writer, str string)

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

func FprintColor152

func FprintColor152(w io.Writer, str string)

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

func FprintColor153

func FprintColor153(w io.Writer, str string)

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

func FprintColor154

func FprintColor154(w io.Writer, str string)

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

func FprintColor155

func FprintColor155(w io.Writer, str string)

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

func FprintColor156

func FprintColor156(w io.Writer, str string)

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

func FprintColor157

func FprintColor157(w io.Writer, str string)

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

func FprintColor158

func FprintColor158(w io.Writer, str string)

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

func FprintColor159

func FprintColor159(w io.Writer, str string)

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

func FprintColor160

func FprintColor160(w io.Writer, str string)

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

func FprintColor161

func FprintColor161(w io.Writer, str string)

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

func FprintColor162

func FprintColor162(w io.Writer, str string)

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

func FprintColor163

func FprintColor163(w io.Writer, str string)

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

func FprintColor164

func FprintColor164(w io.Writer, str string)

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

func FprintColor165

func FprintColor165(w io.Writer, str string)

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

func FprintColor166

func FprintColor166(w io.Writer, str string)

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

func FprintColor167

func FprintColor167(w io.Writer, str string)

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

func FprintColor168

func FprintColor168(w io.Writer, str string)

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

func FprintColor169

func FprintColor169(w io.Writer, str string)

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

func FprintColor170

func FprintColor170(w io.Writer, str string)

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

func FprintColor171

func FprintColor171(w io.Writer, str string)

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

func FprintColor172

func FprintColor172(w io.Writer, str string)

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

func FprintColor173

func FprintColor173(w io.Writer, str string)

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

func FprintColor174

func FprintColor174(w io.Writer, str string)

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

func FprintColor175

func FprintColor175(w io.Writer, str string)

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

func FprintColor176

func FprintColor176(w io.Writer, str string)

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

func FprintColor177

func FprintColor177(w io.Writer, str string)

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

func FprintColor178

func FprintColor178(w io.Writer, str string)

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

func FprintColor179

func FprintColor179(w io.Writer, str string)

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

func FprintColor180

func FprintColor180(w io.Writer, str string)

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

func FprintColor181

func FprintColor181(w io.Writer, str string)

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

func FprintColor182

func FprintColor182(w io.Writer, str string)

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

func FprintColor183

func FprintColor183(w io.Writer, str string)

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

func FprintColor184

func FprintColor184(w io.Writer, str string)

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

func FprintColor185

func FprintColor185(w io.Writer, str string)

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

func FprintColor186

func FprintColor186(w io.Writer, str string)

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

func FprintColor187

func FprintColor187(w io.Writer, str string)

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

func FprintColor188

func FprintColor188(w io.Writer, str string)

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

func FprintColor189

func FprintColor189(w io.Writer, str string)

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

func FprintColor190

func FprintColor190(w io.Writer, str string)

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

func FprintColor191

func FprintColor191(w io.Writer, str string)

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

func FprintColor192

func FprintColor192(w io.Writer, str string)

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

func FprintColor193

func FprintColor193(w io.Writer, str string)

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

func FprintColor194

func FprintColor194(w io.Writer, str string)

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

func FprintColor195

func FprintColor195(w io.Writer, str string)

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

func FprintColor196

func FprintColor196(w io.Writer, str string)

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

func FprintColor197

func FprintColor197(w io.Writer, str string)

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

func FprintColor198

func FprintColor198(w io.Writer, str string)

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

func FprintColor199

func FprintColor199(w io.Writer, str string)

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

func FprintColor200

func FprintColor200(w io.Writer, str string)

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

func FprintColor201

func FprintColor201(w io.Writer, str string)

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

func FprintColor202

func FprintColor202(w io.Writer, str string)

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

func FprintColor203

func FprintColor203(w io.Writer, str string)

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

func FprintColor204

func FprintColor204(w io.Writer, str string)

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

func FprintColor205

func FprintColor205(w io.Writer, str string)

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

func FprintColor206

func FprintColor206(w io.Writer, str string)

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

func FprintColor207

func FprintColor207(w io.Writer, str string)

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

func FprintColor208

func FprintColor208(w io.Writer, str string)

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

func FprintColor209

func FprintColor209(w io.Writer, str string)

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

func FprintColor210

func FprintColor210(w io.Writer, str string)

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

func FprintColor211

func FprintColor211(w io.Writer, str string)

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

func FprintColor212

func FprintColor212(w io.Writer, str string)

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

func FprintColor213

func FprintColor213(w io.Writer, str string)

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

func FprintColor214

func FprintColor214(w io.Writer, str string)

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

func FprintColor215

func FprintColor215(w io.Writer, str string)

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

func FprintColor216

func FprintColor216(w io.Writer, str string)

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

func FprintColor217

func FprintColor217(w io.Writer, str string)

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

func FprintColor218

func FprintColor218(w io.Writer, str string)

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

func FprintColor219

func FprintColor219(w io.Writer, str string)

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

func FprintColor220

func FprintColor220(w io.Writer, str string)

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

func FprintColor221

func FprintColor221(w io.Writer, str string)

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

func FprintColor222

func FprintColor222(w io.Writer, str string)

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

func FprintColor223

func FprintColor223(w io.Writer, str string)

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

func FprintColor224

func FprintColor224(w io.Writer, str string)

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

func FprintColor225

func FprintColor225(w io.Writer, str string)

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

func FprintColor226

func FprintColor226(w io.Writer, str string)

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

func FprintColor227

func FprintColor227(w io.Writer, str string)

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

func FprintColor228

func FprintColor228(w io.Writer, str string)

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

func FprintColor229

func FprintColor229(w io.Writer, str string)

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

func FprintColor230

func FprintColor230(w io.Writer, str string)

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

func FprintColor231

func FprintColor231(w io.Writer, str string)

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

func FprintColor232

func FprintColor232(w io.Writer, str string)

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

func FprintColor233

func FprintColor233(w io.Writer, str string)

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

func FprintColor234

func FprintColor234(w io.Writer, str string)

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

func FprintColor235

func FprintColor235(w io.Writer, str string)

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

func FprintColor236

func FprintColor236(w io.Writer, str string)

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

func FprintColor237

func FprintColor237(w io.Writer, str string)

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

func FprintColor238

func FprintColor238(w io.Writer, str string)

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

func FprintColor239

func FprintColor239(w io.Writer, str string)

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

func FprintColor240

func FprintColor240(w io.Writer, str string)

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

func FprintColor241

func FprintColor241(w io.Writer, str string)

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

func FprintColor242

func FprintColor242(w io.Writer, str string)

FprintColor242 wraps Color242() and fmt.Fprint().

func FprintColor243

func FprintColor243(w io.Writer, str string)

FprintColor243 wraps Color243() and fmt.Fprint().

func FprintColor244

func FprintColor244(w io.Writer, str string)

FprintColor244 wraps Color244() and fmt.Fprint().

func FprintColor245

func FprintColor245(w io.Writer, str string)

FprintColor245 wraps Color245() and fmt.Fprint().

func FprintColor246

func FprintColor246(w io.Writer, str string)

FprintColor246 wraps Color246() and fmt.Fprint().

func FprintColor247

func FprintColor247(w io.Writer, str string)

FprintColor247 wraps Color247() and fmt.Fprint().

func FprintColor248

func FprintColor248(w io.Writer, str string)

FprintColor248 wraps Color248() and fmt.Fprint().

func FprintColor249

func FprintColor249(w io.Writer, str string)

FprintColor249 wraps Color249() and fmt.Fprint().

func FprintColor250

func FprintColor250(w io.Writer, str string)

FprintColor250 wraps Color250() and fmt.Fprint().

func FprintColor251

func FprintColor251(w io.Writer, str string)

FprintColor251 wraps Color251() and fmt.Fprint().

func FprintColor252

func FprintColor252(w io.Writer, str string)

FprintColor252 wraps Color252() and fmt.Fprint().

func FprintColor253

func FprintColor253(w io.Writer, str string)

FprintColor253 wraps Color253() and fmt.Fprint().

func FprintColor254

func FprintColor254(w io.Writer, str string)

FprintColor254 wraps Color254() and fmt.Fprint().

func FprintColor255

func FprintColor255(w io.Writer, str string)

FprintColor255 wraps Color255() and fmt.Fprint().

func FprintConceal

func FprintConceal(w io.Writer, str string)

FprintConceal wraps Conceal() and fmt.Fprint().

func FprintCrossedOut

func FprintCrossedOut(w io.Writer, str string)

FprintCrossedOut wraps CrossedOut() and fmt.Fprint().

func FprintCyan

func FprintCyan(w io.Writer, str string)

FprintCyan wraps Cyan() and fmt.Fprint().

func FprintDefault

func FprintDefault(w io.Writer, str string)

FprintDefault wraps Default() and fmt.Fprint().

func FprintDim

func FprintDim(w io.Writer, str string)

FprintDim wraps Dim() and fmt.Fprint().

func FprintFaint

func FprintFaint(w io.Writer, str string)

FprintFaint wraps Faint() and fmt.Fprint().

func FprintFraktur

func FprintFraktur(w io.Writer, str string)

FprintFraktur wraps Fraktur() and fmt.Fprint().

func FprintGreen

func FprintGreen(w io.Writer, str string)

FprintGreen wraps Green() and fmt.Fprint().

func FprintHex

func FprintHex(w io.Writer, hex string, str string)

FprintHex wraps Hex() and fmt.Fprint().

func FprintHide

func FprintHide(w io.Writer, str string)

FprintHide wraps Hide() and fmt.Fprint().

func FprintHilight

func FprintHilight(w io.Writer, code string, str string)

FprintHilight wraps Hilight() and fmt.Fprint().

func FprintHilights

func FprintHilights(w io.Writer, codes []string, str string)

FprintHilights wraps Hilights() and fmt.Fprint().

func FprintInverse

func FprintInverse(w io.Writer, str string)

FprintInverse wraps Inverse() and fmt.Fprint().

func FprintItalic

func FprintItalic(w io.Writer, str string)

FprintItalic wraps Italic() and fmt.Fprint().

func FprintLightBlack

func FprintLightBlack(w io.Writer, str string)

FprintLightBlack wraps LightBlack() and fmt.Fprint().

func FprintLightBlue

func FprintLightBlue(w io.Writer, str string)

FprintLightBlue wraps LightBlue() and fmt.Fprint().

func FprintLightCyan

func FprintLightCyan(w io.Writer, str string)

FprintLightCyan wraps LightCyan() and fmt.Fprint().

func FprintLightGreen

func FprintLightGreen(w io.Writer, str string)

FprintLightGreen wraps LightGreen() and fmt.Fprint().

func FprintLightMagenta

func FprintLightMagenta(w io.Writer, str string)

FprintLightMagenta wraps LightMagenta() and fmt.Fprint().

func FprintLightRed

func FprintLightRed(w io.Writer, str string)

FprintLightRed wraps LightRed() and fmt.Fprint().

func FprintLightWhite

func FprintLightWhite(w io.Writer, str string)

FprintLightWhite wraps LightWhite() and fmt.Fprint().

func FprintLightYellow

func FprintLightYellow(w io.Writer, str string)

FprintLightYellow wraps LightYellow() and fmt.Fprint().

func FprintMagenta

func FprintMagenta(w io.Writer, str string)

FprintMagenta wraps Magenta() and fmt.Fprint().

func FprintNegative

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

func FprintNoBlinkRapid(w io.Writer, str string)

FprintNoBlinkRapid wraps NoBlinkRapid() and fmt.Fprint().

func FprintNoBlinkSlow

func FprintNoBlinkSlow(w io.Writer, str string)

FprintNoBlinkSlow wraps NoBlinkSlow() and fmt.Fprint().

func FprintNoBold

func FprintNoBold(w io.Writer, str string)

FprintNoBold wraps NoBold() and fmt.Fprint().

func FprintNoConceal

func FprintNoConceal(w io.Writer, str string)

FprintNoConceal wraps NoConceal() and fmt.Fprint().

func FprintNoCrossedOut

func FprintNoCrossedOut(w io.Writer, str string)

FprintNoCrossedOut wraps NoCrossedOut() and fmt.Fprint().

func FprintNoDim

func FprintNoDim(w io.Writer, str string)

FprintNoDim wraps NoDim() and fmt.Fprint().

func FprintNoFaint

func FprintNoFaint(w io.Writer, str string)

FprintNoFaint wraps NoFaint() and fmt.Fprint().

func FprintNoFraktur

func FprintNoFraktur(w io.Writer, str string)

FprintNoFraktur wraps NoFraktur() and fmt.Fprint().

func FprintNoHide

func FprintNoHide(w io.Writer, str string)

FprintNoHide wraps NoHide() and fmt.Fprint().

func FprintNoInverse

func FprintNoInverse(w io.Writer, str string)

FprintNoInverse wraps NoInverse() and fmt.Fprint().

func FprintNoItalic

func FprintNoItalic(w io.Writer, str string)

FprintNoItalic wraps NoItalic() and fmt.Fprint().

func FprintNoNegative

func FprintNoNegative(w io.Writer, str string)

FprintNoNegative wraps NoNegative() and fmt.Fprint().

func FprintNoStrikethrough

func FprintNoStrikethrough(w io.Writer, str string)

FprintNoStrikethrough wraps NoStrikethrough() and fmt.Fprint().

func FprintNoSwap

func FprintNoSwap(w io.Writer, str string)

FprintNoSwap wraps NoSwap() and fmt.Fprint().

func FprintNoUnderline

func FprintNoUnderline(w io.Writer, str string)

FprintNoUnderline wraps NoUnderline() and fmt.Fprint().

func FprintNormal

func FprintNormal(w io.Writer, str string)

FprintNormal wraps Normal() and fmt.Fprint().

func FprintOnBlack

func FprintOnBlack(w io.Writer, str string)

FprintOnBlack wraps OnBlack() and fmt.Fprint().

func FprintOnBlue

func FprintOnBlue(w io.Writer, str string)

FprintOnBlue wraps OnBlue() and fmt.Fprint().

func FprintOnColor000

func FprintOnColor000(w io.Writer, str string)

FprintOnColor000 wraps OnColor000() and fmt.Fprint().

func FprintOnColor001

func FprintOnColor001(w io.Writer, str string)

FprintOnColor001 wraps OnColor001() and fmt.Fprint().

func FprintOnColor002

func FprintOnColor002(w io.Writer, str string)

FprintOnColor002 wraps OnColor002() and fmt.Fprint().

func FprintOnColor003

func FprintOnColor003(w io.Writer, str string)

FprintOnColor003 wraps OnColor003() and fmt.Fprint().

func FprintOnColor004

func FprintOnColor004(w io.Writer, str string)

FprintOnColor004 wraps OnColor004() and fmt.Fprint().

func FprintOnColor005

func FprintOnColor005(w io.Writer, str string)

FprintOnColor005 wraps OnColor005() and fmt.Fprint().

func FprintOnColor006

func FprintOnColor006(w io.Writer, str string)

FprintOnColor006 wraps OnColor006() and fmt.Fprint().

func FprintOnColor007

func FprintOnColor007(w io.Writer, str string)

FprintOnColor007 wraps OnColor007() and fmt.Fprint().

func FprintOnColor008

func FprintOnColor008(w io.Writer, str string)

FprintOnColor008 wraps OnColor008() and fmt.Fprint().

func FprintOnColor009

func FprintOnColor009(w io.Writer, str string)

FprintOnColor009 wraps OnColor009() and fmt.Fprint().

func FprintOnColor010

func FprintOnColor010(w io.Writer, str string)

FprintOnColor010 wraps OnColor010() and fmt.Fprint().

func FprintOnColor011

func FprintOnColor011(w io.Writer, str string)

FprintOnColor011 wraps OnColor011() and fmt.Fprint().

func FprintOnColor012

func FprintOnColor012(w io.Writer, str string)

FprintOnColor012 wraps OnColor012() and fmt.Fprint().

func FprintOnColor013

func FprintOnColor013(w io.Writer, str string)

FprintOnColor013 wraps OnColor013() and fmt.Fprint().

func FprintOnColor014

func FprintOnColor014(w io.Writer, str string)

FprintOnColor014 wraps OnColor014() and fmt.Fprint().

func FprintOnColor015

func FprintOnColor015(w io.Writer, str string)

FprintOnColor015 wraps OnColor015() and fmt.Fprint().

func FprintOnColor016

func FprintOnColor016(w io.Writer, str string)

FprintOnColor016 wraps OnColor016() and fmt.Fprint().

func FprintOnColor017

func FprintOnColor017(w io.Writer, str string)

FprintOnColor017 wraps OnColor017() and fmt.Fprint().

func FprintOnColor018

func FprintOnColor018(w io.Writer, str string)

FprintOnColor018 wraps OnColor018() and fmt.Fprint().

func FprintOnColor019

func FprintOnColor019(w io.Writer, str string)

FprintOnColor019 wraps OnColor019() and fmt.Fprint().

func FprintOnColor020

func FprintOnColor020(w io.Writer, str string)

FprintOnColor020 wraps OnColor020() and fmt.Fprint().

func FprintOnColor021

func FprintOnColor021(w io.Writer, str string)

FprintOnColor021 wraps OnColor021() and fmt.Fprint().

func FprintOnColor022

func FprintOnColor022(w io.Writer, str string)

FprintOnColor022 wraps OnColor022() and fmt.Fprint().

func FprintOnColor023

func FprintOnColor023(w io.Writer, str string)

FprintOnColor023 wraps OnColor023() and fmt.Fprint().

func FprintOnColor024

func FprintOnColor024(w io.Writer, str string)

FprintOnColor024 wraps OnColor024() and fmt.Fprint().

func FprintOnColor025

func FprintOnColor025(w io.Writer, str string)

FprintOnColor025 wraps OnColor025() and fmt.Fprint().

func FprintOnColor026

func FprintOnColor026(w io.Writer, str string)

FprintOnColor026 wraps OnColor026() and fmt.Fprint().

func FprintOnColor027

func FprintOnColor027(w io.Writer, str string)

FprintOnColor027 wraps OnColor027() and fmt.Fprint().

func FprintOnColor028

func FprintOnColor028(w io.Writer, str string)

FprintOnColor028 wraps OnColor028() and fmt.Fprint().

func FprintOnColor029

func FprintOnColor029(w io.Writer, str string)

FprintOnColor029 wraps OnColor029() and fmt.Fprint().

func FprintOnColor030

func FprintOnColor030(w io.Writer, str string)

FprintOnColor030 wraps OnColor030() and fmt.Fprint().

func FprintOnColor031

func FprintOnColor031(w io.Writer, str string)

FprintOnColor031 wraps OnColor031() and fmt.Fprint().

func FprintOnColor032

func FprintOnColor032(w io.Writer, str string)

FprintOnColor032 wraps OnColor032() and fmt.Fprint().

func FprintOnColor033

func FprintOnColor033(w io.Writer, str string)

FprintOnColor033 wraps OnColor033() and fmt.Fprint().

func FprintOnColor034

func FprintOnColor034(w io.Writer, str string)

FprintOnColor034 wraps OnColor034() and fmt.Fprint().

func FprintOnColor035

func FprintOnColor035(w io.Writer, str string)

FprintOnColor035 wraps OnColor035() and fmt.Fprint().

func FprintOnColor036

func FprintOnColor036(w io.Writer, str string)

FprintOnColor036 wraps OnColor036() and fmt.Fprint().

func FprintOnColor037

func FprintOnColor037(w io.Writer, str string)

FprintOnColor037 wraps OnColor037() and fmt.Fprint().

func FprintOnColor038

func FprintOnColor038(w io.Writer, str string)

FprintOnColor038 wraps OnColor038() and fmt.Fprint().

func FprintOnColor039

func FprintOnColor039(w io.Writer, str string)

FprintOnColor039 wraps OnColor039() and fmt.Fprint().

func FprintOnColor040

func FprintOnColor040(w io.Writer, str string)

FprintOnColor040 wraps OnColor040() and fmt.Fprint().

func FprintOnColor041

func FprintOnColor041(w io.Writer, str string)

FprintOnColor041 wraps OnColor041() and fmt.Fprint().

func FprintOnColor042

func FprintOnColor042(w io.Writer, str string)

FprintOnColor042 wraps OnColor042() and fmt.Fprint().

func FprintOnColor043

func FprintOnColor043(w io.Writer, str string)

FprintOnColor043 wraps OnColor043() and fmt.Fprint().

func FprintOnColor044

func FprintOnColor044(w io.Writer, str string)

FprintOnColor044 wraps OnColor044() and fmt.Fprint().

func FprintOnColor045

func FprintOnColor045(w io.Writer, str string)

FprintOnColor045 wraps OnColor045() and fmt.Fprint().

func FprintOnColor046

func FprintOnColor046(w io.Writer, str string)

FprintOnColor046 wraps OnColor046() and fmt.Fprint().

func FprintOnColor047

func FprintOnColor047(w io.Writer, str string)

FprintOnColor047 wraps OnColor047() and fmt.Fprint().

func FprintOnColor048

func FprintOnColor048(w io.Writer, str string)

FprintOnColor048 wraps OnColor048() and fmt.Fprint().

func FprintOnColor049

func FprintOnColor049(w io.Writer, str string)

FprintOnColor049 wraps OnColor049() and fmt.Fprint().

func FprintOnColor050

func FprintOnColor050(w io.Writer, str string)

FprintOnColor050 wraps OnColor050() and fmt.Fprint().

func FprintOnColor051

func FprintOnColor051(w io.Writer, str string)

FprintOnColor051 wraps OnColor051() and fmt.Fprint().

func FprintOnColor052

func FprintOnColor052(w io.Writer, str string)

FprintOnColor052 wraps OnColor052() and fmt.Fprint().

func FprintOnColor053

func FprintOnColor053(w io.Writer, str string)

FprintOnColor053 wraps OnColor053() and fmt.Fprint().

func FprintOnColor054

func FprintOnColor054(w io.Writer, str string)

FprintOnColor054 wraps OnColor054() and fmt.Fprint().

func FprintOnColor055

func FprintOnColor055(w io.Writer, str string)

FprintOnColor055 wraps OnColor055() and fmt.Fprint().

func FprintOnColor056

func FprintOnColor056(w io.Writer, str string)

FprintOnColor056 wraps OnColor056() and fmt.Fprint().

func FprintOnColor057

func FprintOnColor057(w io.Writer, str string)

FprintOnColor057 wraps OnColor057() and fmt.Fprint().

func FprintOnColor058

func FprintOnColor058(w io.Writer, str string)

FprintOnColor058 wraps OnColor058() and fmt.Fprint().

func FprintOnColor059

func FprintOnColor059(w io.Writer, str string)

FprintOnColor059 wraps OnColor059() and fmt.Fprint().

func FprintOnColor060

func FprintOnColor060(w io.Writer, str string)

FprintOnColor060 wraps OnColor060() and fmt.Fprint().

func FprintOnColor061

func FprintOnColor061(w io.Writer, str string)

FprintOnColor061 wraps OnColor061() and fmt.Fprint().

func FprintOnColor062

func FprintOnColor062(w io.Writer, str string)

FprintOnColor062 wraps OnColor062() and fmt.Fprint().

func FprintOnColor063

func FprintOnColor063(w io.Writer, str string)

FprintOnColor063 wraps OnColor063() and fmt.Fprint().

func FprintOnColor064

func FprintOnColor064(w io.Writer, str string)

FprintOnColor064 wraps OnColor064() and fmt.Fprint().

func FprintOnColor065

func FprintOnColor065(w io.Writer, str string)

FprintOnColor065 wraps OnColor065() and fmt.Fprint().

func FprintOnColor066

func FprintOnColor066(w io.Writer, str string)

FprintOnColor066 wraps OnColor066() and fmt.Fprint().

func FprintOnColor067

func FprintOnColor067(w io.Writer, str string)

FprintOnColor067 wraps OnColor067() and fmt.Fprint().

func FprintOnColor068

func FprintOnColor068(w io.Writer, str string)

FprintOnColor068 wraps OnColor068() and fmt.Fprint().

func FprintOnColor069

func FprintOnColor069(w io.Writer, str string)

FprintOnColor069 wraps OnColor069() and fmt.Fprint().

func FprintOnColor070

func FprintOnColor070(w io.Writer, str string)

FprintOnColor070 wraps OnColor070() and fmt.Fprint().

func FprintOnColor071

func FprintOnColor071(w io.Writer, str string)

FprintOnColor071 wraps OnColor071() and fmt.Fprint().

func FprintOnColor072

func FprintOnColor072(w io.Writer, str string)

FprintOnColor072 wraps OnColor072() and fmt.Fprint().

func FprintOnColor073

func FprintOnColor073(w io.Writer, str string)

FprintOnColor073 wraps OnColor073() and fmt.Fprint().

func FprintOnColor074

func FprintOnColor074(w io.Writer, str string)

FprintOnColor074 wraps OnColor074() and fmt.Fprint().

func FprintOnColor075

func FprintOnColor075(w io.Writer, str string)

FprintOnColor075 wraps OnColor075() and fmt.Fprint().

func FprintOnColor076

func FprintOnColor076(w io.Writer, str string)

FprintOnColor076 wraps OnColor076() and fmt.Fprint().

func FprintOnColor077

func FprintOnColor077(w io.Writer, str string)

FprintOnColor077 wraps OnColor077() and fmt.Fprint().

func FprintOnColor078

func FprintOnColor078(w io.Writer, str string)

FprintOnColor078 wraps OnColor078() and fmt.Fprint().

func FprintOnColor079

func FprintOnColor079(w io.Writer, str string)

FprintOnColor079 wraps OnColor079() and fmt.Fprint().

func FprintOnColor080

func FprintOnColor080(w io.Writer, str string)

FprintOnColor080 wraps OnColor080() and fmt.Fprint().

func FprintOnColor081

func FprintOnColor081(w io.Writer, str string)

FprintOnColor081 wraps OnColor081() and fmt.Fprint().

func FprintOnColor082

func FprintOnColor082(w io.Writer, str string)

FprintOnColor082 wraps OnColor082() and fmt.Fprint().

func FprintOnColor083

func FprintOnColor083(w io.Writer, str string)

FprintOnColor083 wraps OnColor083() and fmt.Fprint().

func FprintOnColor084

func FprintOnColor084(w io.Writer, str string)

FprintOnColor084 wraps OnColor084() and fmt.Fprint().

func FprintOnColor085

func FprintOnColor085(w io.Writer, str string)

FprintOnColor085 wraps OnColor085() and fmt.Fprint().

func FprintOnColor086

func FprintOnColor086(w io.Writer, str string)

FprintOnColor086 wraps OnColor086() and fmt.Fprint().

func FprintOnColor087

func FprintOnColor087(w io.Writer, str string)

FprintOnColor087 wraps OnColor087() and fmt.Fprint().

func FprintOnColor088

func FprintOnColor088(w io.Writer, str string)

FprintOnColor088 wraps OnColor088() and fmt.Fprint().

func FprintOnColor089

func FprintOnColor089(w io.Writer, str string)

FprintOnColor089 wraps OnColor089() and fmt.Fprint().

func FprintOnColor090

func FprintOnColor090(w io.Writer, str string)

FprintOnColor090 wraps OnColor090() and fmt.Fprint().

func FprintOnColor091

func FprintOnColor091(w io.Writer, str string)

FprintOnColor091 wraps OnColor091() and fmt.Fprint().

func FprintOnColor092

func FprintOnColor092(w io.Writer, str string)

FprintOnColor092 wraps OnColor092() and fmt.Fprint().

func FprintOnColor093

func FprintOnColor093(w io.Writer, str string)

FprintOnColor093 wraps OnColor093() and fmt.Fprint().

func FprintOnColor094

func FprintOnColor094(w io.Writer, str string)

FprintOnColor094 wraps OnColor094() and fmt.Fprint().

func FprintOnColor095

func FprintOnColor095(w io.Writer, str string)

FprintOnColor095 wraps OnColor095() and fmt.Fprint().

func FprintOnColor096

func FprintOnColor096(w io.Writer, str string)

FprintOnColor096 wraps OnColor096() and fmt.Fprint().

func FprintOnColor097

func FprintOnColor097(w io.Writer, str string)

FprintOnColor097 wraps OnColor097() and fmt.Fprint().

func FprintOnColor098

func FprintOnColor098(w io.Writer, str string)

FprintOnColor098 wraps OnColor098() and fmt.Fprint().

func FprintOnColor099

func FprintOnColor099(w io.Writer, str string)

FprintOnColor099 wraps OnColor099() and fmt.Fprint().

func FprintOnColor100

func FprintOnColor100(w io.Writer, str string)

FprintOnColor100 wraps OnColor100() and fmt.Fprint().

func FprintOnColor101

func FprintOnColor101(w io.Writer, str string)

FprintOnColor101 wraps OnColor101() and fmt.Fprint().

func FprintOnColor102

func FprintOnColor102(w io.Writer, str string)

FprintOnColor102 wraps OnColor102() and fmt.Fprint().

func FprintOnColor103

func FprintOnColor103(w io.Writer, str string)

FprintOnColor103 wraps OnColor103() and fmt.Fprint().

func FprintOnColor104

func FprintOnColor104(w io.Writer, str string)

FprintOnColor104 wraps OnColor104() and fmt.Fprint().

func FprintOnColor105

func FprintOnColor105(w io.Writer, str string)

FprintOnColor105 wraps OnColor105() and fmt.Fprint().

func FprintOnColor106

func FprintOnColor106(w io.Writer, str string)

FprintOnColor106 wraps OnColor106() and fmt.Fprint().

func FprintOnColor107

func FprintOnColor107(w io.Writer, str string)

FprintOnColor107 wraps OnColor107() and fmt.Fprint().

func FprintOnColor108

func FprintOnColor108(w io.Writer, str string)

FprintOnColor108 wraps OnColor108() and fmt.Fprint().

func FprintOnColor109

func FprintOnColor109(w io.Writer, str string)

FprintOnColor109 wraps OnColor109() and fmt.Fprint().

func FprintOnColor110

func FprintOnColor110(w io.Writer, str string)

FprintOnColor110 wraps OnColor110() and fmt.Fprint().

func FprintOnColor111

func FprintOnColor111(w io.Writer, str string)

FprintOnColor111 wraps OnColor111() and fmt.Fprint().

func FprintOnColor112

func FprintOnColor112(w io.Writer, str string)

FprintOnColor112 wraps OnColor112() and fmt.Fprint().

func FprintOnColor113

func FprintOnColor113(w io.Writer, str string)

FprintOnColor113 wraps OnColor113() and fmt.Fprint().

func FprintOnColor114

func FprintOnColor114(w io.Writer, str string)

FprintOnColor114 wraps OnColor114() and fmt.Fprint().

func FprintOnColor115

func FprintOnColor115(w io.Writer, str string)

FprintOnColor115 wraps OnColor115() and fmt.Fprint().

func FprintOnColor116

func FprintOnColor116(w io.Writer, str string)

FprintOnColor116 wraps OnColor116() and fmt.Fprint().

func FprintOnColor117

func FprintOnColor117(w io.Writer, str string)

FprintOnColor117 wraps OnColor117() and fmt.Fprint().

func FprintOnColor118

func FprintOnColor118(w io.Writer, str string)

FprintOnColor118 wraps OnColor118() and fmt.Fprint().

func FprintOnColor119

func FprintOnColor119(w io.Writer, str string)

FprintOnColor119 wraps OnColor119() and fmt.Fprint().

func FprintOnColor120

func FprintOnColor120(w io.Writer, str string)

FprintOnColor120 wraps OnColor120() and fmt.Fprint().

func FprintOnColor121

func FprintOnColor121(w io.Writer, str string)

FprintOnColor121 wraps OnColor121() and fmt.Fprint().

func FprintOnColor122

func FprintOnColor122(w io.Writer, str string)

FprintOnColor122 wraps OnColor122() and fmt.Fprint().

func FprintOnColor123

func FprintOnColor123(w io.Writer, str string)

FprintOnColor123 wraps OnColor123() and fmt.Fprint().

func FprintOnColor124

func FprintOnColor124(w io.Writer, str string)

FprintOnColor124 wraps OnColor124() and fmt.Fprint().

func FprintOnColor125

func FprintOnColor125(w io.Writer, str string)

FprintOnColor125 wraps OnColor125() and fmt.Fprint().

func FprintOnColor126

func FprintOnColor126(w io.Writer, str string)

FprintOnColor126 wraps OnColor126() and fmt.Fprint().

func FprintOnColor127

func FprintOnColor127(w io.Writer, str string)

FprintOnColor127 wraps OnColor127() and fmt.Fprint().

func FprintOnColor128

func FprintOnColor128(w io.Writer, str string)

FprintOnColor128 wraps OnColor128() and fmt.Fprint().

func FprintOnColor129

func FprintOnColor129(w io.Writer, str string)

FprintOnColor129 wraps OnColor129() and fmt.Fprint().

func FprintOnColor130

func FprintOnColor130(w io.Writer, str string)

FprintOnColor130 wraps OnColor130() and fmt.Fprint().

func FprintOnColor131

func FprintOnColor131(w io.Writer, str string)

FprintOnColor131 wraps OnColor131() and fmt.Fprint().

func FprintOnColor132

func FprintOnColor132(w io.Writer, str string)

FprintOnColor132 wraps OnColor132() and fmt.Fprint().

func FprintOnColor133

func FprintOnColor133(w io.Writer, str string)

FprintOnColor133 wraps OnColor133() and fmt.Fprint().

func FprintOnColor134

func FprintOnColor134(w io.Writer, str string)

FprintOnColor134 wraps OnColor134() and fmt.Fprint().

func FprintOnColor135

func FprintOnColor135(w io.Writer, str string)

FprintOnColor135 wraps OnColor135() and fmt.Fprint().

func FprintOnColor136

func FprintOnColor136(w io.Writer, str string)

FprintOnColor136 wraps OnColor136() and fmt.Fprint().

func FprintOnColor137

func FprintOnColor137(w io.Writer, str string)

FprintOnColor137 wraps OnColor137() and fmt.Fprint().

func FprintOnColor138

func FprintOnColor138(w io.Writer, str string)

FprintOnColor138 wraps OnColor138() and fmt.Fprint().

func FprintOnColor139

func FprintOnColor139(w io.Writer, str string)

FprintOnColor139 wraps OnColor139() and fmt.Fprint().

func FprintOnColor140

func FprintOnColor140(w io.Writer, str string)

FprintOnColor140 wraps OnColor140() and fmt.Fprint().

func FprintOnColor141

func FprintOnColor141(w io.Writer, str string)

FprintOnColor141 wraps OnColor141() and fmt.Fprint().

func FprintOnColor142

func FprintOnColor142(w io.Writer, str string)

FprintOnColor142 wraps OnColor142() and fmt.Fprint().

func FprintOnColor143

func FprintOnColor143(w io.Writer, str string)

FprintOnColor143 wraps OnColor143() and fmt.Fprint().

func FprintOnColor144

func FprintOnColor144(w io.Writer, str string)

FprintOnColor144 wraps OnColor144() and fmt.Fprint().

func FprintOnColor145

func FprintOnColor145(w io.Writer, str string)

FprintOnColor145 wraps OnColor145() and fmt.Fprint().

func FprintOnColor146

func FprintOnColor146(w io.Writer, str string)

FprintOnColor146 wraps OnColor146() and fmt.Fprint().

func FprintOnColor147

func FprintOnColor147(w io.Writer, str string)

FprintOnColor147 wraps OnColor147() and fmt.Fprint().

func FprintOnColor148

func FprintOnColor148(w io.Writer, str string)

FprintOnColor148 wraps OnColor148() and fmt.Fprint().

func FprintOnColor149

func FprintOnColor149(w io.Writer, str string)

FprintOnColor149 wraps OnColor149() and fmt.Fprint().

func FprintOnColor150

func FprintOnColor150(w io.Writer, str string)

FprintOnColor150 wraps OnColor150() and fmt.Fprint().

func FprintOnColor151

func FprintOnColor151(w io.Writer, str string)

FprintOnColor151 wraps OnColor151() and fmt.Fprint().

func FprintOnColor152

func FprintOnColor152(w io.Writer, str string)

FprintOnColor152 wraps OnColor152() and fmt.Fprint().

func FprintOnColor153

func FprintOnColor153(w io.Writer, str string)

FprintOnColor153 wraps OnColor153() and fmt.Fprint().

func FprintOnColor154

func FprintOnColor154(w io.Writer, str string)

FprintOnColor154 wraps OnColor154() and fmt.Fprint().

func FprintOnColor155

func FprintOnColor155(w io.Writer, str string)

FprintOnColor155 wraps OnColor155() and fmt.Fprint().

func FprintOnColor156

func FprintOnColor156(w io.Writer, str string)

FprintOnColor156 wraps OnColor156() and fmt.Fprint().

func FprintOnColor157

func FprintOnColor157(w io.Writer, str string)

FprintOnColor157 wraps OnColor157() and fmt.Fprint().

func FprintOnColor158

func FprintOnColor158(w io.Writer, str string)

FprintOnColor158 wraps OnColor158() and fmt.Fprint().

func FprintOnColor159

func FprintOnColor159(w io.Writer, str string)

FprintOnColor159 wraps OnColor159() and fmt.Fprint().

func FprintOnColor160

func FprintOnColor160(w io.Writer, str string)

FprintOnColor160 wraps OnColor160() and fmt.Fprint().

func FprintOnColor161

func FprintOnColor161(w io.Writer, str string)

FprintOnColor161 wraps OnColor161() and fmt.Fprint().

func FprintOnColor162

func FprintOnColor162(w io.Writer, str string)

FprintOnColor162 wraps OnColor162() and fmt.Fprint().

func FprintOnColor163

func FprintOnColor163(w io.Writer, str string)

FprintOnColor163 wraps OnColor163() and fmt.Fprint().

func FprintOnColor164

func FprintOnColor164(w io.Writer, str string)

FprintOnColor164 wraps OnColor164() and fmt.Fprint().

func FprintOnColor165

func FprintOnColor165(w io.Writer, str string)

FprintOnColor165 wraps OnColor165() and fmt.Fprint().

func FprintOnColor166

func FprintOnColor166(w io.Writer, str string)

FprintOnColor166 wraps OnColor166() and fmt.Fprint().

func FprintOnColor167

func FprintOnColor167(w io.Writer, str string)

FprintOnColor167 wraps OnColor167() and fmt.Fprint().

func FprintOnColor168

func FprintOnColor168(w io.Writer, str string)

FprintOnColor168 wraps OnColor168() and fmt.Fprint().

func FprintOnColor169

func FprintOnColor169(w io.Writer, str string)

FprintOnColor169 wraps OnColor169() and fmt.Fprint().

func FprintOnColor170

func FprintOnColor170(w io.Writer, str string)

FprintOnColor170 wraps OnColor170() and fmt.Fprint().

func FprintOnColor171

func FprintOnColor171(w io.Writer, str string)

FprintOnColor171 wraps OnColor171() and fmt.Fprint().

func FprintOnColor172

func FprintOnColor172(w io.Writer, str string)

FprintOnColor172 wraps OnColor172() and fmt.Fprint().

func FprintOnColor173

func FprintOnColor173(w io.Writer, str string)

FprintOnColor173 wraps OnColor173() and fmt.Fprint().

func FprintOnColor174

func FprintOnColor174(w io.Writer, str string)

FprintOnColor174 wraps OnColor174() and fmt.Fprint().

func FprintOnColor175

func FprintOnColor175(w io.Writer, str string)

FprintOnColor175 wraps OnColor175() and fmt.Fprint().

func FprintOnColor176

func FprintOnColor176(w io.Writer, str string)

FprintOnColor176 wraps OnColor176() and fmt.Fprint().

func FprintOnColor177

func FprintOnColor177(w io.Writer, str string)

FprintOnColor177 wraps OnColor177() and fmt.Fprint().

func FprintOnColor178

func FprintOnColor178(w io.Writer, str string)

FprintOnColor178 wraps OnColor178() and fmt.Fprint().

func FprintOnColor179

func FprintOnColor179(w io.Writer, str string)

FprintOnColor179 wraps OnColor179() and fmt.Fprint().

func FprintOnColor180

func FprintOnColor180(w io.Writer, str string)

FprintOnColor180 wraps OnColor180() and fmt.Fprint().

func FprintOnColor181

func FprintOnColor181(w io.Writer, str string)

FprintOnColor181 wraps OnColor181() and fmt.Fprint().

func FprintOnColor182

func FprintOnColor182(w io.Writer, str string)

FprintOnColor182 wraps OnColor182() and fmt.Fprint().

func FprintOnColor183

func FprintOnColor183(w io.Writer, str string)

FprintOnColor183 wraps OnColor183() and fmt.Fprint().

func FprintOnColor184

func FprintOnColor184(w io.Writer, str string)

FprintOnColor184 wraps OnColor184() and fmt.Fprint().

func FprintOnColor185

func FprintOnColor185(w io.Writer, str string)

FprintOnColor185 wraps OnColor185() and fmt.Fprint().

func FprintOnColor186

func FprintOnColor186(w io.Writer, str string)

FprintOnColor186 wraps OnColor186() and fmt.Fprint().

func FprintOnColor187

func FprintOnColor187(w io.Writer, str string)

FprintOnColor187 wraps OnColor187() and fmt.Fprint().

func FprintOnColor188

func FprintOnColor188(w io.Writer, str string)

FprintOnColor188 wraps OnColor188() and fmt.Fprint().

func FprintOnColor189

func FprintOnColor189(w io.Writer, str string)

FprintOnColor189 wraps OnColor189() and fmt.Fprint().

func FprintOnColor190

func FprintOnColor190(w io.Writer, str string)

FprintOnColor190 wraps OnColor190() and fmt.Fprint().

func FprintOnColor191

func FprintOnColor191(w io.Writer, str string)

FprintOnColor191 wraps OnColor191() and fmt.Fprint().

func FprintOnColor192

func FprintOnColor192(w io.Writer, str string)

FprintOnColor192 wraps OnColor192() and fmt.Fprint().

func FprintOnColor193

func FprintOnColor193(w io.Writer, str string)

FprintOnColor193 wraps OnColor193() and fmt.Fprint().

func FprintOnColor194

func FprintOnColor194(w io.Writer, str string)

FprintOnColor194 wraps OnColor194() and fmt.Fprint().

func FprintOnColor195

func FprintOnColor195(w io.Writer, str string)

FprintOnColor195 wraps OnColor195() and fmt.Fprint().

func FprintOnColor196

func FprintOnColor196(w io.Writer, str string)

FprintOnColor196 wraps OnColor196() and fmt.Fprint().

func FprintOnColor197

func FprintOnColor197(w io.Writer, str string)

FprintOnColor197 wraps OnColor197() and fmt.Fprint().

func FprintOnColor198

func FprintOnColor198(w io.Writer, str string)

FprintOnColor198 wraps OnColor198() and fmt.Fprint().

func FprintOnColor199

func FprintOnColor199(w io.Writer, str string)

FprintOnColor199 wraps OnColor199() and fmt.Fprint().

func FprintOnColor200

func FprintOnColor200(w io.Writer, str string)

FprintOnColor200 wraps OnColor200() and fmt.Fprint().

func FprintOnColor201

func FprintOnColor201(w io.Writer, str string)

FprintOnColor201 wraps OnColor201() and fmt.Fprint().

func FprintOnColor202

func FprintOnColor202(w io.Writer, str string)

FprintOnColor202 wraps OnColor202() and fmt.Fprint().

func FprintOnColor203

func FprintOnColor203(w io.Writer, str string)

FprintOnColor203 wraps OnColor203() and fmt.Fprint().

func FprintOnColor204

func FprintOnColor204(w io.Writer, str string)

FprintOnColor204 wraps OnColor204() and fmt.Fprint().

func FprintOnColor205

func FprintOnColor205(w io.Writer, str string)

FprintOnColor205 wraps OnColor205() and fmt.Fprint().

func FprintOnColor206

func FprintOnColor206(w io.Writer, str string)

FprintOnColor206 wraps OnColor206() and fmt.Fprint().

func FprintOnColor207

func FprintOnColor207(w io.Writer, str string)

FprintOnColor207 wraps OnColor207() and fmt.Fprint().

func FprintOnColor208

func FprintOnColor208(w io.Writer, str string)

FprintOnColor208 wraps OnColor208() and fmt.Fprint().

func FprintOnColor209

func FprintOnColor209(w io.Writer, str string)

FprintOnColor209 wraps OnColor209() and fmt.Fprint().

func FprintOnColor210

func FprintOnColor210(w io.Writer, str string)

FprintOnColor210 wraps OnColor210() and fmt.Fprint().

func FprintOnColor211

func FprintOnColor211(w io.Writer, str string)

FprintOnColor211 wraps OnColor211() and fmt.Fprint().

func FprintOnColor212

func FprintOnColor212(w io.Writer, str string)

FprintOnColor212 wraps OnColor212() and fmt.Fprint().

func FprintOnColor213

func FprintOnColor213(w io.Writer, str string)

FprintOnColor213 wraps OnColor213() and fmt.Fprint().

func FprintOnColor214

func FprintOnColor214(w io.Writer, str string)

FprintOnColor214 wraps OnColor214() and fmt.Fprint().

func FprintOnColor215

func FprintOnColor215(w io.Writer, str string)

FprintOnColor215 wraps OnColor215() and fmt.Fprint().

func FprintOnColor216

func FprintOnColor216(w io.Writer, str string)

FprintOnColor216 wraps OnColor216() and fmt.Fprint().

func FprintOnColor217

func FprintOnColor217(w io.Writer, str string)

FprintOnColor217 wraps OnColor217() and fmt.Fprint().

func FprintOnColor218

func FprintOnColor218(w io.Writer, str string)

FprintOnColor218 wraps OnColor218() and fmt.Fprint().

func FprintOnColor219

func FprintOnColor219(w io.Writer, str string)

FprintOnColor219 wraps OnColor219() and fmt.Fprint().

func FprintOnColor220

func FprintOnColor220(w io.Writer, str string)

FprintOnColor220 wraps OnColor220() and fmt.Fprint().

func FprintOnColor221

func FprintOnColor221(w io.Writer, str string)

FprintOnColor221 wraps OnColor221() and fmt.Fprint().

func FprintOnColor222

func FprintOnColor222(w io.Writer, str string)

FprintOnColor222 wraps OnColor222() and fmt.Fprint().

func FprintOnColor223

func FprintOnColor223(w io.Writer, str string)

FprintOnColor223 wraps OnColor223() and fmt.Fprint().

func FprintOnColor224

func FprintOnColor224(w io.Writer, str string)

FprintOnColor224 wraps OnColor224() and fmt.Fprint().

func FprintOnColor225

func FprintOnColor225(w io.Writer, str string)

FprintOnColor225 wraps OnColor225() and fmt.Fprint().

func FprintOnColor226

func FprintOnColor226(w io.Writer, str string)

FprintOnColor226 wraps OnColor226() and fmt.Fprint().

func FprintOnColor227

func FprintOnColor227(w io.Writer, str string)

FprintOnColor227 wraps OnColor227() and fmt.Fprint().

func FprintOnColor228

func FprintOnColor228(w io.Writer, str string)

FprintOnColor228 wraps OnColor228() and fmt.Fprint().

func FprintOnColor229

func FprintOnColor229(w io.Writer, str string)

FprintOnColor229 wraps OnColor229() and fmt.Fprint().

func FprintOnColor230

func FprintOnColor230(w io.Writer, str string)

FprintOnColor230 wraps OnColor230() and fmt.Fprint().

func FprintOnColor231

func FprintOnColor231(w io.Writer, str string)

FprintOnColor231 wraps OnColor231() and fmt.Fprint().

func FprintOnColor232

func FprintOnColor232(w io.Writer, str string)

FprintOnColor232 wraps OnColor232() and fmt.Fprint().

func FprintOnColor233

func FprintOnColor233(w io.Writer, str string)

FprintOnColor233 wraps OnColor233() and fmt.Fprint().

func FprintOnColor234

func FprintOnColor234(w io.Writer, str string)

FprintOnColor234 wraps OnColor234() and fmt.Fprint().

func FprintOnColor235

func FprintOnColor235(w io.Writer, str string)

FprintOnColor235 wraps OnColor235() and fmt.Fprint().

func FprintOnColor236

func FprintOnColor236(w io.Writer, str string)

FprintOnColor236 wraps OnColor236() and fmt.Fprint().

func FprintOnColor237

func FprintOnColor237(w io.Writer, str string)

FprintOnColor237 wraps OnColor237() and fmt.Fprint().

func FprintOnColor238

func FprintOnColor238(w io.Writer, str string)

FprintOnColor238 wraps OnColor238() and fmt.Fprint().

func FprintOnColor239

func FprintOnColor239(w io.Writer, str string)

FprintOnColor239 wraps OnColor239() and fmt.Fprint().

func FprintOnColor240

func FprintOnColor240(w io.Writer, str string)

FprintOnColor240 wraps OnColor240() and fmt.Fprint().

func FprintOnColor241

func FprintOnColor241(w io.Writer, str string)

FprintOnColor241 wraps OnColor241() and fmt.Fprint().

func FprintOnColor242

func FprintOnColor242(w io.Writer, str string)

FprintOnColor242 wraps OnColor242() and fmt.Fprint().

func FprintOnColor243

func FprintOnColor243(w io.Writer, str string)

FprintOnColor243 wraps OnColor243() and fmt.Fprint().

func FprintOnColor244

func FprintOnColor244(w io.Writer, str string)

FprintOnColor244 wraps OnColor244() and fmt.Fprint().

func FprintOnColor245

func FprintOnColor245(w io.Writer, str string)

FprintOnColor245 wraps OnColor245() and fmt.Fprint().

func FprintOnColor246

func FprintOnColor246(w io.Writer, str string)

FprintOnColor246 wraps OnColor246() and fmt.Fprint().

func FprintOnColor247

func FprintOnColor247(w io.Writer, str string)

FprintOnColor247 wraps OnColor247() and fmt.Fprint().

func FprintOnColor248

func FprintOnColor248(w io.Writer, str string)

FprintOnColor248 wraps OnColor248() and fmt.Fprint().

func FprintOnColor249

func FprintOnColor249(w io.Writer, str string)

FprintOnColor249 wraps OnColor249() and fmt.Fprint().

func FprintOnColor250

func FprintOnColor250(w io.Writer, str string)

FprintOnColor250 wraps OnColor250() and fmt.Fprint().

func FprintOnColor251

func FprintOnColor251(w io.Writer, str string)

FprintOnColor251 wraps OnColor251() and fmt.Fprint().

func FprintOnColor252

func FprintOnColor252(w io.Writer, str string)

FprintOnColor252 wraps OnColor252() and fmt.Fprint().

func FprintOnColor253

func FprintOnColor253(w io.Writer, str string)

FprintOnColor253 wraps OnColor253() and fmt.Fprint().

func FprintOnColor254

func FprintOnColor254(w io.Writer, str string)

FprintOnColor254 wraps OnColor254() and fmt.Fprint().

func FprintOnColor255

func FprintOnColor255(w io.Writer, str string)

FprintOnColor255 wraps OnColor255() and fmt.Fprint().

func FprintOnCyan

func FprintOnCyan(w io.Writer, str string)

FprintOnCyan wraps OnCyan() and fmt.Fprint().

func FprintOnDefault

func FprintOnDefault(w io.Writer, str string)

FprintOnDefault wraps OnDefault() and fmt.Fprint().

func FprintOnGreen

func FprintOnGreen(w io.Writer, str string)

FprintOnGreen wraps OnGreen() and fmt.Fprint().

func FprintOnHex

func FprintOnHex(w io.Writer, hex string, str string)

FprintOnHex wraps OnHex() and fmt.Fprint().

func FprintOnLightBlack

func FprintOnLightBlack(w io.Writer, str string)

FprintOnLightBlack wraps OnLightBlack() and fmt.Fprint().

func FprintOnLightBlue

func FprintOnLightBlue(w io.Writer, str string)

FprintOnLightBlue wraps OnLightBlue() and fmt.Fprint().

func FprintOnLightCyan

func FprintOnLightCyan(w io.Writer, str string)

FprintOnLightCyan wraps OnLightCyan() and fmt.Fprint().

func FprintOnLightGreen

func FprintOnLightGreen(w io.Writer, str string)

FprintOnLightGreen wraps OnLightGreen() and fmt.Fprint().

func FprintOnLightMagenta

func FprintOnLightMagenta(w io.Writer, str string)

FprintOnLightMagenta wraps OnLightMagenta() and fmt.Fprint().

func FprintOnLightRed

func FprintOnLightRed(w io.Writer, str string)

FprintOnLightRed wraps OnLightRed() and fmt.Fprint().

func FprintOnLightWhite

func FprintOnLightWhite(w io.Writer, str string)

FprintOnLightWhite wraps OnLightWhite() and fmt.Fprint().

func FprintOnLightYellow

func FprintOnLightYellow(w io.Writer, str string)

FprintOnLightYellow wraps OnLightYellow() and fmt.Fprint().

func FprintOnMagenta

func FprintOnMagenta(w io.Writer, str string)

FprintOnMagenta wraps OnMagenta() and fmt.Fprint().

func FprintOnRainbow

func FprintOnRainbow(w io.Writer, str string)

FprintOnRainbow wraps OnRainbow() and fmt.Fprint().

func FprintOnRed

func FprintOnRed(w io.Writer, str string)

FprintOnRed wraps OnRed() and fmt.Fprint().

func FprintOnWhite

func FprintOnWhite(w io.Writer, str string)

FprintOnWhite wraps OnWhite() and fmt.Fprint().

func FprintOnYellow

func FprintOnYellow(w io.Writer, str string)

FprintOnYellow wraps OnYellow() and fmt.Fprint().

func FprintPlain

func FprintPlain(w io.Writer, str string)

FprintPlain wraps Plain() and fmt.Fprint().

func FprintRainbow

func FprintRainbow(w io.Writer, str string)

FprintRainbow wraps Rainbow() and fmt.Fprint().

func FprintRed

func FprintRed(w io.Writer, str string)

FprintRed wraps Red() and fmt.Fprint().

func FprintReset

func FprintReset(w io.Writer, str string)

FprintReset wraps Reset() and fmt.Fprint().

func FprintStrikethrough

func FprintStrikethrough(w io.Writer, str string)

FprintStrikethrough wraps Strikethrough() and fmt.Fprint().

func FprintSwap

func FprintSwap(w io.Writer, str string)

FprintSwap wraps Swap() and fmt.Fprint().

func FprintUnderline

func FprintUnderline(w io.Writer, str string)

FprintUnderline wraps Underline() and fmt.Fprint().

func FprintWhite

func FprintWhite(w io.Writer, str string)

FprintWhite wraps White() and fmt.Fprint().

func FprintWrap

func FprintWrap(w io.Writer, width int, str string)

FprintWrap wraps Wrap() and fmt.Fprint().

func FprintYellow

func FprintYellow(w io.Writer, str string)

FprintYellow wraps Yellow() and fmt.Fprint().

func Fprintf

func Fprintf(
	w io.Writer,
	format string,
	args ...any,
) (int, error)

Fprintf wraps fmt.Fprintf().

func FprintfBlack

func FprintfBlack(w io.Writer, format string, args ...any)

FprintfBlack wraps Black and fmt.Fprintf().

func FprintfBlink(w io.Writer, format string, args ...any)

FprintfBlink wraps Blink and fmt.Fprintf().

func FprintfBlinkRapid

func FprintfBlinkRapid(w io.Writer, format string, args ...any)

FprintfBlinkRapid wraps BlinkRapid and fmt.Fprintf().

func FprintfBlinkSlow

func FprintfBlinkSlow(w io.Writer, format string, args ...any)

FprintfBlinkSlow wraps BlinkSlow and fmt.Fprintf().

func FprintfBlue

func FprintfBlue(w io.Writer, format string, args ...any)

FprintfBlue wraps Blue and fmt.Fprintf().

func FprintfBold

func FprintfBold(w io.Writer, format string, args ...any)

FprintfBold wraps Bold and fmt.Fprintf().

func FprintfColor000

func FprintfColor000(w io.Writer, format string, args ...any)

FprintfColor000 wraps Color000 and fmt.Fprintf().

func FprintfColor001

func FprintfColor001(w io.Writer, format string, args ...any)

FprintfColor001 wraps Color001 and fmt.Fprintf().

func FprintfColor002

func FprintfColor002(w io.Writer, format string, args ...any)

FprintfColor002 wraps Color002 and fmt.Fprintf().

func FprintfColor003

func FprintfColor003(w io.Writer, format string, args ...any)

FprintfColor003 wraps Color003 and fmt.Fprintf().

func FprintfColor004

func FprintfColor004(w io.Writer, format string, args ...any)

FprintfColor004 wraps Color004 and fmt.Fprintf().

func FprintfColor005

func FprintfColor005(w io.Writer, format string, args ...any)

FprintfColor005 wraps Color005 and fmt.Fprintf().

func FprintfColor006

func FprintfColor006(w io.Writer, format string, args ...any)

FprintfColor006 wraps Color006 and fmt.Fprintf().

func FprintfColor007

func FprintfColor007(w io.Writer, format string, args ...any)

FprintfColor007 wraps Color007 and fmt.Fprintf().

func FprintfColor008

func FprintfColor008(w io.Writer, format string, args ...any)

FprintfColor008 wraps Color008 and fmt.Fprintf().

func FprintfColor009

func FprintfColor009(w io.Writer, format string, args ...any)

FprintfColor009 wraps Color009 and fmt.Fprintf().

func FprintfColor010

func FprintfColor010(w io.Writer, format string, args ...any)

FprintfColor010 wraps Color010 and fmt.Fprintf().

func FprintfColor011

func FprintfColor011(w io.Writer, format string, args ...any)

FprintfColor011 wraps Color011 and fmt.Fprintf().

func FprintfColor012

func FprintfColor012(w io.Writer, format string, args ...any)

FprintfColor012 wraps Color012 and fmt.Fprintf().

func FprintfColor013

func FprintfColor013(w io.Writer, format string, args ...any)

FprintfColor013 wraps Color013 and fmt.Fprintf().

func FprintfColor014

func FprintfColor014(w io.Writer, format string, args ...any)

FprintfColor014 wraps Color014 and fmt.Fprintf().

func FprintfColor015

func FprintfColor015(w io.Writer, format string, args ...any)

FprintfColor015 wraps Color015 and fmt.Fprintf().

func FprintfColor016

func FprintfColor016(w io.Writer, format string, args ...any)

FprintfColor016 wraps Color016 and fmt.Fprintf().

func FprintfColor017

func FprintfColor017(w io.Writer, format string, args ...any)

FprintfColor017 wraps Color017 and fmt.Fprintf().

func FprintfColor018

func FprintfColor018(w io.Writer, format string, args ...any)

FprintfColor018 wraps Color018 and fmt.Fprintf().

func FprintfColor019

func FprintfColor019(w io.Writer, format string, args ...any)

FprintfColor019 wraps Color019 and fmt.Fprintf().

func FprintfColor020

func FprintfColor020(w io.Writer, format string, args ...any)

FprintfColor020 wraps Color020 and fmt.Fprintf().

func FprintfColor021

func FprintfColor021(w io.Writer, format string, args ...any)

FprintfColor021 wraps Color021 and fmt.Fprintf().

func FprintfColor022

func FprintfColor022(w io.Writer, format string, args ...any)

FprintfColor022 wraps Color022 and fmt.Fprintf().

func FprintfColor023

func FprintfColor023(w io.Writer, format string, args ...any)

FprintfColor023 wraps Color023 and fmt.Fprintf().

func FprintfColor024

func FprintfColor024(w io.Writer, format string, args ...any)

FprintfColor024 wraps Color024 and fmt.Fprintf().

func FprintfColor025

func FprintfColor025(w io.Writer, format string, args ...any)

FprintfColor025 wraps Color025 and fmt.Fprintf().

func FprintfColor026

func FprintfColor026(w io.Writer, format string, args ...any)

FprintfColor026 wraps Color026 and fmt.Fprintf().

func FprintfColor027

func FprintfColor027(w io.Writer, format string, args ...any)

FprintfColor027 wraps Color027 and fmt.Fprintf().

func FprintfColor028

func FprintfColor028(w io.Writer, format string, args ...any)

FprintfColor028 wraps Color028 and fmt.Fprintf().

func FprintfColor029

func FprintfColor029(w io.Writer, format string, args ...any)

FprintfColor029 wraps Color029 and fmt.Fprintf().

func FprintfColor030

func FprintfColor030(w io.Writer, format string, args ...any)

FprintfColor030 wraps Color030 and fmt.Fprintf().

func FprintfColor031

func FprintfColor031(w io.Writer, format string, args ...any)

FprintfColor031 wraps Color031 and fmt.Fprintf().

func FprintfColor032

func FprintfColor032(w io.Writer, format string, args ...any)

FprintfColor032 wraps Color032 and fmt.Fprintf().

func FprintfColor033

func FprintfColor033(w io.Writer, format string, args ...any)

FprintfColor033 wraps Color033 and fmt.Fprintf().

func FprintfColor034

func FprintfColor034(w io.Writer, format string, args ...any)

FprintfColor034 wraps Color034 and fmt.Fprintf().

func FprintfColor035

func FprintfColor035(w io.Writer, format string, args ...any)

FprintfColor035 wraps Color035 and fmt.Fprintf().

func FprintfColor036

func FprintfColor036(w io.Writer, format string, args ...any)

FprintfColor036 wraps Color036 and fmt.Fprintf().

func FprintfColor037

func FprintfColor037(w io.Writer, format string, args ...any)

FprintfColor037 wraps Color037 and fmt.Fprintf().

func FprintfColor038

func FprintfColor038(w io.Writer, format string, args ...any)

FprintfColor038 wraps Color038 and fmt.Fprintf().

func FprintfColor039

func FprintfColor039(w io.Writer, format string, args ...any)

FprintfColor039 wraps Color039 and fmt.Fprintf().

func FprintfColor040

func FprintfColor040(w io.Writer, format string, args ...any)

FprintfColor040 wraps Color040 and fmt.Fprintf().

func FprintfColor041

func FprintfColor041(w io.Writer, format string, args ...any)

FprintfColor041 wraps Color041 and fmt.Fprintf().

func FprintfColor042

func FprintfColor042(w io.Writer, format string, args ...any)

FprintfColor042 wraps Color042 and fmt.Fprintf().

func FprintfColor043

func FprintfColor043(w io.Writer, format string, args ...any)

FprintfColor043 wraps Color043 and fmt.Fprintf().

func FprintfColor044

func FprintfColor044(w io.Writer, format string, args ...any)

FprintfColor044 wraps Color044 and fmt.Fprintf().

func FprintfColor045

func FprintfColor045(w io.Writer, format string, args ...any)

FprintfColor045 wraps Color045 and fmt.Fprintf().

func FprintfColor046

func FprintfColor046(w io.Writer, format string, args ...any)

FprintfColor046 wraps Color046 and fmt.Fprintf().

func FprintfColor047

func FprintfColor047(w io.Writer, format string, args ...any)

FprintfColor047 wraps Color047 and fmt.Fprintf().

func FprintfColor048

func FprintfColor048(w io.Writer, format string, args ...any)

FprintfColor048 wraps Color048 and fmt.Fprintf().

func FprintfColor049

func FprintfColor049(w io.Writer, format string, args ...any)

FprintfColor049 wraps Color049 and fmt.Fprintf().

func FprintfColor050

func FprintfColor050(w io.Writer, format string, args ...any)

FprintfColor050 wraps Color050 and fmt.Fprintf().

func FprintfColor051

func FprintfColor051(w io.Writer, format string, args ...any)

FprintfColor051 wraps Color051 and fmt.Fprintf().

func FprintfColor052

func FprintfColor052(w io.Writer, format string, args ...any)

FprintfColor052 wraps Color052 and fmt.Fprintf().

func FprintfColor053

func FprintfColor053(w io.Writer, format string, args ...any)

FprintfColor053 wraps Color053 and fmt.Fprintf().

func FprintfColor054

func FprintfColor054(w io.Writer, format string, args ...any)

FprintfColor054 wraps Color054 and fmt.Fprintf().

func FprintfColor055

func FprintfColor055(w io.Writer, format string, args ...any)

FprintfColor055 wraps Color055 and fmt.Fprintf().

func FprintfColor056

func FprintfColor056(w io.Writer, format string, args ...any)

FprintfColor056 wraps Color056 and fmt.Fprintf().

func FprintfColor057

func FprintfColor057(w io.Writer, format string, args ...any)

FprintfColor057 wraps Color057 and fmt.Fprintf().

func FprintfColor058

func FprintfColor058(w io.Writer, format string, args ...any)

FprintfColor058 wraps Color058 and fmt.Fprintf().

func FprintfColor059

func FprintfColor059(w io.Writer, format string, args ...any)

FprintfColor059 wraps Color059 and fmt.Fprintf().

func FprintfColor060

func FprintfColor060(w io.Writer, format string, args ...any)

FprintfColor060 wraps Color060 and fmt.Fprintf().

func FprintfColor061

func FprintfColor061(w io.Writer, format string, args ...any)

FprintfColor061 wraps Color061 and fmt.Fprintf().

func FprintfColor062

func FprintfColor062(w io.Writer, format string, args ...any)

FprintfColor062 wraps Color062 and fmt.Fprintf().

func FprintfColor063

func FprintfColor063(w io.Writer, format string, args ...any)

FprintfColor063 wraps Color063 and fmt.Fprintf().

func FprintfColor064

func FprintfColor064(w io.Writer, format string, args ...any)

FprintfColor064 wraps Color064 and fmt.Fprintf().

func FprintfColor065

func FprintfColor065(w io.Writer, format string, args ...any)

FprintfColor065 wraps Color065 and fmt.Fprintf().

func FprintfColor066

func FprintfColor066(w io.Writer, format string, args ...any)

FprintfColor066 wraps Color066 and fmt.Fprintf().

func FprintfColor067

func FprintfColor067(w io.Writer, format string, args ...any)

FprintfColor067 wraps Color067 and fmt.Fprintf().

func FprintfColor068

func FprintfColor068(w io.Writer, format string, args ...any)

FprintfColor068 wraps Color068 and fmt.Fprintf().

func FprintfColor069

func FprintfColor069(w io.Writer, format string, args ...any)

FprintfColor069 wraps Color069 and fmt.Fprintf().

func FprintfColor070

func FprintfColor070(w io.Writer, format string, args ...any)

FprintfColor070 wraps Color070 and fmt.Fprintf().

func FprintfColor071

func FprintfColor071(w io.Writer, format string, args ...any)

FprintfColor071 wraps Color071 and fmt.Fprintf().

func FprintfColor072

func FprintfColor072(w io.Writer, format string, args ...any)

FprintfColor072 wraps Color072 and fmt.Fprintf().

func FprintfColor073

func FprintfColor073(w io.Writer, format string, args ...any)

FprintfColor073 wraps Color073 and fmt.Fprintf().

func FprintfColor074

func FprintfColor074(w io.Writer, format string, args ...any)

FprintfColor074 wraps Color074 and fmt.Fprintf().

func FprintfColor075

func FprintfColor075(w io.Writer, format string, args ...any)

FprintfColor075 wraps Color075 and fmt.Fprintf().

func FprintfColor076

func FprintfColor076(w io.Writer, format string, args ...any)

FprintfColor076 wraps Color076 and fmt.Fprintf().

func FprintfColor077

func FprintfColor077(w io.Writer, format string, args ...any)

FprintfColor077 wraps Color077 and fmt.Fprintf().

func FprintfColor078

func FprintfColor078(w io.Writer, format string, args ...any)

FprintfColor078 wraps Color078 and fmt.Fprintf().

func FprintfColor079

func FprintfColor079(w io.Writer, format string, args ...any)

FprintfColor079 wraps Color079 and fmt.Fprintf().

func FprintfColor080

func FprintfColor080(w io.Writer, format string, args ...any)

FprintfColor080 wraps Color080 and fmt.Fprintf().

func FprintfColor081

func FprintfColor081(w io.Writer, format string, args ...any)

FprintfColor081 wraps Color081 and fmt.Fprintf().

func FprintfColor082

func FprintfColor082(w io.Writer, format string, args ...any)

FprintfColor082 wraps Color082 and fmt.Fprintf().

func FprintfColor083

func FprintfColor083(w io.Writer, format string, args ...any)

FprintfColor083 wraps Color083 and fmt.Fprintf().

func FprintfColor084

func FprintfColor084(w io.Writer, format string, args ...any)

FprintfColor084 wraps Color084 and fmt.Fprintf().

func FprintfColor085

func FprintfColor085(w io.Writer, format string, args ...any)

FprintfColor085 wraps Color085 and fmt.Fprintf().

func FprintfColor086

func FprintfColor086(w io.Writer, format string, args ...any)

FprintfColor086 wraps Color086 and fmt.Fprintf().

func FprintfColor087

func FprintfColor087(w io.Writer, format string, args ...any)

FprintfColor087 wraps Color087 and fmt.Fprintf().

func FprintfColor088

func FprintfColor088(w io.Writer, format string, args ...any)

FprintfColor088 wraps Color088 and fmt.Fprintf().

func FprintfColor089

func FprintfColor089(w io.Writer, format string, args ...any)

FprintfColor089 wraps Color089 and fmt.Fprintf().

func FprintfColor090

func FprintfColor090(w io.Writer, format string, args ...any)

FprintfColor090 wraps Color090 and fmt.Fprintf().

func FprintfColor091

func FprintfColor091(w io.Writer, format string, args ...any)

FprintfColor091 wraps Color091 and fmt.Fprintf().

func FprintfColor092

func FprintfColor092(w io.Writer, format string, args ...any)

FprintfColor092 wraps Color092 and fmt.Fprintf().

func FprintfColor093

func FprintfColor093(w io.Writer, format string, args ...any)

FprintfColor093 wraps Color093 and fmt.Fprintf().

func FprintfColor094

func FprintfColor094(w io.Writer, format string, args ...any)

FprintfColor094 wraps Color094 and fmt.Fprintf().

func FprintfColor095

func FprintfColor095(w io.Writer, format string, args ...any)

FprintfColor095 wraps Color095 and fmt.Fprintf().

func FprintfColor096

func FprintfColor096(w io.Writer, format string, args ...any)

FprintfColor096 wraps Color096 and fmt.Fprintf().

func FprintfColor097

func FprintfColor097(w io.Writer, format string, args ...any)

FprintfColor097 wraps Color097 and fmt.Fprintf().

func FprintfColor098

func FprintfColor098(w io.Writer, format string, args ...any)

FprintfColor098 wraps Color098 and fmt.Fprintf().

func FprintfColor099

func FprintfColor099(w io.Writer, format string, args ...any)

FprintfColor099 wraps Color099 and fmt.Fprintf().

func FprintfColor100

func FprintfColor100(w io.Writer, format string, args ...any)

FprintfColor100 wraps Color100 and fmt.Fprintf().

func FprintfColor101

func FprintfColor101(w io.Writer, format string, args ...any)

FprintfColor101 wraps Color101 and fmt.Fprintf().

func FprintfColor102

func FprintfColor102(w io.Writer, format string, args ...any)

FprintfColor102 wraps Color102 and fmt.Fprintf().

func FprintfColor103

func FprintfColor103(w io.Writer, format string, args ...any)

FprintfColor103 wraps Color103 and fmt.Fprintf().

func FprintfColor104

func FprintfColor104(w io.Writer, format string, args ...any)

FprintfColor104 wraps Color104 and fmt.Fprintf().

func FprintfColor105

func FprintfColor105(w io.Writer, format string, args ...any)

FprintfColor105 wraps Color105 and fmt.Fprintf().

func FprintfColor106

func FprintfColor106(w io.Writer, format string, args ...any)

FprintfColor106 wraps Color106 and fmt.Fprintf().

func FprintfColor107

func FprintfColor107(w io.Writer, format string, args ...any)

FprintfColor107 wraps Color107 and fmt.Fprintf().

func FprintfColor108

func FprintfColor108(w io.Writer, format string, args ...any)

FprintfColor108 wraps Color108 and fmt.Fprintf().

func FprintfColor109

func FprintfColor109(w io.Writer, format string, args ...any)

FprintfColor109 wraps Color109 and fmt.Fprintf().

func FprintfColor110

func FprintfColor110(w io.Writer, format string, args ...any)

FprintfColor110 wraps Color110 and fmt.Fprintf().

func FprintfColor111

func FprintfColor111(w io.Writer, format string, args ...any)

FprintfColor111 wraps Color111 and fmt.Fprintf().

func FprintfColor112

func FprintfColor112(w io.Writer, format string, args ...any)

FprintfColor112 wraps Color112 and fmt.Fprintf().

func FprintfColor113

func FprintfColor113(w io.Writer, format string, args ...any)

FprintfColor113 wraps Color113 and fmt.Fprintf().

func FprintfColor114

func FprintfColor114(w io.Writer, format string, args ...any)

FprintfColor114 wraps Color114 and fmt.Fprintf().

func FprintfColor115

func FprintfColor115(w io.Writer, format string, args ...any)

FprintfColor115 wraps Color115 and fmt.Fprintf().

func FprintfColor116

func FprintfColor116(w io.Writer, format string, args ...any)

FprintfColor116 wraps Color116 and fmt.Fprintf().

func FprintfColor117

func FprintfColor117(w io.Writer, format string, args ...any)

FprintfColor117 wraps Color117 and fmt.Fprintf().

func FprintfColor118

func FprintfColor118(w io.Writer, format string, args ...any)

FprintfColor118 wraps Color118 and fmt.Fprintf().

func FprintfColor119

func FprintfColor119(w io.Writer, format string, args ...any)

FprintfColor119 wraps Color119 and fmt.Fprintf().

func FprintfColor120

func FprintfColor120(w io.Writer, format string, args ...any)

FprintfColor120 wraps Color120 and fmt.Fprintf().

func FprintfColor121

func FprintfColor121(w io.Writer, format string, args ...any)

FprintfColor121 wraps Color121 and fmt.Fprintf().

func FprintfColor122

func FprintfColor122(w io.Writer, format string, args ...any)

FprintfColor122 wraps Color122 and fmt.Fprintf().

func FprintfColor123

func FprintfColor123(w io.Writer, format string, args ...any)

FprintfColor123 wraps Color123 and fmt.Fprintf().

func FprintfColor124

func FprintfColor124(w io.Writer, format string, args ...any)

FprintfColor124 wraps Color124 and fmt.Fprintf().

func FprintfColor125

func FprintfColor125(w io.Writer, format string, args ...any)

FprintfColor125 wraps Color125 and fmt.Fprintf().

func FprintfColor126

func FprintfColor126(w io.Writer, format string, args ...any)

FprintfColor126 wraps Color126 and fmt.Fprintf().

func FprintfColor127

func FprintfColor127(w io.Writer, format string, args ...any)

FprintfColor127 wraps Color127 and fmt.Fprintf().

func FprintfColor128

func FprintfColor128(w io.Writer, format string, args ...any)

FprintfColor128 wraps Color128 and fmt.Fprintf().

func FprintfColor129

func FprintfColor129(w io.Writer, format string, args ...any)

FprintfColor129 wraps Color129 and fmt.Fprintf().

func FprintfColor130

func FprintfColor130(w io.Writer, format string, args ...any)

FprintfColor130 wraps Color130 and fmt.Fprintf().

func FprintfColor131

func FprintfColor131(w io.Writer, format string, args ...any)

FprintfColor131 wraps Color131 and fmt.Fprintf().

func FprintfColor132

func FprintfColor132(w io.Writer, format string, args ...any)

FprintfColor132 wraps Color132 and fmt.Fprintf().

func FprintfColor133

func FprintfColor133(w io.Writer, format string, args ...any)

FprintfColor133 wraps Color133 and fmt.Fprintf().

func FprintfColor134

func FprintfColor134(w io.Writer, format string, args ...any)

FprintfColor134 wraps Color134 and fmt.Fprintf().

func FprintfColor135

func FprintfColor135(w io.Writer, format string, args ...any)

FprintfColor135 wraps Color135 and fmt.Fprintf().

func FprintfColor136

func FprintfColor136(w io.Writer, format string, args ...any)

FprintfColor136 wraps Color136 and fmt.Fprintf().

func FprintfColor137

func FprintfColor137(w io.Writer, format string, args ...any)

FprintfColor137 wraps Color137 and fmt.Fprintf().

func FprintfColor138

func FprintfColor138(w io.Writer, format string, args ...any)

FprintfColor138 wraps Color138 and fmt.Fprintf().

func FprintfColor139

func FprintfColor139(w io.Writer, format string, args ...any)

FprintfColor139 wraps Color139 and fmt.Fprintf().

func FprintfColor140

func FprintfColor140(w io.Writer, format string, args ...any)

FprintfColor140 wraps Color140 and fmt.Fprintf().

func FprintfColor141

func FprintfColor141(w io.Writer, format string, args ...any)

FprintfColor141 wraps Color141 and fmt.Fprintf().

func FprintfColor142

func FprintfColor142(w io.Writer, format string, args ...any)

FprintfColor142 wraps Color142 and fmt.Fprintf().

func FprintfColor143

func FprintfColor143(w io.Writer, format string, args ...any)

FprintfColor143 wraps Color143 and fmt.Fprintf().

func FprintfColor144

func FprintfColor144(w io.Writer, format string, args ...any)

FprintfColor144 wraps Color144 and fmt.Fprintf().

func FprintfColor145

func FprintfColor145(w io.Writer, format string, args ...any)

FprintfColor145 wraps Color145 and fmt.Fprintf().

func FprintfColor146

func FprintfColor146(w io.Writer, format string, args ...any)

FprintfColor146 wraps Color146 and fmt.Fprintf().

func FprintfColor147

func FprintfColor147(w io.Writer, format string, args ...any)

FprintfColor147 wraps Color147 and fmt.Fprintf().

func FprintfColor148

func FprintfColor148(w io.Writer, format string, args ...any)

FprintfColor148 wraps Color148 and fmt.Fprintf().

func FprintfColor149

func FprintfColor149(w io.Writer, format string, args ...any)

FprintfColor149 wraps Color149 and fmt.Fprintf().

func FprintfColor150

func FprintfColor150(w io.Writer, format string, args ...any)

FprintfColor150 wraps Color150 and fmt.Fprintf().

func FprintfColor151

func FprintfColor151(w io.Writer, format string, args ...any)

FprintfColor151 wraps Color151 and fmt.Fprintf().

func FprintfColor152

func FprintfColor152(w io.Writer, format string, args ...any)

FprintfColor152 wraps Color152 and fmt.Fprintf().

func FprintfColor153

func FprintfColor153(w io.Writer, format string, args ...any)

FprintfColor153 wraps Color153 and fmt.Fprintf().

func FprintfColor154

func FprintfColor154(w io.Writer, format string, args ...any)

FprintfColor154 wraps Color154 and fmt.Fprintf().

func FprintfColor155

func FprintfColor155(w io.Writer, format string, args ...any)

FprintfColor155 wraps Color155 and fmt.Fprintf().

func FprintfColor156

func FprintfColor156(w io.Writer, format string, args ...any)

FprintfColor156 wraps Color156 and fmt.Fprintf().

func FprintfColor157

func FprintfColor157(w io.Writer, format string, args ...any)

FprintfColor157 wraps Color157 and fmt.Fprintf().

func FprintfColor158

func FprintfColor158(w io.Writer, format string, args ...any)

FprintfColor158 wraps Color158 and fmt.Fprintf().

func FprintfColor159

func FprintfColor159(w io.Writer, format string, args ...any)

FprintfColor159 wraps Color159 and fmt.Fprintf().

func FprintfColor160

func FprintfColor160(w io.Writer, format string, args ...any)

FprintfColor160 wraps Color160 and fmt.Fprintf().

func FprintfColor161

func FprintfColor161(w io.Writer, format string, args ...any)

FprintfColor161 wraps Color161 and fmt.Fprintf().

func FprintfColor162

func FprintfColor162(w io.Writer, format string, args ...any)

FprintfColor162 wraps Color162 and fmt.Fprintf().

func FprintfColor163

func FprintfColor163(w io.Writer, format string, args ...any)

FprintfColor163 wraps Color163 and fmt.Fprintf().

func FprintfColor164

func FprintfColor164(w io.Writer, format string, args ...any)

FprintfColor164 wraps Color164 and fmt.Fprintf().

func FprintfColor165

func FprintfColor165(w io.Writer, format string, args ...any)

FprintfColor165 wraps Color165 and fmt.Fprintf().

func FprintfColor166

func FprintfColor166(w io.Writer, format string, args ...any)

FprintfColor166 wraps Color166 and fmt.Fprintf().

func FprintfColor167

func FprintfColor167(w io.Writer, format string, args ...any)

FprintfColor167 wraps Color167 and fmt.Fprintf().

func FprintfColor168

func FprintfColor168(w io.Writer, format string, args ...any)

FprintfColor168 wraps Color168 and fmt.Fprintf().

func FprintfColor169

func FprintfColor169(w io.Writer, format string, args ...any)

FprintfColor169 wraps Color169 and fmt.Fprintf().

func FprintfColor170

func FprintfColor170(w io.Writer, format string, args ...any)

FprintfColor170 wraps Color170 and fmt.Fprintf().

func FprintfColor171

func FprintfColor171(w io.Writer, format string, args ...any)

FprintfColor171 wraps Color171 and fmt.Fprintf().

func FprintfColor172

func FprintfColor172(w io.Writer, format string, args ...any)

FprintfColor172 wraps Color172 and fmt.Fprintf().

func FprintfColor173

func FprintfColor173(w io.Writer, format string, args ...any)

FprintfColor173 wraps Color173 and fmt.Fprintf().

func FprintfColor174

func FprintfColor174(w io.Writer, format string, args ...any)

FprintfColor174 wraps Color174 and fmt.Fprintf().

func FprintfColor175

func FprintfColor175(w io.Writer, format string, args ...any)

FprintfColor175 wraps Color175 and fmt.Fprintf().

func FprintfColor176

func FprintfColor176(w io.Writer, format string, args ...any)

FprintfColor176 wraps Color176 and fmt.Fprintf().

func FprintfColor177

func FprintfColor177(w io.Writer, format string, args ...any)

FprintfColor177 wraps Color177 and fmt.Fprintf().

func FprintfColor178

func FprintfColor178(w io.Writer, format string, args ...any)

FprintfColor178 wraps Color178 and fmt.Fprintf().

func FprintfColor179

func FprintfColor179(w io.Writer, format string, args ...any)

FprintfColor179 wraps Color179 and fmt.Fprintf().

func FprintfColor180

func FprintfColor180(w io.Writer, format string, args ...any)

FprintfColor180 wraps Color180 and fmt.Fprintf().

func FprintfColor181

func FprintfColor181(w io.Writer, format string, args ...any)

FprintfColor181 wraps Color181 and fmt.Fprintf().

func FprintfColor182

func FprintfColor182(w io.Writer, format string, args ...any)

FprintfColor182 wraps Color182 and fmt.Fprintf().

func FprintfColor183

func FprintfColor183(w io.Writer, format string, args ...any)

FprintfColor183 wraps Color183 and fmt.Fprintf().

func FprintfColor184

func FprintfColor184(w io.Writer, format string, args ...any)

FprintfColor184 wraps Color184 and fmt.Fprintf().

func FprintfColor185

func FprintfColor185(w io.Writer, format string, args ...any)

FprintfColor185 wraps Color185 and fmt.Fprintf().

func FprintfColor186

func FprintfColor186(w io.Writer, format string, args ...any)

FprintfColor186 wraps Color186 and fmt.Fprintf().

func FprintfColor187

func FprintfColor187(w io.Writer, format string, args ...any)

FprintfColor187 wraps Color187 and fmt.Fprintf().

func FprintfColor188

func FprintfColor188(w io.Writer, format string, args ...any)

FprintfColor188 wraps Color188 and fmt.Fprintf().

func FprintfColor189

func FprintfColor189(w io.Writer, format string, args ...any)

FprintfColor189 wraps Color189 and fmt.Fprintf().

func FprintfColor190

func FprintfColor190(w io.Writer, format string, args ...any)

FprintfColor190 wraps Color190 and fmt.Fprintf().

func FprintfColor191

func FprintfColor191(w io.Writer, format string, args ...any)

FprintfColor191 wraps Color191 and fmt.Fprintf().

func FprintfColor192

func FprintfColor192(w io.Writer, format string, args ...any)

FprintfColor192 wraps Color192 and fmt.Fprintf().

func FprintfColor193

func FprintfColor193(w io.Writer, format string, args ...any)

FprintfColor193 wraps Color193 and fmt.Fprintf().

func FprintfColor194

func FprintfColor194(w io.Writer, format string, args ...any)

FprintfColor194 wraps Color194 and fmt.Fprintf().

func FprintfColor195

func FprintfColor195(w io.Writer, format string, args ...any)

FprintfColor195 wraps Color195 and fmt.Fprintf().

func FprintfColor196

func FprintfColor196(w io.Writer, format string, args ...any)

FprintfColor196 wraps Color196 and fmt.Fprintf().

func FprintfColor197

func FprintfColor197(w io.Writer, format string, args ...any)

FprintfColor197 wraps Color197 and fmt.Fprintf().

func FprintfColor198

func FprintfColor198(w io.Writer, format string, args ...any)

FprintfColor198 wraps Color198 and fmt.Fprintf().

func FprintfColor199

func FprintfColor199(w io.Writer, format string, args ...any)

FprintfColor199 wraps Color199 and fmt.Fprintf().

func FprintfColor200

func FprintfColor200(w io.Writer, format string, args ...any)

FprintfColor200 wraps Color200 and fmt.Fprintf().

func FprintfColor201

func FprintfColor201(w io.Writer, format string, args ...any)

FprintfColor201 wraps Color201 and fmt.Fprintf().

func FprintfColor202

func FprintfColor202(w io.Writer, format string, args ...any)

FprintfColor202 wraps Color202 and fmt.Fprintf().

func FprintfColor203

func FprintfColor203(w io.Writer, format string, args ...any)

FprintfColor203 wraps Color203 and fmt.Fprintf().

func FprintfColor204

func FprintfColor204(w io.Writer, format string, args ...any)

FprintfColor204 wraps Color204 and fmt.Fprintf().

func FprintfColor205

func FprintfColor205(w io.Writer, format string, args ...any)

FprintfColor205 wraps Color205 and fmt.Fprintf().

func FprintfColor206

func FprintfColor206(w io.Writer, format string, args ...any)

FprintfColor206 wraps Color206 and fmt.Fprintf().

func FprintfColor207

func FprintfColor207(w io.Writer, format string, args ...any)

FprintfColor207 wraps Color207 and fmt.Fprintf().

func FprintfColor208

func FprintfColor208(w io.Writer, format string, args ...any)

FprintfColor208 wraps Color208 and fmt.Fprintf().

func FprintfColor209

func FprintfColor209(w io.Writer, format string, args ...any)

FprintfColor209 wraps Color209 and fmt.Fprintf().

func FprintfColor210

func FprintfColor210(w io.Writer, format string, args ...any)

FprintfColor210 wraps Color210 and fmt.Fprintf().

func FprintfColor211

func FprintfColor211(w io.Writer, format string, args ...any)

FprintfColor211 wraps Color211 and fmt.Fprintf().

func FprintfColor212

func FprintfColor212(w io.Writer, format string, args ...any)

FprintfColor212 wraps Color212 and fmt.Fprintf().

func FprintfColor213

func FprintfColor213(w io.Writer, format string, args ...any)

FprintfColor213 wraps Color213 and fmt.Fprintf().

func FprintfColor214

func FprintfColor214(w io.Writer, format string, args ...any)

FprintfColor214 wraps Color214 and fmt.Fprintf().

func FprintfColor215

func FprintfColor215(w io.Writer, format string, args ...any)

FprintfColor215 wraps Color215 and fmt.Fprintf().

func FprintfColor216

func FprintfColor216(w io.Writer, format string, args ...any)

FprintfColor216 wraps Color216 and fmt.Fprintf().

func FprintfColor217

func FprintfColor217(w io.Writer, format string, args ...any)

FprintfColor217 wraps Color217 and fmt.Fprintf().

func FprintfColor218

func FprintfColor218(w io.Writer, format string, args ...any)

FprintfColor218 wraps Color218 and fmt.Fprintf().

func FprintfColor219

func FprintfColor219(w io.Writer, format string, args ...any)

FprintfColor219 wraps Color219 and fmt.Fprintf().

func FprintfColor220

func FprintfColor220(w io.Writer, format string, args ...any)

FprintfColor220 wraps Color220 and fmt.Fprintf().

func FprintfColor221

func FprintfColor221(w io.Writer, format string, args ...any)

FprintfColor221 wraps Color221 and fmt.Fprintf().

func FprintfColor222

func FprintfColor222(w io.Writer, format string, args ...any)

FprintfColor222 wraps Color222 and fmt.Fprintf().

func FprintfColor223

func FprintfColor223(w io.Writer, format string, args ...any)

FprintfColor223 wraps Color223 and fmt.Fprintf().

func FprintfColor224

func FprintfColor224(w io.Writer, format string, args ...any)

FprintfColor224 wraps Color224 and fmt.Fprintf().

func FprintfColor225

func FprintfColor225(w io.Writer, format string, args ...any)

FprintfColor225 wraps Color225 and fmt.Fprintf().

func FprintfColor226

func FprintfColor226(w io.Writer, format string, args ...any)

FprintfColor226 wraps Color226 and fmt.Fprintf().

func FprintfColor227

func FprintfColor227(w io.Writer, format string, args ...any)

FprintfColor227 wraps Color227 and fmt.Fprintf().

func FprintfColor228

func FprintfColor228(w io.Writer, format string, args ...any)

FprintfColor228 wraps Color228 and fmt.Fprintf().

func FprintfColor229

func FprintfColor229(w io.Writer, format string, args ...any)

FprintfColor229 wraps Color229 and fmt.Fprintf().

func FprintfColor230

func FprintfColor230(w io.Writer, format string, args ...any)

FprintfColor230 wraps Color230 and fmt.Fprintf().

func FprintfColor231

func FprintfColor231(w io.Writer, format string, args ...any)

FprintfColor231 wraps Color231 and fmt.Fprintf().

func FprintfColor232

func FprintfColor232(w io.Writer, format string, args ...any)

FprintfColor232 wraps Color232 and fmt.Fprintf().

func FprintfColor233

func FprintfColor233(w io.Writer, format string, args ...any)

FprintfColor233 wraps Color233 and fmt.Fprintf().

func FprintfColor234

func FprintfColor234(w io.Writer, format string, args ...any)

FprintfColor234 wraps Color234 and fmt.Fprintf().

func FprintfColor235

func FprintfColor235(w io.Writer, format string, args ...any)

FprintfColor235 wraps Color235 and fmt.Fprintf().

func FprintfColor236

func FprintfColor236(w io.Writer, format string, args ...any)

FprintfColor236 wraps Color236 and fmt.Fprintf().

func FprintfColor237

func FprintfColor237(w io.Writer, format string, args ...any)

FprintfColor237 wraps Color237 and fmt.Fprintf().

func FprintfColor238

func FprintfColor238(w io.Writer, format string, args ...any)

FprintfColor238 wraps Color238 and fmt.Fprintf().

func FprintfColor239

func FprintfColor239(w io.Writer, format string, args ...any)

FprintfColor239 wraps Color239 and fmt.Fprintf().

func FprintfColor240

func FprintfColor240(w io.Writer, format string, args ...any)

FprintfColor240 wraps Color240 and fmt.Fprintf().

func FprintfColor241

func FprintfColor241(w io.Writer, format string, args ...any)

FprintfColor241 wraps Color241 and fmt.Fprintf().

func FprintfColor242

func FprintfColor242(w io.Writer, format string, args ...any)

FprintfColor242 wraps Color242 and fmt.Fprintf().

func FprintfColor243

func FprintfColor243(w io.Writer, format string, args ...any)

FprintfColor243 wraps Color243 and fmt.Fprintf().

func FprintfColor244

func FprintfColor244(w io.Writer, format string, args ...any)

FprintfColor244 wraps Color244 and fmt.Fprintf().

func FprintfColor245

func FprintfColor245(w io.Writer, format string, args ...any)

FprintfColor245 wraps Color245 and fmt.Fprintf().

func FprintfColor246

func FprintfColor246(w io.Writer, format string, args ...any)

FprintfColor246 wraps Color246 and fmt.Fprintf().

func FprintfColor247

func FprintfColor247(w io.Writer, format string, args ...any)

FprintfColor247 wraps Color247 and fmt.Fprintf().

func FprintfColor248

func FprintfColor248(w io.Writer, format string, args ...any)

FprintfColor248 wraps Color248 and fmt.Fprintf().

func FprintfColor249

func FprintfColor249(w io.Writer, format string, args ...any)

FprintfColor249 wraps Color249 and fmt.Fprintf().

func FprintfColor250

func FprintfColor250(w io.Writer, format string, args ...any)

FprintfColor250 wraps Color250 and fmt.Fprintf().

func FprintfColor251

func FprintfColor251(w io.Writer, format string, args ...any)

FprintfColor251 wraps Color251 and fmt.Fprintf().

func FprintfColor252

func FprintfColor252(w io.Writer, format string, args ...any)

FprintfColor252 wraps Color252 and fmt.Fprintf().

func FprintfColor253

func FprintfColor253(w io.Writer, format string, args ...any)

FprintfColor253 wraps Color253 and fmt.Fprintf().

func FprintfColor254

func FprintfColor254(w io.Writer, format string, args ...any)

FprintfColor254 wraps Color254 and fmt.Fprintf().

func FprintfColor255

func FprintfColor255(w io.Writer, format string, args ...any)

FprintfColor255 wraps Color255 and fmt.Fprintf().

func FprintfConceal

func FprintfConceal(w io.Writer, format string, args ...any)

FprintfConceal wraps Conceal and fmt.Fprintf().

func FprintfCrossedOut

func FprintfCrossedOut(w io.Writer, format string, args ...any)

FprintfCrossedOut wraps CrossedOut and fmt.Fprintf().

func FprintfCyan

func FprintfCyan(w io.Writer, format string, args ...any)

FprintfCyan wraps Cyan and fmt.Fprintf().

func FprintfDefault

func FprintfDefault(w io.Writer, format string, args ...any)

FprintfDefault wraps Default and fmt.Fprintf().

func FprintfDim

func FprintfDim(w io.Writer, format string, args ...any)

FprintfDim wraps Dim and fmt.Fprintf().

func FprintfFaint

func FprintfFaint(w io.Writer, format string, args ...any)

FprintfFaint wraps Faint and fmt.Fprintf().

func FprintfFraktur

func FprintfFraktur(w io.Writer, format string, args ...any)

FprintfFraktur wraps Fraktur and fmt.Fprintf().

func FprintfGreen

func FprintfGreen(w io.Writer, format string, args ...any)

FprintfGreen wraps Green and fmt.Fprintf().

func FprintfHex

func FprintfHex(w io.Writer, hex string, format string, args ...any)

FprintfHex wraps Hex and fmt.Fprintf().

func FprintfHide

func FprintfHide(w io.Writer, format string, args ...any)

FprintfHide wraps Hide and fmt.Fprintf().

func FprintfHilight

func FprintfHilight(w io.Writer, code string, format string, args ...any)

FprintfHilight wraps Hilight and fmt.Fprintf().

func FprintfHilights

func FprintfHilights(w io.Writer, codes []string, format string, args ...any)

FprintfHilights wraps Hilights and fmt.Fprintf().

func FprintfInverse

func FprintfInverse(w io.Writer, format string, args ...any)

FprintfInverse wraps Inverse and fmt.Fprintf().

func FprintfItalic

func FprintfItalic(w io.Writer, format string, args ...any)

FprintfItalic wraps Italic and fmt.Fprintf().

func FprintfLightBlack

func FprintfLightBlack(w io.Writer, format string, args ...any)

FprintfLightBlack wraps LightBlack and fmt.Fprintf().

func FprintfLightBlue

func FprintfLightBlue(w io.Writer, format string, args ...any)

FprintfLightBlue wraps LightBlue and fmt.Fprintf().

func FprintfLightCyan

func FprintfLightCyan(w io.Writer, format string, args ...any)

FprintfLightCyan wraps LightCyan and fmt.Fprintf().

func FprintfLightGreen

func FprintfLightGreen(w io.Writer, format string, args ...any)

FprintfLightGreen wraps LightGreen and fmt.Fprintf().

func FprintfLightMagenta

func FprintfLightMagenta(w io.Writer, format string, args ...any)

FprintfLightMagenta wraps LightMagenta and fmt.Fprintf().

func FprintfLightRed

func FprintfLightRed(w io.Writer, format string, args ...any)

FprintfLightRed wraps LightRed and fmt.Fprintf().

func FprintfLightWhite

func FprintfLightWhite(w io.Writer, format string, args ...any)

FprintfLightWhite wraps LightWhite and fmt.Fprintf().

func FprintfLightYellow

func FprintfLightYellow(w io.Writer, format string, args ...any)

FprintfLightYellow wraps LightYellow and fmt.Fprintf().

func FprintfMagenta

func FprintfMagenta(w io.Writer, format string, args ...any)

FprintfMagenta wraps Magenta and fmt.Fprintf().

func FprintfNegative

func FprintfNegative(w io.Writer, format string, args ...any)

FprintfNegative wraps Negative and fmt.Fprintf().

func FprintfNoBlink(w io.Writer, format string, args ...any)

FprintfNoBlink wraps NoBlink and fmt.Fprintf().

func FprintfNoBlinkRapid

func FprintfNoBlinkRapid(w io.Writer, format string, args ...any)

FprintfNoBlinkRapid wraps NoBlinkRapid and fmt.Fprintf().

func FprintfNoBlinkSlow

func FprintfNoBlinkSlow(w io.Writer, format string, args ...any)

FprintfNoBlinkSlow wraps NoBlinkSlow and fmt.Fprintf().

func FprintfNoBold

func FprintfNoBold(w io.Writer, format string, args ...any)

FprintfNoBold wraps NoBold and fmt.Fprintf().

func FprintfNoConceal

func FprintfNoConceal(w io.Writer, format string, args ...any)

FprintfNoConceal wraps NoConceal and fmt.Fprintf().

func FprintfNoCrossedOut

func FprintfNoCrossedOut(w io.Writer, format string, args ...any)

FprintfNoCrossedOut wraps NoCrossedOut and fmt.Fprintf().

func FprintfNoDim

func FprintfNoDim(w io.Writer, format string, args ...any)

FprintfNoDim wraps NoDim and fmt.Fprintf().

func FprintfNoFaint

func FprintfNoFaint(w io.Writer, format string, args ...any)

FprintfNoFaint wraps NoFaint and fmt.Fprintf().

func FprintfNoFraktur

func FprintfNoFraktur(w io.Writer, format string, args ...any)

FprintfNoFraktur wraps NoFraktur and fmt.Fprintf().

func FprintfNoHide

func FprintfNoHide(w io.Writer, format string, args ...any)

FprintfNoHide wraps NoHide and fmt.Fprintf().

func FprintfNoInverse

func FprintfNoInverse(w io.Writer, format string, args ...any)

FprintfNoInverse wraps NoInverse and fmt.Fprintf().

func FprintfNoItalic

func FprintfNoItalic(w io.Writer, format string, args ...any)

FprintfNoItalic wraps NoItalic and fmt.Fprintf().

func FprintfNoNegative

func FprintfNoNegative(w io.Writer, format string, args ...any)

FprintfNoNegative wraps NoNegative and fmt.Fprintf().

func FprintfNoStrikethrough

func FprintfNoStrikethrough(w io.Writer, format string, args ...any)

FprintfNoStrikethrough wraps NoStrikethrough and fmt.Fprintf().

func FprintfNoSwap

func FprintfNoSwap(w io.Writer, format string, args ...any)

FprintfNoSwap wraps NoSwap and fmt.Fprintf().

func FprintfNoUnderline

func FprintfNoUnderline(w io.Writer, format string, args ...any)

FprintfNoUnderline wraps NoUnderline and fmt.Fprintf().

func FprintfNormal

func FprintfNormal(w io.Writer, format string, args ...any)

FprintfNormal wraps Normal and fmt.Fprintf().

func FprintfOnBlack

func FprintfOnBlack(w io.Writer, format string, args ...any)

FprintfOnBlack wraps OnBlack and fmt.Fprintf().

func FprintfOnBlue

func FprintfOnBlue(w io.Writer, format string, args ...any)

FprintfOnBlue wraps OnBlue and fmt.Fprintf().

func FprintfOnColor000

func FprintfOnColor000(w io.Writer, format string, args ...any)

FprintfOnColor000 wraps OnColor000 and fmt.Fprintf().

func FprintfOnColor001

func FprintfOnColor001(w io.Writer, format string, args ...any)

FprintfOnColor001 wraps OnColor001 and fmt.Fprintf().

func FprintfOnColor002

func FprintfOnColor002(w io.Writer, format string, args ...any)

FprintfOnColor002 wraps OnColor002 and fmt.Fprintf().

func FprintfOnColor003

func FprintfOnColor003(w io.Writer, format string, args ...any)

FprintfOnColor003 wraps OnColor003 and fmt.Fprintf().

func FprintfOnColor004

func FprintfOnColor004(w io.Writer, format string, args ...any)

FprintfOnColor004 wraps OnColor004 and fmt.Fprintf().

func FprintfOnColor005

func FprintfOnColor005(w io.Writer, format string, args ...any)

FprintfOnColor005 wraps OnColor005 and fmt.Fprintf().

func FprintfOnColor006

func FprintfOnColor006(w io.Writer, format string, args ...any)

FprintfOnColor006 wraps OnColor006 and fmt.Fprintf().

func FprintfOnColor007

func FprintfOnColor007(w io.Writer, format string, args ...any)

FprintfOnColor007 wraps OnColor007 and fmt.Fprintf().

func FprintfOnColor008

func FprintfOnColor008(w io.Writer, format string, args ...any)

FprintfOnColor008 wraps OnColor008 and fmt.Fprintf().

func FprintfOnColor009

func FprintfOnColor009(w io.Writer, format string, args ...any)

FprintfOnColor009 wraps OnColor009 and fmt.Fprintf().

func FprintfOnColor010

func FprintfOnColor010(w io.Writer, format string, args ...any)

FprintfOnColor010 wraps OnColor010 and fmt.Fprintf().

func FprintfOnColor011

func FprintfOnColor011(w io.Writer, format string, args ...any)

FprintfOnColor011 wraps OnColor011 and fmt.Fprintf().

func FprintfOnColor012

func FprintfOnColor012(w io.Writer, format string, args ...any)

FprintfOnColor012 wraps OnColor012 and fmt.Fprintf().

func FprintfOnColor013

func FprintfOnColor013(w io.Writer, format string, args ...any)

FprintfOnColor013 wraps OnColor013 and fmt.Fprintf().

func FprintfOnColor014

func FprintfOnColor014(w io.Writer, format string, args ...any)

FprintfOnColor014 wraps OnColor014 and fmt.Fprintf().

func FprintfOnColor015

func FprintfOnColor015(w io.Writer, format string, args ...any)

FprintfOnColor015 wraps OnColor015 and fmt.Fprintf().

func FprintfOnColor016

func FprintfOnColor016(w io.Writer, format string, args ...any)

FprintfOnColor016 wraps OnColor016 and fmt.Fprintf().

func FprintfOnColor017

func FprintfOnColor017(w io.Writer, format string, args ...any)

FprintfOnColor017 wraps OnColor017 and fmt.Fprintf().

func FprintfOnColor018

func FprintfOnColor018(w io.Writer, format string, args ...any)

FprintfOnColor018 wraps OnColor018 and fmt.Fprintf().

func FprintfOnColor019

func FprintfOnColor019(w io.Writer, format string, args ...any)

FprintfOnColor019 wraps OnColor019 and fmt.Fprintf().

func FprintfOnColor020

func FprintfOnColor020(w io.Writer, format string, args ...any)

FprintfOnColor020 wraps OnColor020 and fmt.Fprintf().

func FprintfOnColor021

func FprintfOnColor021(w io.Writer, format string, args ...any)

FprintfOnColor021 wraps OnColor021 and fmt.Fprintf().

func FprintfOnColor022

func FprintfOnColor022(w io.Writer, format string, args ...any)

FprintfOnColor022 wraps OnColor022 and fmt.Fprintf().

func FprintfOnColor023

func FprintfOnColor023(w io.Writer, format string, args ...any)

FprintfOnColor023 wraps OnColor023 and fmt.Fprintf().

func FprintfOnColor024

func FprintfOnColor024(w io.Writer, format string, args ...any)

FprintfOnColor024 wraps OnColor024 and fmt.Fprintf().

func FprintfOnColor025

func FprintfOnColor025(w io.Writer, format string, args ...any)

FprintfOnColor025 wraps OnColor025 and fmt.Fprintf().

func FprintfOnColor026

func FprintfOnColor026(w io.Writer, format string, args ...any)

FprintfOnColor026 wraps OnColor026 and fmt.Fprintf().

func FprintfOnColor027

func FprintfOnColor027(w io.Writer, format string, args ...any)

FprintfOnColor027 wraps OnColor027 and fmt.Fprintf().

func FprintfOnColor028

func FprintfOnColor028(w io.Writer, format string, args ...any)

FprintfOnColor028 wraps OnColor028 and fmt.Fprintf().

func FprintfOnColor029

func FprintfOnColor029(w io.Writer, format string, args ...any)

FprintfOnColor029 wraps OnColor029 and fmt.Fprintf().

func FprintfOnColor030

func FprintfOnColor030(w io.Writer, format string, args ...any)

FprintfOnColor030 wraps OnColor030 and fmt.Fprintf().

func FprintfOnColor031

func FprintfOnColor031(w io.Writer, format string, args ...any)

FprintfOnColor031 wraps OnColor031 and fmt.Fprintf().

func FprintfOnColor032

func FprintfOnColor032(w io.Writer, format string, args ...any)

FprintfOnColor032 wraps OnColor032 and fmt.Fprintf().

func FprintfOnColor033

func FprintfOnColor033(w io.Writer, format string, args ...any)

FprintfOnColor033 wraps OnColor033 and fmt.Fprintf().

func FprintfOnColor034

func FprintfOnColor034(w io.Writer, format string, args ...any)

FprintfOnColor034 wraps OnColor034 and fmt.Fprintf().

func FprintfOnColor035

func FprintfOnColor035(w io.Writer, format string, args ...any)

FprintfOnColor035 wraps OnColor035 and fmt.Fprintf().

func FprintfOnColor036

func FprintfOnColor036(w io.Writer, format string, args ...any)

FprintfOnColor036 wraps OnColor036 and fmt.Fprintf().

func FprintfOnColor037

func FprintfOnColor037(w io.Writer, format string, args ...any)

FprintfOnColor037 wraps OnColor037 and fmt.Fprintf().

func FprintfOnColor038

func FprintfOnColor038(w io.Writer, format string, args ...any)

FprintfOnColor038 wraps OnColor038 and fmt.Fprintf().

func FprintfOnColor039

func FprintfOnColor039(w io.Writer, format string, args ...any)

FprintfOnColor039 wraps OnColor039 and fmt.Fprintf().

func FprintfOnColor040

func FprintfOnColor040(w io.Writer, format string, args ...any)

FprintfOnColor040 wraps OnColor040 and fmt.Fprintf().

func FprintfOnColor041

func FprintfOnColor041(w io.Writer, format string, args ...any)

FprintfOnColor041 wraps OnColor041 and fmt.Fprintf().

func FprintfOnColor042

func FprintfOnColor042(w io.Writer, format string, args ...any)

FprintfOnColor042 wraps OnColor042 and fmt.Fprintf().

func FprintfOnColor043

func FprintfOnColor043(w io.Writer, format string, args ...any)

FprintfOnColor043 wraps OnColor043 and fmt.Fprintf().

func FprintfOnColor044

func FprintfOnColor044(w io.Writer, format string, args ...any)

FprintfOnColor044 wraps OnColor044 and fmt.Fprintf().

func FprintfOnColor045

func FprintfOnColor045(w io.Writer, format string, args ...any)

FprintfOnColor045 wraps OnColor045 and fmt.Fprintf().

func FprintfOnColor046

func FprintfOnColor046(w io.Writer, format string, args ...any)

FprintfOnColor046 wraps OnColor046 and fmt.Fprintf().

func FprintfOnColor047

func FprintfOnColor047(w io.Writer, format string, args ...any)

FprintfOnColor047 wraps OnColor047 and fmt.Fprintf().

func FprintfOnColor048

func FprintfOnColor048(w io.Writer, format string, args ...any)

FprintfOnColor048 wraps OnColor048 and fmt.Fprintf().

func FprintfOnColor049

func FprintfOnColor049(w io.Writer, format string, args ...any)

FprintfOnColor049 wraps OnColor049 and fmt.Fprintf().

func FprintfOnColor050

func FprintfOnColor050(w io.Writer, format string, args ...any)

FprintfOnColor050 wraps OnColor050 and fmt.Fprintf().

func FprintfOnColor051

func FprintfOnColor051(w io.Writer, format string, args ...any)

FprintfOnColor051 wraps OnColor051 and fmt.Fprintf().

func FprintfOnColor052

func FprintfOnColor052(w io.Writer, format string, args ...any)

FprintfOnColor052 wraps OnColor052 and fmt.Fprintf().

func FprintfOnColor053

func FprintfOnColor053(w io.Writer, format string, args ...any)

FprintfOnColor053 wraps OnColor053 and fmt.Fprintf().

func FprintfOnColor054

func FprintfOnColor054(w io.Writer, format string, args ...any)

FprintfOnColor054 wraps OnColor054 and fmt.Fprintf().

func FprintfOnColor055

func FprintfOnColor055(w io.Writer, format string, args ...any)

FprintfOnColor055 wraps OnColor055 and fmt.Fprintf().

func FprintfOnColor056

func FprintfOnColor056(w io.Writer, format string, args ...any)

FprintfOnColor056 wraps OnColor056 and fmt.Fprintf().

func FprintfOnColor057

func FprintfOnColor057(w io.Writer, format string, args ...any)

FprintfOnColor057 wraps OnColor057 and fmt.Fprintf().

func FprintfOnColor058

func FprintfOnColor058(w io.Writer, format string, args ...any)

FprintfOnColor058 wraps OnColor058 and fmt.Fprintf().

func FprintfOnColor059

func FprintfOnColor059(w io.Writer, format string, args ...any)

FprintfOnColor059 wraps OnColor059 and fmt.Fprintf().

func FprintfOnColor060

func FprintfOnColor060(w io.Writer, format string, args ...any)

FprintfOnColor060 wraps OnColor060 and fmt.Fprintf().

func FprintfOnColor061

func FprintfOnColor061(w io.Writer, format string, args ...any)

FprintfOnColor061 wraps OnColor061 and fmt.Fprintf().

func FprintfOnColor062

func FprintfOnColor062(w io.Writer, format string, args ...any)

FprintfOnColor062 wraps OnColor062 and fmt.Fprintf().

func FprintfOnColor063

func FprintfOnColor063(w io.Writer, format string, args ...any)

FprintfOnColor063 wraps OnColor063 and fmt.Fprintf().

func FprintfOnColor064

func FprintfOnColor064(w io.Writer, format string, args ...any)

FprintfOnColor064 wraps OnColor064 and fmt.Fprintf().

func FprintfOnColor065

func FprintfOnColor065(w io.Writer, format string, args ...any)

FprintfOnColor065 wraps OnColor065 and fmt.Fprintf().

func FprintfOnColor066

func FprintfOnColor066(w io.Writer, format string, args ...any)

FprintfOnColor066 wraps OnColor066 and fmt.Fprintf().

func FprintfOnColor067

func FprintfOnColor067(w io.Writer, format string, args ...any)

FprintfOnColor067 wraps OnColor067 and fmt.Fprintf().

func FprintfOnColor068

func FprintfOnColor068(w io.Writer, format string, args ...any)

FprintfOnColor068 wraps OnColor068 and fmt.Fprintf().

func FprintfOnColor069

func FprintfOnColor069(w io.Writer, format string, args ...any)

FprintfOnColor069 wraps OnColor069 and fmt.Fprintf().

func FprintfOnColor070

func FprintfOnColor070(w io.Writer, format string, args ...any)

FprintfOnColor070 wraps OnColor070 and fmt.Fprintf().

func FprintfOnColor071

func FprintfOnColor071(w io.Writer, format string, args ...any)

FprintfOnColor071 wraps OnColor071 and fmt.Fprintf().

func FprintfOnColor072

func FprintfOnColor072(w io.Writer, format string, args ...any)

FprintfOnColor072 wraps OnColor072 and fmt.Fprintf().

func FprintfOnColor073

func FprintfOnColor073(w io.Writer, format string, args ...any)

FprintfOnColor073 wraps OnColor073 and fmt.Fprintf().

func FprintfOnColor074

func FprintfOnColor074(w io.Writer, format string, args ...any)

FprintfOnColor074 wraps OnColor074 and fmt.Fprintf().

func FprintfOnColor075

func FprintfOnColor075(w io.Writer, format string, args ...any)

FprintfOnColor075 wraps OnColor075 and fmt.Fprintf().

func FprintfOnColor076

func FprintfOnColor076(w io.Writer, format string, args ...any)

FprintfOnColor076 wraps OnColor076 and fmt.Fprintf().

func FprintfOnColor077

func FprintfOnColor077(w io.Writer, format string, args ...any)

FprintfOnColor077 wraps OnColor077 and fmt.Fprintf().

func FprintfOnColor078

func FprintfOnColor078(w io.Writer, format string, args ...any)

FprintfOnColor078 wraps OnColor078 and fmt.Fprintf().

func FprintfOnColor079

func FprintfOnColor079(w io.Writer, format string, args ...any)

FprintfOnColor079 wraps OnColor079 and fmt.Fprintf().

func FprintfOnColor080

func FprintfOnColor080(w io.Writer, format string, args ...any)

FprintfOnColor080 wraps OnColor080 and fmt.Fprintf().

func FprintfOnColor081

func FprintfOnColor081(w io.Writer, format string, args ...any)

FprintfOnColor081 wraps OnColor081 and fmt.Fprintf().

func FprintfOnColor082

func FprintfOnColor082(w io.Writer, format string, args ...any)

FprintfOnColor082 wraps OnColor082 and fmt.Fprintf().

func FprintfOnColor083

func FprintfOnColor083(w io.Writer, format string, args ...any)

FprintfOnColor083 wraps OnColor083 and fmt.Fprintf().

func FprintfOnColor084

func FprintfOnColor084(w io.Writer, format string, args ...any)

FprintfOnColor084 wraps OnColor084 and fmt.Fprintf().

func FprintfOnColor085

func FprintfOnColor085(w io.Writer, format string, args ...any)

FprintfOnColor085 wraps OnColor085 and fmt.Fprintf().

func FprintfOnColor086

func FprintfOnColor086(w io.Writer, format string, args ...any)

FprintfOnColor086 wraps OnColor086 and fmt.Fprintf().

func FprintfOnColor087

func FprintfOnColor087(w io.Writer, format string, args ...any)

FprintfOnColor087 wraps OnColor087 and fmt.Fprintf().

func FprintfOnColor088

func FprintfOnColor088(w io.Writer, format string, args ...any)

FprintfOnColor088 wraps OnColor088 and fmt.Fprintf().

func FprintfOnColor089

func FprintfOnColor089(w io.Writer, format string, args ...any)

FprintfOnColor089 wraps OnColor089 and fmt.Fprintf().

func FprintfOnColor090

func FprintfOnColor090(w io.Writer, format string, args ...any)

FprintfOnColor090 wraps OnColor090 and fmt.Fprintf().

func FprintfOnColor091

func FprintfOnColor091(w io.Writer, format string, args ...any)

FprintfOnColor091 wraps OnColor091 and fmt.Fprintf().

func FprintfOnColor092

func FprintfOnColor092(w io.Writer, format string, args ...any)

FprintfOnColor092 wraps OnColor092 and fmt.Fprintf().

func FprintfOnColor093

func FprintfOnColor093(w io.Writer, format string, args ...any)

FprintfOnColor093 wraps OnColor093 and fmt.Fprintf().

func FprintfOnColor094

func FprintfOnColor094(w io.Writer, format string, args ...any)

FprintfOnColor094 wraps OnColor094 and fmt.Fprintf().

func FprintfOnColor095

func FprintfOnColor095(w io.Writer, format string, args ...any)

FprintfOnColor095 wraps OnColor095 and fmt.Fprintf().

func FprintfOnColor096

func FprintfOnColor096(w io.Writer, format string, args ...any)

FprintfOnColor096 wraps OnColor096 and fmt.Fprintf().

func FprintfOnColor097

func FprintfOnColor097(w io.Writer, format string, args ...any)

FprintfOnColor097 wraps OnColor097 and fmt.Fprintf().

func FprintfOnColor098

func FprintfOnColor098(w io.Writer, format string, args ...any)

FprintfOnColor098 wraps OnColor098 and fmt.Fprintf().

func FprintfOnColor099

func FprintfOnColor099(w io.Writer, format string, args ...any)

FprintfOnColor099 wraps OnColor099 and fmt.Fprintf().

func FprintfOnColor100

func FprintfOnColor100(w io.Writer, format string, args ...any)

FprintfOnColor100 wraps OnColor100 and fmt.Fprintf().

func FprintfOnColor101

func FprintfOnColor101(w io.Writer, format string, args ...any)

FprintfOnColor101 wraps OnColor101 and fmt.Fprintf().

func FprintfOnColor102

func FprintfOnColor102(w io.Writer, format string, args ...any)

FprintfOnColor102 wraps OnColor102 and fmt.Fprintf().

func FprintfOnColor103

func FprintfOnColor103(w io.Writer, format string, args ...any)

FprintfOnColor103 wraps OnColor103 and fmt.Fprintf().

func FprintfOnColor104

func FprintfOnColor104(w io.Writer, format string, args ...any)

FprintfOnColor104 wraps OnColor104 and fmt.Fprintf().

func FprintfOnColor105

func FprintfOnColor105(w io.Writer, format string, args ...any)

FprintfOnColor105 wraps OnColor105 and fmt.Fprintf().

func FprintfOnColor106

func FprintfOnColor106(w io.Writer, format string, args ...any)

FprintfOnColor106 wraps OnColor106 and fmt.Fprintf().

func FprintfOnColor107

func FprintfOnColor107(w io.Writer, format string, args ...any)

FprintfOnColor107 wraps OnColor107 and fmt.Fprintf().

func FprintfOnColor108

func FprintfOnColor108(w io.Writer, format string, args ...any)

FprintfOnColor108 wraps OnColor108 and fmt.Fprintf().

func FprintfOnColor109

func FprintfOnColor109(w io.Writer, format string, args ...any)

FprintfOnColor109 wraps OnColor109 and fmt.Fprintf().

func FprintfOnColor110

func FprintfOnColor110(w io.Writer, format string, args ...any)

FprintfOnColor110 wraps OnColor110 and fmt.Fprintf().

func FprintfOnColor111

func FprintfOnColor111(w io.Writer, format string, args ...any)

FprintfOnColor111 wraps OnColor111 and fmt.Fprintf().

func FprintfOnColor112

func FprintfOnColor112(w io.Writer, format string, args ...any)

FprintfOnColor112 wraps OnColor112 and fmt.Fprintf().

func FprintfOnColor113

func FprintfOnColor113(w io.Writer, format string, args ...any)

FprintfOnColor113 wraps OnColor113 and fmt.Fprintf().

func FprintfOnColor114

func FprintfOnColor114(w io.Writer, format string, args ...any)

FprintfOnColor114 wraps OnColor114 and fmt.Fprintf().

func FprintfOnColor115

func FprintfOnColor115(w io.Writer, format string, args ...any)

FprintfOnColor115 wraps OnColor115 and fmt.Fprintf().

func FprintfOnColor116

func FprintfOnColor116(w io.Writer, format string, args ...any)

FprintfOnColor116 wraps OnColor116 and fmt.Fprintf().

func FprintfOnColor117

func FprintfOnColor117(w io.Writer, format string, args ...any)

FprintfOnColor117 wraps OnColor117 and fmt.Fprintf().

func FprintfOnColor118

func FprintfOnColor118(w io.Writer, format string, args ...any)

FprintfOnColor118 wraps OnColor118 and fmt.Fprintf().

func FprintfOnColor119

func FprintfOnColor119(w io.Writer, format string, args ...any)

FprintfOnColor119 wraps OnColor119 and fmt.Fprintf().

func FprintfOnColor120

func FprintfOnColor120(w io.Writer, format string, args ...any)

FprintfOnColor120 wraps OnColor120 and fmt.Fprintf().

func FprintfOnColor121

func FprintfOnColor121(w io.Writer, format string, args ...any)

FprintfOnColor121 wraps OnColor121 and fmt.Fprintf().

func FprintfOnColor122

func FprintfOnColor122(w io.Writer, format string, args ...any)

FprintfOnColor122 wraps OnColor122 and fmt.Fprintf().

func FprintfOnColor123

func FprintfOnColor123(w io.Writer, format string, args ...any)

FprintfOnColor123 wraps OnColor123 and fmt.Fprintf().

func FprintfOnColor124

func FprintfOnColor124(w io.Writer, format string, args ...any)

FprintfOnColor124 wraps OnColor124 and fmt.Fprintf().

func FprintfOnColor125

func FprintfOnColor125(w io.Writer, format string, args ...any)

FprintfOnColor125 wraps OnColor125 and fmt.Fprintf().

func FprintfOnColor126

func FprintfOnColor126(w io.Writer, format string, args ...any)

FprintfOnColor126 wraps OnColor126 and fmt.Fprintf().

func FprintfOnColor127

func FprintfOnColor127(w io.Writer, format string, args ...any)

FprintfOnColor127 wraps OnColor127 and fmt.Fprintf().

func FprintfOnColor128

func FprintfOnColor128(w io.Writer, format string, args ...any)

FprintfOnColor128 wraps OnColor128 and fmt.Fprintf().

func FprintfOnColor129

func FprintfOnColor129(w io.Writer, format string, args ...any)

FprintfOnColor129 wraps OnColor129 and fmt.Fprintf().

func FprintfOnColor130

func FprintfOnColor130(w io.Writer, format string, args ...any)

FprintfOnColor130 wraps OnColor130 and fmt.Fprintf().

func FprintfOnColor131

func FprintfOnColor131(w io.Writer, format string, args ...any)

FprintfOnColor131 wraps OnColor131 and fmt.Fprintf().

func FprintfOnColor132

func FprintfOnColor132(w io.Writer, format string, args ...any)

FprintfOnColor132 wraps OnColor132 and fmt.Fprintf().

func FprintfOnColor133

func FprintfOnColor133(w io.Writer, format string, args ...any)

FprintfOnColor133 wraps OnColor133 and fmt.Fprintf().

func FprintfOnColor134

func FprintfOnColor134(w io.Writer, format string, args ...any)

FprintfOnColor134 wraps OnColor134 and fmt.Fprintf().

func FprintfOnColor135

func FprintfOnColor135(w io.Writer, format string, args ...any)

FprintfOnColor135 wraps OnColor135 and fmt.Fprintf().

func FprintfOnColor136

func FprintfOnColor136(w io.Writer, format string, args ...any)

FprintfOnColor136 wraps OnColor136 and fmt.Fprintf().

func FprintfOnColor137

func FprintfOnColor137(w io.Writer, format string, args ...any)

FprintfOnColor137 wraps OnColor137 and fmt.Fprintf().

func FprintfOnColor138

func FprintfOnColor138(w io.Writer, format string, args ...any)

FprintfOnColor138 wraps OnColor138 and fmt.Fprintf().

func FprintfOnColor139

func FprintfOnColor139(w io.Writer, format string, args ...any)

FprintfOnColor139 wraps OnColor139 and fmt.Fprintf().

func FprintfOnColor140

func FprintfOnColor140(w io.Writer, format string, args ...any)

FprintfOnColor140 wraps OnColor140 and fmt.Fprintf().

func FprintfOnColor141

func FprintfOnColor141(w io.Writer, format string, args ...any)

FprintfOnColor141 wraps OnColor141 and fmt.Fprintf().

func FprintfOnColor142

func FprintfOnColor142(w io.Writer, format string, args ...any)

FprintfOnColor142 wraps OnColor142 and fmt.Fprintf().

func FprintfOnColor143

func FprintfOnColor143(w io.Writer, format string, args ...any)

FprintfOnColor143 wraps OnColor143 and fmt.Fprintf().

func FprintfOnColor144

func FprintfOnColor144(w io.Writer, format string, args ...any)

FprintfOnColor144 wraps OnColor144 and fmt.Fprintf().

func FprintfOnColor145

func FprintfOnColor145(w io.Writer, format string, args ...any)

FprintfOnColor145 wraps OnColor145 and fmt.Fprintf().

func FprintfOnColor146

func FprintfOnColor146(w io.Writer, format string, args ...any)

FprintfOnColor146 wraps OnColor146 and fmt.Fprintf().

func FprintfOnColor147

func FprintfOnColor147(w io.Writer, format string, args ...any)

FprintfOnColor147 wraps OnColor147 and fmt.Fprintf().

func FprintfOnColor148

func FprintfOnColor148(w io.Writer, format string, args ...any)

FprintfOnColor148 wraps OnColor148 and fmt.Fprintf().

func FprintfOnColor149

func FprintfOnColor149(w io.Writer, format string, args ...any)

FprintfOnColor149 wraps OnColor149 and fmt.Fprintf().

func FprintfOnColor150

func FprintfOnColor150(w io.Writer, format string, args ...any)

FprintfOnColor150 wraps OnColor150 and fmt.Fprintf().

func FprintfOnColor151

func FprintfOnColor151(w io.Writer, format string, args ...any)

FprintfOnColor151 wraps OnColor151 and fmt.Fprintf().

func FprintfOnColor152

func FprintfOnColor152(w io.Writer, format string, args ...any)

FprintfOnColor152 wraps OnColor152 and fmt.Fprintf().

func FprintfOnColor153

func FprintfOnColor153(w io.Writer, format string, args ...any)

FprintfOnColor153 wraps OnColor153 and fmt.Fprintf().

func FprintfOnColor154

func FprintfOnColor154(w io.Writer, format string, args ...any)

FprintfOnColor154 wraps OnColor154 and fmt.Fprintf().

func FprintfOnColor155

func FprintfOnColor155(w io.Writer, format string, args ...any)

FprintfOnColor155 wraps OnColor155 and fmt.Fprintf().

func FprintfOnColor156

func FprintfOnColor156(w io.Writer, format string, args ...any)

FprintfOnColor156 wraps OnColor156 and fmt.Fprintf().

func FprintfOnColor157

func FprintfOnColor157(w io.Writer, format string, args ...any)

FprintfOnColor157 wraps OnColor157 and fmt.Fprintf().

func FprintfOnColor158

func FprintfOnColor158(w io.Writer, format string, args ...any)

FprintfOnColor158 wraps OnColor158 and fmt.Fprintf().

func FprintfOnColor159

func FprintfOnColor159(w io.Writer, format string, args ...any)

FprintfOnColor159 wraps OnColor159 and fmt.Fprintf().

func FprintfOnColor160

func FprintfOnColor160(w io.Writer, format string, args ...any)

FprintfOnColor160 wraps OnColor160 and fmt.Fprintf().

func FprintfOnColor161

func FprintfOnColor161(w io.Writer, format string, args ...any)

FprintfOnColor161 wraps OnColor161 and fmt.Fprintf().

func FprintfOnColor162

func FprintfOnColor162(w io.Writer, format string, args ...any)

FprintfOnColor162 wraps OnColor162 and fmt.Fprintf().

func FprintfOnColor163

func FprintfOnColor163(w io.Writer, format string, args ...any)

FprintfOnColor163 wraps OnColor163 and fmt.Fprintf().

func FprintfOnColor164

func FprintfOnColor164(w io.Writer, format string, args ...any)

FprintfOnColor164 wraps OnColor164 and fmt.Fprintf().

func FprintfOnColor165

func FprintfOnColor165(w io.Writer, format string, args ...any)

FprintfOnColor165 wraps OnColor165 and fmt.Fprintf().

func FprintfOnColor166

func FprintfOnColor166(w io.Writer, format string, args ...any)

FprintfOnColor166 wraps OnColor166 and fmt.Fprintf().

func FprintfOnColor167

func FprintfOnColor167(w io.Writer, format string, args ...any)

FprintfOnColor167 wraps OnColor167 and fmt.Fprintf().

func FprintfOnColor168

func FprintfOnColor168(w io.Writer, format string, args ...any)

FprintfOnColor168 wraps OnColor168 and fmt.Fprintf().

func FprintfOnColor169

func FprintfOnColor169(w io.Writer, format string, args ...any)

FprintfOnColor169 wraps OnColor169 and fmt.Fprintf().

func FprintfOnColor170

func FprintfOnColor170(w io.Writer, format string, args ...any)

FprintfOnColor170 wraps OnColor170 and fmt.Fprintf().

func FprintfOnColor171

func FprintfOnColor171(w io.Writer, format string, args ...any)

FprintfOnColor171 wraps OnColor171 and fmt.Fprintf().

func FprintfOnColor172

func FprintfOnColor172(w io.Writer, format string, args ...any)

FprintfOnColor172 wraps OnColor172 and fmt.Fprintf().

func FprintfOnColor173

func FprintfOnColor173(w io.Writer, format string, args ...any)

FprintfOnColor173 wraps OnColor173 and fmt.Fprintf().

func FprintfOnColor174

func FprintfOnColor174(w io.Writer, format string, args ...any)

FprintfOnColor174 wraps OnColor174 and fmt.Fprintf().

func FprintfOnColor175

func FprintfOnColor175(w io.Writer, format string, args ...any)

FprintfOnColor175 wraps OnColor175 and fmt.Fprintf().

func FprintfOnColor176

func FprintfOnColor176(w io.Writer, format string, args ...any)

FprintfOnColor176 wraps OnColor176 and fmt.Fprintf().

func FprintfOnColor177

func FprintfOnColor177(w io.Writer, format string, args ...any)

FprintfOnColor177 wraps OnColor177 and fmt.Fprintf().

func FprintfOnColor178

func FprintfOnColor178(w io.Writer, format string, args ...any)

FprintfOnColor178 wraps OnColor178 and fmt.Fprintf().

func FprintfOnColor179

func FprintfOnColor179(w io.Writer, format string, args ...any)

FprintfOnColor179 wraps OnColor179 and fmt.Fprintf().

func FprintfOnColor180

func FprintfOnColor180(w io.Writer, format string, args ...any)

FprintfOnColor180 wraps OnColor180 and fmt.Fprintf().

func FprintfOnColor181

func FprintfOnColor181(w io.Writer, format string, args ...any)

FprintfOnColor181 wraps OnColor181 and fmt.Fprintf().

func FprintfOnColor182

func FprintfOnColor182(w io.Writer, format string, args ...any)

FprintfOnColor182 wraps OnColor182 and fmt.Fprintf().

func FprintfOnColor183

func FprintfOnColor183(w io.Writer, format string, args ...any)

FprintfOnColor183 wraps OnColor183 and fmt.Fprintf().

func FprintfOnColor184

func FprintfOnColor184(w io.Writer, format string, args ...any)

FprintfOnColor184 wraps OnColor184 and fmt.Fprintf().

func FprintfOnColor185

func FprintfOnColor185(w io.Writer, format string, args ...any)

FprintfOnColor185 wraps OnColor185 and fmt.Fprintf().

func FprintfOnColor186

func FprintfOnColor186(w io.Writer, format string, args ...any)

FprintfOnColor186 wraps OnColor186 and fmt.Fprintf().

func FprintfOnColor187

func FprintfOnColor187(w io.Writer, format string, args ...any)

FprintfOnColor187 wraps OnColor187 and fmt.Fprintf().

func FprintfOnColor188

func FprintfOnColor188(w io.Writer, format string, args ...any)

FprintfOnColor188 wraps OnColor188 and fmt.Fprintf().

func FprintfOnColor189

func FprintfOnColor189(w io.Writer, format string, args ...any)

FprintfOnColor189 wraps OnColor189 and fmt.Fprintf().

func FprintfOnColor190

func FprintfOnColor190(w io.Writer, format string, args ...any)

FprintfOnColor190 wraps OnColor190 and fmt.Fprintf().

func FprintfOnColor191

func FprintfOnColor191(w io.Writer, format string, args ...any)

FprintfOnColor191 wraps OnColor191 and fmt.Fprintf().

func FprintfOnColor192

func FprintfOnColor192(w io.Writer, format string, args ...any)

FprintfOnColor192 wraps OnColor192 and fmt.Fprintf().

func FprintfOnColor193

func FprintfOnColor193(w io.Writer, format string, args ...any)

FprintfOnColor193 wraps OnColor193 and fmt.Fprintf().

func FprintfOnColor194

func FprintfOnColor194(w io.Writer, format string, args ...any)

FprintfOnColor194 wraps OnColor194 and fmt.Fprintf().

func FprintfOnColor195

func FprintfOnColor195(w io.Writer, format string, args ...any)

FprintfOnColor195 wraps OnColor195 and fmt.Fprintf().

func FprintfOnColor196

func FprintfOnColor196(w io.Writer, format string, args ...any)

FprintfOnColor196 wraps OnColor196 and fmt.Fprintf().

func FprintfOnColor197

func FprintfOnColor197(w io.Writer, format string, args ...any)

FprintfOnColor197 wraps OnColor197 and fmt.Fprintf().

func FprintfOnColor198

func FprintfOnColor198(w io.Writer, format string, args ...any)

FprintfOnColor198 wraps OnColor198 and fmt.Fprintf().

func FprintfOnColor199

func FprintfOnColor199(w io.Writer, format string, args ...any)

FprintfOnColor199 wraps OnColor199 and fmt.Fprintf().

func FprintfOnColor200

func FprintfOnColor200(w io.Writer, format string, args ...any)

FprintfOnColor200 wraps OnColor200 and fmt.Fprintf().

func FprintfOnColor201

func FprintfOnColor201(w io.Writer, format string, args ...any)

FprintfOnColor201 wraps OnColor201 and fmt.Fprintf().

func FprintfOnColor202

func FprintfOnColor202(w io.Writer, format string, args ...any)

FprintfOnColor202 wraps OnColor202 and fmt.Fprintf().

func FprintfOnColor203

func FprintfOnColor203(w io.Writer, format string, args ...any)

FprintfOnColor203 wraps OnColor203 and fmt.Fprintf().

func FprintfOnColor204

func FprintfOnColor204(w io.Writer, format string, args ...any)

FprintfOnColor204 wraps OnColor204 and fmt.Fprintf().

func FprintfOnColor205

func FprintfOnColor205(w io.Writer, format string, args ...any)

FprintfOnColor205 wraps OnColor205 and fmt.Fprintf().

func FprintfOnColor206

func FprintfOnColor206(w io.Writer, format string, args ...any)

FprintfOnColor206 wraps OnColor206 and fmt.Fprintf().

func FprintfOnColor207

func FprintfOnColor207(w io.Writer, format string, args ...any)

FprintfOnColor207 wraps OnColor207 and fmt.Fprintf().

func FprintfOnColor208

func FprintfOnColor208(w io.Writer, format string, args ...any)

FprintfOnColor208 wraps OnColor208 and fmt.Fprintf().

func FprintfOnColor209

func FprintfOnColor209(w io.Writer, format string, args ...any)

FprintfOnColor209 wraps OnColor209 and fmt.Fprintf().

func FprintfOnColor210

func FprintfOnColor210(w io.Writer, format string, args ...any)

FprintfOnColor210 wraps OnColor210 and fmt.Fprintf().

func FprintfOnColor211

func FprintfOnColor211(w io.Writer, format string, args ...any)

FprintfOnColor211 wraps OnColor211 and fmt.Fprintf().

func FprintfOnColor212

func FprintfOnColor212(w io.Writer, format string, args ...any)

FprintfOnColor212 wraps OnColor212 and fmt.Fprintf().

func FprintfOnColor213

func FprintfOnColor213(w io.Writer, format string, args ...any)

FprintfOnColor213 wraps OnColor213 and fmt.Fprintf().

func FprintfOnColor214

func FprintfOnColor214(w io.Writer, format string, args ...any)

FprintfOnColor214 wraps OnColor214 and fmt.Fprintf().

func FprintfOnColor215

func FprintfOnColor215(w io.Writer, format string, args ...any)

FprintfOnColor215 wraps OnColor215 and fmt.Fprintf().

func FprintfOnColor216

func FprintfOnColor216(w io.Writer, format string, args ...any)

FprintfOnColor216 wraps OnColor216 and fmt.Fprintf().

func FprintfOnColor217

func FprintfOnColor217(w io.Writer, format string, args ...any)

FprintfOnColor217 wraps OnColor217 and fmt.Fprintf().

func FprintfOnColor218

func FprintfOnColor218(w io.Writer, format string, args ...any)

FprintfOnColor218 wraps OnColor218 and fmt.Fprintf().

func FprintfOnColor219

func FprintfOnColor219(w io.Writer, format string, args ...any)

FprintfOnColor219 wraps OnColor219 and fmt.Fprintf().

func FprintfOnColor220

func FprintfOnColor220(w io.Writer, format string, args ...any)

FprintfOnColor220 wraps OnColor220 and fmt.Fprintf().

func FprintfOnColor221

func FprintfOnColor221(w io.Writer, format string, args ...any)

FprintfOnColor221 wraps OnColor221 and fmt.Fprintf().

func FprintfOnColor222

func FprintfOnColor222(w io.Writer, format string, args ...any)

FprintfOnColor222 wraps OnColor222 and fmt.Fprintf().

func FprintfOnColor223

func FprintfOnColor223(w io.Writer, format string, args ...any)

FprintfOnColor223 wraps OnColor223 and fmt.Fprintf().

func FprintfOnColor224

func FprintfOnColor224(w io.Writer, format string, args ...any)

FprintfOnColor224 wraps OnColor224 and fmt.Fprintf().

func FprintfOnColor225

func FprintfOnColor225(w io.Writer, format string, args ...any)

FprintfOnColor225 wraps OnColor225 and fmt.Fprintf().

func FprintfOnColor226

func FprintfOnColor226(w io.Writer, format string, args ...any)

FprintfOnColor226 wraps OnColor226 and fmt.Fprintf().

func FprintfOnColor227

func FprintfOnColor227(w io.Writer, format string, args ...any)

FprintfOnColor227 wraps OnColor227 and fmt.Fprintf().

func FprintfOnColor228

func FprintfOnColor228(w io.Writer, format string, args ...any)

FprintfOnColor228 wraps OnColor228 and fmt.Fprintf().

func FprintfOnColor229

func FprintfOnColor229(w io.Writer, format string, args ...any)

FprintfOnColor229 wraps OnColor229 and fmt.Fprintf().

func FprintfOnColor230

func FprintfOnColor230(w io.Writer, format string, args ...any)

FprintfOnColor230 wraps OnColor230 and fmt.Fprintf().

func FprintfOnColor231

func FprintfOnColor231(w io.Writer, format string, args ...any)

FprintfOnColor231 wraps OnColor231 and fmt.Fprintf().

func FprintfOnColor232

func FprintfOnColor232(w io.Writer, format string, args ...any)

FprintfOnColor232 wraps OnColor232 and fmt.Fprintf().

func FprintfOnColor233

func FprintfOnColor233(w io.Writer, format string, args ...any)

FprintfOnColor233 wraps OnColor233 and fmt.Fprintf().

func FprintfOnColor234

func FprintfOnColor234(w io.Writer, format string, args ...any)

FprintfOnColor234 wraps OnColor234 and fmt.Fprintf().

func FprintfOnColor235

func FprintfOnColor235(w io.Writer, format string, args ...any)

FprintfOnColor235 wraps OnColor235 and fmt.Fprintf().

func FprintfOnColor236

func FprintfOnColor236(w io.Writer, format string, args ...any)

FprintfOnColor236 wraps OnColor236 and fmt.Fprintf().

func FprintfOnColor237

func FprintfOnColor237(w io.Writer, format string, args ...any)

FprintfOnColor237 wraps OnColor237 and fmt.Fprintf().

func FprintfOnColor238

func FprintfOnColor238(w io.Writer, format string, args ...any)

FprintfOnColor238 wraps OnColor238 and fmt.Fprintf().

func FprintfOnColor239

func FprintfOnColor239(w io.Writer, format string, args ...any)

FprintfOnColor239 wraps OnColor239 and fmt.Fprintf().

func FprintfOnColor240

func FprintfOnColor240(w io.Writer, format string, args ...any)

FprintfOnColor240 wraps OnColor240 and fmt.Fprintf().

func FprintfOnColor241

func FprintfOnColor241(w io.Writer, format string, args ...any)

FprintfOnColor241 wraps OnColor241 and fmt.Fprintf().

func FprintfOnColor242

func FprintfOnColor242(w io.Writer, format string, args ...any)

FprintfOnColor242 wraps OnColor242 and fmt.Fprintf().

func FprintfOnColor243

func FprintfOnColor243(w io.Writer, format string, args ...any)

FprintfOnColor243 wraps OnColor243 and fmt.Fprintf().

func FprintfOnColor244

func FprintfOnColor244(w io.Writer, format string, args ...any)

FprintfOnColor244 wraps OnColor244 and fmt.Fprintf().

func FprintfOnColor245

func FprintfOnColor245(w io.Writer, format string, args ...any)

FprintfOnColor245 wraps OnColor245 and fmt.Fprintf().

func FprintfOnColor246

func FprintfOnColor246(w io.Writer, format string, args ...any)

FprintfOnColor246 wraps OnColor246 and fmt.Fprintf().

func FprintfOnColor247

func FprintfOnColor247(w io.Writer, format string, args ...any)

FprintfOnColor247 wraps OnColor247 and fmt.Fprintf().

func FprintfOnColor248

func FprintfOnColor248(w io.Writer, format string, args ...any)

FprintfOnColor248 wraps OnColor248 and fmt.Fprintf().

func FprintfOnColor249

func FprintfOnColor249(w io.Writer, format string, args ...any)

FprintfOnColor249 wraps OnColor249 and fmt.Fprintf().

func FprintfOnColor250

func FprintfOnColor250(w io.Writer, format string, args ...any)

FprintfOnColor250 wraps OnColor250 and fmt.Fprintf().

func FprintfOnColor251

func FprintfOnColor251(w io.Writer, format string, args ...any)

FprintfOnColor251 wraps OnColor251 and fmt.Fprintf().

func FprintfOnColor252

func FprintfOnColor252(w io.Writer, format string, args ...any)

FprintfOnColor252 wraps OnColor252 and fmt.Fprintf().

func FprintfOnColor253

func FprintfOnColor253(w io.Writer, format string, args ...any)

FprintfOnColor253 wraps OnColor253 and fmt.Fprintf().

func FprintfOnColor254

func FprintfOnColor254(w io.Writer, format string, args ...any)

FprintfOnColor254 wraps OnColor254 and fmt.Fprintf().

func FprintfOnColor255

func FprintfOnColor255(w io.Writer, format string, args ...any)

FprintfOnColor255 wraps OnColor255 and fmt.Fprintf().

func FprintfOnCyan

func FprintfOnCyan(w io.Writer, format string, args ...any)

FprintfOnCyan wraps OnCyan and fmt.Fprintf().

func FprintfOnDefault

func FprintfOnDefault(w io.Writer, format string, args ...any)

FprintfOnDefault wraps OnDefault and fmt.Fprintf().

func FprintfOnGreen

func FprintfOnGreen(w io.Writer, format string, args ...any)

FprintfOnGreen wraps OnGreen and fmt.Fprintf().

func FprintfOnHex

func FprintfOnHex(w io.Writer, hex string, format string, args ...any)

FprintfOnHex wraps OnHex and fmt.Fprintf().

func FprintfOnLightBlack

func FprintfOnLightBlack(w io.Writer, format string, args ...any)

FprintfOnLightBlack wraps OnLightBlack and fmt.Fprintf().

func FprintfOnLightBlue

func FprintfOnLightBlue(w io.Writer, format string, args ...any)

FprintfOnLightBlue wraps OnLightBlue and fmt.Fprintf().

func FprintfOnLightCyan

func FprintfOnLightCyan(w io.Writer, format string, args ...any)

FprintfOnLightCyan wraps OnLightCyan and fmt.Fprintf().

func FprintfOnLightGreen

func FprintfOnLightGreen(w io.Writer, format string, args ...any)

FprintfOnLightGreen wraps OnLightGreen and fmt.Fprintf().

func FprintfOnLightMagenta

func FprintfOnLightMagenta(w io.Writer, format string, args ...any)

FprintfOnLightMagenta wraps OnLightMagenta and fmt.Fprintf().

func FprintfOnLightRed

func FprintfOnLightRed(w io.Writer, format string, args ...any)

FprintfOnLightRed wraps OnLightRed and fmt.Fprintf().

func FprintfOnLightWhite

func FprintfOnLightWhite(w io.Writer, format string, args ...any)

FprintfOnLightWhite wraps OnLightWhite and fmt.Fprintf().

func FprintfOnLightYellow

func FprintfOnLightYellow(w io.Writer, format string, args ...any)

FprintfOnLightYellow wraps OnLightYellow and fmt.Fprintf().

func FprintfOnMagenta

func FprintfOnMagenta(w io.Writer, format string, args ...any)

FprintfOnMagenta wraps OnMagenta and fmt.Fprintf().

func FprintfOnRainbow

func FprintfOnRainbow(w io.Writer, format string, args ...any)

FprintfOnRainbow wraps OnRainbow and fmt.Fprintf().

func FprintfOnRed

func FprintfOnRed(w io.Writer, format string, args ...any)

FprintfOnRed wraps OnRed and fmt.Fprintf().

func FprintfOnWhite

func FprintfOnWhite(w io.Writer, format string, args ...any)

FprintfOnWhite wraps OnWhite and fmt.Fprintf().

func FprintfOnYellow

func FprintfOnYellow(w io.Writer, format string, args ...any)

FprintfOnYellow wraps OnYellow and fmt.Fprintf().

func FprintfPlain

func FprintfPlain(w io.Writer, format string, args ...any)

FprintfPlain wraps Plain and fmt.Fprintf().

func FprintfRainbow

func FprintfRainbow(w io.Writer, format string, args ...any)

FprintfRainbow wraps Rainbow and fmt.Fprintf().

func FprintfRed

func FprintfRed(w io.Writer, format string, args ...any)

FprintfRed wraps Red and fmt.Fprintf().

func FprintfReset

func FprintfReset(w io.Writer, format string, args ...any)

FprintfReset wraps Reset and fmt.Fprintf().

func FprintfStrikethrough

func FprintfStrikethrough(w io.Writer, format string, args ...any)

FprintfStrikethrough wraps Strikethrough and fmt.Fprintf().

func FprintfSwap

func FprintfSwap(w io.Writer, format string, args ...any)

FprintfSwap wraps Swap and fmt.Fprintf().

func FprintfUnderline

func FprintfUnderline(w io.Writer, format string, args ...any)

FprintfUnderline wraps Underline and fmt.Fprintf().

func FprintfWhite

func FprintfWhite(w io.Writer, format string, args ...any)

FprintfWhite wraps White and fmt.Fprintf().

func FprintfWrap

func FprintfWrap(w io.Writer, width int, format string, args ...any)

FprintfWrap wraps Wrap and fmt.Fprintf().

func FprintfYellow

func FprintfYellow(w io.Writer, format string, args ...any)

FprintfYellow wraps Yellow and fmt.Fprintf().

func Fprintln

func Fprintln(w io.Writer, args ...any) (int, error)

Fprintln wraps fmt.Fprintln().

func FprintlnBlack

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

func FprintlnBlinkRapid(w io.Writer, str string)

FprintlnBlinkRapid wraps BlinkRapid() and fmt.Fprintln().

func FprintlnBlinkSlow

func FprintlnBlinkSlow(w io.Writer, str string)

FprintlnBlinkSlow wraps BlinkSlow() and fmt.Fprintln().

func FprintlnBlue

func FprintlnBlue(w io.Writer, str string)

FprintlnBlue wraps Blue() and fmt.Fprintln().

func FprintlnBold

func FprintlnBold(w io.Writer, str string)

FprintlnBold wraps Bold() and fmt.Fprintln().

func FprintlnColor000

func FprintlnColor000(w io.Writer, str string)

FprintlnColor000 wraps Color000() and fmt.Fprintln().

func FprintlnColor001

func FprintlnColor001(w io.Writer, str string)

FprintlnColor001 wraps Color001() and fmt.Fprintln().

func FprintlnColor002

func FprintlnColor002(w io.Writer, str string)

FprintlnColor002 wraps Color002() and fmt.Fprintln().

func FprintlnColor003

func FprintlnColor003(w io.Writer, str string)

FprintlnColor003 wraps Color003() and fmt.Fprintln().

func FprintlnColor004

func FprintlnColor004(w io.Writer, str string)

FprintlnColor004 wraps Color004() and fmt.Fprintln().

func FprintlnColor005

func FprintlnColor005(w io.Writer, str string)

FprintlnColor005 wraps Color005() and fmt.Fprintln().

func FprintlnColor006

func FprintlnColor006(w io.Writer, str string)

FprintlnColor006 wraps Color006() and fmt.Fprintln().

func FprintlnColor007

func FprintlnColor007(w io.Writer, str string)

FprintlnColor007 wraps Color007() and fmt.Fprintln().

func FprintlnColor008

func FprintlnColor008(w io.Writer, str string)

FprintlnColor008 wraps Color008() and fmt.Fprintln().

func FprintlnColor009

func FprintlnColor009(w io.Writer, str string)

FprintlnColor009 wraps Color009() and fmt.Fprintln().

func FprintlnColor010

func FprintlnColor010(w io.Writer, str string)

FprintlnColor010 wraps Color010() and fmt.Fprintln().

func FprintlnColor011

func FprintlnColor011(w io.Writer, str string)

FprintlnColor011 wraps Color011() and fmt.Fprintln().

func FprintlnColor012

func FprintlnColor012(w io.Writer, str string)

FprintlnColor012 wraps Color012() and fmt.Fprintln().

func FprintlnColor013

func FprintlnColor013(w io.Writer, str string)

FprintlnColor013 wraps Color013() and fmt.Fprintln().

func FprintlnColor014

func FprintlnColor014(w io.Writer, str string)

FprintlnColor014 wraps Color014() and fmt.Fprintln().

func FprintlnColor015

func FprintlnColor015(w io.Writer, str string)

FprintlnColor015 wraps Color015() and fmt.Fprintln().

func FprintlnColor016

func FprintlnColor016(w io.Writer, str string)

FprintlnColor016 wraps Color016() and fmt.Fprintln().

func FprintlnColor017

func FprintlnColor017(w io.Writer, str string)

FprintlnColor017 wraps Color017() and fmt.Fprintln().

func FprintlnColor018

func FprintlnColor018(w io.Writer, str string)

FprintlnColor018 wraps Color018() and fmt.Fprintln().

func FprintlnColor019

func FprintlnColor019(w io.Writer, str string)

FprintlnColor019 wraps Color019() and fmt.Fprintln().

func FprintlnColor020

func FprintlnColor020(w io.Writer, str string)

FprintlnColor020 wraps Color020() and fmt.Fprintln().

func FprintlnColor021

func FprintlnColor021(w io.Writer, str string)

FprintlnColor021 wraps Color021() and fmt.Fprintln().

func FprintlnColor022

func FprintlnColor022(w io.Writer, str string)

FprintlnColor022 wraps Color022() and fmt.Fprintln().

func FprintlnColor023

func FprintlnColor023(w io.Writer, str string)

FprintlnColor023 wraps Color023() and fmt.Fprintln().

func FprintlnColor024

func FprintlnColor024(w io.Writer, str string)

FprintlnColor024 wraps Color024() and fmt.Fprintln().

func FprintlnColor025

func FprintlnColor025(w io.Writer, str string)

FprintlnColor025 wraps Color025() and fmt.Fprintln().

func FprintlnColor026

func FprintlnColor026(w io.Writer, str string)

FprintlnColor026 wraps Color026() and fmt.Fprintln().

func FprintlnColor027

func FprintlnColor027(w io.Writer, str string)

FprintlnColor027 wraps Color027() and fmt.Fprintln().

func FprintlnColor028

func FprintlnColor028(w io.Writer, str string)

FprintlnColor028 wraps Color028() and fmt.Fprintln().

func FprintlnColor029

func FprintlnColor029(w io.Writer, str string)

FprintlnColor029 wraps Color029() and fmt.Fprintln().

func FprintlnColor030

func FprintlnColor030(w io.Writer, str string)

FprintlnColor030 wraps Color030() and fmt.Fprintln().

func FprintlnColor031

func FprintlnColor031(w io.Writer, str string)

FprintlnColor031 wraps Color031() and fmt.Fprintln().

func FprintlnColor032

func FprintlnColor032(w io.Writer, str string)

FprintlnColor032 wraps Color032() and fmt.Fprintln().

func FprintlnColor033

func FprintlnColor033(w io.Writer, str string)

FprintlnColor033 wraps Color033() and fmt.Fprintln().

func FprintlnColor034

func FprintlnColor034(w io.Writer, str string)

FprintlnColor034 wraps Color034() and fmt.Fprintln().

func FprintlnColor035

func FprintlnColor035(w io.Writer, str string)

FprintlnColor035 wraps Color035() and fmt.Fprintln().

func FprintlnColor036

func FprintlnColor036(w io.Writer, str string)

FprintlnColor036 wraps Color036() and fmt.Fprintln().

func FprintlnColor037

func FprintlnColor037(w io.Writer, str string)

FprintlnColor037 wraps Color037() and fmt.Fprintln().

func FprintlnColor038

func FprintlnColor038(w io.Writer, str string)

FprintlnColor038 wraps Color038() and fmt.Fprintln().

func FprintlnColor039

func FprintlnColor039(w io.Writer, str string)

FprintlnColor039 wraps Color039() and fmt.Fprintln().

func FprintlnColor040

func FprintlnColor040(w io.Writer, str string)

FprintlnColor040 wraps Color040() and fmt.Fprintln().

func FprintlnColor041

func FprintlnColor041(w io.Writer, str string)

FprintlnColor041 wraps Color041() and fmt.Fprintln().

func FprintlnColor042

func FprintlnColor042(w io.Writer, str string)

FprintlnColor042 wraps Color042() and fmt.Fprintln().

func FprintlnColor043

func FprintlnColor043(w io.Writer, str string)

FprintlnColor043 wraps Color043() and fmt.Fprintln().

func FprintlnColor044

func FprintlnColor044(w io.Writer, str string)

FprintlnColor044 wraps Color044() and fmt.Fprintln().

func FprintlnColor045

func FprintlnColor045(w io.Writer, str string)

FprintlnColor045 wraps Color045() and fmt.Fprintln().

func FprintlnColor046

func FprintlnColor046(w io.Writer, str string)

FprintlnColor046 wraps Color046() and fmt.Fprintln().

func FprintlnColor047

func FprintlnColor047(w io.Writer, str string)

FprintlnColor047 wraps Color047() and fmt.Fprintln().

func FprintlnColor048

func FprintlnColor048(w io.Writer, str string)

FprintlnColor048 wraps Color048() and fmt.Fprintln().

func FprintlnColor049

func FprintlnColor049(w io.Writer, str string)

FprintlnColor049 wraps Color049() and fmt.Fprintln().

func FprintlnColor050

func FprintlnColor050(w io.Writer, str string)

FprintlnColor050 wraps Color050() and fmt.Fprintln().

func FprintlnColor051

func FprintlnColor051(w io.Writer, str string)

FprintlnColor051 wraps Color051() and fmt.Fprintln().

func FprintlnColor052

func FprintlnColor052(w io.Writer, str string)

FprintlnColor052 wraps Color052() and fmt.Fprintln().

func FprintlnColor053

func FprintlnColor053(w io.Writer, str string)

FprintlnColor053 wraps Color053() and fmt.Fprintln().

func FprintlnColor054

func FprintlnColor054(w io.Writer, str string)

FprintlnColor054 wraps Color054() and fmt.Fprintln().

func FprintlnColor055

func FprintlnColor055(w io.Writer, str string)

FprintlnColor055 wraps Color055() and fmt.Fprintln().

func FprintlnColor056

func FprintlnColor056(w io.Writer, str string)

FprintlnColor056 wraps Color056() and fmt.Fprintln().

func FprintlnColor057

func FprintlnColor057(w io.Writer, str string)

FprintlnColor057 wraps Color057() and fmt.Fprintln().

func FprintlnColor058

func FprintlnColor058(w io.Writer, str string)

FprintlnColor058 wraps Color058() and fmt.Fprintln().

func FprintlnColor059

func FprintlnColor059(w io.Writer, str string)

FprintlnColor059 wraps Color059() and fmt.Fprintln().

func FprintlnColor060

func FprintlnColor060(w io.Writer, str string)

FprintlnColor060 wraps Color060() and fmt.Fprintln().

func FprintlnColor061

func FprintlnColor061(w io.Writer, str string)

FprintlnColor061 wraps Color061() and fmt.Fprintln().

func FprintlnColor062

func FprintlnColor062(w io.Writer, str string)

FprintlnColor062 wraps Color062() and fmt.Fprintln().

func FprintlnColor063

func FprintlnColor063(w io.Writer, str string)

FprintlnColor063 wraps Color063() and fmt.Fprintln().

func FprintlnColor064

func FprintlnColor064(w io.Writer, str string)

FprintlnColor064 wraps Color064() and fmt.Fprintln().

func FprintlnColor065

func FprintlnColor065(w io.Writer, str string)

FprintlnColor065 wraps Color065() and fmt.Fprintln().

func FprintlnColor066

func FprintlnColor066(w io.Writer, str string)

FprintlnColor066 wraps Color066() and fmt.Fprintln().

func FprintlnColor067

func FprintlnColor067(w io.Writer, str string)

FprintlnColor067 wraps Color067() and fmt.Fprintln().

func FprintlnColor068

func FprintlnColor068(w io.Writer, str string)

FprintlnColor068 wraps Color068() and fmt.Fprintln().

func FprintlnColor069

func FprintlnColor069(w io.Writer, str string)

FprintlnColor069 wraps Color069() and fmt.Fprintln().

func FprintlnColor070

func FprintlnColor070(w io.Writer, str string)

FprintlnColor070 wraps Color070() and fmt.Fprintln().

func FprintlnColor071

func FprintlnColor071(w io.Writer, str string)

FprintlnColor071 wraps Color071() and fmt.Fprintln().

func FprintlnColor072

func FprintlnColor072(w io.Writer, str string)

FprintlnColor072 wraps Color072() and fmt.Fprintln().

func FprintlnColor073

func FprintlnColor073(w io.Writer, str string)

FprintlnColor073 wraps Color073() and fmt.Fprintln().

func FprintlnColor074

func FprintlnColor074(w io.Writer, str string)

FprintlnColor074 wraps Color074() and fmt.Fprintln().

func FprintlnColor075

func FprintlnColor075(w io.Writer, str string)

FprintlnColor075 wraps Color075() and fmt.Fprintln().

func FprintlnColor076

func FprintlnColor076(w io.Writer, str string)

FprintlnColor076 wraps Color076() and fmt.Fprintln().

func FprintlnColor077

func FprintlnColor077(w io.Writer, str string)

FprintlnColor077 wraps Color077() and fmt.Fprintln().

func FprintlnColor078

func FprintlnColor078(w io.Writer, str string)

FprintlnColor078 wraps Color078() and fmt.Fprintln().

func FprintlnColor079

func FprintlnColor079(w io.Writer, str string)

FprintlnColor079 wraps Color079() and fmt.Fprintln().

func FprintlnColor080

func FprintlnColor080(w io.Writer, str string)

FprintlnColor080 wraps Color080() and fmt.Fprintln().

func FprintlnColor081

func FprintlnColor081(w io.Writer, str string)

FprintlnColor081 wraps Color081() and fmt.Fprintln().

func FprintlnColor082

func FprintlnColor082(w io.Writer, str string)

FprintlnColor082 wraps Color082() and fmt.Fprintln().

func FprintlnColor083

func FprintlnColor083(w io.Writer, str string)

FprintlnColor083 wraps Color083() and fmt.Fprintln().

func FprintlnColor084

func FprintlnColor084(w io.Writer, str string)

FprintlnColor084 wraps Color084() and fmt.Fprintln().

func FprintlnColor085

func FprintlnColor085(w io.Writer, str string)

FprintlnColor085 wraps Color085() and fmt.Fprintln().

func FprintlnColor086

func FprintlnColor086(w io.Writer, str string)

FprintlnColor086 wraps Color086() and fmt.Fprintln().

func FprintlnColor087

func FprintlnColor087(w io.Writer, str string)

FprintlnColor087 wraps Color087() and fmt.Fprintln().

func FprintlnColor088

func FprintlnColor088(w io.Writer, str string)

FprintlnColor088 wraps Color088() and fmt.Fprintln().

func FprintlnColor089

func FprintlnColor089(w io.Writer, str string)

FprintlnColor089 wraps Color089() and fmt.Fprintln().

func FprintlnColor090

func FprintlnColor090(w io.Writer, str string)

FprintlnColor090 wraps Color090() and fmt.Fprintln().

func FprintlnColor091

func FprintlnColor091(w io.Writer, str string)

FprintlnColor091 wraps Color091() and fmt.Fprintln().

func FprintlnColor092

func FprintlnColor092(w io.Writer, str string)

FprintlnColor092 wraps Color092() and fmt.Fprintln().

func FprintlnColor093

func FprintlnColor093(w io.Writer, str string)

FprintlnColor093 wraps Color093() and fmt.Fprintln().

func FprintlnColor094

func FprintlnColor094(w io.Writer, str string)

FprintlnColor094 wraps Color094() and fmt.Fprintln().

func FprintlnColor095

func FprintlnColor095(w io.Writer, str string)

FprintlnColor095 wraps Color095() and fmt.Fprintln().

func FprintlnColor096

func FprintlnColor096(w io.Writer, str string)

FprintlnColor096 wraps Color096() and fmt.Fprintln().

func FprintlnColor097

func FprintlnColor097(w io.Writer, str string)

FprintlnColor097 wraps Color097() and fmt.Fprintln().

func FprintlnColor098

func FprintlnColor098(w io.Writer, str string)

FprintlnColor098 wraps Color098() and fmt.Fprintln().

func FprintlnColor099

func FprintlnColor099(w io.Writer, str string)

FprintlnColor099 wraps Color099() and fmt.Fprintln().

func FprintlnColor100

func FprintlnColor100(w io.Writer, str string)

FprintlnColor100 wraps Color100() and fmt.Fprintln().

func FprintlnColor101

func FprintlnColor101(w io.Writer, str string)

FprintlnColor101 wraps Color101() and fmt.Fprintln().

func FprintlnColor102

func FprintlnColor102(w io.Writer, str string)

FprintlnColor102 wraps Color102() and fmt.Fprintln().

func FprintlnColor103

func FprintlnColor103(w io.Writer, str string)

FprintlnColor103 wraps Color103() and fmt.Fprintln().

func FprintlnColor104

func FprintlnColor104(w io.Writer, str string)

FprintlnColor104 wraps Color104() and fmt.Fprintln().

func FprintlnColor105

func FprintlnColor105(w io.Writer, str string)

FprintlnColor105 wraps Color105() and fmt.Fprintln().

func FprintlnColor106

func FprintlnColor106(w io.Writer, str string)

FprintlnColor106 wraps Color106() and fmt.Fprintln().

func FprintlnColor107

func FprintlnColor107(w io.Writer, str string)

FprintlnColor107 wraps Color107() and fmt.Fprintln().

func FprintlnColor108

func FprintlnColor108(w io.Writer, str string)

FprintlnColor108 wraps Color108() and fmt.Fprintln().

func FprintlnColor109

func FprintlnColor109(w io.Writer, str string)

FprintlnColor109 wraps Color109() and fmt.Fprintln().

func FprintlnColor110

func FprintlnColor110(w io.Writer, str string)

FprintlnColor110 wraps Color110() and fmt.Fprintln().

func FprintlnColor111

func FprintlnColor111(w io.Writer, str string)

FprintlnColor111 wraps Color111() and fmt.Fprintln().

func FprintlnColor112

func FprintlnColor112(w io.Writer, str string)

FprintlnColor112 wraps Color112() and fmt.Fprintln().

func FprintlnColor113

func FprintlnColor113(w io.Writer, str string)

FprintlnColor113 wraps Color113() and fmt.Fprintln().

func FprintlnColor114

func FprintlnColor114(w io.Writer, str string)

FprintlnColor114 wraps Color114() and fmt.Fprintln().

func FprintlnColor115

func FprintlnColor115(w io.Writer, str string)

FprintlnColor115 wraps Color115() and fmt.Fprintln().

func FprintlnColor116

func FprintlnColor116(w io.Writer, str string)

FprintlnColor116 wraps Color116() and fmt.Fprintln().

func FprintlnColor117

func FprintlnColor117(w io.Writer, str string)

FprintlnColor117 wraps Color117() and fmt.Fprintln().

func FprintlnColor118

func FprintlnColor118(w io.Writer, str string)

FprintlnColor118 wraps Color118() and fmt.Fprintln().

func FprintlnColor119

func FprintlnColor119(w io.Writer, str string)

FprintlnColor119 wraps Color119() and fmt.Fprintln().

func FprintlnColor120

func FprintlnColor120(w io.Writer, str string)

FprintlnColor120 wraps Color120() and fmt.Fprintln().

func FprintlnColor121

func FprintlnColor121(w io.Writer, str string)

FprintlnColor121 wraps Color121() and fmt.Fprintln().

func FprintlnColor122

func FprintlnColor122(w io.Writer, str string)

FprintlnColor122 wraps Color122() and fmt.Fprintln().

func FprintlnColor123

func FprintlnColor123(w io.Writer, str string)

FprintlnColor123 wraps Color123() and fmt.Fprintln().

func FprintlnColor124

func FprintlnColor124(w io.Writer, str string)

FprintlnColor124 wraps Color124() and fmt.Fprintln().

func FprintlnColor125

func FprintlnColor125(w io.Writer, str string)

FprintlnColor125 wraps Color125() and fmt.Fprintln().

func FprintlnColor126

func FprintlnColor126(w io.Writer, str string)

FprintlnColor126 wraps Color126() and fmt.Fprintln().

func FprintlnColor127

func FprintlnColor127(w io.Writer, str string)

FprintlnColor127 wraps Color127() and fmt.Fprintln().

func FprintlnColor128

func FprintlnColor128(w io.Writer, str string)

FprintlnColor128 wraps Color128() and fmt.Fprintln().

func FprintlnColor129

func FprintlnColor129(w io.Writer, str string)

FprintlnColor129 wraps Color129() and fmt.Fprintln().

func FprintlnColor130

func FprintlnColor130(w io.Writer, str string)

FprintlnColor130 wraps Color130() and fmt.Fprintln().

func FprintlnColor131

func FprintlnColor131(w io.Writer, str string)

FprintlnColor131 wraps Color131() and fmt.Fprintln().

func FprintlnColor132

func FprintlnColor132(w io.Writer, str string)

FprintlnColor132 wraps Color132() and fmt.Fprintln().

func FprintlnColor133

func FprintlnColor133(w io.Writer, str string)

FprintlnColor133 wraps Color133() and fmt.Fprintln().

func FprintlnColor134

func FprintlnColor134(w io.Writer, str string)

FprintlnColor134 wraps Color134() and fmt.Fprintln().

func FprintlnColor135

func FprintlnColor135(w io.Writer, str string)

FprintlnColor135 wraps Color135() and fmt.Fprintln().

func FprintlnColor136

func FprintlnColor136(w io.Writer, str string)

FprintlnColor136 wraps Color136() and fmt.Fprintln().

func FprintlnColor137

func FprintlnColor137(w io.Writer, str string)

FprintlnColor137 wraps Color137() and fmt.Fprintln().

func FprintlnColor138

func FprintlnColor138(w io.Writer, str string)

FprintlnColor138 wraps Color138() and fmt.Fprintln().

func FprintlnColor139

func FprintlnColor139(w io.Writer, str string)

FprintlnColor139 wraps Color139() and fmt.Fprintln().

func FprintlnColor140

func FprintlnColor140(w io.Writer, str string)

FprintlnColor140 wraps Color140() and fmt.Fprintln().

func FprintlnColor141

func FprintlnColor141(w io.Writer, str string)

FprintlnColor141 wraps Color141() and fmt.Fprintln().

func FprintlnColor142

func FprintlnColor142(w io.Writer, str string)

FprintlnColor142 wraps Color142() and fmt.Fprintln().

func FprintlnColor143

func FprintlnColor143(w io.Writer, str string)

FprintlnColor143 wraps Color143() and fmt.Fprintln().

func FprintlnColor144

func FprintlnColor144(w io.Writer, str string)

FprintlnColor144 wraps Color144() and fmt.Fprintln().

func FprintlnColor145

func FprintlnColor145(w io.Writer, str string)

FprintlnColor145 wraps Color145() and fmt.Fprintln().

func FprintlnColor146

func FprintlnColor146(w io.Writer, str string)

FprintlnColor146 wraps Color146() and fmt.Fprintln().

func FprintlnColor147

func FprintlnColor147(w io.Writer, str string)

FprintlnColor147 wraps Color147() and fmt.Fprintln().

func FprintlnColor148

func FprintlnColor148(w io.Writer, str string)

FprintlnColor148 wraps Color148() and fmt.Fprintln().

func FprintlnColor149

func FprintlnColor149(w io.Writer, str string)

FprintlnColor149 wraps Color149() and fmt.Fprintln().

func FprintlnColor150

func FprintlnColor150(w io.Writer, str string)

FprintlnColor150 wraps Color150() and fmt.Fprintln().

func FprintlnColor151

func FprintlnColor151(w io.Writer, str string)

FprintlnColor151 wraps Color151() and fmt.Fprintln().

func FprintlnColor152

func FprintlnColor152(w io.Writer, str string)

FprintlnColor152 wraps Color152() and fmt.Fprintln().

func FprintlnColor153

func FprintlnColor153(w io.Writer, str string)

FprintlnColor153 wraps Color153() and fmt.Fprintln().

func FprintlnColor154

func FprintlnColor154(w io.Writer, str string)

FprintlnColor154 wraps Color154() and fmt.Fprintln().

func FprintlnColor155

func FprintlnColor155(w io.Writer, str string)

FprintlnColor155 wraps Color155() and fmt.Fprintln().

func FprintlnColor156

func FprintlnColor156(w io.Writer, str string)

FprintlnColor156 wraps Color156() and fmt.Fprintln().

func FprintlnColor157

func FprintlnColor157(w io.Writer, str string)

FprintlnColor157 wraps Color157() and fmt.Fprintln().

func FprintlnColor158

func FprintlnColor158(w io.Writer, str string)

FprintlnColor158 wraps Color158() and fmt.Fprintln().

func FprintlnColor159

func FprintlnColor159(w io.Writer, str string)

FprintlnColor159 wraps Color159() and fmt.Fprintln().

func FprintlnColor160

func FprintlnColor160(w io.Writer, str string)

FprintlnColor160 wraps Color160() and fmt.Fprintln().

func FprintlnColor161

func FprintlnColor161(w io.Writer, str string)

FprintlnColor161 wraps Color161() and fmt.Fprintln().

func FprintlnColor162

func FprintlnColor162(w io.Writer, str string)

FprintlnColor162 wraps Color162() and fmt.Fprintln().

func FprintlnColor163

func FprintlnColor163(w io.Writer, str string)

FprintlnColor163 wraps Color163() and fmt.Fprintln().

func FprintlnColor164

func FprintlnColor164(w io.Writer, str string)

FprintlnColor164 wraps Color164() and fmt.Fprintln().

func FprintlnColor165

func FprintlnColor165(w io.Writer, str string)

FprintlnColor165 wraps Color165() and fmt.Fprintln().

func FprintlnColor166

func FprintlnColor166(w io.Writer, str string)

FprintlnColor166 wraps Color166() and fmt.Fprintln().

func FprintlnColor167

func FprintlnColor167(w io.Writer, str string)

FprintlnColor167 wraps Color167() and fmt.Fprintln().

func FprintlnColor168

func FprintlnColor168(w io.Writer, str string)

FprintlnColor168 wraps Color168() and fmt.Fprintln().

func FprintlnColor169

func FprintlnColor169(w io.Writer, str string)

FprintlnColor169 wraps Color169() and fmt.Fprintln().

func FprintlnColor170

func FprintlnColor170(w io.Writer, str string)

FprintlnColor170 wraps Color170() and fmt.Fprintln().

func FprintlnColor171

func FprintlnColor171(w io.Writer, str string)

FprintlnColor171 wraps Color171() and fmt.Fprintln().

func FprintlnColor172

func FprintlnColor172(w io.Writer, str string)

FprintlnColor172 wraps Color172() and fmt.Fprintln().

func FprintlnColor173

func FprintlnColor173(w io.Writer, str string)

FprintlnColor173 wraps Color173() and fmt.Fprintln().

func FprintlnColor174

func FprintlnColor174(w io.Writer, str string)

FprintlnColor174 wraps Color174() and fmt.Fprintln().

func FprintlnColor175

func FprintlnColor175(w io.Writer, str string)

FprintlnColor175 wraps Color175() and fmt.Fprintln().

func FprintlnColor176

func FprintlnColor176(w io.Writer, str string)

FprintlnColor176 wraps Color176() and fmt.Fprintln().

func FprintlnColor177

func FprintlnColor177(w io.Writer, str string)

FprintlnColor177 wraps Color177() and fmt.Fprintln().

func FprintlnColor178

func FprintlnColor178(w io.Writer, str string)

FprintlnColor178 wraps Color178() and fmt.Fprintln().

func FprintlnColor179

func FprintlnColor179(w io.Writer, str string)

FprintlnColor179 wraps Color179() and fmt.Fprintln().

func FprintlnColor180

func FprintlnColor180(w io.Writer, str string)

FprintlnColor180 wraps Color180() and fmt.Fprintln().

func FprintlnColor181

func FprintlnColor181(w io.Writer, str string)

FprintlnColor181 wraps Color181() and fmt.Fprintln().

func FprintlnColor182

func FprintlnColor182(w io.Writer, str string)

FprintlnColor182 wraps Color182() and fmt.Fprintln().

func FprintlnColor183

func FprintlnColor183(w io.Writer, str string)

FprintlnColor183 wraps Color183() and fmt.Fprintln().

func FprintlnColor184

func FprintlnColor184(w io.Writer, str string)

FprintlnColor184 wraps Color184() and fmt.Fprintln().

func FprintlnColor185

func FprintlnColor185(w io.Writer, str string)

FprintlnColor185 wraps Color185() and fmt.Fprintln().

func FprintlnColor186

func FprintlnColor186(w io.Writer, str string)

FprintlnColor186 wraps Color186() and fmt.Fprintln().

func FprintlnColor187

func FprintlnColor187(w io.Writer, str string)

FprintlnColor187 wraps Color187() and fmt.Fprintln().

func FprintlnColor188

func FprintlnColor188(w io.Writer, str string)

FprintlnColor188 wraps Color188() and fmt.Fprintln().

func FprintlnColor189

func FprintlnColor189(w io.Writer, str string)

FprintlnColor189 wraps Color189() and fmt.Fprintln().

func FprintlnColor190

func FprintlnColor190(w io.Writer, str string)

FprintlnColor190 wraps Color190() and fmt.Fprintln().

func FprintlnColor191

func FprintlnColor191(w io.Writer, str string)

FprintlnColor191 wraps Color191() and fmt.Fprintln().

func FprintlnColor192

func FprintlnColor192(w io.Writer, str string)

FprintlnColor192 wraps Color192() and fmt.Fprintln().

func FprintlnColor193

func FprintlnColor193(w io.Writer, str string)

FprintlnColor193 wraps Color193() and fmt.Fprintln().

func FprintlnColor194

func FprintlnColor194(w io.Writer, str string)

FprintlnColor194 wraps Color194() and fmt.Fprintln().

func FprintlnColor195

func FprintlnColor195(w io.Writer, str string)

FprintlnColor195 wraps Color195() and fmt.Fprintln().

func FprintlnColor196

func FprintlnColor196(w io.Writer, str string)

FprintlnColor196 wraps Color196() and fmt.Fprintln().

func FprintlnColor197

func FprintlnColor197(w io.Writer, str string)

FprintlnColor197 wraps Color197() and fmt.Fprintln().

func FprintlnColor198

func FprintlnColor198(w io.Writer, str string)

FprintlnColor198 wraps Color198() and fmt.Fprintln().

func FprintlnColor199

func FprintlnColor199(w io.Writer, str string)

FprintlnColor199 wraps Color199() and fmt.Fprintln().

func FprintlnColor200

func FprintlnColor200(w io.Writer, str string)

FprintlnColor200 wraps Color200() and fmt.Fprintln().

func FprintlnColor201

func FprintlnColor201(w io.Writer, str string)

FprintlnColor201 wraps Color201() and fmt.Fprintln().

func FprintlnColor202

func FprintlnColor202(w io.Writer, str string)

FprintlnColor202 wraps Color202() and fmt.Fprintln().

func FprintlnColor203

func FprintlnColor203(w io.Writer, str string)

FprintlnColor203 wraps Color203() and fmt.Fprintln().

func FprintlnColor204

func FprintlnColor204(w io.Writer, str string)

FprintlnColor204 wraps Color204() and fmt.Fprintln().

func FprintlnColor205

func FprintlnColor205(w io.Writer, str string)

FprintlnColor205 wraps Color205() and fmt.Fprintln().

func FprintlnColor206

func FprintlnColor206(w io.Writer, str string)

FprintlnColor206 wraps Color206() and fmt.Fprintln().

func FprintlnColor207

func FprintlnColor207(w io.Writer, str string)

FprintlnColor207 wraps Color207() and fmt.Fprintln().

func FprintlnColor208

func FprintlnColor208(w io.Writer, str string)

FprintlnColor208 wraps Color208() and fmt.Fprintln().

func FprintlnColor209

func FprintlnColor209(w io.Writer, str string)

FprintlnColor209 wraps Color209() and fmt.Fprintln().

func FprintlnColor210

func FprintlnColor210(w io.Writer, str string)

FprintlnColor210 wraps Color210() and fmt.Fprintln().

func FprintlnColor211

func FprintlnColor211(w io.Writer, str string)

FprintlnColor211 wraps Color211() and fmt.Fprintln().

func FprintlnColor212

func FprintlnColor212(w io.Writer, str string)

FprintlnColor212 wraps Color212() and fmt.Fprintln().

func FprintlnColor213

func FprintlnColor213(w io.Writer, str string)

FprintlnColor213 wraps Color213() and fmt.Fprintln().

func FprintlnColor214

func FprintlnColor214(w io.Writer, str string)

FprintlnColor214 wraps Color214() and fmt.Fprintln().

func FprintlnColor215

func FprintlnColor215(w io.Writer, str string)

FprintlnColor215 wraps Color215() and fmt.Fprintln().

func FprintlnColor216

func FprintlnColor216(w io.Writer, str string)

FprintlnColor216 wraps Color216() and fmt.Fprintln().

func FprintlnColor217

func FprintlnColor217(w io.Writer, str string)

FprintlnColor217 wraps Color217() and fmt.Fprintln().

func FprintlnColor218

func FprintlnColor218(w io.Writer, str string)

FprintlnColor218 wraps Color218() and fmt.Fprintln().

func FprintlnColor219

func FprintlnColor219(w io.Writer, str string)

FprintlnColor219 wraps Color219() and fmt.Fprintln().

func FprintlnColor220

func FprintlnColor220(w io.Writer, str string)

FprintlnColor220 wraps Color220() and fmt.Fprintln().

func FprintlnColor221

func FprintlnColor221(w io.Writer, str string)

FprintlnColor221 wraps Color221() and fmt.Fprintln().

func FprintlnColor222

func FprintlnColor222(w io.Writer, str string)

FprintlnColor222 wraps Color222() and fmt.Fprintln().

func FprintlnColor223

func FprintlnColor223(w io.Writer, str string)

FprintlnColor223 wraps Color223() and fmt.Fprintln().

func FprintlnColor224

func FprintlnColor224(w io.Writer, str string)

FprintlnColor224 wraps Color224() and fmt.Fprintln().

func FprintlnColor225

func FprintlnColor225(w io.Writer, str string)

FprintlnColor225 wraps Color225() and fmt.Fprintln().

func FprintlnColor226

func FprintlnColor226(w io.Writer, str string)

FprintlnColor226 wraps Color226() and fmt.Fprintln().

func FprintlnColor227

func FprintlnColor227(w io.Writer, str string)

FprintlnColor227 wraps Color227() and fmt.Fprintln().

func FprintlnColor228

func FprintlnColor228(w io.Writer, str string)

FprintlnColor228 wraps Color228() and fmt.Fprintln().

func FprintlnColor229

func FprintlnColor229(w io.Writer, str string)

FprintlnColor229 wraps Color229() and fmt.Fprintln().

func FprintlnColor230

func FprintlnColor230(w io.Writer, str string)

FprintlnColor230 wraps Color230() and fmt.Fprintln().

func FprintlnColor231

func FprintlnColor231(w io.Writer, str string)

FprintlnColor231 wraps Color231() and fmt.Fprintln().

func FprintlnColor232

func FprintlnColor232(w io.Writer, str string)

FprintlnColor232 wraps Color232() and fmt.Fprintln().

func FprintlnColor233

func FprintlnColor233(w io.Writer, str string)

FprintlnColor233 wraps Color233() and fmt.Fprintln().

func FprintlnColor234

func FprintlnColor234(w io.Writer, str string)

FprintlnColor234 wraps Color234() and fmt.Fprintln().

func FprintlnColor235

func FprintlnColor235(w io.Writer, str string)

FprintlnColor235 wraps Color235() and fmt.Fprintln().

func FprintlnColor236

func FprintlnColor236(w io.Writer, str string)

FprintlnColor236 wraps Color236() and fmt.Fprintln().

func FprintlnColor237

func FprintlnColor237(w io.Writer, str string)

FprintlnColor237 wraps Color237() and fmt.Fprintln().

func FprintlnColor238

func FprintlnColor238(w io.Writer, str string)

FprintlnColor238 wraps Color238() and fmt.Fprintln().

func FprintlnColor239

func FprintlnColor239(w io.Writer, str string)

FprintlnColor239 wraps Color239() and fmt.Fprintln().

func FprintlnColor240

func FprintlnColor240(w io.Writer, str string)

FprintlnColor240 wraps Color240() and fmt.Fprintln().

func FprintlnColor241

func FprintlnColor241(w io.Writer, str string)

FprintlnColor241 wraps Color241() and fmt.Fprintln().

func FprintlnColor242

func FprintlnColor242(w io.Writer, str string)

FprintlnColor242 wraps Color242() and fmt.Fprintln().

func FprintlnColor243

func FprintlnColor243(w io.Writer, str string)

FprintlnColor243 wraps Color243() and fmt.Fprintln().

func FprintlnColor244

func FprintlnColor244(w io.Writer, str string)

FprintlnColor244 wraps Color244() and fmt.Fprintln().

func FprintlnColor245

func FprintlnColor245(w io.Writer, str string)

FprintlnColor245 wraps Color245() and fmt.Fprintln().

func FprintlnColor246

func FprintlnColor246(w io.Writer, str string)

FprintlnColor246 wraps Color246() and fmt.Fprintln().

func FprintlnColor247

func FprintlnColor247(w io.Writer, str string)

FprintlnColor247 wraps Color247() and fmt.Fprintln().

func FprintlnColor248

func FprintlnColor248(w io.Writer, str string)

FprintlnColor248 wraps Color248() and fmt.Fprintln().

func FprintlnColor249

func FprintlnColor249(w io.Writer, str string)

FprintlnColor249 wraps Color249() and fmt.Fprintln().

func FprintlnColor250

func FprintlnColor250(w io.Writer, str string)

FprintlnColor250 wraps Color250() and fmt.Fprintln().

func FprintlnColor251

func FprintlnColor251(w io.Writer, str string)

FprintlnColor251 wraps Color251() and fmt.Fprintln().

func FprintlnColor252

func FprintlnColor252(w io.Writer, str string)

FprintlnColor252 wraps Color252() and fmt.Fprintln().

func FprintlnColor253

func FprintlnColor253(w io.Writer, str string)

FprintlnColor253 wraps Color253() and fmt.Fprintln().

func FprintlnColor254

func FprintlnColor254(w io.Writer, str string)

FprintlnColor254 wraps Color254() and fmt.Fprintln().

func FprintlnColor255

func FprintlnColor255(w io.Writer, str string)

FprintlnColor255 wraps Color255() and fmt.Fprintln().

func FprintlnConceal

func FprintlnConceal(w io.Writer, str string)

FprintlnConceal wraps Conceal() and fmt.Fprintln().

func FprintlnCrossedOut

func FprintlnCrossedOut(w io.Writer, str string)

FprintlnCrossedOut wraps CrossedOut() and fmt.Fprintln().

func FprintlnCyan

func FprintlnCyan(w io.Writer, str string)

FprintlnCyan wraps Cyan() and fmt.Fprintln().

func FprintlnDefault

func FprintlnDefault(w io.Writer, str string)

FprintlnDefault wraps Default() and fmt.Fprintln().

func FprintlnDim

func FprintlnDim(w io.Writer, str string)

FprintlnDim wraps Dim() and fmt.Fprintln().

func FprintlnFaint

func FprintlnFaint(w io.Writer, str string)

FprintlnFaint wraps Faint() and fmt.Fprintln().

func FprintlnFraktur

func FprintlnFraktur(w io.Writer, str string)

FprintlnFraktur wraps Fraktur() and fmt.Fprintln().

func FprintlnGreen

func FprintlnGreen(w io.Writer, str string)

FprintlnGreen wraps Green() and fmt.Fprintln().

func FprintlnHex

func FprintlnHex(w io.Writer, hex string, str string)

FprintlnHex wraps Hex() and fmt.Fprintln().

func FprintlnHide

func FprintlnHide(w io.Writer, str string)

FprintlnHide wraps Hide() and fmt.Fprintln().

func FprintlnHilight

func FprintlnHilight(w io.Writer, code string, str string)

FprintlnHilight wraps Hilight() and fmt.Fprintln().

func FprintlnHilights

func FprintlnHilights(w io.Writer, codes []string, str string)

FprintlnHilights wraps Hilights() and fmt.Fprintln().

func FprintlnInverse

func FprintlnInverse(w io.Writer, str string)

FprintlnInverse wraps Inverse() and fmt.Fprintln().

func FprintlnItalic

func FprintlnItalic(w io.Writer, str string)

FprintlnItalic wraps Italic() and fmt.Fprintln().

func FprintlnLightBlack

func FprintlnLightBlack(w io.Writer, str string)

FprintlnLightBlack wraps LightBlack() and fmt.Fprintln().

func FprintlnLightBlue

func FprintlnLightBlue(w io.Writer, str string)

FprintlnLightBlue wraps LightBlue() and fmt.Fprintln().

func FprintlnLightCyan

func FprintlnLightCyan(w io.Writer, str string)

FprintlnLightCyan wraps LightCyan() and fmt.Fprintln().

func FprintlnLightGreen

func FprintlnLightGreen(w io.Writer, str string)

FprintlnLightGreen wraps LightGreen() and fmt.Fprintln().

func FprintlnLightMagenta

func FprintlnLightMagenta(w io.Writer, str string)

FprintlnLightMagenta wraps LightMagenta() and fmt.Fprintln().

func FprintlnLightRed

func FprintlnLightRed(w io.Writer, str string)

FprintlnLightRed wraps LightRed() and fmt.Fprintln().

func FprintlnLightWhite

func FprintlnLightWhite(w io.Writer, str string)

FprintlnLightWhite wraps LightWhite() and fmt.Fprintln().

func FprintlnLightYellow

func FprintlnLightYellow(w io.Writer, str string)

FprintlnLightYellow wraps LightYellow() and fmt.Fprintln().

func FprintlnMagenta

func FprintlnMagenta(w io.Writer, str string)

FprintlnMagenta wraps Magenta() and fmt.Fprintln().

func FprintlnNegative

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

func FprintlnNoBlinkRapid(w io.Writer, str string)

FprintlnNoBlinkRapid wraps NoBlinkRapid() and fmt.Fprintln().

func FprintlnNoBlinkSlow

func FprintlnNoBlinkSlow(w io.Writer, str string)

FprintlnNoBlinkSlow wraps NoBlinkSlow() and fmt.Fprintln().

func FprintlnNoBold

func FprintlnNoBold(w io.Writer, str string)

FprintlnNoBold wraps NoBold() and fmt.Fprintln().

func FprintlnNoConceal

func FprintlnNoConceal(w io.Writer, str string)

FprintlnNoConceal wraps NoConceal() and fmt.Fprintln().

func FprintlnNoCrossedOut

func FprintlnNoCrossedOut(w io.Writer, str string)

FprintlnNoCrossedOut wraps NoCrossedOut() and fmt.Fprintln().

func FprintlnNoDim

func FprintlnNoDim(w io.Writer, str string)

FprintlnNoDim wraps NoDim() and fmt.Fprintln().

func FprintlnNoFaint

func FprintlnNoFaint(w io.Writer, str string)

FprintlnNoFaint wraps NoFaint() and fmt.Fprintln().

func FprintlnNoFraktur

func FprintlnNoFraktur(w io.Writer, str string)

FprintlnNoFraktur wraps NoFraktur() and fmt.Fprintln().

func FprintlnNoHide

func FprintlnNoHide(w io.Writer, str string)

FprintlnNoHide wraps NoHide() and fmt.Fprintln().

func FprintlnNoInverse

func FprintlnNoInverse(w io.Writer, str string)

FprintlnNoInverse wraps NoInverse() and fmt.Fprintln().

func FprintlnNoItalic

func FprintlnNoItalic(w io.Writer, str string)

FprintlnNoItalic wraps NoItalic() and fmt.Fprintln().

func FprintlnNoNegative

func FprintlnNoNegative(w io.Writer, str string)

FprintlnNoNegative wraps NoNegative() and fmt.Fprintln().

func FprintlnNoStrikethrough

func FprintlnNoStrikethrough(w io.Writer, str string)

FprintlnNoStrikethrough wraps NoStrikethrough() and fmt.Fprintln().

func FprintlnNoSwap

func FprintlnNoSwap(w io.Writer, str string)

FprintlnNoSwap wraps NoSwap() and fmt.Fprintln().

func FprintlnNoUnderline

func FprintlnNoUnderline(w io.Writer, str string)

FprintlnNoUnderline wraps NoUnderline() and fmt.Fprintln().

func FprintlnNormal

func FprintlnNormal(w io.Writer, str string)

FprintlnNormal wraps Normal() and fmt.Fprintln().

func FprintlnOnBlack

func FprintlnOnBlack(w io.Writer, str string)

FprintlnOnBlack wraps OnBlack() and fmt.Fprintln().

func FprintlnOnBlue

func FprintlnOnBlue(w io.Writer, str string)

FprintlnOnBlue wraps OnBlue() and fmt.Fprintln().

func FprintlnOnColor000

func FprintlnOnColor000(w io.Writer, str string)

FprintlnOnColor000 wraps OnColor000() and fmt.Fprintln().

func FprintlnOnColor001

func FprintlnOnColor001(w io.Writer, str string)

FprintlnOnColor001 wraps OnColor001() and fmt.Fprintln().

func FprintlnOnColor002

func FprintlnOnColor002(w io.Writer, str string)

FprintlnOnColor002 wraps OnColor002() and fmt.Fprintln().

func FprintlnOnColor003

func FprintlnOnColor003(w io.Writer, str string)

FprintlnOnColor003 wraps OnColor003() and fmt.Fprintln().

func FprintlnOnColor004

func FprintlnOnColor004(w io.Writer, str string)

FprintlnOnColor004 wraps OnColor004() and fmt.Fprintln().

func FprintlnOnColor005

func FprintlnOnColor005(w io.Writer, str string)

FprintlnOnColor005 wraps OnColor005() and fmt.Fprintln().

func FprintlnOnColor006

func FprintlnOnColor006(w io.Writer, str string)

FprintlnOnColor006 wraps OnColor006() and fmt.Fprintln().

func FprintlnOnColor007

func FprintlnOnColor007(w io.Writer, str string)

FprintlnOnColor007 wraps OnColor007() and fmt.Fprintln().

func FprintlnOnColor008

func FprintlnOnColor008(w io.Writer, str string)

FprintlnOnColor008 wraps OnColor008() and fmt.Fprintln().

func FprintlnOnColor009

func FprintlnOnColor009(w io.Writer, str string)

FprintlnOnColor009 wraps OnColor009() and fmt.Fprintln().

func FprintlnOnColor010

func FprintlnOnColor010(w io.Writer, str string)

FprintlnOnColor010 wraps OnColor010() and fmt.Fprintln().

func FprintlnOnColor011

func FprintlnOnColor011(w io.Writer, str string)

FprintlnOnColor011 wraps OnColor011() and fmt.Fprintln().

func FprintlnOnColor012

func FprintlnOnColor012(w io.Writer, str string)

FprintlnOnColor012 wraps OnColor012() and fmt.Fprintln().

func FprintlnOnColor013

func FprintlnOnColor013(w io.Writer, str string)

FprintlnOnColor013 wraps OnColor013() and fmt.Fprintln().

func FprintlnOnColor014

func FprintlnOnColor014(w io.Writer, str string)

FprintlnOnColor014 wraps OnColor014() and fmt.Fprintln().

func FprintlnOnColor015

func FprintlnOnColor015(w io.Writer, str string)

FprintlnOnColor015 wraps OnColor015() and fmt.Fprintln().

func FprintlnOnColor016

func FprintlnOnColor016(w io.Writer, str string)

FprintlnOnColor016 wraps OnColor016() and fmt.Fprintln().

func FprintlnOnColor017

func FprintlnOnColor017(w io.Writer, str string)

FprintlnOnColor017 wraps OnColor017() and fmt.Fprintln().

func FprintlnOnColor018

func FprintlnOnColor018(w io.Writer, str string)

FprintlnOnColor018 wraps OnColor018() and fmt.Fprintln().

func FprintlnOnColor019

func FprintlnOnColor019(w io.Writer, str string)

FprintlnOnColor019 wraps OnColor019() and fmt.Fprintln().

func FprintlnOnColor020

func FprintlnOnColor020(w io.Writer, str string)

FprintlnOnColor020 wraps OnColor020() and fmt.Fprintln().

func FprintlnOnColor021

func FprintlnOnColor021(w io.Writer, str string)

FprintlnOnColor021 wraps OnColor021() and fmt.Fprintln().

func FprintlnOnColor022

func FprintlnOnColor022(w io.Writer, str string)

FprintlnOnColor022 wraps OnColor022() and fmt.Fprintln().

func FprintlnOnColor023

func FprintlnOnColor023(w io.Writer, str string)

FprintlnOnColor023 wraps OnColor023() and fmt.Fprintln().

func FprintlnOnColor024

func FprintlnOnColor024(w io.Writer, str string)

FprintlnOnColor024 wraps OnColor024() and fmt.Fprintln().

func FprintlnOnColor025

func FprintlnOnColor025(w io.Writer, str string)

FprintlnOnColor025 wraps OnColor025() and fmt.Fprintln().

func FprintlnOnColor026

func FprintlnOnColor026(w io.Writer, str string)

FprintlnOnColor026 wraps OnColor026() and fmt.Fprintln().

func FprintlnOnColor027

func FprintlnOnColor027(w io.Writer, str string)

FprintlnOnColor027 wraps OnColor027() and fmt.Fprintln().

func FprintlnOnColor028

func FprintlnOnColor028(w io.Writer, str string)

FprintlnOnColor028 wraps OnColor028() and fmt.Fprintln().

func FprintlnOnColor029

func FprintlnOnColor029(w io.Writer, str string)

FprintlnOnColor029 wraps OnColor029() and fmt.Fprintln().

func FprintlnOnColor030

func FprintlnOnColor030(w io.Writer, str string)

FprintlnOnColor030 wraps OnColor030() and fmt.Fprintln().

func FprintlnOnColor031

func FprintlnOnColor031(w io.Writer, str string)

FprintlnOnColor031 wraps OnColor031() and fmt.Fprintln().

func FprintlnOnColor032

func FprintlnOnColor032(w io.Writer, str string)

FprintlnOnColor032 wraps OnColor032() and fmt.Fprintln().

func FprintlnOnColor033

func FprintlnOnColor033(w io.Writer, str string)

FprintlnOnColor033 wraps OnColor033() and fmt.Fprintln().

func FprintlnOnColor034

func FprintlnOnColor034(w io.Writer, str string)

FprintlnOnColor034 wraps OnColor034() and fmt.Fprintln().

func FprintlnOnColor035

func FprintlnOnColor035(w io.Writer, str string)

FprintlnOnColor035 wraps OnColor035() and fmt.Fprintln().

func FprintlnOnColor036

func FprintlnOnColor036(w io.Writer, str string)

FprintlnOnColor036 wraps OnColor036() and fmt.Fprintln().

func FprintlnOnColor037

func FprintlnOnColor037(w io.Writer, str string)

FprintlnOnColor037 wraps OnColor037() and fmt.Fprintln().

func FprintlnOnColor038

func FprintlnOnColor038(w io.Writer, str string)

FprintlnOnColor038 wraps OnColor038() and fmt.Fprintln().

func FprintlnOnColor039

func FprintlnOnColor039(w io.Writer, str string)

FprintlnOnColor039 wraps OnColor039() and fmt.Fprintln().

func FprintlnOnColor040

func FprintlnOnColor040(w io.Writer, str string)

FprintlnOnColor040 wraps OnColor040() and fmt.Fprintln().

func FprintlnOnColor041

func FprintlnOnColor041(w io.Writer, str string)

FprintlnOnColor041 wraps OnColor041() and fmt.Fprintln().

func FprintlnOnColor042

func FprintlnOnColor042(w io.Writer, str string)

FprintlnOnColor042 wraps OnColor042() and fmt.Fprintln().

func FprintlnOnColor043

func FprintlnOnColor043(w io.Writer, str string)

FprintlnOnColor043 wraps OnColor043() and fmt.Fprintln().

func FprintlnOnColor044

func FprintlnOnColor044(w io.Writer, str string)

FprintlnOnColor044 wraps OnColor044() and fmt.Fprintln().

func FprintlnOnColor045

func FprintlnOnColor045(w io.Writer, str string)

FprintlnOnColor045 wraps OnColor045() and fmt.Fprintln().

func FprintlnOnColor046

func FprintlnOnColor046(w io.Writer, str string)

FprintlnOnColor046 wraps OnColor046() and fmt.Fprintln().

func FprintlnOnColor047

func FprintlnOnColor047(w io.Writer, str string)

FprintlnOnColor047 wraps OnColor047() and fmt.Fprintln().

func FprintlnOnColor048

func FprintlnOnColor048(w io.Writer, str string)

FprintlnOnColor048 wraps OnColor048() and fmt.Fprintln().

func FprintlnOnColor049

func FprintlnOnColor049(w io.Writer, str string)

FprintlnOnColor049 wraps OnColor049() and fmt.Fprintln().

func FprintlnOnColor050

func FprintlnOnColor050(w io.Writer, str string)

FprintlnOnColor050 wraps OnColor050() and fmt.Fprintln().

func FprintlnOnColor051

func FprintlnOnColor051(w io.Writer, str string)

FprintlnOnColor051 wraps OnColor051() and fmt.Fprintln().

func FprintlnOnColor052

func FprintlnOnColor052(w io.Writer, str string)

FprintlnOnColor052 wraps OnColor052() and fmt.Fprintln().

func FprintlnOnColor053

func FprintlnOnColor053(w io.Writer, str string)

FprintlnOnColor053 wraps OnColor053() and fmt.Fprintln().

func FprintlnOnColor054

func FprintlnOnColor054(w io.Writer, str string)

FprintlnOnColor054 wraps OnColor054() and fmt.Fprintln().

func FprintlnOnColor055

func FprintlnOnColor055(w io.Writer, str string)

FprintlnOnColor055 wraps OnColor055() and fmt.Fprintln().

func FprintlnOnColor056

func FprintlnOnColor056(w io.Writer, str string)

FprintlnOnColor056 wraps OnColor056() and fmt.Fprintln().

func FprintlnOnColor057

func FprintlnOnColor057(w io.Writer, str string)

FprintlnOnColor057 wraps OnColor057() and fmt.Fprintln().

func FprintlnOnColor058

func FprintlnOnColor058(w io.Writer, str string)

FprintlnOnColor058 wraps OnColor058() and fmt.Fprintln().

func FprintlnOnColor059

func FprintlnOnColor059(w io.Writer, str string)

FprintlnOnColor059 wraps OnColor059() and fmt.Fprintln().

func FprintlnOnColor060

func FprintlnOnColor060(w io.Writer, str string)

FprintlnOnColor060 wraps OnColor060() and fmt.Fprintln().

func FprintlnOnColor061

func FprintlnOnColor061(w io.Writer, str string)

FprintlnOnColor061 wraps OnColor061() and fmt.Fprintln().

func FprintlnOnColor062

func FprintlnOnColor062(w io.Writer, str string)

FprintlnOnColor062 wraps OnColor062() and fmt.Fprintln().

func FprintlnOnColor063

func FprintlnOnColor063(w io.Writer, str string)

FprintlnOnColor063 wraps OnColor063() and fmt.Fprintln().

func FprintlnOnColor064

func FprintlnOnColor064(w io.Writer, str string)

FprintlnOnColor064 wraps OnColor064() and fmt.Fprintln().

func FprintlnOnColor065

func FprintlnOnColor065(w io.Writer, str string)

FprintlnOnColor065 wraps OnColor065() and fmt.Fprintln().

func FprintlnOnColor066

func FprintlnOnColor066(w io.Writer, str string)

FprintlnOnColor066 wraps OnColor066() and fmt.Fprintln().

func FprintlnOnColor067

func FprintlnOnColor067(w io.Writer, str string)

FprintlnOnColor067 wraps OnColor067() and fmt.Fprintln().

func FprintlnOnColor068

func FprintlnOnColor068(w io.Writer, str string)

FprintlnOnColor068 wraps OnColor068() and fmt.Fprintln().

func FprintlnOnColor069

func FprintlnOnColor069(w io.Writer, str string)

FprintlnOnColor069 wraps OnColor069() and fmt.Fprintln().

func FprintlnOnColor070

func FprintlnOnColor070(w io.Writer, str string)

FprintlnOnColor070 wraps OnColor070() and fmt.Fprintln().

func FprintlnOnColor071

func FprintlnOnColor071(w io.Writer, str string)

FprintlnOnColor071 wraps OnColor071() and fmt.Fprintln().

func FprintlnOnColor072

func FprintlnOnColor072(w io.Writer, str string)

FprintlnOnColor072 wraps OnColor072() and fmt.Fprintln().

func FprintlnOnColor073

func FprintlnOnColor073(w io.Writer, str string)

FprintlnOnColor073 wraps OnColor073() and fmt.Fprintln().

func FprintlnOnColor074

func FprintlnOnColor074(w io.Writer, str string)

FprintlnOnColor074 wraps OnColor074() and fmt.Fprintln().

func FprintlnOnColor075

func FprintlnOnColor075(w io.Writer, str string)

FprintlnOnColor075 wraps OnColor075() and fmt.Fprintln().

func FprintlnOnColor076

func FprintlnOnColor076(w io.Writer, str string)

FprintlnOnColor076 wraps OnColor076() and fmt.Fprintln().

func FprintlnOnColor077

func FprintlnOnColor077(w io.Writer, str string)

FprintlnOnColor077 wraps OnColor077() and fmt.Fprintln().

func FprintlnOnColor078

func FprintlnOnColor078(w io.Writer, str string)

FprintlnOnColor078 wraps OnColor078() and fmt.Fprintln().

func FprintlnOnColor079

func FprintlnOnColor079(w io.Writer, str string)

FprintlnOnColor079 wraps OnColor079() and fmt.Fprintln().

func FprintlnOnColor080

func FprintlnOnColor080(w io.Writer, str string)

FprintlnOnColor080 wraps OnColor080() and fmt.Fprintln().

func FprintlnOnColor081

func FprintlnOnColor081(w io.Writer, str string)

FprintlnOnColor081 wraps OnColor081() and fmt.Fprintln().

func FprintlnOnColor082

func FprintlnOnColor082(w io.Writer, str string)

FprintlnOnColor082 wraps OnColor082() and fmt.Fprintln().

func FprintlnOnColor083

func FprintlnOnColor083(w io.Writer, str string)

FprintlnOnColor083 wraps OnColor083() and fmt.Fprintln().

func FprintlnOnColor084

func FprintlnOnColor084(w io.Writer, str string)

FprintlnOnColor084 wraps OnColor084() and fmt.Fprintln().

func FprintlnOnColor085

func FprintlnOnColor085(w io.Writer, str string)

FprintlnOnColor085 wraps OnColor085() and fmt.Fprintln().

func FprintlnOnColor086

func FprintlnOnColor086(w io.Writer, str string)

FprintlnOnColor086 wraps OnColor086() and fmt.Fprintln().

func FprintlnOnColor087

func FprintlnOnColor087(w io.Writer, str string)

FprintlnOnColor087 wraps OnColor087() and fmt.Fprintln().

func FprintlnOnColor088

func FprintlnOnColor088(w io.Writer, str string)

FprintlnOnColor088 wraps OnColor088() and fmt.Fprintln().

func FprintlnOnColor089

func FprintlnOnColor089(w io.Writer, str string)

FprintlnOnColor089 wraps OnColor089() and fmt.Fprintln().

func FprintlnOnColor090

func FprintlnOnColor090(w io.Writer, str string)

FprintlnOnColor090 wraps OnColor090() and fmt.Fprintln().

func FprintlnOnColor091

func FprintlnOnColor091(w io.Writer, str string)

FprintlnOnColor091 wraps OnColor091() and fmt.Fprintln().

func FprintlnOnColor092

func FprintlnOnColor092(w io.Writer, str string)

FprintlnOnColor092 wraps OnColor092() and fmt.Fprintln().

func FprintlnOnColor093

func FprintlnOnColor093(w io.Writer, str string)

FprintlnOnColor093 wraps OnColor093() and fmt.Fprintln().

func FprintlnOnColor094

func FprintlnOnColor094(w io.Writer, str string)

FprintlnOnColor094 wraps OnColor094() and fmt.Fprintln().

func FprintlnOnColor095

func FprintlnOnColor095(w io.Writer, str string)

FprintlnOnColor095 wraps OnColor095() and fmt.Fprintln().

func FprintlnOnColor096

func FprintlnOnColor096(w io.Writer, str string)

FprintlnOnColor096 wraps OnColor096() and fmt.Fprintln().

func FprintlnOnColor097

func FprintlnOnColor097(w io.Writer, str string)

FprintlnOnColor097 wraps OnColor097() and fmt.Fprintln().

func FprintlnOnColor098

func FprintlnOnColor098(w io.Writer, str string)

FprintlnOnColor098 wraps OnColor098() and fmt.Fprintln().

func FprintlnOnColor099

func FprintlnOnColor099(w io.Writer, str string)

FprintlnOnColor099 wraps OnColor099() and fmt.Fprintln().

func FprintlnOnColor100

func FprintlnOnColor100(w io.Writer, str string)

FprintlnOnColor100 wraps OnColor100() and fmt.Fprintln().

func FprintlnOnColor101

func FprintlnOnColor101(w io.Writer, str string)

FprintlnOnColor101 wraps OnColor101() and fmt.Fprintln().

func FprintlnOnColor102

func FprintlnOnColor102(w io.Writer, str string)

FprintlnOnColor102 wraps OnColor102() and fmt.Fprintln().

func FprintlnOnColor103

func FprintlnOnColor103(w io.Writer, str string)

FprintlnOnColor103 wraps OnColor103() and fmt.Fprintln().

func FprintlnOnColor104

func FprintlnOnColor104(w io.Writer, str string)

FprintlnOnColor104 wraps OnColor104() and fmt.Fprintln().

func FprintlnOnColor105

func FprintlnOnColor105(w io.Writer, str string)

FprintlnOnColor105 wraps OnColor105() and fmt.Fprintln().

func FprintlnOnColor106

func FprintlnOnColor106(w io.Writer, str string)

FprintlnOnColor106 wraps OnColor106() and fmt.Fprintln().

func FprintlnOnColor107

func FprintlnOnColor107(w io.Writer, str string)

FprintlnOnColor107 wraps OnColor107() and fmt.Fprintln().

func FprintlnOnColor108

func FprintlnOnColor108(w io.Writer, str string)

FprintlnOnColor108 wraps OnColor108() and fmt.Fprintln().

func FprintlnOnColor109

func FprintlnOnColor109(w io.Writer, str string)

FprintlnOnColor109 wraps OnColor109() and fmt.Fprintln().

func FprintlnOnColor110

func FprintlnOnColor110(w io.Writer, str string)

FprintlnOnColor110 wraps OnColor110() and fmt.Fprintln().

func FprintlnOnColor111

func FprintlnOnColor111(w io.Writer, str string)

FprintlnOnColor111 wraps OnColor111() and fmt.Fprintln().

func FprintlnOnColor112

func FprintlnOnColor112(w io.Writer, str string)

FprintlnOnColor112 wraps OnColor112() and fmt.Fprintln().

func FprintlnOnColor113

func FprintlnOnColor113(w io.Writer, str string)

FprintlnOnColor113 wraps OnColor113() and fmt.Fprintln().

func FprintlnOnColor114

func FprintlnOnColor114(w io.Writer, str string)

FprintlnOnColor114 wraps OnColor114() and fmt.Fprintln().

func FprintlnOnColor115

func FprintlnOnColor115(w io.Writer, str string)

FprintlnOnColor115 wraps OnColor115() and fmt.Fprintln().

func FprintlnOnColor116

func FprintlnOnColor116(w io.Writer, str string)

FprintlnOnColor116 wraps OnColor116() and fmt.Fprintln().

func FprintlnOnColor117

func FprintlnOnColor117(w io.Writer, str string)

FprintlnOnColor117 wraps OnColor117() and fmt.Fprintln().

func FprintlnOnColor118

func FprintlnOnColor118(w io.Writer, str string)

FprintlnOnColor118 wraps OnColor118() and fmt.Fprintln().

func FprintlnOnColor119

func FprintlnOnColor119(w io.Writer, str string)

FprintlnOnColor119 wraps OnColor119() and fmt.Fprintln().

func FprintlnOnColor120

func FprintlnOnColor120(w io.Writer, str string)

FprintlnOnColor120 wraps OnColor120() and fmt.Fprintln().

func FprintlnOnColor121

func FprintlnOnColor121(w io.Writer, str string)

FprintlnOnColor121 wraps OnColor121() and fmt.Fprintln().

func FprintlnOnColor122

func FprintlnOnColor122(w io.Writer, str string)

FprintlnOnColor122 wraps OnColor122() and fmt.Fprintln().

func FprintlnOnColor123

func FprintlnOnColor123(w io.Writer, str string)

FprintlnOnColor123 wraps OnColor123() and fmt.Fprintln().

func FprintlnOnColor124

func FprintlnOnColor124(w io.Writer, str string)

FprintlnOnColor124 wraps OnColor124() and fmt.Fprintln().

func FprintlnOnColor125

func FprintlnOnColor125(w io.Writer, str string)

FprintlnOnColor125 wraps OnColor125() and fmt.Fprintln().

func FprintlnOnColor126

func FprintlnOnColor126(w io.Writer, str string)

FprintlnOnColor126 wraps OnColor126() and fmt.Fprintln().

func FprintlnOnColor127

func FprintlnOnColor127(w io.Writer, str string)

FprintlnOnColor127 wraps OnColor127() and fmt.Fprintln().

func FprintlnOnColor128

func FprintlnOnColor128(w io.Writer, str string)

FprintlnOnColor128 wraps OnColor128() and fmt.Fprintln().

func FprintlnOnColor129

func FprintlnOnColor129(w io.Writer, str string)

FprintlnOnColor129 wraps OnColor129() and fmt.Fprintln().

func FprintlnOnColor130

func FprintlnOnColor130(w io.Writer, str string)

FprintlnOnColor130 wraps OnColor130() and fmt.Fprintln().

func FprintlnOnColor131

func FprintlnOnColor131(w io.Writer, str string)

FprintlnOnColor131 wraps OnColor131() and fmt.Fprintln().

func FprintlnOnColor132

func FprintlnOnColor132(w io.Writer, str string)

FprintlnOnColor132 wraps OnColor132() and fmt.Fprintln().

func FprintlnOnColor133

func FprintlnOnColor133(w io.Writer, str string)

FprintlnOnColor133 wraps OnColor133() and fmt.Fprintln().

func FprintlnOnColor134

func FprintlnOnColor134(w io.Writer, str string)

FprintlnOnColor134 wraps OnColor134() and fmt.Fprintln().

func FprintlnOnColor135

func FprintlnOnColor135(w io.Writer, str string)

FprintlnOnColor135 wraps OnColor135() and fmt.Fprintln().

func FprintlnOnColor136

func FprintlnOnColor136(w io.Writer, str string)

FprintlnOnColor136 wraps OnColor136() and fmt.Fprintln().

func FprintlnOnColor137

func FprintlnOnColor137(w io.Writer, str string)

FprintlnOnColor137 wraps OnColor137() and fmt.Fprintln().

func FprintlnOnColor138

func FprintlnOnColor138(w io.Writer, str string)

FprintlnOnColor138 wraps OnColor138() and fmt.Fprintln().

func FprintlnOnColor139

func FprintlnOnColor139(w io.Writer, str string)

FprintlnOnColor139 wraps OnColor139() and fmt.Fprintln().

func FprintlnOnColor140

func FprintlnOnColor140(w io.Writer, str string)

FprintlnOnColor140 wraps OnColor140() and fmt.Fprintln().

func FprintlnOnColor141

func FprintlnOnColor141(w io.Writer, str string)

FprintlnOnColor141 wraps OnColor141() and fmt.Fprintln().

func FprintlnOnColor142

func FprintlnOnColor142(w io.Writer, str string)

FprintlnOnColor142 wraps OnColor142() and fmt.Fprintln().

func FprintlnOnColor143

func FprintlnOnColor143(w io.Writer, str string)

FprintlnOnColor143 wraps OnColor143() and fmt.Fprintln().

func FprintlnOnColor144

func FprintlnOnColor144(w io.Writer, str string)

FprintlnOnColor144 wraps OnColor144() and fmt.Fprintln().

func FprintlnOnColor145

func FprintlnOnColor145(w io.Writer, str string)

FprintlnOnColor145 wraps OnColor145() and fmt.Fprintln().

func FprintlnOnColor146

func FprintlnOnColor146(w io.Writer, str string)

FprintlnOnColor146 wraps OnColor146() and fmt.Fprintln().

func FprintlnOnColor147

func FprintlnOnColor147(w io.Writer, str string)

FprintlnOnColor147 wraps OnColor147() and fmt.Fprintln().

func FprintlnOnColor148

func FprintlnOnColor148(w io.Writer, str string)

FprintlnOnColor148 wraps OnColor148() and fmt.Fprintln().

func FprintlnOnColor149

func FprintlnOnColor149(w io.Writer, str string)

FprintlnOnColor149 wraps OnColor149() and fmt.Fprintln().

func FprintlnOnColor150

func FprintlnOnColor150(w io.Writer, str string)

FprintlnOnColor150 wraps OnColor150() and fmt.Fprintln().

func FprintlnOnColor151

func FprintlnOnColor151(w io.Writer, str string)

FprintlnOnColor151 wraps OnColor151() and fmt.Fprintln().

func FprintlnOnColor152

func FprintlnOnColor152(w io.Writer, str string)

FprintlnOnColor152 wraps OnColor152() and fmt.Fprintln().

func FprintlnOnColor153

func FprintlnOnColor153(w io.Writer, str string)

FprintlnOnColor153 wraps OnColor153() and fmt.Fprintln().

func FprintlnOnColor154

func FprintlnOnColor154(w io.Writer, str string)

FprintlnOnColor154 wraps OnColor154() and fmt.Fprintln().

func FprintlnOnColor155

func FprintlnOnColor155(w io.Writer, str string)

FprintlnOnColor155 wraps OnColor155() and fmt.Fprintln().

func FprintlnOnColor156

func FprintlnOnColor156(w io.Writer, str string)

FprintlnOnColor156 wraps OnColor156() and fmt.Fprintln().

func FprintlnOnColor157

func FprintlnOnColor157(w io.Writer, str string)

FprintlnOnColor157 wraps OnColor157() and fmt.Fprintln().

func FprintlnOnColor158

func FprintlnOnColor158(w io.Writer, str string)

FprintlnOnColor158 wraps OnColor158() and fmt.Fprintln().

func FprintlnOnColor159

func FprintlnOnColor159(w io.Writer, str string)

FprintlnOnColor159 wraps OnColor159() and fmt.Fprintln().

func FprintlnOnColor160

func FprintlnOnColor160(w io.Writer, str string)

FprintlnOnColor160 wraps OnColor160() and fmt.Fprintln().

func FprintlnOnColor161

func FprintlnOnColor161(w io.Writer, str string)

FprintlnOnColor161 wraps OnColor161() and fmt.Fprintln().

func FprintlnOnColor162

func FprintlnOnColor162(w io.Writer, str string)

FprintlnOnColor162 wraps OnColor162() and fmt.Fprintln().

func FprintlnOnColor163

func FprintlnOnColor163(w io.Writer, str string)

FprintlnOnColor163 wraps OnColor163() and fmt.Fprintln().

func FprintlnOnColor164

func FprintlnOnColor164(w io.Writer, str string)

FprintlnOnColor164 wraps OnColor164() and fmt.Fprintln().

func FprintlnOnColor165

func FprintlnOnColor165(w io.Writer, str string)

FprintlnOnColor165 wraps OnColor165() and fmt.Fprintln().

func FprintlnOnColor166

func FprintlnOnColor166(w io.Writer, str string)

FprintlnOnColor166 wraps OnColor166() and fmt.Fprintln().

func FprintlnOnColor167

func FprintlnOnColor167(w io.Writer, str string)

FprintlnOnColor167 wraps OnColor167() and fmt.Fprintln().

func FprintlnOnColor168

func FprintlnOnColor168(w io.Writer, str string)

FprintlnOnColor168 wraps OnColor168() and fmt.Fprintln().

func FprintlnOnColor169

func FprintlnOnColor169(w io.Writer, str string)

FprintlnOnColor169 wraps OnColor169() and fmt.Fprintln().

func FprintlnOnColor170

func FprintlnOnColor170(w io.Writer, str string)

FprintlnOnColor170 wraps OnColor170() and fmt.Fprintln().

func FprintlnOnColor171

func FprintlnOnColor171(w io.Writer, str string)

FprintlnOnColor171 wraps OnColor171() and fmt.Fprintln().

func FprintlnOnColor172

func FprintlnOnColor172(w io.Writer, str string)

FprintlnOnColor172 wraps OnColor172() and fmt.Fprintln().

func FprintlnOnColor173

func FprintlnOnColor173(w io.Writer, str string)

FprintlnOnColor173 wraps OnColor173() and fmt.Fprintln().

func FprintlnOnColor174

func FprintlnOnColor174(w io.Writer, str string)

FprintlnOnColor174 wraps OnColor174() and fmt.Fprintln().

func FprintlnOnColor175

func FprintlnOnColor175(w io.Writer, str string)

FprintlnOnColor175 wraps OnColor175() and fmt.Fprintln().

func FprintlnOnColor176

func FprintlnOnColor176(w io.Writer, str string)

FprintlnOnColor176 wraps OnColor176() and fmt.Fprintln().

func FprintlnOnColor177

func FprintlnOnColor177(w io.Writer, str string)

FprintlnOnColor177 wraps OnColor177() and fmt.Fprintln().

func FprintlnOnColor178

func FprintlnOnColor178(w io.Writer, str string)

FprintlnOnColor178 wraps OnColor178() and fmt.Fprintln().

func FprintlnOnColor179

func FprintlnOnColor179(w io.Writer, str string)

FprintlnOnColor179 wraps OnColor179() and fmt.Fprintln().

func FprintlnOnColor180

func FprintlnOnColor180(w io.Writer, str string)

FprintlnOnColor180 wraps OnColor180() and fmt.Fprintln().

func FprintlnOnColor181

func FprintlnOnColor181(w io.Writer, str string)

FprintlnOnColor181 wraps OnColor181() and fmt.Fprintln().

func FprintlnOnColor182

func FprintlnOnColor182(w io.Writer, str string)

FprintlnOnColor182 wraps OnColor182() and fmt.Fprintln().

func FprintlnOnColor183

func FprintlnOnColor183(w io.Writer, str string)

FprintlnOnColor183 wraps OnColor183() and fmt.Fprintln().

func FprintlnOnColor184

func FprintlnOnColor184(w io.Writer, str string)

FprintlnOnColor184 wraps OnColor184() and fmt.Fprintln().

func FprintlnOnColor185

func FprintlnOnColor185(w io.Writer, str string)

FprintlnOnColor185 wraps OnColor185() and fmt.Fprintln().

func FprintlnOnColor186

func FprintlnOnColor186(w io.Writer, str string)

FprintlnOnColor186 wraps OnColor186() and fmt.Fprintln().

func FprintlnOnColor187

func FprintlnOnColor187(w io.Writer, str string)

FprintlnOnColor187 wraps OnColor187() and fmt.Fprintln().

func FprintlnOnColor188

func FprintlnOnColor188(w io.Writer, str string)

FprintlnOnColor188 wraps OnColor188() and fmt.Fprintln().

func FprintlnOnColor189

func FprintlnOnColor189(w io.Writer, str string)

FprintlnOnColor189 wraps OnColor189() and fmt.Fprintln().

func FprintlnOnColor190

func FprintlnOnColor190(w io.Writer, str string)

FprintlnOnColor190 wraps OnColor190() and fmt.Fprintln().

func FprintlnOnColor191

func FprintlnOnColor191(w io.Writer, str string)

FprintlnOnColor191 wraps OnColor191() and fmt.Fprintln().

func FprintlnOnColor192

func FprintlnOnColor192(w io.Writer, str string)

FprintlnOnColor192 wraps OnColor192() and fmt.Fprintln().

func FprintlnOnColor193

func FprintlnOnColor193(w io.Writer, str string)

FprintlnOnColor193 wraps OnColor193() and fmt.Fprintln().

func FprintlnOnColor194

func FprintlnOnColor194(w io.Writer, str string)

FprintlnOnColor194 wraps OnColor194() and fmt.Fprintln().

func FprintlnOnColor195

func FprintlnOnColor195(w io.Writer, str string)

FprintlnOnColor195 wraps OnColor195() and fmt.Fprintln().

func FprintlnOnColor196

func FprintlnOnColor196(w io.Writer, str string)

FprintlnOnColor196 wraps OnColor196() and fmt.Fprintln().

func FprintlnOnColor197

func FprintlnOnColor197(w io.Writer, str string)

FprintlnOnColor197 wraps OnColor197() and fmt.Fprintln().

func FprintlnOnColor198

func FprintlnOnColor198(w io.Writer, str string)

FprintlnOnColor198 wraps OnColor198() and fmt.Fprintln().

func FprintlnOnColor199

func FprintlnOnColor199(w io.Writer, str string)

FprintlnOnColor199 wraps OnColor199() and fmt.Fprintln().

func FprintlnOnColor200

func FprintlnOnColor200(w io.Writer, str string)

FprintlnOnColor200 wraps OnColor200() and fmt.Fprintln().

func FprintlnOnColor201

func FprintlnOnColor201(w io.Writer, str string)

FprintlnOnColor201 wraps OnColor201() and fmt.Fprintln().

func FprintlnOnColor202

func FprintlnOnColor202(w io.Writer, str string)

FprintlnOnColor202 wraps OnColor202() and fmt.Fprintln().

func FprintlnOnColor203

func FprintlnOnColor203(w io.Writer, str string)

FprintlnOnColor203 wraps OnColor203() and fmt.Fprintln().

func FprintlnOnColor204

func FprintlnOnColor204(w io.Writer, str string)

FprintlnOnColor204 wraps OnColor204() and fmt.Fprintln().

func FprintlnOnColor205

func FprintlnOnColor205(w io.Writer, str string)

FprintlnOnColor205 wraps OnColor205() and fmt.Fprintln().

func FprintlnOnColor206

func FprintlnOnColor206(w io.Writer, str string)

FprintlnOnColor206 wraps OnColor206() and fmt.Fprintln().

func FprintlnOnColor207

func FprintlnOnColor207(w io.Writer, str string)

FprintlnOnColor207 wraps OnColor207() and fmt.Fprintln().

func FprintlnOnColor208

func FprintlnOnColor208(w io.Writer, str string)

FprintlnOnColor208 wraps OnColor208() and fmt.Fprintln().

func FprintlnOnColor209

func FprintlnOnColor209(w io.Writer, str string)

FprintlnOnColor209 wraps OnColor209() and fmt.Fprintln().

func FprintlnOnColor210

func FprintlnOnColor210(w io.Writer, str string)

FprintlnOnColor210 wraps OnColor210() and fmt.Fprintln().

func FprintlnOnColor211

func FprintlnOnColor211(w io.Writer, str string)

FprintlnOnColor211 wraps OnColor211() and fmt.Fprintln().

func FprintlnOnColor212

func FprintlnOnColor212(w io.Writer, str string)

FprintlnOnColor212 wraps OnColor212() and fmt.Fprintln().

func FprintlnOnColor213

func FprintlnOnColor213(w io.Writer, str string)

FprintlnOnColor213 wraps OnColor213() and fmt.Fprintln().

func FprintlnOnColor214

func FprintlnOnColor214(w io.Writer, str string)

FprintlnOnColor214 wraps OnColor214() and fmt.Fprintln().

func FprintlnOnColor215

func FprintlnOnColor215(w io.Writer, str string)

FprintlnOnColor215 wraps OnColor215() and fmt.Fprintln().

func FprintlnOnColor216

func FprintlnOnColor216(w io.Writer, str string)

FprintlnOnColor216 wraps OnColor216() and fmt.Fprintln().

func FprintlnOnColor217

func FprintlnOnColor217(w io.Writer, str string)

FprintlnOnColor217 wraps OnColor217() and fmt.Fprintln().

func FprintlnOnColor218

func FprintlnOnColor218(w io.Writer, str string)

FprintlnOnColor218 wraps OnColor218() and fmt.Fprintln().

func FprintlnOnColor219

func FprintlnOnColor219(w io.Writer, str string)

FprintlnOnColor219 wraps OnColor219() and fmt.Fprintln().

func FprintlnOnColor220

func FprintlnOnColor220(w io.Writer, str string)

FprintlnOnColor220 wraps OnColor220() and fmt.Fprintln().

func FprintlnOnColor221

func FprintlnOnColor221(w io.Writer, str string)

FprintlnOnColor221 wraps OnColor221() and fmt.Fprintln().

func FprintlnOnColor222

func FprintlnOnColor222(w io.Writer, str string)

FprintlnOnColor222 wraps OnColor222() and fmt.Fprintln().

func FprintlnOnColor223

func FprintlnOnColor223(w io.Writer, str string)

FprintlnOnColor223 wraps OnColor223() and fmt.Fprintln().

func FprintlnOnColor224

func FprintlnOnColor224(w io.Writer, str string)

FprintlnOnColor224 wraps OnColor224() and fmt.Fprintln().

func FprintlnOnColor225

func FprintlnOnColor225(w io.Writer, str string)

FprintlnOnColor225 wraps OnColor225() and fmt.Fprintln().

func FprintlnOnColor226

func FprintlnOnColor226(w io.Writer, str string)

FprintlnOnColor226 wraps OnColor226() and fmt.Fprintln().

func FprintlnOnColor227

func FprintlnOnColor227(w io.Writer, str string)

FprintlnOnColor227 wraps OnColor227() and fmt.Fprintln().

func FprintlnOnColor228

func FprintlnOnColor228(w io.Writer, str string)

FprintlnOnColor228 wraps OnColor228() and fmt.Fprintln().

func FprintlnOnColor229

func FprintlnOnColor229(w io.Writer, str string)

FprintlnOnColor229 wraps OnColor229() and fmt.Fprintln().

func FprintlnOnColor230

func FprintlnOnColor230(w io.Writer, str string)

FprintlnOnColor230 wraps OnColor230() and fmt.Fprintln().

func FprintlnOnColor231

func FprintlnOnColor231(w io.Writer, str string)

FprintlnOnColor231 wraps OnColor231() and fmt.Fprintln().

func FprintlnOnColor232

func FprintlnOnColor232(w io.Writer, str string)

FprintlnOnColor232 wraps OnColor232() and fmt.Fprintln().

func FprintlnOnColor233

func FprintlnOnColor233(w io.Writer, str string)

FprintlnOnColor233 wraps OnColor233() and fmt.Fprintln().

func FprintlnOnColor234

func FprintlnOnColor234(w io.Writer, str string)

FprintlnOnColor234 wraps OnColor234() and fmt.Fprintln().

func FprintlnOnColor235

func FprintlnOnColor235(w io.Writer, str string)

FprintlnOnColor235 wraps OnColor235() and fmt.Fprintln().

func FprintlnOnColor236

func FprintlnOnColor236(w io.Writer, str string)

FprintlnOnColor236 wraps OnColor236() and fmt.Fprintln().

func FprintlnOnColor237

func FprintlnOnColor237(w io.Writer, str string)

FprintlnOnColor237 wraps OnColor237() and fmt.Fprintln().

func FprintlnOnColor238

func FprintlnOnColor238(w io.Writer, str string)

FprintlnOnColor238 wraps OnColor238() and fmt.Fprintln().

func FprintlnOnColor239

func FprintlnOnColor239(w io.Writer, str string)

FprintlnOnColor239 wraps OnColor239() and fmt.Fprintln().

func FprintlnOnColor240

func FprintlnOnColor240(w io.Writer, str string)

FprintlnOnColor240 wraps OnColor240() and fmt.Fprintln().

func FprintlnOnColor241

func FprintlnOnColor241(w io.Writer, str string)

FprintlnOnColor241 wraps OnColor241() and fmt.Fprintln().

func FprintlnOnColor242

func FprintlnOnColor242(w io.Writer, str string)

FprintlnOnColor242 wraps OnColor242() and fmt.Fprintln().

func FprintlnOnColor243

func FprintlnOnColor243(w io.Writer, str string)

FprintlnOnColor243 wraps OnColor243() and fmt.Fprintln().

func FprintlnOnColor244

func FprintlnOnColor244(w io.Writer, str string)

FprintlnOnColor244 wraps OnColor244() and fmt.Fprintln().

func FprintlnOnColor245

func FprintlnOnColor245(w io.Writer, str string)

FprintlnOnColor245 wraps OnColor245() and fmt.Fprintln().

func FprintlnOnColor246

func FprintlnOnColor246(w io.Writer, str string)

FprintlnOnColor246 wraps OnColor246() and fmt.Fprintln().

func FprintlnOnColor247

func FprintlnOnColor247(w io.Writer, str string)

FprintlnOnColor247 wraps OnColor247() and fmt.Fprintln().

func FprintlnOnColor248

func FprintlnOnColor248(w io.Writer, str string)

FprintlnOnColor248 wraps OnColor248() and fmt.Fprintln().

func FprintlnOnColor249

func FprintlnOnColor249(w io.Writer, str string)

FprintlnOnColor249 wraps OnColor249() and fmt.Fprintln().

func FprintlnOnColor250

func FprintlnOnColor250(w io.Writer, str string)

FprintlnOnColor250 wraps OnColor250() and fmt.Fprintln().

func FprintlnOnColor251

func FprintlnOnColor251(w io.Writer, str string)

FprintlnOnColor251 wraps OnColor251() and fmt.Fprintln().

func FprintlnOnColor252

func FprintlnOnColor252(w io.Writer, str string)

FprintlnOnColor252 wraps OnColor252() and fmt.Fprintln().

func FprintlnOnColor253

func FprintlnOnColor253(w io.Writer, str string)

FprintlnOnColor253 wraps OnColor253() and fmt.Fprintln().

func FprintlnOnColor254

func FprintlnOnColor254(w io.Writer, str string)

FprintlnOnColor254 wraps OnColor254() and fmt.Fprintln().

func FprintlnOnColor255

func FprintlnOnColor255(w io.Writer, str string)

FprintlnOnColor255 wraps OnColor255() and fmt.Fprintln().

func FprintlnOnCyan

func FprintlnOnCyan(w io.Writer, str string)

FprintlnOnCyan wraps OnCyan() and fmt.Fprintln().

func FprintlnOnDefault

func FprintlnOnDefault(w io.Writer, str string)

FprintlnOnDefault wraps OnDefault() and fmt.Fprintln().

func FprintlnOnGreen

func FprintlnOnGreen(w io.Writer, str string)

FprintlnOnGreen wraps OnGreen() and fmt.Fprintln().

func FprintlnOnHex

func FprintlnOnHex(w io.Writer, hex string, str string)

FprintlnOnHex wraps OnHex() and fmt.Fprintln().

func FprintlnOnLightBlack

func FprintlnOnLightBlack(w io.Writer, str string)

FprintlnOnLightBlack wraps OnLightBlack() and fmt.Fprintln().

func FprintlnOnLightBlue

func FprintlnOnLightBlue(w io.Writer, str string)

FprintlnOnLightBlue wraps OnLightBlue() and fmt.Fprintln().

func FprintlnOnLightCyan

func FprintlnOnLightCyan(w io.Writer, str string)

FprintlnOnLightCyan wraps OnLightCyan() and fmt.Fprintln().

func FprintlnOnLightGreen

func FprintlnOnLightGreen(w io.Writer, str string)

FprintlnOnLightGreen wraps OnLightGreen() and fmt.Fprintln().

func FprintlnOnLightMagenta

func FprintlnOnLightMagenta(w io.Writer, str string)

FprintlnOnLightMagenta wraps OnLightMagenta() and fmt.Fprintln().

func FprintlnOnLightRed

func FprintlnOnLightRed(w io.Writer, str string)

FprintlnOnLightRed wraps OnLightRed() and fmt.Fprintln().

func FprintlnOnLightWhite

func FprintlnOnLightWhite(w io.Writer, str string)

FprintlnOnLightWhite wraps OnLightWhite() and fmt.Fprintln().

func FprintlnOnLightYellow

func FprintlnOnLightYellow(w io.Writer, str string)

FprintlnOnLightYellow wraps OnLightYellow() and fmt.Fprintln().

func FprintlnOnMagenta

func FprintlnOnMagenta(w io.Writer, str string)

FprintlnOnMagenta wraps OnMagenta() and fmt.Fprintln().

func FprintlnOnRainbow

func FprintlnOnRainbow(w io.Writer, str string)

FprintlnOnRainbow wraps OnRainbow() and fmt.Fprintln().

func FprintlnOnRed

func FprintlnOnRed(w io.Writer, str string)

FprintlnOnRed wraps OnRed() and fmt.Fprintln().

func FprintlnOnWhite

func FprintlnOnWhite(w io.Writer, str string)

FprintlnOnWhite wraps OnWhite() and fmt.Fprintln().

func FprintlnOnYellow

func FprintlnOnYellow(w io.Writer, str string)

FprintlnOnYellow wraps OnYellow() and fmt.Fprintln().

func FprintlnPlain

func FprintlnPlain(w io.Writer, str string)

FprintlnPlain wraps Plain() and fmt.Fprintln().

func FprintlnRainbow

func FprintlnRainbow(w io.Writer, str string)

FprintlnRainbow wraps Rainbow() and fmt.Fprintln().

func FprintlnRed

func FprintlnRed(w io.Writer, str string)

FprintlnRed wraps Red() and fmt.Fprintln().

func FprintlnReset

func FprintlnReset(w io.Writer, str string)

FprintlnReset wraps Reset() and fmt.Fprintln().

func FprintlnStrikethrough

func FprintlnStrikethrough(w io.Writer, str string)

FprintlnStrikethrough wraps Strikethrough() and fmt.Fprintln().

func FprintlnSwap

func FprintlnSwap(w io.Writer, str string)

FprintlnSwap wraps Swap() and fmt.Fprintln().

func FprintlnUnderline

func FprintlnUnderline(w io.Writer, str string)

FprintlnUnderline wraps Underline() and fmt.Fprintln().

func FprintlnWhite

func FprintlnWhite(w io.Writer, str string)

FprintlnWhite wraps White() and fmt.Fprintln().

func FprintlnWrap

func FprintlnWrap(w io.Writer, width int, str string)

FprintlnWrap wraps Wrap() and fmt.Fprintln().

func FprintlnYellow

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

func Frakturf(format string, args ...any) 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

func Greenf(format string, args ...any) 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 HexToTrueColor

func HexToTrueColor(hex string) string

HexToTrueColor will convert hex to the 24-bit RGB values.

func HexToXterm256

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

func Hexf(hex string, format string, args ...any) 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

func Hidef(format string, args ...any) 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

func Hilightf(code string, format string, args ...any) 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

func Hilightsf(codes []string, format string, args ...any) 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

func Inversef(format string, args ...any) string

Inversef wraps fmt.Sprintf() and Inverse.

func IsDisabled

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

func Italicf(format string, args ...any) 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

func LightBlackf(format string, args ...any) 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

func LightBluef(format string, args ...any) 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

func LightCyanf(format string, args ...any) 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

func LightGreenf(format string, args ...any) 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

func LightMagentaf(format string, args ...any) 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

func LightRedf(format string, args ...any) 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

func LightWhitef(format string, args ...any) 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

func LightYellowf(format string, args ...any) 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

func Magentaf(format string, args ...any) 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

func Negativef(format string, args ...any) 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

func NoBlinkRapidf(format string, args ...any) 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

func NoBlinkSlowf(format string, args ...any) string

NoBlinkSlowf wraps fmt.Sprintf() and NoBlinkSlow.

func NoBlinkf

func NoBlinkf(format string, args ...any) 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

func NoBoldf(format string, args ...any) 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

func NoConcealf(format string, args ...any) 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

func NoCrossedOutf(format string, args ...any) 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

func NoDimf(format string, args ...any) 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

func NoFaintf(format string, args ...any) 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

func NoFrakturf(format string, args ...any) 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

func NoHidef(format string, args ...any) 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

func NoInversef(format string, args ...any) 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

func NoItalicf(format string, args ...any) 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

func NoNegativef(format string, args ...any) 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

func NoStrikethroughf(format string, args ...any) 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

func NoSwapf(format string, args ...any) 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

func NoUnderlinef(format string, args ...any) 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

func Normalf(format string, args ...any) 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

func OnBlackf(format string, args ...any) 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

func OnBluef(format string, args ...any) 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

func OnColor000f(format string, args ...any) 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

func OnColor001f(format string, args ...any) 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

func OnColor002f(format string, args ...any) 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

func OnColor003f(format string, args ...any) 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

func OnColor004f(format string, args ...any) 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

func OnColor005f(format string, args ...any) 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

func OnColor006f(format string, args ...any) 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

func OnColor007f(format string, args ...any) 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

func OnColor008f(format string, args ...any) 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

func OnColor009f(format string, args ...any) 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

func OnColor010f(format string, args ...any) 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

func OnColor011f(format string, args ...any) 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

func OnColor012f(format string, args ...any) 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

func OnColor013f(format string, args ...any) 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

func OnColor014f(format string, args ...any) 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

func OnColor015f(format string, args ...any) 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

func OnColor016f(format string, args ...any) 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

func OnColor017f(format string, args ...any) 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

func OnColor018f(format string, args ...any) 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

func OnColor019f(format string, args ...any) 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

func OnColor020f(format string, args ...any) 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

func OnColor021f(format string, args ...any) 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

func OnColor022f(format string, args ...any) 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

func OnColor023f(format string, args ...any) 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

func OnColor024f(format string, args ...any) 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

func OnColor025f(format string, args ...any) 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

func OnColor026f(format string, args ...any) 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

func OnColor027f(format string, args ...any) 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

func OnColor028f(format string, args ...any) 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

func OnColor029f(format string, args ...any) 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

func OnColor030f(format string, args ...any) 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

func OnColor031f(format string, args ...any) 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

func OnColor032f(format string, args ...any) 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

func OnColor033f(format string, args ...any) 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

func OnColor034f(format string, args ...any) 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

func OnColor035f(format string, args ...any) 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

func OnColor036f(format string, args ...any) 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

func OnColor037f(format string, args ...any) 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

func OnColor038f(format string, args ...any) 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

func OnColor039f(format string, args ...any) 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

func OnColor040f(format string, args ...any) 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

func OnColor041f(format string, args ...any) 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

func OnColor042f(format string, args ...any) 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

func OnColor043f(format string, args ...any) 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

func OnColor044f(format string, args ...any) 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

func OnColor045f(format string, args ...any) 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

func OnColor046f(format string, args ...any) 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

func OnColor047f(format string, args ...any) 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

func OnColor048f(format string, args ...any) 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

func OnColor049f(format string, args ...any) 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

func OnColor050f(format string, args ...any) 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

func OnColor051f(format string, args ...any) 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

func OnColor052f(format string, args ...any) 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

func OnColor053f(format string, args ...any) 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

func OnColor054f(format string, args ...any) 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

func OnColor055f(format string, args ...any) 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

func OnColor056f(format string, args ...any) 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

func OnColor057f(format string, args ...any) 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

func OnColor058f(format string, args ...any) 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

func OnColor059f(format string, args ...any) 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

func OnColor060f(format string, args ...any) 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

func OnColor061f(format string, args ...any) 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

func OnColor062f(format string, args ...any) 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

func OnColor063f(format string, args ...any) 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

func OnColor064f(format string, args ...any) 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

func OnColor065f(format string, args ...any) 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

func OnColor066f(format string, args ...any) 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

func OnColor067f(format string, args ...any) 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

func OnColor068f(format string, args ...any) 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

func OnColor069f(format string, args ...any) 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

func OnColor070f(format string, args ...any) 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

func OnColor071f(format string, args ...any) 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

func OnColor072f(format string, args ...any) 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

func OnColor073f(format string, args ...any) 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

func OnColor074f(format string, args ...any) 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

func OnColor075f(format string, args ...any) 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

func OnColor076f(format string, args ...any) 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

func OnColor077f(format string, args ...any) 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

func OnColor078f(format string, args ...any) 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

func OnColor079f(format string, args ...any) 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

func OnColor080f(format string, args ...any) 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

func OnColor081f(format string, args ...any) 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

func OnColor082f(format string, args ...any) 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

func OnColor083f(format string, args ...any) 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

func OnColor084f(format string, args ...any) 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

func OnColor085f(format string, args ...any) 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

func OnColor086f(format string, args ...any) 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

func OnColor087f(format string, args ...any) 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

func OnColor088f(format string, args ...any) 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

func OnColor089f(format string, args ...any) 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

func OnColor090f(format string, args ...any) 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

func OnColor091f(format string, args ...any) 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

func OnColor092f(format string, args ...any) 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

func OnColor093f(format string, args ...any) 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

func OnColor094f(format string, args ...any) 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

func OnColor095f(format string, args ...any) 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

func OnColor096f(format string, args ...any) 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

func OnColor097f(format string, args ...any) 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

func OnColor098f(format string, args ...any) 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

func OnColor099f(format string, args ...any) 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

func OnColor100f(format string, args ...any) 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

func OnColor101f(format string, args ...any) 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

func OnColor102f(format string, args ...any) 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

func OnColor103f(format string, args ...any) 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

func OnColor104f(format string, args ...any) 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

func OnColor105f(format string, args ...any) 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

func OnColor106f(format string, args ...any) 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

func OnColor107f(format string, args ...any) 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

func OnColor108f(format string, args ...any) 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

func OnColor109f(format string, args ...any) 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

func OnColor110f(format string, args ...any) 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

func OnColor111f(format string, args ...any) 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

func OnColor112f(format string, args ...any) 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

func OnColor113f(format string, args ...any) 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

func OnColor114f(format string, args ...any) 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

func OnColor115f(format string, args ...any) 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

func OnColor116f(format string, args ...any) 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

func OnColor117f(format string, args ...any) 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

func OnColor118f(format string, args ...any) 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

func OnColor119f(format string, args ...any) 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

func OnColor120f(format string, args ...any) 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

func OnColor121f(format string, args ...any) 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

func OnColor122f(format string, args ...any) 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

func OnColor123f(format string, args ...any) 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

func OnColor124f(format string, args ...any) 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

func OnColor125f(format string, args ...any) 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

func OnColor126f(format string, args ...any) 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

func OnColor127f(format string, args ...any) 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

func OnColor128f(format string, args ...any) 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

func OnColor129f(format string, args ...any) 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

func OnColor130f(format string, args ...any) 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

func OnColor131f(format string, args ...any) 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

func OnColor132f(format string, args ...any) 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

func OnColor133f(format string, args ...any) 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

func OnColor134f(format string, args ...any) 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

func OnColor135f(format string, args ...any) 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

func OnColor136f(format string, args ...any) 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

func OnColor137f(format string, args ...any) 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

func OnColor138f(format string, args ...any) 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

func OnColor139f(format string, args ...any) 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

func OnColor140f(format string, args ...any) 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

func OnColor141f(format string, args ...any) 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

func OnColor142f(format string, args ...any) 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

func OnColor143f(format string, args ...any) 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

func OnColor144f(format string, args ...any) 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

func OnColor145f(format string, args ...any) 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

func OnColor146f(format string, args ...any) 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

func OnColor147f(format string, args ...any) 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

func OnColor148f(format string, args ...any) 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

func OnColor149f(format string, args ...any) 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

func OnColor150f(format string, args ...any) 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

func OnColor151f(format string, args ...any) 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

func OnColor152f(format string, args ...any) 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

func OnColor153f(format string, args ...any) 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

func OnColor154f(format string, args ...any) 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

func OnColor155f(format string, args ...any) 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

func OnColor156f(format string, args ...any) 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

func OnColor157f(format string, args ...any) 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

func OnColor158f(format string, args ...any) 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

func OnColor159f(format string, args ...any) 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

func OnColor160f(format string, args ...any) 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

func OnColor161f(format string, args ...any) 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

func OnColor162f(format string, args ...any) 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

func OnColor163f(format string, args ...any) 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

func OnColor164f(format string, args ...any) 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

func OnColor165f(format string, args ...any) 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

func OnColor166f(format string, args ...any) 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

func OnColor167f(format string, args ...any) 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

func OnColor168f(format string, args ...any) 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

func OnColor169f(format string, args ...any) 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

func OnColor170f(format string, args ...any) 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

func OnColor171f(format string, args ...any) 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

func OnColor172f(format string, args ...any) 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

func OnColor173f(format string, args ...any) 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

func OnColor174f(format string, args ...any) 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

func OnColor175f(format string, args ...any) 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

func OnColor176f(format string, args ...any) 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

func OnColor177f(format string, args ...any) 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

func OnColor178f(format string, args ...any) 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

func OnColor179f(format string, args ...any) 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

func OnColor180f(format string, args ...any) 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

func OnColor181f(format string, args ...any) 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

func OnColor182f(format string, args ...any) 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

func OnColor183f(format string, args ...any) 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

func OnColor184f(format string, args ...any) 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

func OnColor185f(format string, args ...any) 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

func OnColor186f(format string, args ...any) 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

func OnColor187f(format string, args ...any) 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

func OnColor188f(format string, args ...any) 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

func OnColor189f(format string, args ...any) 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

func OnColor190f(format string, args ...any) 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

func OnColor191f(format string, args ...any) 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

func OnColor192f(format string, args ...any) 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

func OnColor193f(format string, args ...any) 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

func OnColor194f(format string, args ...any) 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

func OnColor195f(format string, args ...any) 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

func OnColor196f(format string, args ...any) 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

func OnColor197f(format string, args ...any) 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

func OnColor198f(format string, args ...any) 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

func OnColor199f(format string, args ...any) 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

func OnColor200f(format string, args ...any) 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

func OnColor201f(format string, args ...any) 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

func OnColor202f(format string, args ...any) 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

func OnColor203f(format string, args ...any) 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

func OnColor204f(format string, args ...any) 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

func OnColor205f(format string, args ...any) 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

func OnColor206f(format string, args ...any) 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

func OnColor207f(format string, args ...any) 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

func OnColor208f(format string, args ...any) 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

func OnColor209f(format string, args ...any) 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

func OnColor210f(format string, args ...any) 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

func OnColor211f(format string, args ...any) 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

func OnColor212f(format string, args ...any) 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

func OnColor213f(format string, args ...any) 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

func OnColor214f(format string, args ...any) 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

func OnColor215f(format string, args ...any) 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

func OnColor216f(format string, args ...any) 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

func OnColor217f(format string, args ...any) 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

func OnColor218f(format string, args ...any) 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

func OnColor219f(format string, args ...any) 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

func OnColor220f(format string, args ...any) 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

func OnColor221f(format string, args ...any) 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

func OnColor222f(format string, args ...any) 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

func OnColor223f(format string, args ...any) 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

func OnColor224f(format string, args ...any) 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

func OnColor225f(format string, args ...any) 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

func OnColor226f(format string, args ...any) 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

func OnColor227f(format string, args ...any) 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

func OnColor228f(format string, args ...any) 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

func OnColor229f(format string, args ...any) 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

func OnColor230f(format string, args ...any) 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

func OnColor231f(format string, args ...any) 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

func OnColor232f(format string, args ...any) 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

func OnColor233f(format string, args ...any) 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

func OnColor234f(format string, args ...any) 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

func OnColor235f(format string, args ...any) 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

func OnColor236f(format string, args ...any) 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

func OnColor237f(format string, args ...any) 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

func OnColor238f(format string, args ...any) 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

func OnColor239f(format string, args ...any) 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

func OnColor240f(format string, args ...any) 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

func OnColor241f(format string, args ...any) 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

func OnColor242f(format string, args ...any) 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

func OnColor243f(format string, args ...any) 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

func OnColor244f(format string, args ...any) 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

func OnColor245f(format string, args ...any) 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

func OnColor246f(format string, args ...any) 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

func OnColor247f(format string, args ...any) 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

func OnColor248f(format string, args ...any) 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

func OnColor249f(format string, args ...any) 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

func OnColor250f(format string, args ...any) 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

func OnColor251f(format string, args ...any) 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

func OnColor252f(format string, args ...any) 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

func OnColor253f(format string, args ...any) 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

func OnColor254f(format string, args ...any) 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

func OnColor255f(format string, args ...any) 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

func OnCyanf(format string, args ...any) 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

func OnDefaultf(format string, args ...any) 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

func OnGreenf(format string, args ...any) 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

func OnHexf(hex string, format string, args ...any) 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

func OnLightBlackf(format string, args ...any) 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

func OnLightBluef(format string, args ...any) 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

func OnLightCyanf(format string, args ...any) 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

func OnLightGreenf(format string, args ...any) 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

func OnLightMagentaf(format string, args ...any) 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

func OnLightRedf(format string, args ...any) 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

func OnLightWhitef(format string, args ...any) 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

func OnLightYellowf(format string, args ...any) 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

func OnMagentaf(format string, args ...any) 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

func OnRainbowf(format string, args ...any) 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

func OnRedf(format string, args ...any) 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

func OnWhitef(format string, args ...any) 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

func OnYellowf(format string, args ...any) 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

func Plainf(format string, args ...any) string

Plainf wraps fmt.Sprintf() and Plain.

func Print

func Print(args ...any)

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

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 ...any)

Printf wraps fmt.Printf().

func PrintfBlack

func PrintfBlack(format string, args ...any)

PrintfBlack wraps Black() and fmt.Printf().

func PrintfBlink(format string, args ...any)

PrintfBlink wraps Blink() and fmt.Printf().

func PrintfBlinkRapid

func PrintfBlinkRapid(format string, args ...any)

PrintfBlinkRapid wraps BlinkRapid() and fmt.Printf().

func PrintfBlinkSlow

func PrintfBlinkSlow(format string, args ...any)

PrintfBlinkSlow wraps BlinkSlow() and fmt.Printf().

func PrintfBlue

func PrintfBlue(format string, args ...any)

PrintfBlue wraps Blue() and fmt.Printf().

func PrintfBold

func PrintfBold(format string, args ...any)

PrintfBold wraps Bold() and fmt.Printf().

func PrintfColor000

func PrintfColor000(format string, args ...any)

PrintfColor000 wraps Color000() and fmt.Printf().

func PrintfColor001

func PrintfColor001(format string, args ...any)

PrintfColor001 wraps Color001() and fmt.Printf().

func PrintfColor002

func PrintfColor002(format string, args ...any)

PrintfColor002 wraps Color002() and fmt.Printf().

func PrintfColor003

func PrintfColor003(format string, args ...any)

PrintfColor003 wraps Color003() and fmt.Printf().

func PrintfColor004

func PrintfColor004(format string, args ...any)

PrintfColor004 wraps Color004() and fmt.Printf().

func PrintfColor005

func PrintfColor005(format string, args ...any)

PrintfColor005 wraps Color005() and fmt.Printf().

func PrintfColor006

func PrintfColor006(format string, args ...any)

PrintfColor006 wraps Color006() and fmt.Printf().

func PrintfColor007

func PrintfColor007(format string, args ...any)

PrintfColor007 wraps Color007() and fmt.Printf().

func PrintfColor008

func PrintfColor008(format string, args ...any)

PrintfColor008 wraps Color008() and fmt.Printf().

func PrintfColor009

func PrintfColor009(format string, args ...any)

PrintfColor009 wraps Color009() and fmt.Printf().

func PrintfColor010

func PrintfColor010(format string, args ...any)

PrintfColor010 wraps Color010() and fmt.Printf().

func PrintfColor011

func PrintfColor011(format string, args ...any)

PrintfColor011 wraps Color011() and fmt.Printf().

func PrintfColor012

func PrintfColor012(format string, args ...any)

PrintfColor012 wraps Color012() and fmt.Printf().

func PrintfColor013

func PrintfColor013(format string, args ...any)

PrintfColor013 wraps Color013() and fmt.Printf().

func PrintfColor014

func PrintfColor014(format string, args ...any)

PrintfColor014 wraps Color014() and fmt.Printf().

func PrintfColor015

func PrintfColor015(format string, args ...any)

PrintfColor015 wraps Color015() and fmt.Printf().

func PrintfColor016

func PrintfColor016(format string, args ...any)

PrintfColor016 wraps Color016() and fmt.Printf().

func PrintfColor017

func PrintfColor017(format string, args ...any)

PrintfColor017 wraps Color017() and fmt.Printf().

func PrintfColor018

func PrintfColor018(format string, args ...any)

PrintfColor018 wraps Color018() and fmt.Printf().

func PrintfColor019

func PrintfColor019(format string, args ...any)

PrintfColor019 wraps Color019() and fmt.Printf().

func PrintfColor020

func PrintfColor020(format string, args ...any)

PrintfColor020 wraps Color020() and fmt.Printf().

func PrintfColor021

func PrintfColor021(format string, args ...any)

PrintfColor021 wraps Color021() and fmt.Printf().

func PrintfColor022

func PrintfColor022(format string, args ...any)

PrintfColor022 wraps Color022() and fmt.Printf().

func PrintfColor023

func PrintfColor023(format string, args ...any)

PrintfColor023 wraps Color023() and fmt.Printf().

func PrintfColor024

func PrintfColor024(format string, args ...any)

PrintfColor024 wraps Color024() and fmt.Printf().

func PrintfColor025

func PrintfColor025(format string, args ...any)

PrintfColor025 wraps Color025() and fmt.Printf().

func PrintfColor026

func PrintfColor026(format string, args ...any)

PrintfColor026 wraps Color026() and fmt.Printf().

func PrintfColor027

func PrintfColor027(format string, args ...any)

PrintfColor027 wraps Color027() and fmt.Printf().

func PrintfColor028

func PrintfColor028(format string, args ...any)

PrintfColor028 wraps Color028() and fmt.Printf().

func PrintfColor029

func PrintfColor029(format string, args ...any)

PrintfColor029 wraps Color029() and fmt.Printf().

func PrintfColor030

func PrintfColor030(format string, args ...any)

PrintfColor030 wraps Color030() and fmt.Printf().

func PrintfColor031

func PrintfColor031(format string, args ...any)

PrintfColor031 wraps Color031() and fmt.Printf().

func PrintfColor032

func PrintfColor032(format string, args ...any)

PrintfColor032 wraps Color032() and fmt.Printf().

func PrintfColor033

func PrintfColor033(format string, args ...any)

PrintfColor033 wraps Color033() and fmt.Printf().

func PrintfColor034

func PrintfColor034(format string, args ...any)

PrintfColor034 wraps Color034() and fmt.Printf().

func PrintfColor035

func PrintfColor035(format string, args ...any)

PrintfColor035 wraps Color035() and fmt.Printf().

func PrintfColor036

func PrintfColor036(format string, args ...any)

PrintfColor036 wraps Color036() and fmt.Printf().

func PrintfColor037

func PrintfColor037(format string, args ...any)

PrintfColor037 wraps Color037() and fmt.Printf().

func PrintfColor038

func PrintfColor038(format string, args ...any)

PrintfColor038 wraps Color038() and fmt.Printf().

func PrintfColor039

func PrintfColor039(format string, args ...any)

PrintfColor039 wraps Color039() and fmt.Printf().

func PrintfColor040

func PrintfColor040(format string, args ...any)

PrintfColor040 wraps Color040() and fmt.Printf().

func PrintfColor041

func PrintfColor041(format string, args ...any)

PrintfColor041 wraps Color041() and fmt.Printf().

func PrintfColor042

func PrintfColor042(format string, args ...any)

PrintfColor042 wraps Color042() and fmt.Printf().

func PrintfColor043

func PrintfColor043(format string, args ...any)

PrintfColor043 wraps Color043() and fmt.Printf().

func PrintfColor044

func PrintfColor044(format string, args ...any)

PrintfColor044 wraps Color044() and fmt.Printf().

func PrintfColor045

func PrintfColor045(format string, args ...any)

PrintfColor045 wraps Color045() and fmt.Printf().

func PrintfColor046

func PrintfColor046(format string, args ...any)

PrintfColor046 wraps Color046() and fmt.Printf().

func PrintfColor047

func PrintfColor047(format string, args ...any)

PrintfColor047 wraps Color047() and fmt.Printf().

func PrintfColor048

func PrintfColor048(format string, args ...any)

PrintfColor048 wraps Color048() and fmt.Printf().

func PrintfColor049

func PrintfColor049(format string, args ...any)

PrintfColor049 wraps Color049() and fmt.Printf().

func PrintfColor050

func PrintfColor050(format string, args ...any)

PrintfColor050 wraps Color050() and fmt.Printf().

func PrintfColor051

func PrintfColor051(format string, args ...any)

PrintfColor051 wraps Color051() and fmt.Printf().

func PrintfColor052

func PrintfColor052(format string, args ...any)

PrintfColor052 wraps Color052() and fmt.Printf().

func PrintfColor053

func PrintfColor053(format string, args ...any)

PrintfColor053 wraps Color053() and fmt.Printf().

func PrintfColor054

func PrintfColor054(format string, args ...any)

PrintfColor054 wraps Color054() and fmt.Printf().

func PrintfColor055

func PrintfColor055(format string, args ...any)

PrintfColor055 wraps Color055() and fmt.Printf().

func PrintfColor056

func PrintfColor056(format string, args ...any)

PrintfColor056 wraps Color056() and fmt.Printf().

func PrintfColor057

func PrintfColor057(format string, args ...any)

PrintfColor057 wraps Color057() and fmt.Printf().

func PrintfColor058

func PrintfColor058(format string, args ...any)

PrintfColor058 wraps Color058() and fmt.Printf().

func PrintfColor059

func PrintfColor059(format string, args ...any)

PrintfColor059 wraps Color059() and fmt.Printf().

func PrintfColor060

func PrintfColor060(format string, args ...any)

PrintfColor060 wraps Color060() and fmt.Printf().

func PrintfColor061

func PrintfColor061(format string, args ...any)

PrintfColor061 wraps Color061() and fmt.Printf().

func PrintfColor062

func PrintfColor062(format string, args ...any)

PrintfColor062 wraps Color062() and fmt.Printf().

func PrintfColor063

func PrintfColor063(format string, args ...any)

PrintfColor063 wraps Color063() and fmt.Printf().

func PrintfColor064

func PrintfColor064(format string, args ...any)

PrintfColor064 wraps Color064() and fmt.Printf().

func PrintfColor065

func PrintfColor065(format string, args ...any)

PrintfColor065 wraps Color065() and fmt.Printf().

func PrintfColor066

func PrintfColor066(format string, args ...any)

PrintfColor066 wraps Color066() and fmt.Printf().

func PrintfColor067

func PrintfColor067(format string, args ...any)

PrintfColor067 wraps Color067() and fmt.Printf().

func PrintfColor068

func PrintfColor068(format string, args ...any)

PrintfColor068 wraps Color068() and fmt.Printf().

func PrintfColor069

func PrintfColor069(format string, args ...any)

PrintfColor069 wraps Color069() and fmt.Printf().

func PrintfColor070

func PrintfColor070(format string, args ...any)

PrintfColor070 wraps Color070() and fmt.Printf().

func PrintfColor071

func PrintfColor071(format string, args ...any)

PrintfColor071 wraps Color071() and fmt.Printf().

func PrintfColor072

func PrintfColor072(format string, args ...any)

PrintfColor072 wraps Color072() and fmt.Printf().

func PrintfColor073

func PrintfColor073(format string, args ...any)

PrintfColor073 wraps Color073() and fmt.Printf().

func PrintfColor074

func PrintfColor074(format string, args ...any)

PrintfColor074 wraps Color074() and fmt.Printf().

func PrintfColor075

func PrintfColor075(format string, args ...any)

PrintfColor075 wraps Color075() and fmt.Printf().

func PrintfColor076

func PrintfColor076(format string, args ...any)

PrintfColor076 wraps Color076() and fmt.Printf().

func PrintfColor077

func PrintfColor077(format string, args ...any)

PrintfColor077 wraps Color077() and fmt.Printf().

func PrintfColor078

func PrintfColor078(format string, args ...any)

PrintfColor078 wraps Color078() and fmt.Printf().

func PrintfColor079

func PrintfColor079(format string, args ...any)

PrintfColor079 wraps Color079() and fmt.Printf().

func PrintfColor080

func PrintfColor080(format string, args ...any)

PrintfColor080 wraps Color080() and fmt.Printf().

func PrintfColor081

func PrintfColor081(format string, args ...any)

PrintfColor081 wraps Color081() and fmt.Printf().

func PrintfColor082

func PrintfColor082(format string, args ...any)

PrintfColor082 wraps Color082() and fmt.Printf().

func PrintfColor083

func PrintfColor083(format string, args ...any)

PrintfColor083 wraps Color083() and fmt.Printf().

func PrintfColor084

func PrintfColor084(format string, args ...any)

PrintfColor084 wraps Color084() and fmt.Printf().

func PrintfColor085

func PrintfColor085(format string, args ...any)

PrintfColor085 wraps Color085() and fmt.Printf().

func PrintfColor086

func PrintfColor086(format string, args ...any)

PrintfColor086 wraps Color086() and fmt.Printf().

func PrintfColor087

func PrintfColor087(format string, args ...any)

PrintfColor087 wraps Color087() and fmt.Printf().

func PrintfColor088

func PrintfColor088(format string, args ...any)

PrintfColor088 wraps Color088() and fmt.Printf().

func PrintfColor089

func PrintfColor089(format string, args ...any)

PrintfColor089 wraps Color089() and fmt.Printf().

func PrintfColor090

func PrintfColor090(format string, args ...any)

PrintfColor090 wraps Color090() and fmt.Printf().

func PrintfColor091

func PrintfColor091(format string, args ...any)

PrintfColor091 wraps Color091() and fmt.Printf().

func PrintfColor092

func PrintfColor092(format string, args ...any)

PrintfColor092 wraps Color092() and fmt.Printf().

func PrintfColor093

func PrintfColor093(format string, args ...any)

PrintfColor093 wraps Color093() and fmt.Printf().

func PrintfColor094

func PrintfColor094(format string, args ...any)

PrintfColor094 wraps Color094() and fmt.Printf().

func PrintfColor095

func PrintfColor095(format string, args ...any)

PrintfColor095 wraps Color095() and fmt.Printf().

func PrintfColor096

func PrintfColor096(format string, args ...any)

PrintfColor096 wraps Color096() and fmt.Printf().

func PrintfColor097

func PrintfColor097(format string, args ...any)

PrintfColor097 wraps Color097() and fmt.Printf().

func PrintfColor098

func PrintfColor098(format string, args ...any)

PrintfColor098 wraps Color098() and fmt.Printf().

func PrintfColor099

func PrintfColor099(format string, args ...any)

PrintfColor099 wraps Color099() and fmt.Printf().

func PrintfColor100

func PrintfColor100(format string, args ...any)

PrintfColor100 wraps Color100() and fmt.Printf().

func PrintfColor101

func PrintfColor101(format string, args ...any)

PrintfColor101 wraps Color101() and fmt.Printf().

func PrintfColor102

func PrintfColor102(format string, args ...any)

PrintfColor102 wraps Color102() and fmt.Printf().

func PrintfColor103

func PrintfColor103(format string, args ...any)

PrintfColor103 wraps Color103() and fmt.Printf().

func PrintfColor104

func PrintfColor104(format string, args ...any)

PrintfColor104 wraps Color104() and fmt.Printf().

func PrintfColor105

func PrintfColor105(format string, args ...any)

PrintfColor105 wraps Color105() and fmt.Printf().

func PrintfColor106

func PrintfColor106(format string, args ...any)

PrintfColor106 wraps Color106() and fmt.Printf().

func PrintfColor107

func PrintfColor107(format string, args ...any)

PrintfColor107 wraps Color107() and fmt.Printf().

func PrintfColor108

func PrintfColor108(format string, args ...any)

PrintfColor108 wraps Color108() and fmt.Printf().

func PrintfColor109

func PrintfColor109(format string, args ...any)

PrintfColor109 wraps Color109() and fmt.Printf().

func PrintfColor110

func PrintfColor110(format string, args ...any)

PrintfColor110 wraps Color110() and fmt.Printf().

func PrintfColor111

func PrintfColor111(format string, args ...any)

PrintfColor111 wraps Color111() and fmt.Printf().

func PrintfColor112

func PrintfColor112(format string, args ...any)

PrintfColor112 wraps Color112() and fmt.Printf().

func PrintfColor113

func PrintfColor113(format string, args ...any)

PrintfColor113 wraps Color113() and fmt.Printf().

func PrintfColor114

func PrintfColor114(format string, args ...any)

PrintfColor114 wraps Color114() and fmt.Printf().

func PrintfColor115

func PrintfColor115(format string, args ...any)

PrintfColor115 wraps Color115() and fmt.Printf().

func PrintfColor116

func PrintfColor116(format string, args ...any)

PrintfColor116 wraps Color116() and fmt.Printf().

func PrintfColor117

func PrintfColor117(format string, args ...any)

PrintfColor117 wraps Color117() and fmt.Printf().

func PrintfColor118

func PrintfColor118(format string, args ...any)

PrintfColor118 wraps Color118() and fmt.Printf().

func PrintfColor119

func PrintfColor119(format string, args ...any)

PrintfColor119 wraps Color119() and fmt.Printf().

func PrintfColor120

func PrintfColor120(format string, args ...any)

PrintfColor120 wraps Color120() and fmt.Printf().

func PrintfColor121

func PrintfColor121(format string, args ...any)

PrintfColor121 wraps Color121() and fmt.Printf().

func PrintfColor122

func PrintfColor122(format string, args ...any)

PrintfColor122 wraps Color122() and fmt.Printf().

func PrintfColor123

func PrintfColor123(format string, args ...any)

PrintfColor123 wraps Color123() and fmt.Printf().

func PrintfColor124

func PrintfColor124(format string, args ...any)

PrintfColor124 wraps Color124() and fmt.Printf().

func PrintfColor125

func PrintfColor125(format string, args ...any)

PrintfColor125 wraps Color125() and fmt.Printf().

func PrintfColor126

func PrintfColor126(format string, args ...any)

PrintfColor126 wraps Color126() and fmt.Printf().

func PrintfColor127

func PrintfColor127(format string, args ...any)

PrintfColor127 wraps Color127() and fmt.Printf().

func PrintfColor128

func PrintfColor128(format string, args ...any)

PrintfColor128 wraps Color128() and fmt.Printf().

func PrintfColor129

func PrintfColor129(format string, args ...any)

PrintfColor129 wraps Color129() and fmt.Printf().

func PrintfColor130

func PrintfColor130(format string, args ...any)

PrintfColor130 wraps Color130() and fmt.Printf().

func PrintfColor131

func PrintfColor131(format string, args ...any)

PrintfColor131 wraps Color131() and fmt.Printf().

func PrintfColor132

func PrintfColor132(format string, args ...any)

PrintfColor132 wraps Color132() and fmt.Printf().

func PrintfColor133

func PrintfColor133(format string, args ...any)

PrintfColor133 wraps Color133() and fmt.Printf().

func PrintfColor134

func PrintfColor134(format string, args ...any)

PrintfColor134 wraps Color134() and fmt.Printf().

func PrintfColor135

func PrintfColor135(format string, args ...any)

PrintfColor135 wraps Color135() and fmt.Printf().

func PrintfColor136

func PrintfColor136(format string, args ...any)

PrintfColor136 wraps Color136() and fmt.Printf().

func PrintfColor137

func PrintfColor137(format string, args ...any)

PrintfColor137 wraps Color137() and fmt.Printf().

func PrintfColor138

func PrintfColor138(format string, args ...any)

PrintfColor138 wraps Color138() and fmt.Printf().

func PrintfColor139

func PrintfColor139(format string, args ...any)

PrintfColor139 wraps Color139() and fmt.Printf().

func PrintfColor140

func PrintfColor140(format string, args ...any)

PrintfColor140 wraps Color140() and fmt.Printf().

func PrintfColor141

func PrintfColor141(format string, args ...any)

PrintfColor141 wraps Color141() and fmt.Printf().

func PrintfColor142

func PrintfColor142(format string, args ...any)

PrintfColor142 wraps Color142() and fmt.Printf().

func PrintfColor143

func PrintfColor143(format string, args ...any)

PrintfColor143 wraps Color143() and fmt.Printf().

func PrintfColor144

func PrintfColor144(format string, args ...any)

PrintfColor144 wraps Color144() and fmt.Printf().

func PrintfColor145

func PrintfColor145(format string, args ...any)

PrintfColor145 wraps Color145() and fmt.Printf().

func PrintfColor146

func PrintfColor146(format string, args ...any)

PrintfColor146 wraps Color146() and fmt.Printf().

func PrintfColor147

func PrintfColor147(format string, args ...any)

PrintfColor147 wraps Color147() and fmt.Printf().

func PrintfColor148

func PrintfColor148(format string, args ...any)

PrintfColor148 wraps Color148() and fmt.Printf().

func PrintfColor149

func PrintfColor149(format string, args ...any)

PrintfColor149 wraps Color149() and fmt.Printf().

func PrintfColor150

func PrintfColor150(format string, args ...any)

PrintfColor150 wraps Color150() and fmt.Printf().

func PrintfColor151

func PrintfColor151(format string, args ...any)

PrintfColor151 wraps Color151() and fmt.Printf().

func PrintfColor152

func PrintfColor152(format string, args ...any)

PrintfColor152 wraps Color152() and fmt.Printf().

func PrintfColor153

func PrintfColor153(format string, args ...any)

PrintfColor153 wraps Color153() and fmt.Printf().

func PrintfColor154

func PrintfColor154(format string, args ...any)

PrintfColor154 wraps Color154() and fmt.Printf().

func PrintfColor155

func PrintfColor155(format string, args ...any)

PrintfColor155 wraps Color155() and fmt.Printf().

func PrintfColor156

func PrintfColor156(format string, args ...any)

PrintfColor156 wraps Color156() and fmt.Printf().

func PrintfColor157

func PrintfColor157(format string, args ...any)

PrintfColor157 wraps Color157() and fmt.Printf().

func PrintfColor158

func PrintfColor158(format string, args ...any)

PrintfColor158 wraps Color158() and fmt.Printf().

func PrintfColor159

func PrintfColor159(format string, args ...any)

PrintfColor159 wraps Color159() and fmt.Printf().

func PrintfColor160

func PrintfColor160(format string, args ...any)

PrintfColor160 wraps Color160() and fmt.Printf().

func PrintfColor161

func PrintfColor161(format string, args ...any)

PrintfColor161 wraps Color161() and fmt.Printf().

func PrintfColor162

func PrintfColor162(format string, args ...any)

PrintfColor162 wraps Color162() and fmt.Printf().

func PrintfColor163

func PrintfColor163(format string, args ...any)

PrintfColor163 wraps Color163() and fmt.Printf().

func PrintfColor164

func PrintfColor164(format string, args ...any)

PrintfColor164 wraps Color164() and fmt.Printf().

func PrintfColor165

func PrintfColor165(format string, args ...any)

PrintfColor165 wraps Color165() and fmt.Printf().

func PrintfColor166

func PrintfColor166(format string, args ...any)

PrintfColor166 wraps Color166() and fmt.Printf().

func PrintfColor167

func PrintfColor167(format string, args ...any)

PrintfColor167 wraps Color167() and fmt.Printf().

func PrintfColor168

func PrintfColor168(format string, args ...any)

PrintfColor168 wraps Color168() and fmt.Printf().

func PrintfColor169

func PrintfColor169(format string, args ...any)

PrintfColor169 wraps Color169() and fmt.Printf().

func PrintfColor170

func PrintfColor170(format string, args ...any)

PrintfColor170 wraps Color170() and fmt.Printf().

func PrintfColor171

func PrintfColor171(format string, args ...any)

PrintfColor171 wraps Color171() and fmt.Printf().

func PrintfColor172

func PrintfColor172(format string, args ...any)

PrintfColor172 wraps Color172() and fmt.Printf().

func PrintfColor173

func PrintfColor173(format string, args ...any)

PrintfColor173 wraps Color173() and fmt.Printf().

func PrintfColor174

func PrintfColor174(format string, args ...any)

PrintfColor174 wraps Color174() and fmt.Printf().

func PrintfColor175

func PrintfColor175(format string, args ...any)

PrintfColor175 wraps Color175() and fmt.Printf().

func PrintfColor176

func PrintfColor176(format string, args ...any)

PrintfColor176 wraps Color176() and fmt.Printf().

func PrintfColor177

func PrintfColor177(format string, args ...any)

PrintfColor177 wraps Color177() and fmt.Printf().

func PrintfColor178

func PrintfColor178(format string, args ...any)

PrintfColor178 wraps Color178() and fmt.Printf().

func PrintfColor179

func PrintfColor179(format string, args ...any)

PrintfColor179 wraps Color179() and fmt.Printf().

func PrintfColor180

func PrintfColor180(format string, args ...any)

PrintfColor180 wraps Color180() and fmt.Printf().

func PrintfColor181

func PrintfColor181(format string, args ...any)

PrintfColor181 wraps Color181() and fmt.Printf().

func PrintfColor182

func PrintfColor182(format string, args ...any)

PrintfColor182 wraps Color182() and fmt.Printf().

func PrintfColor183

func PrintfColor183(format string, args ...any)

PrintfColor183 wraps Color183() and fmt.Printf().

func PrintfColor184

func PrintfColor184(format string, args ...any)

PrintfColor184 wraps Color184() and fmt.Printf().

func PrintfColor185

func PrintfColor185(format string, args ...any)

PrintfColor185 wraps Color185() and fmt.Printf().

func PrintfColor186

func PrintfColor186(format string, args ...any)

PrintfColor186 wraps Color186() and fmt.Printf().

func PrintfColor187

func PrintfColor187(format string, args ...any)

PrintfColor187 wraps Color187() and fmt.Printf().

func PrintfColor188

func PrintfColor188(format string, args ...any)

PrintfColor188 wraps Color188() and fmt.Printf().

func PrintfColor189

func PrintfColor189(format string, args ...any)

PrintfColor189 wraps Color189() and fmt.Printf().

func PrintfColor190

func PrintfColor190(format string, args ...any)

PrintfColor190 wraps Color190() and fmt.Printf().

func PrintfColor191

func PrintfColor191(format string, args ...any)

PrintfColor191 wraps Color191() and fmt.Printf().

func PrintfColor192

func PrintfColor192(format string, args ...any)

PrintfColor192 wraps Color192() and fmt.Printf().

func PrintfColor193

func PrintfColor193(format string, args ...any)

PrintfColor193 wraps Color193() and fmt.Printf().

func PrintfColor194

func PrintfColor194(format string, args ...any)

PrintfColor194 wraps Color194() and fmt.Printf().

func PrintfColor195

func PrintfColor195(format string, args ...any)

PrintfColor195 wraps Color195() and fmt.Printf().

func PrintfColor196

func PrintfColor196(format string, args ...any)

PrintfColor196 wraps Color196() and fmt.Printf().

func PrintfColor197

func PrintfColor197(format string, args ...any)

PrintfColor197 wraps Color197() and fmt.Printf().

func PrintfColor198

func PrintfColor198(format string, args ...any)

PrintfColor198 wraps Color198() and fmt.Printf().

func PrintfColor199

func PrintfColor199(format string, args ...any)

PrintfColor199 wraps Color199() and fmt.Printf().

func PrintfColor200

func PrintfColor200(format string, args ...any)

PrintfColor200 wraps Color200() and fmt.Printf().

func PrintfColor201

func PrintfColor201(format string, args ...any)

PrintfColor201 wraps Color201() and fmt.Printf().

func PrintfColor202

func PrintfColor202(format string, args ...any)

PrintfColor202 wraps Color202() and fmt.Printf().

func PrintfColor203

func PrintfColor203(format string, args ...any)

PrintfColor203 wraps Color203() and fmt.Printf().

func PrintfColor204

func PrintfColor204(format string, args ...any)

PrintfColor204 wraps Color204() and fmt.Printf().

func PrintfColor205

func PrintfColor205(format string, args ...any)

PrintfColor205 wraps Color205() and fmt.Printf().

func PrintfColor206

func PrintfColor206(format string, args ...any)

PrintfColor206 wraps Color206() and fmt.Printf().

func PrintfColor207

func PrintfColor207(format string, args ...any)

PrintfColor207 wraps Color207() and fmt.Printf().

func PrintfColor208

func PrintfColor208(format string, args ...any)

PrintfColor208 wraps Color208() and fmt.Printf().

func PrintfColor209

func PrintfColor209(format string, args ...any)

PrintfColor209 wraps Color209() and fmt.Printf().

func PrintfColor210

func PrintfColor210(format string, args ...any)

PrintfColor210 wraps Color210() and fmt.Printf().

func PrintfColor211

func PrintfColor211(format string, args ...any)

PrintfColor211 wraps Color211() and fmt.Printf().

func PrintfColor212

func PrintfColor212(format string, args ...any)

PrintfColor212 wraps Color212() and fmt.Printf().

func PrintfColor213

func PrintfColor213(format string, args ...any)

PrintfColor213 wraps Color213() and fmt.Printf().

func PrintfColor214

func PrintfColor214(format string, args ...any)

PrintfColor214 wraps Color214() and fmt.Printf().

func PrintfColor215

func PrintfColor215(format string, args ...any)

PrintfColor215 wraps Color215() and fmt.Printf().

func PrintfColor216

func PrintfColor216(format string, args ...any)

PrintfColor216 wraps Color216() and fmt.Printf().

func PrintfColor217

func PrintfColor217(format string, args ...any)

PrintfColor217 wraps Color217() and fmt.Printf().

func PrintfColor218

func PrintfColor218(format string, args ...any)

PrintfColor218 wraps Color218() and fmt.Printf().

func PrintfColor219

func PrintfColor219(format string, args ...any)

PrintfColor219 wraps Color219() and fmt.Printf().

func PrintfColor220

func PrintfColor220(format string, args ...any)

PrintfColor220 wraps Color220() and fmt.Printf().

func PrintfColor221

func PrintfColor221(format string, args ...any)

PrintfColor221 wraps Color221() and fmt.Printf().

func PrintfColor222

func PrintfColor222(format string, args ...any)

PrintfColor222 wraps Color222() and fmt.Printf().

func PrintfColor223

func PrintfColor223(format string, args ...any)

PrintfColor223 wraps Color223() and fmt.Printf().

func PrintfColor224

func PrintfColor224(format string, args ...any)

PrintfColor224 wraps Color224() and fmt.Printf().

func PrintfColor225

func PrintfColor225(format string, args ...any)

PrintfColor225 wraps Color225() and fmt.Printf().

func PrintfColor226

func PrintfColor226(format string, args ...any)

PrintfColor226 wraps Color226() and fmt.Printf().

func PrintfColor227

func PrintfColor227(format string, args ...any)

PrintfColor227 wraps Color227() and fmt.Printf().

func PrintfColor228

func PrintfColor228(format string, args ...any)

PrintfColor228 wraps Color228() and fmt.Printf().

func PrintfColor229

func PrintfColor229(format string, args ...any)

PrintfColor229 wraps Color229() and fmt.Printf().

func PrintfColor230

func PrintfColor230(format string, args ...any)

PrintfColor230 wraps Color230() and fmt.Printf().

func PrintfColor231

func PrintfColor231(format string, args ...any)

PrintfColor231 wraps Color231() and fmt.Printf().

func PrintfColor232

func PrintfColor232(format string, args ...any)

PrintfColor232 wraps Color232() and fmt.Printf().

func PrintfColor233

func PrintfColor233(format string, args ...any)

PrintfColor233 wraps Color233() and fmt.Printf().

func PrintfColor234

func PrintfColor234(format string, args ...any)

PrintfColor234 wraps Color234() and fmt.Printf().

func PrintfColor235

func PrintfColor235(format string, args ...any)

PrintfColor235 wraps Color235() and fmt.Printf().

func PrintfColor236

func PrintfColor236(format string, args ...any)

PrintfColor236 wraps Color236() and fmt.Printf().

func PrintfColor237

func PrintfColor237(format string, args ...any)

PrintfColor237 wraps Color237() and fmt.Printf().

func PrintfColor238

func PrintfColor238(format string, args ...any)

PrintfColor238 wraps Color238() and fmt.Printf().

func PrintfColor239

func PrintfColor239(format string, args ...any)

PrintfColor239 wraps Color239() and fmt.Printf().

func PrintfColor240

func PrintfColor240(format string, args ...any)

PrintfColor240 wraps Color240() and fmt.Printf().

func PrintfColor241

func PrintfColor241(format string, args ...any)

PrintfColor241 wraps Color241() and fmt.Printf().

func PrintfColor242

func PrintfColor242(format string, args ...any)

PrintfColor242 wraps Color242() and fmt.Printf().

func PrintfColor243

func PrintfColor243(format string, args ...any)

PrintfColor243 wraps Color243() and fmt.Printf().

func PrintfColor244

func PrintfColor244(format string, args ...any)

PrintfColor244 wraps Color244() and fmt.Printf().

func PrintfColor245

func PrintfColor245(format string, args ...any)

PrintfColor245 wraps Color245() and fmt.Printf().

func PrintfColor246

func PrintfColor246(format string, args ...any)

PrintfColor246 wraps Color246() and fmt.Printf().

func PrintfColor247

func PrintfColor247(format string, args ...any)

PrintfColor247 wraps Color247() and fmt.Printf().

func PrintfColor248

func PrintfColor248(format string, args ...any)

PrintfColor248 wraps Color248() and fmt.Printf().

func PrintfColor249

func PrintfColor249(format string, args ...any)

PrintfColor249 wraps Color249() and fmt.Printf().

func PrintfColor250

func PrintfColor250(format string, args ...any)

PrintfColor250 wraps Color250() and fmt.Printf().

func PrintfColor251

func PrintfColor251(format string, args ...any)

PrintfColor251 wraps Color251() and fmt.Printf().

func PrintfColor252

func PrintfColor252(format string, args ...any)

PrintfColor252 wraps Color252() and fmt.Printf().

func PrintfColor253

func PrintfColor253(format string, args ...any)

PrintfColor253 wraps Color253() and fmt.Printf().

func PrintfColor254

func PrintfColor254(format string, args ...any)

PrintfColor254 wraps Color254() and fmt.Printf().

func PrintfColor255

func PrintfColor255(format string, args ...any)

PrintfColor255 wraps Color255() and fmt.Printf().

func PrintfConceal

func PrintfConceal(format string, args ...any)

PrintfConceal wraps Conceal() and fmt.Printf().

func PrintfCrossedOut

func PrintfCrossedOut(format string, args ...any)

PrintfCrossedOut wraps CrossedOut() and fmt.Printf().

func PrintfCyan

func PrintfCyan(format string, args ...any)

PrintfCyan wraps Cyan() and fmt.Printf().

func PrintfDefault

func PrintfDefault(format string, args ...any)

PrintfDefault wraps Default() and fmt.Printf().

func PrintfDim

func PrintfDim(format string, args ...any)

PrintfDim wraps Dim() and fmt.Printf().

func PrintfFaint

func PrintfFaint(format string, args ...any)

PrintfFaint wraps Faint() and fmt.Printf().

func PrintfFraktur

func PrintfFraktur(format string, args ...any)

PrintfFraktur wraps Fraktur() and fmt.Printf().

func PrintfGreen

func PrintfGreen(format string, args ...any)

PrintfGreen wraps Green() and fmt.Printf().

func PrintfHex

func PrintfHex(hex string, format string, args ...any)

PrintfHex wraps Hex() and fmt.Printf().

func PrintfHide

func PrintfHide(format string, args ...any)

PrintfHide wraps Hide() and fmt.Printf().

func PrintfHilight

func PrintfHilight(code string, format string, args ...any)

PrintfHilight wraps Hilight() and fmt.Printf().

func PrintfHilights

func PrintfHilights(codes []string, format string, args ...any)

PrintfHilights wraps Hilights() and fmt.Printf().

func PrintfInverse

func PrintfInverse(format string, args ...any)

PrintfInverse wraps Inverse() and fmt.Printf().

func PrintfItalic

func PrintfItalic(format string, args ...any)

PrintfItalic wraps Italic() and fmt.Printf().

func PrintfLightBlack

func PrintfLightBlack(format string, args ...any)

PrintfLightBlack wraps LightBlack() and fmt.Printf().

func PrintfLightBlue

func PrintfLightBlue(format string, args ...any)

PrintfLightBlue wraps LightBlue() and fmt.Printf().

func PrintfLightCyan

func PrintfLightCyan(format string, args ...any)

PrintfLightCyan wraps LightCyan() and fmt.Printf().

func PrintfLightGreen

func PrintfLightGreen(format string, args ...any)

PrintfLightGreen wraps LightGreen() and fmt.Printf().

func PrintfLightMagenta

func PrintfLightMagenta(format string, args ...any)

PrintfLightMagenta wraps LightMagenta() and fmt.Printf().

func PrintfLightRed

func PrintfLightRed(format string, args ...any)

PrintfLightRed wraps LightRed() and fmt.Printf().

func PrintfLightWhite

func PrintfLightWhite(format string, args ...any)

PrintfLightWhite wraps LightWhite() and fmt.Printf().

func PrintfLightYellow

func PrintfLightYellow(format string, args ...any)

PrintfLightYellow wraps LightYellow() and fmt.Printf().

func PrintfMagenta

func PrintfMagenta(format string, args ...any)

PrintfMagenta wraps Magenta() and fmt.Printf().

func PrintfNegative

func PrintfNegative(format string, args ...any)

PrintfNegative wraps Negative() and fmt.Printf().

func PrintfNoBlink(format string, args ...any)

PrintfNoBlink wraps NoBlink() and fmt.Printf().

func PrintfNoBlinkRapid

func PrintfNoBlinkRapid(format string, args ...any)

PrintfNoBlinkRapid wraps NoBlinkRapid() and fmt.Printf().

func PrintfNoBlinkSlow

func PrintfNoBlinkSlow(format string, args ...any)

PrintfNoBlinkSlow wraps NoBlinkSlow() and fmt.Printf().

func PrintfNoBold

func PrintfNoBold(format string, args ...any)

PrintfNoBold wraps NoBold() and fmt.Printf().

func PrintfNoConceal

func PrintfNoConceal(format string, args ...any)

PrintfNoConceal wraps NoConceal() and fmt.Printf().

func PrintfNoCrossedOut

func PrintfNoCrossedOut(format string, args ...any)

PrintfNoCrossedOut wraps NoCrossedOut() and fmt.Printf().

func PrintfNoDim

func PrintfNoDim(format string, args ...any)

PrintfNoDim wraps NoDim() and fmt.Printf().

func PrintfNoFaint

func PrintfNoFaint(format string, args ...any)

PrintfNoFaint wraps NoFaint() and fmt.Printf().

func PrintfNoFraktur

func PrintfNoFraktur(format string, args ...any)

PrintfNoFraktur wraps NoFraktur() and fmt.Printf().

func PrintfNoHide

func PrintfNoHide(format string, args ...any)

PrintfNoHide wraps NoHide() and fmt.Printf().

func PrintfNoInverse

func PrintfNoInverse(format string, args ...any)

PrintfNoInverse wraps NoInverse() and fmt.Printf().

func PrintfNoItalic

func PrintfNoItalic(format string, args ...any)

PrintfNoItalic wraps NoItalic() and fmt.Printf().

func PrintfNoNegative

func PrintfNoNegative(format string, args ...any)

PrintfNoNegative wraps NoNegative() and fmt.Printf().

func PrintfNoStrikethrough

func PrintfNoStrikethrough(format string, args ...any)

PrintfNoStrikethrough wraps NoStrikethrough() and fmt.Printf().

func PrintfNoSwap

func PrintfNoSwap(format string, args ...any)

PrintfNoSwap wraps NoSwap() and fmt.Printf().

func PrintfNoUnderline

func PrintfNoUnderline(format string, args ...any)

PrintfNoUnderline wraps NoUnderline() and fmt.Printf().

func PrintfNormal

func PrintfNormal(format string, args ...any)

PrintfNormal wraps Normal() and fmt.Printf().

func PrintfOnBlack

func PrintfOnBlack(format string, args ...any)

PrintfOnBlack wraps OnBlack() and fmt.Printf().

func PrintfOnBlue

func PrintfOnBlue(format string, args ...any)

PrintfOnBlue wraps OnBlue() and fmt.Printf().

func PrintfOnColor000

func PrintfOnColor000(format string, args ...any)

PrintfOnColor000 wraps OnColor000() and fmt.Printf().

func PrintfOnColor001

func PrintfOnColor001(format string, args ...any)

PrintfOnColor001 wraps OnColor001() and fmt.Printf().

func PrintfOnColor002

func PrintfOnColor002(format string, args ...any)

PrintfOnColor002 wraps OnColor002() and fmt.Printf().

func PrintfOnColor003

func PrintfOnColor003(format string, args ...any)

PrintfOnColor003 wraps OnColor003() and fmt.Printf().

func PrintfOnColor004

func PrintfOnColor004(format string, args ...any)

PrintfOnColor004 wraps OnColor004() and fmt.Printf().

func PrintfOnColor005

func PrintfOnColor005(format string, args ...any)

PrintfOnColor005 wraps OnColor005() and fmt.Printf().

func PrintfOnColor006

func PrintfOnColor006(format string, args ...any)

PrintfOnColor006 wraps OnColor006() and fmt.Printf().

func PrintfOnColor007

func PrintfOnColor007(format string, args ...any)

PrintfOnColor007 wraps OnColor007() and fmt.Printf().

func PrintfOnColor008

func PrintfOnColor008(format string, args ...any)

PrintfOnColor008 wraps OnColor008() and fmt.Printf().

func PrintfOnColor009

func PrintfOnColor009(format string, args ...any)

PrintfOnColor009 wraps OnColor009() and fmt.Printf().

func PrintfOnColor010

func PrintfOnColor010(format string, args ...any)

PrintfOnColor010 wraps OnColor010() and fmt.Printf().

func PrintfOnColor011

func PrintfOnColor011(format string, args ...any)

PrintfOnColor011 wraps OnColor011() and fmt.Printf().

func PrintfOnColor012

func PrintfOnColor012(format string, args ...any)

PrintfOnColor012 wraps OnColor012() and fmt.Printf().

func PrintfOnColor013

func PrintfOnColor013(format string, args ...any)

PrintfOnColor013 wraps OnColor013() and fmt.Printf().

func PrintfOnColor014

func PrintfOnColor014(format string, args ...any)

PrintfOnColor014 wraps OnColor014() and fmt.Printf().

func PrintfOnColor015

func PrintfOnColor015(format string, args ...any)

PrintfOnColor015 wraps OnColor015() and fmt.Printf().

func PrintfOnColor016

func PrintfOnColor016(format string, args ...any)

PrintfOnColor016 wraps OnColor016() and fmt.Printf().

func PrintfOnColor017

func PrintfOnColor017(format string, args ...any)

PrintfOnColor017 wraps OnColor017() and fmt.Printf().

func PrintfOnColor018

func PrintfOnColor018(format string, args ...any)

PrintfOnColor018 wraps OnColor018() and fmt.Printf().

func PrintfOnColor019

func PrintfOnColor019(format string, args ...any)

PrintfOnColor019 wraps OnColor019() and fmt.Printf().

func PrintfOnColor020

func PrintfOnColor020(format string, args ...any)

PrintfOnColor020 wraps OnColor020() and fmt.Printf().

func PrintfOnColor021

func PrintfOnColor021(format string, args ...any)

PrintfOnColor021 wraps OnColor021() and fmt.Printf().

func PrintfOnColor022

func PrintfOnColor022(format string, args ...any)

PrintfOnColor022 wraps OnColor022() and fmt.Printf().

func PrintfOnColor023

func PrintfOnColor023(format string, args ...any)

PrintfOnColor023 wraps OnColor023() and fmt.Printf().

func PrintfOnColor024

func PrintfOnColor024(format string, args ...any)

PrintfOnColor024 wraps OnColor024() and fmt.Printf().

func PrintfOnColor025

func PrintfOnColor025(format string, args ...any)

PrintfOnColor025 wraps OnColor025() and fmt.Printf().

func PrintfOnColor026

func PrintfOnColor026(format string, args ...any)

PrintfOnColor026 wraps OnColor026() and fmt.Printf().

func PrintfOnColor027

func PrintfOnColor027(format string, args ...any)

PrintfOnColor027 wraps OnColor027() and fmt.Printf().

func PrintfOnColor028

func PrintfOnColor028(format string, args ...any)

PrintfOnColor028 wraps OnColor028() and fmt.Printf().

func PrintfOnColor029

func PrintfOnColor029(format string, args ...any)

PrintfOnColor029 wraps OnColor029() and fmt.Printf().

func PrintfOnColor030

func PrintfOnColor030(format string, args ...any)

PrintfOnColor030 wraps OnColor030() and fmt.Printf().

func PrintfOnColor031

func PrintfOnColor031(format string, args ...any)

PrintfOnColor031 wraps OnColor031() and fmt.Printf().

func PrintfOnColor032

func PrintfOnColor032(format string, args ...any)

PrintfOnColor032 wraps OnColor032() and fmt.Printf().

func PrintfOnColor033

func PrintfOnColor033(format string, args ...any)

PrintfOnColor033 wraps OnColor033() and fmt.Printf().

func PrintfOnColor034

func PrintfOnColor034(format string, args ...any)

PrintfOnColor034 wraps OnColor034() and fmt.Printf().

func PrintfOnColor035

func PrintfOnColor035(format string, args ...any)

PrintfOnColor035 wraps OnColor035() and fmt.Printf().

func PrintfOnColor036

func PrintfOnColor036(format string, args ...any)

PrintfOnColor036 wraps OnColor036() and fmt.Printf().

func PrintfOnColor037

func PrintfOnColor037(format string, args ...any)

PrintfOnColor037 wraps OnColor037() and fmt.Printf().

func PrintfOnColor038

func PrintfOnColor038(format string, args ...any)

PrintfOnColor038 wraps OnColor038() and fmt.Printf().

func PrintfOnColor039

func PrintfOnColor039(format string, args ...any)

PrintfOnColor039 wraps OnColor039() and fmt.Printf().

func PrintfOnColor040

func PrintfOnColor040(format string, args ...any)

PrintfOnColor040 wraps OnColor040() and fmt.Printf().

func PrintfOnColor041

func PrintfOnColor041(format string, args ...any)

PrintfOnColor041 wraps OnColor041() and fmt.Printf().

func PrintfOnColor042

func PrintfOnColor042(format string, args ...any)

PrintfOnColor042 wraps OnColor042() and fmt.Printf().

func PrintfOnColor043

func PrintfOnColor043(format string, args ...any)

PrintfOnColor043 wraps OnColor043() and fmt.Printf().

func PrintfOnColor044

func PrintfOnColor044(format string, args ...any)

PrintfOnColor044 wraps OnColor044() and fmt.Printf().

func PrintfOnColor045

func PrintfOnColor045(format string, args ...any)

PrintfOnColor045 wraps OnColor045() and fmt.Printf().

func PrintfOnColor046

func PrintfOnColor046(format string, args ...any)

PrintfOnColor046 wraps OnColor046() and fmt.Printf().

func PrintfOnColor047

func PrintfOnColor047(format string, args ...any)

PrintfOnColor047 wraps OnColor047() and fmt.Printf().

func PrintfOnColor048

func PrintfOnColor048(format string, args ...any)

PrintfOnColor048 wraps OnColor048() and fmt.Printf().

func PrintfOnColor049

func PrintfOnColor049(format string, args ...any)

PrintfOnColor049 wraps OnColor049() and fmt.Printf().

func PrintfOnColor050

func PrintfOnColor050(format string, args ...any)

PrintfOnColor050 wraps OnColor050() and fmt.Printf().

func PrintfOnColor051

func PrintfOnColor051(format string, args ...any)

PrintfOnColor051 wraps OnColor051() and fmt.Printf().

func PrintfOnColor052

func PrintfOnColor052(format string, args ...any)

PrintfOnColor052 wraps OnColor052() and fmt.Printf().

func PrintfOnColor053

func PrintfOnColor053(format string, args ...any)

PrintfOnColor053 wraps OnColor053() and fmt.Printf().

func PrintfOnColor054

func PrintfOnColor054(format string, args ...any)

PrintfOnColor054 wraps OnColor054() and fmt.Printf().

func PrintfOnColor055

func PrintfOnColor055(format string, args ...any)

PrintfOnColor055 wraps OnColor055() and fmt.Printf().

func PrintfOnColor056

func PrintfOnColor056(format string, args ...any)

PrintfOnColor056 wraps OnColor056() and fmt.Printf().

func PrintfOnColor057

func PrintfOnColor057(format string, args ...any)

PrintfOnColor057 wraps OnColor057() and fmt.Printf().

func PrintfOnColor058

func PrintfOnColor058(format string, args ...any)

PrintfOnColor058 wraps OnColor058() and fmt.Printf().

func PrintfOnColor059

func PrintfOnColor059(format string, args ...any)

PrintfOnColor059 wraps OnColor059() and fmt.Printf().

func PrintfOnColor060

func PrintfOnColor060(format string, args ...any)

PrintfOnColor060 wraps OnColor060() and fmt.Printf().

func PrintfOnColor061

func PrintfOnColor061(format string, args ...any)

PrintfOnColor061 wraps OnColor061() and fmt.Printf().

func PrintfOnColor062

func PrintfOnColor062(format string, args ...any)

PrintfOnColor062 wraps OnColor062() and fmt.Printf().

func PrintfOnColor063

func PrintfOnColor063(format string, args ...any)

PrintfOnColor063 wraps OnColor063() and fmt.Printf().

func PrintfOnColor064

func PrintfOnColor064(format string, args ...any)

PrintfOnColor064 wraps OnColor064() and fmt.Printf().

func PrintfOnColor065

func PrintfOnColor065(format string, args ...any)

PrintfOnColor065 wraps OnColor065() and fmt.Printf().

func PrintfOnColor066

func PrintfOnColor066(format string, args ...any)

PrintfOnColor066 wraps OnColor066() and fmt.Printf().

func PrintfOnColor067

func PrintfOnColor067(format string, args ...any)

PrintfOnColor067 wraps OnColor067() and fmt.Printf().

func PrintfOnColor068

func PrintfOnColor068(format string, args ...any)

PrintfOnColor068 wraps OnColor068() and fmt.Printf().

func PrintfOnColor069

func PrintfOnColor069(format string, args ...any)

PrintfOnColor069 wraps OnColor069() and fmt.Printf().

func PrintfOnColor070

func PrintfOnColor070(format string, args ...any)

PrintfOnColor070 wraps OnColor070() and fmt.Printf().

func PrintfOnColor071

func PrintfOnColor071(format string, args ...any)

PrintfOnColor071 wraps OnColor071() and fmt.Printf().

func PrintfOnColor072

func PrintfOnColor072(format string, args ...any)

PrintfOnColor072 wraps OnColor072() and fmt.Printf().

func PrintfOnColor073

func PrintfOnColor073(format string, args ...any)

PrintfOnColor073 wraps OnColor073() and fmt.Printf().

func PrintfOnColor074

func PrintfOnColor074(format string, args ...any)

PrintfOnColor074 wraps OnColor074() and fmt.Printf().

func PrintfOnColor075

func PrintfOnColor075(format string, args ...any)

PrintfOnColor075 wraps OnColor075() and fmt.Printf().

func PrintfOnColor076

func PrintfOnColor076(format string, args ...any)

PrintfOnColor076 wraps OnColor076() and fmt.Printf().

func PrintfOnColor077

func PrintfOnColor077(format string, args ...any)

PrintfOnColor077 wraps OnColor077() and fmt.Printf().

func PrintfOnColor078

func PrintfOnColor078(format string, args ...any)

PrintfOnColor078 wraps OnColor078() and fmt.Printf().

func PrintfOnColor079

func PrintfOnColor079(format string, args ...any)

PrintfOnColor079 wraps OnColor079() and fmt.Printf().

func PrintfOnColor080

func PrintfOnColor080(format string, args ...any)

PrintfOnColor080 wraps OnColor080() and fmt.Printf().

func PrintfOnColor081

func PrintfOnColor081(format string, args ...any)

PrintfOnColor081 wraps OnColor081() and fmt.Printf().

func PrintfOnColor082

func PrintfOnColor082(format string, args ...any)

PrintfOnColor082 wraps OnColor082() and fmt.Printf().

func PrintfOnColor083

func PrintfOnColor083(format string, args ...any)

PrintfOnColor083 wraps OnColor083() and fmt.Printf().

func PrintfOnColor084

func PrintfOnColor084(format string, args ...any)

PrintfOnColor084 wraps OnColor084() and fmt.Printf().

func PrintfOnColor085

func PrintfOnColor085(format string, args ...any)

PrintfOnColor085 wraps OnColor085() and fmt.Printf().

func PrintfOnColor086

func PrintfOnColor086(format string, args ...any)

PrintfOnColor086 wraps OnColor086() and fmt.Printf().

func PrintfOnColor087

func PrintfOnColor087(format string, args ...any)

PrintfOnColor087 wraps OnColor087() and fmt.Printf().

func PrintfOnColor088

func PrintfOnColor088(format string, args ...any)

PrintfOnColor088 wraps OnColor088() and fmt.Printf().

func PrintfOnColor089

func PrintfOnColor089(format string, args ...any)

PrintfOnColor089 wraps OnColor089() and fmt.Printf().

func PrintfOnColor090

func PrintfOnColor090(format string, args ...any)

PrintfOnColor090 wraps OnColor090() and fmt.Printf().

func PrintfOnColor091

func PrintfOnColor091(format string, args ...any)

PrintfOnColor091 wraps OnColor091() and fmt.Printf().

func PrintfOnColor092

func PrintfOnColor092(format string, args ...any)

PrintfOnColor092 wraps OnColor092() and fmt.Printf().

func PrintfOnColor093

func PrintfOnColor093(format string, args ...any)

PrintfOnColor093 wraps OnColor093() and fmt.Printf().

func PrintfOnColor094

func PrintfOnColor094(format string, args ...any)

PrintfOnColor094 wraps OnColor094() and fmt.Printf().

func PrintfOnColor095

func PrintfOnColor095(format string, args ...any)

PrintfOnColor095 wraps OnColor095() and fmt.Printf().

func PrintfOnColor096

func PrintfOnColor096(format string, args ...any)

PrintfOnColor096 wraps OnColor096() and fmt.Printf().

func PrintfOnColor097

func PrintfOnColor097(format string, args ...any)

PrintfOnColor097 wraps OnColor097() and fmt.Printf().

func PrintfOnColor098

func PrintfOnColor098(format string, args ...any)

PrintfOnColor098 wraps OnColor098() and fmt.Printf().

func PrintfOnColor099

func PrintfOnColor099(format string, args ...any)

PrintfOnColor099 wraps OnColor099() and fmt.Printf().

func PrintfOnColor100

func PrintfOnColor100(format string, args ...any)

PrintfOnColor100 wraps OnColor100() and fmt.Printf().

func PrintfOnColor101

func PrintfOnColor101(format string, args ...any)

PrintfOnColor101 wraps OnColor101() and fmt.Printf().

func PrintfOnColor102

func PrintfOnColor102(format string, args ...any)

PrintfOnColor102 wraps OnColor102() and fmt.Printf().

func PrintfOnColor103

func PrintfOnColor103(format string, args ...any)

PrintfOnColor103 wraps OnColor103() and fmt.Printf().

func PrintfOnColor104

func PrintfOnColor104(format string, args ...any)

PrintfOnColor104 wraps OnColor104() and fmt.Printf().

func PrintfOnColor105

func PrintfOnColor105(format string, args ...any)

PrintfOnColor105 wraps OnColor105() and fmt.Printf().

func PrintfOnColor106

func PrintfOnColor106(format string, args ...any)

PrintfOnColor106 wraps OnColor106() and fmt.Printf().

func PrintfOnColor107

func PrintfOnColor107(format string, args ...any)

PrintfOnColor107 wraps OnColor107() and fmt.Printf().

func PrintfOnColor108

func PrintfOnColor108(format string, args ...any)

PrintfOnColor108 wraps OnColor108() and fmt.Printf().

func PrintfOnColor109

func PrintfOnColor109(format string, args ...any)

PrintfOnColor109 wraps OnColor109() and fmt.Printf().

func PrintfOnColor110

func PrintfOnColor110(format string, args ...any)

PrintfOnColor110 wraps OnColor110() and fmt.Printf().

func PrintfOnColor111

func PrintfOnColor111(format string, args ...any)

PrintfOnColor111 wraps OnColor111() and fmt.Printf().

func PrintfOnColor112

func PrintfOnColor112(format string, args ...any)

PrintfOnColor112 wraps OnColor112() and fmt.Printf().

func PrintfOnColor113

func PrintfOnColor113(format string, args ...any)

PrintfOnColor113 wraps OnColor113() and fmt.Printf().

func PrintfOnColor114

func PrintfOnColor114(format string, args ...any)

PrintfOnColor114 wraps OnColor114() and fmt.Printf().

func PrintfOnColor115

func PrintfOnColor115(format string, args ...any)

PrintfOnColor115 wraps OnColor115() and fmt.Printf().

func PrintfOnColor116

func PrintfOnColor116(format string, args ...any)

PrintfOnColor116 wraps OnColor116() and fmt.Printf().

func PrintfOnColor117

func PrintfOnColor117(format string, args ...any)

PrintfOnColor117 wraps OnColor117() and fmt.Printf().

func PrintfOnColor118

func PrintfOnColor118(format string, args ...any)

PrintfOnColor118 wraps OnColor118() and fmt.Printf().

func PrintfOnColor119

func PrintfOnColor119(format string, args ...any)

PrintfOnColor119 wraps OnColor119() and fmt.Printf().

func PrintfOnColor120

func PrintfOnColor120(format string, args ...any)

PrintfOnColor120 wraps OnColor120() and fmt.Printf().

func PrintfOnColor121

func PrintfOnColor121(format string, args ...any)

PrintfOnColor121 wraps OnColor121() and fmt.Printf().

func PrintfOnColor122

func PrintfOnColor122(format string, args ...any)

PrintfOnColor122 wraps OnColor122() and fmt.Printf().

func PrintfOnColor123

func PrintfOnColor123(format string, args ...any)

PrintfOnColor123 wraps OnColor123() and fmt.Printf().

func PrintfOnColor124

func PrintfOnColor124(format string, args ...any)

PrintfOnColor124 wraps OnColor124() and fmt.Printf().

func PrintfOnColor125

func PrintfOnColor125(format string, args ...any)

PrintfOnColor125 wraps OnColor125() and fmt.Printf().

func PrintfOnColor126

func PrintfOnColor126(format string, args ...any)

PrintfOnColor126 wraps OnColor126() and fmt.Printf().

func PrintfOnColor127

func PrintfOnColor127(format string, args ...any)

PrintfOnColor127 wraps OnColor127() and fmt.Printf().

func PrintfOnColor128

func PrintfOnColor128(format string, args ...any)

PrintfOnColor128 wraps OnColor128() and fmt.Printf().

func PrintfOnColor129

func PrintfOnColor129(format string, args ...any)

PrintfOnColor129 wraps OnColor129() and fmt.Printf().

func PrintfOnColor130

func PrintfOnColor130(format string, args ...any)

PrintfOnColor130 wraps OnColor130() and fmt.Printf().

func PrintfOnColor131

func PrintfOnColor131(format string, args ...any)

PrintfOnColor131 wraps OnColor131() and fmt.Printf().

func PrintfOnColor132

func PrintfOnColor132(format string, args ...any)

PrintfOnColor132 wraps OnColor132() and fmt.Printf().

func PrintfOnColor133

func PrintfOnColor133(format string, args ...any)

PrintfOnColor133 wraps OnColor133() and fmt.Printf().

func PrintfOnColor134

func PrintfOnColor134(format string, args ...any)

PrintfOnColor134 wraps OnColor134() and fmt.Printf().

func PrintfOnColor135

func PrintfOnColor135(format string, args ...any)

PrintfOnColor135 wraps OnColor135() and fmt.Printf().

func PrintfOnColor136

func PrintfOnColor136(format string, args ...any)

PrintfOnColor136 wraps OnColor136() and fmt.Printf().

func PrintfOnColor137

func PrintfOnColor137(format string, args ...any)

PrintfOnColor137 wraps OnColor137() and fmt.Printf().

func PrintfOnColor138

func PrintfOnColor138(format string, args ...any)

PrintfOnColor138 wraps OnColor138() and fmt.Printf().

func PrintfOnColor139

func PrintfOnColor139(format string, args ...any)

PrintfOnColor139 wraps OnColor139() and fmt.Printf().

func PrintfOnColor140

func PrintfOnColor140(format string, args ...any)

PrintfOnColor140 wraps OnColor140() and fmt.Printf().

func PrintfOnColor141

func PrintfOnColor141(format string, args ...any)

PrintfOnColor141 wraps OnColor141() and fmt.Printf().

func PrintfOnColor142

func PrintfOnColor142(format string, args ...any)

PrintfOnColor142 wraps OnColor142() and fmt.Printf().

func PrintfOnColor143

func PrintfOnColor143(format string, args ...any)

PrintfOnColor143 wraps OnColor143() and fmt.Printf().

func PrintfOnColor144

func PrintfOnColor144(format string, args ...any)

PrintfOnColor144 wraps OnColor144() and fmt.Printf().

func PrintfOnColor145

func PrintfOnColor145(format string, args ...any)

PrintfOnColor145 wraps OnColor145() and fmt.Printf().

func PrintfOnColor146

func PrintfOnColor146(format string, args ...any)

PrintfOnColor146 wraps OnColor146() and fmt.Printf().

func PrintfOnColor147

func PrintfOnColor147(format string, args ...any)

PrintfOnColor147 wraps OnColor147() and fmt.Printf().

func PrintfOnColor148

func PrintfOnColor148(format string, args ...any)

PrintfOnColor148 wraps OnColor148() and fmt.Printf().

func PrintfOnColor149

func PrintfOnColor149(format string, args ...any)

PrintfOnColor149 wraps OnColor149() and fmt.Printf().

func PrintfOnColor150

func PrintfOnColor150(format string, args ...any)

PrintfOnColor150 wraps OnColor150() and fmt.Printf().

func PrintfOnColor151

func PrintfOnColor151(format string, args ...any)

PrintfOnColor151 wraps OnColor151() and fmt.Printf().

func PrintfOnColor152

func PrintfOnColor152(format string, args ...any)

PrintfOnColor152 wraps OnColor152() and fmt.Printf().

func PrintfOnColor153

func PrintfOnColor153(format string, args ...any)

PrintfOnColor153 wraps OnColor153() and fmt.Printf().

func PrintfOnColor154

func PrintfOnColor154(format string, args ...any)

PrintfOnColor154 wraps OnColor154() and fmt.Printf().

func PrintfOnColor155

func PrintfOnColor155(format string, args ...any)

PrintfOnColor155 wraps OnColor155() and fmt.Printf().

func PrintfOnColor156

func PrintfOnColor156(format string, args ...any)

PrintfOnColor156 wraps OnColor156() and fmt.Printf().

func PrintfOnColor157

func PrintfOnColor157(format string, args ...any)

PrintfOnColor157 wraps OnColor157() and fmt.Printf().

func PrintfOnColor158

func PrintfOnColor158(format string, args ...any)

PrintfOnColor158 wraps OnColor158() and fmt.Printf().

func PrintfOnColor159

func PrintfOnColor159(format string, args ...any)

PrintfOnColor159 wraps OnColor159() and fmt.Printf().

func PrintfOnColor160

func PrintfOnColor160(format string, args ...any)

PrintfOnColor160 wraps OnColor160() and fmt.Printf().

func PrintfOnColor161

func PrintfOnColor161(format string, args ...any)

PrintfOnColor161 wraps OnColor161() and fmt.Printf().

func PrintfOnColor162

func PrintfOnColor162(format string, args ...any)

PrintfOnColor162 wraps OnColor162() and fmt.Printf().

func PrintfOnColor163

func PrintfOnColor163(format string, args ...any)

PrintfOnColor163 wraps OnColor163() and fmt.Printf().

func PrintfOnColor164

func PrintfOnColor164(format string, args ...any)

PrintfOnColor164 wraps OnColor164() and fmt.Printf().

func PrintfOnColor165

func PrintfOnColor165(format string, args ...any)

PrintfOnColor165 wraps OnColor165() and fmt.Printf().

func PrintfOnColor166

func PrintfOnColor166(format string, args ...any)

PrintfOnColor166 wraps OnColor166() and fmt.Printf().

func PrintfOnColor167

func PrintfOnColor167(format string, args ...any)

PrintfOnColor167 wraps OnColor167() and fmt.Printf().

func PrintfOnColor168

func PrintfOnColor168(format string, args ...any)

PrintfOnColor168 wraps OnColor168() and fmt.Printf().

func PrintfOnColor169

func PrintfOnColor169(format string, args ...any)

PrintfOnColor169 wraps OnColor169() and fmt.Printf().

func PrintfOnColor170

func PrintfOnColor170(format string, args ...any)

PrintfOnColor170 wraps OnColor170() and fmt.Printf().

func PrintfOnColor171

func PrintfOnColor171(format string, args ...any)

PrintfOnColor171 wraps OnColor171() and fmt.Printf().

func PrintfOnColor172

func PrintfOnColor172(format string, args ...any)

PrintfOnColor172 wraps OnColor172() and fmt.Printf().

func PrintfOnColor173

func PrintfOnColor173(format string, args ...any)

PrintfOnColor173 wraps OnColor173() and fmt.Printf().

func PrintfOnColor174

func PrintfOnColor174(format string, args ...any)

PrintfOnColor174 wraps OnColor174() and fmt.Printf().

func PrintfOnColor175

func PrintfOnColor175(format string, args ...any)

PrintfOnColor175 wraps OnColor175() and fmt.Printf().

func PrintfOnColor176

func PrintfOnColor176(format string, args ...any)

PrintfOnColor176 wraps OnColor176() and fmt.Printf().

func PrintfOnColor177

func PrintfOnColor177(format string, args ...any)

PrintfOnColor177 wraps OnColor177() and fmt.Printf().

func PrintfOnColor178

func PrintfOnColor178(format string, args ...any)

PrintfOnColor178 wraps OnColor178() and fmt.Printf().

func PrintfOnColor179

func PrintfOnColor179(format string, args ...any)

PrintfOnColor179 wraps OnColor179() and fmt.Printf().

func PrintfOnColor180

func PrintfOnColor180(format string, args ...any)

PrintfOnColor180 wraps OnColor180() and fmt.Printf().

func PrintfOnColor181

func PrintfOnColor181(format string, args ...any)

PrintfOnColor181 wraps OnColor181() and fmt.Printf().

func PrintfOnColor182

func PrintfOnColor182(format string, args ...any)

PrintfOnColor182 wraps OnColor182() and fmt.Printf().

func PrintfOnColor183

func PrintfOnColor183(format string, args ...any)

PrintfOnColor183 wraps OnColor183() and fmt.Printf().

func PrintfOnColor184

func PrintfOnColor184(format string, args ...any)

PrintfOnColor184 wraps OnColor184() and fmt.Printf().

func PrintfOnColor185

func PrintfOnColor185(format string, args ...any)

PrintfOnColor185 wraps OnColor185() and fmt.Printf().

func PrintfOnColor186

func PrintfOnColor186(format string, args ...any)

PrintfOnColor186 wraps OnColor186() and fmt.Printf().

func PrintfOnColor187

func PrintfOnColor187(format string, args ...any)

PrintfOnColor187 wraps OnColor187() and fmt.Printf().

func PrintfOnColor188

func PrintfOnColor188(format string, args ...any)

PrintfOnColor188 wraps OnColor188() and fmt.Printf().

func PrintfOnColor189

func PrintfOnColor189(format string, args ...any)

PrintfOnColor189 wraps OnColor189() and fmt.Printf().

func PrintfOnColor190

func PrintfOnColor190(format string, args ...any)

PrintfOnColor190 wraps OnColor190() and fmt.Printf().

func PrintfOnColor191

func PrintfOnColor191(format string, args ...any)

PrintfOnColor191 wraps OnColor191() and fmt.Printf().

func PrintfOnColor192

func PrintfOnColor192(format string, args ...any)

PrintfOnColor192 wraps OnColor192() and fmt.Printf().

func PrintfOnColor193

func PrintfOnColor193(format string, args ...any)

PrintfOnColor193 wraps OnColor193() and fmt.Printf().

func PrintfOnColor194

func PrintfOnColor194(format string, args ...any)

PrintfOnColor194 wraps OnColor194() and fmt.Printf().

func PrintfOnColor195

func PrintfOnColor195(format string, args ...any)

PrintfOnColor195 wraps OnColor195() and fmt.Printf().

func PrintfOnColor196

func PrintfOnColor196(format string, args ...any)

PrintfOnColor196 wraps OnColor196() and fmt.Printf().

func PrintfOnColor197

func PrintfOnColor197(format string, args ...any)

PrintfOnColor197 wraps OnColor197() and fmt.Printf().

func PrintfOnColor198

func PrintfOnColor198(format string, args ...any)

PrintfOnColor198 wraps OnColor198() and fmt.Printf().

func PrintfOnColor199

func PrintfOnColor199(format string, args ...any)

PrintfOnColor199 wraps OnColor199() and fmt.Printf().

func PrintfOnColor200

func PrintfOnColor200(format string, args ...any)

PrintfOnColor200 wraps OnColor200() and fmt.Printf().

func PrintfOnColor201

func PrintfOnColor201(format string, args ...any)

PrintfOnColor201 wraps OnColor201() and fmt.Printf().

func PrintfOnColor202

func PrintfOnColor202(format string, args ...any)

PrintfOnColor202 wraps OnColor202() and fmt.Printf().

func PrintfOnColor203

func PrintfOnColor203(format string, args ...any)

PrintfOnColor203 wraps OnColor203() and fmt.Printf().

func PrintfOnColor204

func PrintfOnColor204(format string, args ...any)

PrintfOnColor204 wraps OnColor204() and fmt.Printf().

func PrintfOnColor205

func PrintfOnColor205(format string, args ...any)

PrintfOnColor205 wraps OnColor205() and fmt.Printf().

func PrintfOnColor206

func PrintfOnColor206(format string, args ...any)

PrintfOnColor206 wraps OnColor206() and fmt.Printf().

func PrintfOnColor207

func PrintfOnColor207(format string, args ...any)

PrintfOnColor207 wraps OnColor207() and fmt.Printf().

func PrintfOnColor208

func PrintfOnColor208(format string, args ...any)

PrintfOnColor208 wraps OnColor208() and fmt.Printf().

func PrintfOnColor209

func PrintfOnColor209(format string, args ...any)

PrintfOnColor209 wraps OnColor209() and fmt.Printf().

func PrintfOnColor210

func PrintfOnColor210(format string, args ...any)

PrintfOnColor210 wraps OnColor210() and fmt.Printf().

func PrintfOnColor211

func PrintfOnColor211(format string, args ...any)

PrintfOnColor211 wraps OnColor211() and fmt.Printf().

func PrintfOnColor212

func PrintfOnColor212(format string, args ...any)

PrintfOnColor212 wraps OnColor212() and fmt.Printf().

func PrintfOnColor213

func PrintfOnColor213(format string, args ...any)

PrintfOnColor213 wraps OnColor213() and fmt.Printf().

func PrintfOnColor214

func PrintfOnColor214(format string, args ...any)

PrintfOnColor214 wraps OnColor214() and fmt.Printf().

func PrintfOnColor215

func PrintfOnColor215(format string, args ...any)

PrintfOnColor215 wraps OnColor215() and fmt.Printf().

func PrintfOnColor216

func PrintfOnColor216(format string, args ...any)

PrintfOnColor216 wraps OnColor216() and fmt.Printf().

func PrintfOnColor217

func PrintfOnColor217(format string, args ...any)

PrintfOnColor217 wraps OnColor217() and fmt.Printf().

func PrintfOnColor218

func PrintfOnColor218(format string, args ...any)

PrintfOnColor218 wraps OnColor218() and fmt.Printf().

func PrintfOnColor219

func PrintfOnColor219(format string, args ...any)

PrintfOnColor219 wraps OnColor219() and fmt.Printf().

func PrintfOnColor220

func PrintfOnColor220(format string, args ...any)

PrintfOnColor220 wraps OnColor220() and fmt.Printf().

func PrintfOnColor221

func PrintfOnColor221(format string, args ...any)

PrintfOnColor221 wraps OnColor221() and fmt.Printf().

func PrintfOnColor222

func PrintfOnColor222(format string, args ...any)

PrintfOnColor222 wraps OnColor222() and fmt.Printf().

func PrintfOnColor223

func PrintfOnColor223(format string, args ...any)

PrintfOnColor223 wraps OnColor223() and fmt.Printf().

func PrintfOnColor224

func PrintfOnColor224(format string, args ...any)

PrintfOnColor224 wraps OnColor224() and fmt.Printf().

func PrintfOnColor225

func PrintfOnColor225(format string, args ...any)

PrintfOnColor225 wraps OnColor225() and fmt.Printf().

func PrintfOnColor226

func PrintfOnColor226(format string, args ...any)

PrintfOnColor226 wraps OnColor226() and fmt.Printf().

func PrintfOnColor227

func PrintfOnColor227(format string, args ...any)

PrintfOnColor227 wraps OnColor227() and fmt.Printf().

func PrintfOnColor228

func PrintfOnColor228(format string, args ...any)

PrintfOnColor228 wraps OnColor228() and fmt.Printf().

func PrintfOnColor229

func PrintfOnColor229(format string, args ...any)

PrintfOnColor229 wraps OnColor229() and fmt.Printf().

func PrintfOnColor230

func PrintfOnColor230(format string, args ...any)

PrintfOnColor230 wraps OnColor230() and fmt.Printf().

func PrintfOnColor231

func PrintfOnColor231(format string, args ...any)

PrintfOnColor231 wraps OnColor231() and fmt.Printf().

func PrintfOnColor232

func PrintfOnColor232(format string, args ...any)

PrintfOnColor232 wraps OnColor232() and fmt.Printf().

func PrintfOnColor233

func PrintfOnColor233(format string, args ...any)

PrintfOnColor233 wraps OnColor233() and fmt.Printf().

func PrintfOnColor234

func PrintfOnColor234(format string, args ...any)

PrintfOnColor234 wraps OnColor234() and fmt.Printf().

func PrintfOnColor235

func PrintfOnColor235(format string, args ...any)

PrintfOnColor235 wraps OnColor235() and fmt.Printf().

func PrintfOnColor236

func PrintfOnColor236(format string, args ...any)

PrintfOnColor236 wraps OnColor236() and fmt.Printf().

func PrintfOnColor237

func PrintfOnColor237(format string, args ...any)

PrintfOnColor237 wraps OnColor237() and fmt.Printf().

func PrintfOnColor238

func PrintfOnColor238(format string, args ...any)

PrintfOnColor238 wraps OnColor238() and fmt.Printf().

func PrintfOnColor239

func PrintfOnColor239(format string, args ...any)

PrintfOnColor239 wraps OnColor239() and fmt.Printf().

func PrintfOnColor240

func PrintfOnColor240(format string, args ...any)

PrintfOnColor240 wraps OnColor240() and fmt.Printf().

func PrintfOnColor241

func PrintfOnColor241(format string, args ...any)

PrintfOnColor241 wraps OnColor241() and fmt.Printf().

func PrintfOnColor242

func PrintfOnColor242(format string, args ...any)

PrintfOnColor242 wraps OnColor242() and fmt.Printf().

func PrintfOnColor243

func PrintfOnColor243(format string, args ...any)

PrintfOnColor243 wraps OnColor243() and fmt.Printf().

func PrintfOnColor244

func PrintfOnColor244(format string, args ...any)

PrintfOnColor244 wraps OnColor244() and fmt.Printf().

func PrintfOnColor245

func PrintfOnColor245(format string, args ...any)

PrintfOnColor245 wraps OnColor245() and fmt.Printf().

func PrintfOnColor246

func PrintfOnColor246(format string, args ...any)

PrintfOnColor246 wraps OnColor246() and fmt.Printf().

func PrintfOnColor247

func PrintfOnColor247(format string, args ...any)

PrintfOnColor247 wraps OnColor247() and fmt.Printf().

func PrintfOnColor248

func PrintfOnColor248(format string, args ...any)

PrintfOnColor248 wraps OnColor248() and fmt.Printf().

func PrintfOnColor249

func PrintfOnColor249(format string, args ...any)

PrintfOnColor249 wraps OnColor249() and fmt.Printf().

func PrintfOnColor250

func PrintfOnColor250(format string, args ...any)

PrintfOnColor250 wraps OnColor250() and fmt.Printf().

func PrintfOnColor251

func PrintfOnColor251(format string, args ...any)

PrintfOnColor251 wraps OnColor251() and fmt.Printf().

func PrintfOnColor252

func PrintfOnColor252(format string, args ...any)

PrintfOnColor252 wraps OnColor252() and fmt.Printf().

func PrintfOnColor253

func PrintfOnColor253(format string, args ...any)

PrintfOnColor253 wraps OnColor253() and fmt.Printf().

func PrintfOnColor254

func PrintfOnColor254(format string, args ...any)

PrintfOnColor254 wraps OnColor254() and fmt.Printf().

func PrintfOnColor255

func PrintfOnColor255(format string, args ...any)

PrintfOnColor255 wraps OnColor255() and fmt.Printf().

func PrintfOnCyan

func PrintfOnCyan(format string, args ...any)

PrintfOnCyan wraps OnCyan() and fmt.Printf().

func PrintfOnDefault

func PrintfOnDefault(format string, args ...any)

PrintfOnDefault wraps OnDefault() and fmt.Printf().

func PrintfOnGreen

func PrintfOnGreen(format string, args ...any)

PrintfOnGreen wraps OnGreen() and fmt.Printf().

func PrintfOnHex

func PrintfOnHex(hex string, format string, args ...any)

PrintfOnHex wraps OnHex() and fmt.Printf().

func PrintfOnLightBlack

func PrintfOnLightBlack(format string, args ...any)

PrintfOnLightBlack wraps OnLightBlack() and fmt.Printf().

func PrintfOnLightBlue

func PrintfOnLightBlue(format string, args ...any)

PrintfOnLightBlue wraps OnLightBlue() and fmt.Printf().

func PrintfOnLightCyan

func PrintfOnLightCyan(format string, args ...any)

PrintfOnLightCyan wraps OnLightCyan() and fmt.Printf().

func PrintfOnLightGreen

func PrintfOnLightGreen(format string, args ...any)

PrintfOnLightGreen wraps OnLightGreen() and fmt.Printf().

func PrintfOnLightMagenta

func PrintfOnLightMagenta(format string, args ...any)

PrintfOnLightMagenta wraps OnLightMagenta() and fmt.Printf().

func PrintfOnLightRed

func PrintfOnLightRed(format string, args ...any)

PrintfOnLightRed wraps OnLightRed() and fmt.Printf().

func PrintfOnLightWhite

func PrintfOnLightWhite(format string, args ...any)

PrintfOnLightWhite wraps OnLightWhite() and fmt.Printf().

func PrintfOnLightYellow

func PrintfOnLightYellow(format string, args ...any)

PrintfOnLightYellow wraps OnLightYellow() and fmt.Printf().

func PrintfOnMagenta

func PrintfOnMagenta(format string, args ...any)

PrintfOnMagenta wraps OnMagenta() and fmt.Printf().

func PrintfOnRainbow

func PrintfOnRainbow(format string, args ...any)

PrintfOnRainbow wraps OnRainbow() and fmt.Printf().

func PrintfOnRed

func PrintfOnRed(format string, args ...any)

PrintfOnRed wraps OnRed() and fmt.Printf().

func PrintfOnWhite

func PrintfOnWhite(format string, args ...any)

PrintfOnWhite wraps OnWhite() and fmt.Printf().

func PrintfOnYellow

func PrintfOnYellow(format string, args ...any)

PrintfOnYellow wraps OnYellow() and fmt.Printf().

func PrintfPlain

func PrintfPlain(format string, args ...any)

PrintfPlain wraps Plain() and fmt.Printf().

func PrintfRainbow

func PrintfRainbow(format string, args ...any)

PrintfRainbow wraps Rainbow() and fmt.Printf().

func PrintfRed

func PrintfRed(format string, args ...any)

PrintfRed wraps Red() and fmt.Printf().

func PrintfReset

func PrintfReset(format string, args ...any)

PrintfReset wraps Reset() and fmt.Printf().

func PrintfStrikethrough

func PrintfStrikethrough(format string, args ...any)

PrintfStrikethrough wraps Strikethrough() and fmt.Printf().

func PrintfSwap

func PrintfSwap(format string, args ...any)

PrintfSwap wraps Swap() and fmt.Printf().

func PrintfUnderline

func PrintfUnderline(format string, args ...any)

PrintfUnderline wraps Underline() and fmt.Printf().

func PrintfWhite

func PrintfWhite(format string, args ...any)

PrintfWhite wraps White() and fmt.Printf().

func PrintfWrap

func PrintfWrap(width int, format string, args ...any)

PrintfWrap wraps Wrap() and fmt.Printf().

func PrintfYellow

func PrintfYellow(format string, args ...any)

PrintfYellow wraps Yellow() and fmt.Printf().

func Println

func Println(args ...any)

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

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 RGBAToTrueColor

func RGBAToTrueColor(r uint8, g uint8, b uint8, a uint8) string

RGBAToTrueColor will convert the RGBA values to their hex representation.

func RGBAToXterm256

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

func Rainbowf(format string, args ...any) 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

func Redf(format string, args ...any) 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

func Resetf(format string, args ...any) 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 ...any) string

Sprint wraps fmt.Sprint().

func Sprintf

func Sprintf(format string, args ...any) string

Sprintf wraps fmt.Sprintf().

func Sprintln

func Sprintln(args ...any) 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

func Strikethroughf(format string, args ...any) 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

func Swapf(format string, args ...any) 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

func Underlinef(format string, args ...any) 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

func Whitef(format string, args ...any) 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

func Wrapf(width int, format string, args ...any) 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

func Yellowf(format string, args ...any) 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