Trait owo_colors::Color

source ·
pub trait Color {
    const ANSI_FG: &'static str;
    const ANSI_BG: &'static str;
    const RAW_ANSI_FG: &'static str;
    const RAW_ANSI_BG: &'static str;
}
Expand description

A trait for describing a type which can be used with FgColorDisplay or BgColorDisplay

Required Associated Constants§

source

const ANSI_FG: &'static str

The ANSI format code for setting this color as the foreground

source

const ANSI_BG: &'static str

The ANSI format code for setting this color as the background

source

const RAW_ANSI_FG: &'static str

The raw ANSI format for settings this color as the foreground without the ANSI delimiters (“\x1b” and “m”)

source

const RAW_ANSI_BG: &'static str

The raw ANSI format for settings this color as the background without the ANSI delimiters (“\x1b” and “m”)

Object Safety§

This trait is not object safe.

Implementors§

source§

impl Color for owo_colors::colors::Black

source§

const ANSI_FG: &'static str = "\u{1b}[30m"

source§

const ANSI_BG: &'static str = "\u{1b}[40m"

source§

const RAW_ANSI_FG: &'static str = "30"

source§

const RAW_ANSI_BG: &'static str = "40"

source§

impl Color for owo_colors::colors::Blue

source§

const ANSI_FG: &'static str = "\u{1b}[34m"

source§

const ANSI_BG: &'static str = "\u{1b}[44m"

source§

const RAW_ANSI_FG: &'static str = "34"

source§

const RAW_ANSI_BG: &'static str = "44"

source§

impl Color for BrightBlack

source§

const ANSI_FG: &'static str = "\u{1b}[90m"

source§

const ANSI_BG: &'static str = "\u{1b}[100m"

source§

const RAW_ANSI_FG: &'static str = "90"

source§

const RAW_ANSI_BG: &'static str = "100"

source§

impl Color for BrightBlue

source§

const ANSI_FG: &'static str = "\u{1b}[94m"

source§

const ANSI_BG: &'static str = "\u{1b}[104m"

source§

const RAW_ANSI_FG: &'static str = "94"

source§

const RAW_ANSI_BG: &'static str = "104"

source§

impl Color for BrightCyan

source§

const ANSI_FG: &'static str = "\u{1b}[96m"

source§

const ANSI_BG: &'static str = "\u{1b}[106m"

source§

const RAW_ANSI_FG: &'static str = "96"

source§

const RAW_ANSI_BG: &'static str = "106"

source§

impl Color for owo_colors::colors::BrightGreen

source§

const ANSI_FG: &'static str = "\u{1b}[92m"

source§

const ANSI_BG: &'static str = "\u{1b}[102m"

source§

const RAW_ANSI_FG: &'static str = "92"

source§

const RAW_ANSI_BG: &'static str = "102"

source§

impl Color for BrightMagenta

source§

const ANSI_FG: &'static str = "\u{1b}[95m"

source§

const ANSI_BG: &'static str = "\u{1b}[105m"

source§

const RAW_ANSI_FG: &'static str = "95"

source§

const RAW_ANSI_BG: &'static str = "105"

source§

impl Color for owo_colors::colors::BrightRed

source§

const ANSI_FG: &'static str = "\u{1b}[91m"

source§

const ANSI_BG: &'static str = "\u{1b}[101m"

source§

const RAW_ANSI_FG: &'static str = "91"

source§

const RAW_ANSI_BG: &'static str = "101"

source§

impl Color for BrightWhite

source§

const ANSI_FG: &'static str = "\u{1b}[97m"

source§

const ANSI_BG: &'static str = "\u{1b}[107m"

source§

const RAW_ANSI_FG: &'static str = "97"

source§

const RAW_ANSI_BG: &'static str = "107"

source§

impl Color for BrightYellow

source§

const ANSI_FG: &'static str = "\u{1b}[93m"

source§

const ANSI_BG: &'static str = "\u{1b}[103m"

source§

const RAW_ANSI_FG: &'static str = "93"

source§

const RAW_ANSI_BG: &'static str = "103"

source§

impl Color for owo_colors::colors::Cyan

source§

const ANSI_FG: &'static str = "\u{1b}[36m"

source§

const ANSI_BG: &'static str = "\u{1b}[46m"

source§

const RAW_ANSI_FG: &'static str = "36"

source§

const RAW_ANSI_BG: &'static str = "46"

source§

impl Color for Default

source§

const ANSI_FG: &'static str = "\u{1b}[39m"

source§

const ANSI_BG: &'static str = "\u{1b}[49m"

source§

const RAW_ANSI_FG: &'static str = "39"

source§

const RAW_ANSI_BG: &'static str = "49"

source§

impl Color for owo_colors::colors::Green

source§

const ANSI_FG: &'static str = "\u{1b}[32m"

source§

const ANSI_BG: &'static str = "\u{1b}[42m"

source§

const RAW_ANSI_FG: &'static str = "32"

source§

const RAW_ANSI_BG: &'static str = "42"

source§

impl Color for Magenta

source§

const ANSI_FG: &'static str = "\u{1b}[35m"

source§

const ANSI_BG: &'static str = "\u{1b}[45m"

source§

const RAW_ANSI_FG: &'static str = "35"

source§

const RAW_ANSI_BG: &'static str = "45"

source§

impl Color for owo_colors::colors::Red

source§

const ANSI_FG: &'static str = "\u{1b}[31m"

source§

const ANSI_BG: &'static str = "\u{1b}[41m"

source§

const RAW_ANSI_FG: &'static str = "31"

source§

const RAW_ANSI_BG: &'static str = "41"

source§

impl Color for owo_colors::colors::White

source§

const ANSI_FG: &'static str = "\u{1b}[37m"

source§

const ANSI_BG: &'static str = "\u{1b}[47m"

source§

const RAW_ANSI_FG: &'static str = "37"

source§

const RAW_ANSI_BG: &'static str = "47"

source§

impl Color for owo_colors::colors::Yellow

source§

const ANSI_FG: &'static str = "\u{1b}[33m"

source§

const ANSI_BG: &'static str = "\u{1b}[43m"

source§

const RAW_ANSI_FG: &'static str = "33"

source§

const RAW_ANSI_BG: &'static str = "43"

source§

impl Color for AeroBlue

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;158m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;158m"

source§

const RAW_ANSI_BG: &'static str = "48;5;158"

source§

const RAW_ANSI_FG: &'static str = "48;5;158"

source§

impl Color for Alto

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;253m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;253m"

source§

const RAW_ANSI_BG: &'static str = "48;5;253"

source§

const RAW_ANSI_FG: &'static str = "48;5;253"

source§

impl Color for AltoBeige

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;188m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;188m"

source§

const RAW_ANSI_BG: &'static str = "48;5;188"

source§

const RAW_ANSI_FG: &'static str = "48;5;188"

source§

impl Color for AnakiwaBlue

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;123m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;123m"

source§

const RAW_ANSI_BG: &'static str = "48;5;123"

source§

const RAW_ANSI_FG: &'static str = "48;5;123"

source§

impl Color for Aqua

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;45m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;45m"

source§

const RAW_ANSI_BG: &'static str = "48;5;45"

source§

const RAW_ANSI_FG: &'static str = "48;5;45"

source§

impl Color for Aquamarine

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;86m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;86m"

source§

const RAW_ANSI_BG: &'static str = "48;5;86"

source§

const RAW_ANSI_FG: &'static str = "48;5;86"

source§

impl Color for AzureRadiance

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;33m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;33m"

source§

const RAW_ANSI_BG: &'static str = "48;5;33"

source§

const RAW_ANSI_FG: &'static str = "48;5;33"

source§

impl Color for BayLeaf

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;108m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;108m"

source§

const RAW_ANSI_BG: &'static str = "48;5;108"

source§

const RAW_ANSI_FG: &'static str = "48;5;108"

source§

impl Color for Bermuda

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;116m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;116m"

source§

const RAW_ANSI_BG: &'static str = "48;5;116"

source§

const RAW_ANSI_FG: &'static str = "48;5;116"

source§

impl Color for BittersweetOrange

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;203m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;203m"

source§

const RAW_ANSI_BG: &'static str = "48;5;203"

source§

const RAW_ANSI_FG: &'static str = "48;5;203"

source§

impl Color for owo_colors::colors::xterm::Black

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;16m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;16m"

source§

const RAW_ANSI_BG: &'static str = "48;5;16"

source§

const RAW_ANSI_FG: &'static str = "48;5;16"

source§

impl Color for BlazeOrange

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;202m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;202m"

source§

const RAW_ANSI_BG: &'static str = "48;5;202"

source§

const RAW_ANSI_FG: &'static str = "48;5;202"

source§

impl Color for owo_colors::colors::xterm::Blue

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;21m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;21m"

source§

const RAW_ANSI_BG: &'static str = "48;5;21"

source§

const RAW_ANSI_FG: &'static str = "48;5;21"

source§

impl Color for BlueRibbon

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;27m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;27m"

source§

const RAW_ANSI_BG: &'static str = "48;5;27"

source§

const RAW_ANSI_FG: &'static str = "48;5;27"

source§

impl Color for BlueStone

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;23m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;23m"

source§

const RAW_ANSI_BG: &'static str = "48;5;23"

source§

const RAW_ANSI_FG: &'static str = "48;5;23"

source§

impl Color for BlushPink

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;213m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;213m"

source§

const RAW_ANSI_BG: &'static str = "48;5;213"

source§

const RAW_ANSI_FG: &'static str = "48;5;213"

source§

impl Color for BondiBlue

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;37m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;37m"

source§

const RAW_ANSI_BG: &'static str = "48;5;37"

source§

const RAW_ANSI_FG: &'static str = "48;5;37"

source§

impl Color for Boulder

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;243m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;243m"

source§

const RAW_ANSI_BG: &'static str = "48;5;243"

source§

const RAW_ANSI_FG: &'static str = "48;5;243"

source§

impl Color for Bouquet

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;139m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;139m"

source§

const RAW_ANSI_BG: &'static str = "48;5;139"

source§

const RAW_ANSI_FG: &'static str = "48;5;139"

source§

impl Color for BrightElectricViolet

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;129m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;129m"

source§

const RAW_ANSI_BG: &'static str = "48;5;129"

source§

const RAW_ANSI_FG: &'static str = "48;5;129"

source§

impl Color for owo_colors::colors::xterm::BrightGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;82m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;82m"

source§

const RAW_ANSI_BG: &'static str = "48;5;82"

source§

const RAW_ANSI_FG: &'static str = "48;5;82"

source§

impl Color for BrightHeliotrope

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;177m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;177m"

source§

const RAW_ANSI_BG: &'static str = "48;5;177"

source§

const RAW_ANSI_FG: &'static str = "48;5;177"

source§

impl Color for owo_colors::colors::xterm::BrightRed

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;124m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;124m"

source§

const RAW_ANSI_BG: &'static str = "48;5;124"

source§

const RAW_ANSI_FG: &'static str = "48;5;124"

source§

impl Color for BrightTurquoise

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;50m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;50m"

source§

const RAW_ANSI_BG: &'static str = "48;5;50"

source§

const RAW_ANSI_FG: &'static str = "48;5;50"

source§

impl Color for BrighterElectricViolet

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;165m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;165m"

source§

const RAW_ANSI_BG: &'static str = "48;5;165"

source§

const RAW_ANSI_FG: &'static str = "48;5;165"

source§

impl Color for Brown

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;94m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;94m"

source§

const RAW_ANSI_BG: &'static str = "48;5;94"

source§

const RAW_ANSI_FG: &'static str = "48;5;94"

source§

impl Color for BuddhaGold

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;142m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;142m"

source§

const RAW_ANSI_BG: &'static str = "48;5;142"

source§

const RAW_ANSI_FG: &'static str = "48;5;142"

source§

impl Color for CamaroneGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;22m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;22m"

source§

const RAW_ANSI_BG: &'static str = "48;5;22"

source§

const RAW_ANSI_FG: &'static str = "48;5;22"

source§

impl Color for CanCanPink

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;175m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;175m"

source§

const RAW_ANSI_BG: &'static str = "48;5;175"

source§

const RAW_ANSI_FG: &'static str = "48;5;175"

source§

impl Color for Canary

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;191m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;191m"

source§

const RAW_ANSI_BG: &'static str = "48;5;191"

source§

const RAW_ANSI_FG: &'static str = "48;5;191"

source§

impl Color for Caramel

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;223m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;223m"

source§

const RAW_ANSI_BG: &'static str = "48;5;223"

source§

const RAW_ANSI_FG: &'static str = "48;5;223"

source§

impl Color for CaribbeanGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;42m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;42m"

source§

const RAW_ANSI_BG: &'static str = "48;5;42"

source§

const RAW_ANSI_FG: &'static str = "48;5;42"

source§

impl Color for Celadon

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;157m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;157m"

source§

const RAW_ANSI_BG: &'static str = "48;5;157"

source§

const RAW_ANSI_FG: &'static str = "48;5;157"

source§

impl Color for Cerulean

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;38m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;38m"

source§

const RAW_ANSI_BG: &'static str = "48;5;38"

source§

const RAW_ANSI_FG: &'static str = "48;5;38"

source§

impl Color for ChartreuseGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;118m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;118m"

source§

const RAW_ANSI_BG: &'static str = "48;5;118"

source§

const RAW_ANSI_FG: &'static str = "48;5;118"

source§

impl Color for ChartreuseYellow

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;190m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;190m"

source§

const RAW_ANSI_BG: &'static str = "48;5;190"

source§

const RAW_ANSI_FG: &'static str = "48;5;190"

source§

impl Color for ChelseaCucumber

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;107m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;107m"

source§

const RAW_ANSI_BG: &'static str = "48;5;107"

source§

const RAW_ANSI_FG: &'static str = "48;5;107"

source§

impl Color for ChetwodeBlue

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;104m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;104m"

source§

const RAW_ANSI_BG: &'static str = "48;5;104"

source§

const RAW_ANSI_FG: &'static str = "48;5;104"

source§

impl Color for ClamShell

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;181m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;181m"

source§

const RAW_ANSI_BG: &'static str = "48;5;181"

source§

const RAW_ANSI_FG: &'static str = "48;5;181"

source§

impl Color for ClayCreekOlive

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;101m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;101m"

source§

const RAW_ANSI_BG: &'static str = "48;5;101"

source§

const RAW_ANSI_FG: &'static str = "48;5;101"

source§

impl Color for CodGray

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;233m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;233m"

source§

const RAW_ANSI_BG: &'static str = "48;5;233"

source§

const RAW_ANSI_FG: &'static str = "48;5;233"

source§

impl Color for ConiferGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;149m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;149m"

source§

const RAW_ANSI_BG: &'static str = "48;5;149"

source§

const RAW_ANSI_FG: &'static str = "48;5;149"

source§

impl Color for CopperRose

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;95m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;95m"

source§

const RAW_ANSI_BG: &'static str = "48;5;95"

source§

const RAW_ANSI_FG: &'static str = "48;5;95"

source§

impl Color for Copperfield

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;173m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;173m"

source§

const RAW_ANSI_BG: &'static str = "48;5;173"

source§

const RAW_ANSI_FG: &'static str = "48;5;173"

source§

impl Color for Corn

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;184m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;184m"

source§

const RAW_ANSI_BG: &'static str = "48;5;184"

source§

const RAW_ANSI_FG: &'static str = "48;5;184"

source§

impl Color for CornflowerBlue

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;69m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;69m"

source§

const RAW_ANSI_BG: &'static str = "48;5;69"

source§

const RAW_ANSI_FG: &'static str = "48;5;69"

source§

impl Color for CosmosSalmon

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;224m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;224m"

source§

const RAW_ANSI_BG: &'static str = "48;5;224"

source§

const RAW_ANSI_FG: &'static str = "48;5;224"

source§

impl Color for CottonCandy

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;218m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;218m"

source§

const RAW_ANSI_BG: &'static str = "48;5;218"

source§

const RAW_ANSI_FG: &'static str = "48;5;218"

source§

impl Color for CranberryPink

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;168m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;168m"

source§

const RAW_ANSI_BG: &'static str = "48;5;168"

source§

const RAW_ANSI_FG: &'static str = "48;5;168"

source§

impl Color for Cumulus

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;230m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;230m"

source§

const RAW_ANSI_BG: &'static str = "48;5;230"

source§

const RAW_ANSI_FG: &'static str = "48;5;230"

source§

impl Color for owo_colors::colors::xterm::Cyan

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;51m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;51m"

source§

const RAW_ANSI_BG: &'static str = "48;5;51"

source§

const RAW_ANSI_FG: &'static str = "48;5;51"

source§

impl Color for Dandelion

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;221m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;221m"

source§

const RAW_ANSI_BG: &'static str = "48;5;221"

source§

const RAW_ANSI_FG: &'static str = "48;5;221"

source§

impl Color for DarkAlto

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;252m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;252m"

source§

const RAW_ANSI_BG: &'static str = "48;5;252"

source§

const RAW_ANSI_FG: &'static str = "48;5;252"

source§

impl Color for DarkAnakiwaBlue

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;117m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;117m"

source§

const RAW_ANSI_BG: &'static str = "48;5;117"

source§

const RAW_ANSI_FG: &'static str = "48;5;117"

source§

impl Color for DarkAquamarine

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;85m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;85m"

source§

const RAW_ANSI_BG: &'static str = "48;5;85"

source§

const RAW_ANSI_FG: &'static str = "48;5;85"

source§

impl Color for DarkBlue

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;20m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;20m"

source§

const RAW_ANSI_BG: &'static str = "48;5;20"

source§

const RAW_ANSI_FG: &'static str = "48;5;20"

source§

impl Color for DarkBrightGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;76m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;76m"

source§

const RAW_ANSI_BG: &'static str = "48;5;76"

source§

const RAW_ANSI_FG: &'static str = "48;5;76"

source§

impl Color for DarkCodGray

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;232m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;232m"

source§

const RAW_ANSI_BG: &'static str = "48;5;232"

source§

const RAW_ANSI_FG: &'static str = "48;5;232"

source§

impl Color for DarkCorn

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;178m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;178m"

source§

const RAW_ANSI_BG: &'static str = "48;5;178"

source§

const RAW_ANSI_FG: &'static str = "48;5;178"

source§

impl Color for DarkCornflowerBlue

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;63m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;63m"

source§

const RAW_ANSI_BG: &'static str = "48;5;63"

source§

const RAW_ANSI_FG: &'static str = "48;5;63"

source§

impl Color for DarkDoveGray

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;241m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;241m"

source§

const RAW_ANSI_BG: &'static str = "48;5;241"

source§

const RAW_ANSI_FG: &'static str = "48;5;241"

source§

impl Color for DarkFeijoaGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;114m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;114m"

source§

const RAW_ANSI_BG: &'static str = "48;5;114"

source§

const RAW_ANSI_FG: &'static str = "48;5;114"

source§

impl Color for DarkFlirt

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;125m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;125m"

source§

const RAW_ANSI_BG: &'static str = "48;5;125"

source§

const RAW_ANSI_FG: &'static str = "48;5;125"

source§

impl Color for DarkFreshEggplant

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;89m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;89m"

source§

const RAW_ANSI_BG: &'static str = "48;5;89"

source§

const RAW_ANSI_FG: &'static str = "48;5;89"

source§

impl Color for DarkGray

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;102m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;102m"

source§

const RAW_ANSI_BG: &'static str = "48;5;102"

source§

const RAW_ANSI_FG: &'static str = "48;5;102"

source§

impl Color for DarkGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;40m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;40m"

source§

const RAW_ANSI_BG: &'static str = "48;5;40"

source§

const RAW_ANSI_FG: &'static str = "48;5;40"

source§

impl Color for DarkHeliotropePurple

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;99m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;99m"

source§

const RAW_ANSI_BG: &'static str = "48;5;99"

source§

const RAW_ANSI_FG: &'static str = "48;5;99"

source§

impl Color for DarkHotPink

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;205m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;205m"

source§

const RAW_ANSI_BG: &'static str = "48;5;205"

source§

const RAW_ANSI_FG: &'static str = "48;5;205"

source§

impl Color for DarkLavenderRose

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;212m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;212m"

source§

const RAW_ANSI_BG: &'static str = "48;5;212"

source§

const RAW_ANSI_FG: &'static str = "48;5;212"

source§

impl Color for DarkLimeade

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;64m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;64m"

source§

const RAW_ANSI_BG: &'static str = "48;5;64"

source§

const RAW_ANSI_FG: &'static str = "48;5;64"

source§

impl Color for DarkMalibuBlue

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;75m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;75m"

source§

const RAW_ANSI_BG: &'static str = "48;5;75"

source§

const RAW_ANSI_FG: &'static str = "48;5;75"

source§

impl Color for DarkMediumPurple

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;98m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;98m"

source§

const RAW_ANSI_BG: &'static str = "48;5;98"

source§

const RAW_ANSI_FG: &'static str = "48;5;98"

source§

impl Color for DarkMineShaft

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;235m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;235m"

source§

const RAW_ANSI_BG: &'static str = "48;5;235"

source§

const RAW_ANSI_FG: &'static str = "48;5;235"

source§

impl Color for DarkMintGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;120m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;120m"

source§

const RAW_ANSI_BG: &'static str = "48;5;120"

source§

const RAW_ANSI_FG: &'static str = "48;5;120"

source§

impl Color for DarkPastelGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;77m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;77m"

source§

const RAW_ANSI_BG: &'static str = "48;5;77"

source§

const RAW_ANSI_FG: &'static str = "48;5;77"

source§

impl Color for DarkPurple

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;55m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;55m"

source§

const RAW_ANSI_BG: &'static str = "48;5;55"

source§

const RAW_ANSI_FG: &'static str = "48;5;55"

source§

impl Color for DarkPurplePizzazz

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;164m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;164m"

source§

const RAW_ANSI_BG: &'static str = "48;5;164"

source§

const RAW_ANSI_FG: &'static str = "48;5;164"

source§

impl Color for DarkRose

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;197m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;197m"

source§

const RAW_ANSI_BG: &'static str = "48;5;197"

source§

const RAW_ANSI_FG: &'static str = "48;5;197"

source§

impl Color for DarkScreaminGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;83m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;83m"

source§

const RAW_ANSI_BG: &'static str = "48;5;83"

source§

const RAW_ANSI_FG: &'static str = "48;5;83"

source§

impl Color for DarkSilver

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;250m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;250m"

source§

const RAW_ANSI_BG: &'static str = "48;5;250"

source§

const RAW_ANSI_FG: &'static str = "48;5;250"

source§

impl Color for DarkSilverChalice

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;248m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;248m"

source§

const RAW_ANSI_BG: &'static str = "48;5;248"

source§

const RAW_ANSI_FG: &'static str = "48;5;248"

source§

impl Color for DarkSpringGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;47m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;47m"

source§

const RAW_ANSI_BG: &'static str = "48;5;47"

source§

const RAW_ANSI_FG: &'static str = "48;5;47"

source§

impl Color for DarkTachaOrange

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;179m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;179m"

source§

const RAW_ANSI_BG: &'static str = "48;5;179"

source§

const RAW_ANSI_FG: &'static str = "48;5;179"

source§

impl Color for DarkTundora

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;238m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;238m"

source§

const RAW_ANSI_BG: &'static str = "48;5;238"

source§

const RAW_ANSI_FG: &'static str = "48;5;238"

source§

impl Color for DarkViolet

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;128m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;128m"

source§

const RAW_ANSI_BG: &'static str = "48;5;128"

source§

const RAW_ANSI_FG: &'static str = "48;5;128"

source§

impl Color for DecoOrange

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;186m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;186m"

source§

const RAW_ANSI_BG: &'static str = "48;5;186"

source§

const RAW_ANSI_FG: &'static str = "48;5;186"

source§

impl Color for DeepCerulean

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;31m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;31m"

source§

const RAW_ANSI_BG: &'static str = "48;5;31"

source§

const RAW_ANSI_FG: &'static str = "48;5;31"

source§

impl Color for DeepSeaGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;29m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;29m"

source§

const RAW_ANSI_BG: &'static str = "48;5;29"

source§

const RAW_ANSI_FG: &'static str = "48;5;29"

source§

impl Color for DelugePurple

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;97m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;97m"

source§

const RAW_ANSI_BG: &'static str = "48;5;97"

source§

const RAW_ANSI_FG: &'static str = "48;5;97"

source§

impl Color for DollyYellow

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;228m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;228m"

source§

const RAW_ANSI_BG: &'static str = "48;5;228"

source§

const RAW_ANSI_FG: &'static str = "48;5;228"

source§

impl Color for DoveGray

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;242m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;242m"

source§

const RAW_ANSI_BG: &'static str = "48;5;242"

source§

const RAW_ANSI_FG: &'static str = "48;5;242"

source§

impl Color for DownyTeal

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;79m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;79m"

source§

const RAW_ANSI_BG: &'static str = "48;5;79"

source§

const RAW_ANSI_FG: &'static str = "48;5;79"

source§

impl Color for DustyGray

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;246m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;246m"

source§

const RAW_ANSI_BG: &'static str = "48;5;246"

source§

const RAW_ANSI_FG: &'static str = "48;5;246"

source§

impl Color for ElectricIndigo

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;56m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;56m"

source§

const RAW_ANSI_BG: &'static str = "48;5;56"

source§

const RAW_ANSI_FG: &'static str = "48;5;56"

source§

impl Color for ElectricPurple

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;57m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;57m"

source§

const RAW_ANSI_BG: &'static str = "48;5;57"

source§

const RAW_ANSI_FG: &'static str = "48;5;57"

source§

impl Color for ElectricViolet

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;92m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;92m"

source§

const RAW_ANSI_BG: &'static str = "48;5;92"

source§

const RAW_ANSI_FG: &'static str = "48;5;92"

source§

impl Color for EndeavourBlue

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;25m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;25m"

source§

const RAW_ANSI_BG: &'static str = "48;5;25"

source§

const RAW_ANSI_FG: &'static str = "48;5;25"

source§

impl Color for Feijoa

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;150m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;150m"

source§

const RAW_ANSI_BG: &'static str = "48;5;150"

source§

const RAW_ANSI_FG: &'static str = "48;5;150"

source§

impl Color for FernGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;71m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;71m"

source§

const RAW_ANSI_BG: &'static str = "48;5;71"

source§

const RAW_ANSI_FG: &'static str = "48;5;71"

source§

impl Color for Flirt

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;126m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;126m"

source§

const RAW_ANSI_BG: &'static str = "48;5;126"

source§

const RAW_ANSI_FG: &'static str = "48;5;126"

source§

impl Color for FlushOrange

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;208m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;208m"

source§

const RAW_ANSI_BG: &'static str = "48;5;208"

source§

const RAW_ANSI_FG: &'static str = "48;5;208"

source§

impl Color for FogPink

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;189m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;189m"

source§

const RAW_ANSI_BG: &'static str = "48;5;189"

source§

const RAW_ANSI_FG: &'static str = "48;5;189"

source§

impl Color for FrenchPassLightBlue

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;159m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;159m"

source§

const RAW_ANSI_BG: &'static str = "48;5;159"

source§

const RAW_ANSI_FG: &'static str = "48;5;159"

source§

impl Color for Fuchsia

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;201m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;201m"

source§

const RAW_ANSI_BG: &'static str = "48;5;201"

source§

const RAW_ANSI_FG: &'static str = "48;5;201"

source§

impl Color for FuchsiaPink

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;133m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;133m"

source§

const RAW_ANSI_BG: &'static str = "48;5;133"

source§

const RAW_ANSI_FG: &'static str = "48;5;133"

source§

impl Color for GalleryGray

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;255m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;255m"

source§

const RAW_ANSI_BG: &'static str = "48;5;255"

source§

const RAW_ANSI_FG: &'static str = "48;5;255"

source§

impl Color for GladeGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;65m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;65m"

source§

const RAW_ANSI_BG: &'static str = "48;5;65"

source§

const RAW_ANSI_FG: &'static str = "48;5;65"

source§

impl Color for Gold

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;220m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;220m"

source§

const RAW_ANSI_BG: &'static str = "48;5;220"

source§

const RAW_ANSI_FG: &'static str = "48;5;220"

source§

impl Color for GrandisCaramel

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;222m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;222m"

source§

const RAW_ANSI_BG: &'static str = "48;5;222"

source§

const RAW_ANSI_FG: &'static str = "48;5;222"

source§

impl Color for Gray

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;244m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;244m"

source§

const RAW_ANSI_BG: &'static str = "48;5;244"

source§

const RAW_ANSI_FG: &'static str = "48;5;244"

source§

impl Color for owo_colors::colors::xterm::Green

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;46m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;46m"

source§

const RAW_ANSI_BG: &'static str = "48;5;46"

source§

const RAW_ANSI_FG: &'static str = "48;5;46"

source§

impl Color for GreenYellow

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;155m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;155m"

source§

const RAW_ANSI_BG: &'static str = "48;5;155"

source§

const RAW_ANSI_FG: &'static str = "48;5;155"

source§

impl Color for GuardsmanRed

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;160m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;160m"

source§

const RAW_ANSI_BG: &'static str = "48;5;160"

source§

const RAW_ANSI_FG: &'static str = "48;5;160"

source§

impl Color for GulfStream

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;109m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;109m"

source§

const RAW_ANSI_BG: &'static str = "48;5;109"

source§

const RAW_ANSI_FG: &'static str = "48;5;109"

source§

impl Color for HavelockBlue

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;68m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;68m"

source§

const RAW_ANSI_BG: &'static str = "48;5;68"

source§

const RAW_ANSI_FG: &'static str = "48;5;68"

source§

impl Color for Heliotrope

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;135m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;135m"

source§

const RAW_ANSI_BG: &'static str = "48;5;135"

source§

const RAW_ANSI_FG: &'static str = "48;5;135"

source§

impl Color for HillaryOlive

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;144m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;144m"

source§

const RAW_ANSI_BG: &'static str = "48;5;144"

source§

const RAW_ANSI_FG: &'static str = "48;5;144"

source§

impl Color for HippieBlue

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;67m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;67m"

source§

const RAW_ANSI_BG: &'static str = "48;5;67"

source§

const RAW_ANSI_FG: &'static str = "48;5;67"

source§

impl Color for HollywoodCerise

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;163m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;163m"

source§

const RAW_ANSI_BG: &'static str = "48;5;163"

source§

const RAW_ANSI_FG: &'static str = "48;5;163"

source§

impl Color for Honeysuckle

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;192m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;192m"

source§

const RAW_ANSI_BG: &'static str = "48;5;192"

source§

const RAW_ANSI_FG: &'static str = "48;5;192"

source§

impl Color for HopbushPink

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;169m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;169m"

source§

const RAW_ANSI_BG: &'static str = "48;5;169"

source§

const RAW_ANSI_FG: &'static str = "48;5;169"

source§

impl Color for HotPink

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;206m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;206m"

source§

const RAW_ANSI_BG: &'static str = "48;5;206"

source§

const RAW_ANSI_FG: &'static str = "48;5;206"

source§

impl Color for Indigo

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;62m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;62m"

source§

const RAW_ANSI_BG: &'static str = "48;5;62"

source§

const RAW_ANSI_FG: &'static str = "48;5;62"

source§

impl Color for Jade

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;35m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;35m"

source§

const RAW_ANSI_BG: &'static str = "48;5;35"

source§

const RAW_ANSI_FG: &'static str = "48;5;35"

source§

impl Color for JapaneseLaurel

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;28m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;28m"

source§

const RAW_ANSI_BG: &'static str = "48;5;28"

source§

const RAW_ANSI_FG: &'static str = "48;5;28"

source§

impl Color for JungleMist

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;152m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;152m"

source§

const RAW_ANSI_BG: &'static str = "48;5;152"

source§

const RAW_ANSI_FG: &'static str = "48;5;152"

source§

impl Color for JuniperGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;66m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;66m"

source§

const RAW_ANSI_BG: &'static str = "48;5;66"

source§

const RAW_ANSI_FG: &'static str = "48;5;66"

source§

impl Color for LaserLemon

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;227m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;227m"

source§

const RAW_ANSI_BG: &'static str = "48;5;227"

source§

const RAW_ANSI_FG: &'static str = "48;5;227"

source§

impl Color for Lavender

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;140m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;140m"

source§

const RAW_ANSI_BG: &'static str = "48;5;140"

source§

const RAW_ANSI_FG: &'static str = "48;5;140"

source§

impl Color for LavenderRose

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;219m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;219m"

source§

const RAW_ANSI_BG: &'static str = "48;5;219"

source§

const RAW_ANSI_FG: &'static str = "48;5;219"

source§

impl Color for LightAnakiwaBlue

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;153m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;153m"

source§

const RAW_ANSI_BG: &'static str = "48;5;153"

source§

const RAW_ANSI_FG: &'static str = "48;5;153"

source§

impl Color for LightAquamarine

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;87m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;87m"

source§

const RAW_ANSI_BG: &'static str = "48;5;87"

source§

const RAW_ANSI_FG: &'static str = "48;5;87"

source§

impl Color for LightAzureRadiance

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;39m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;39m"

source§

const RAW_ANSI_BG: &'static str = "48;5;39"

source§

const RAW_ANSI_FG: &'static str = "48;5;39"

source§

impl Color for LightCaribbeanGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;43m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;43m"

source§

const RAW_ANSI_BG: &'static str = "48;5;43"

source§

const RAW_ANSI_FG: &'static str = "48;5;43"

source§

impl Color for LightCodGray

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;234m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;234m"

source§

const RAW_ANSI_BG: &'static str = "48;5;234"

source§

const RAW_ANSI_FG: &'static str = "48;5;234"

source§

impl Color for LightElectricViolet

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;93m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;93m"

source§

const RAW_ANSI_BG: &'static str = "48;5;93"

source§

const RAW_ANSI_FG: &'static str = "48;5;93"

source§

impl Color for LightFlirt

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;127m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;127m"

source§

const RAW_ANSI_BG: &'static str = "48;5;127"

source§

const RAW_ANSI_FG: &'static str = "48;5;127"

source§

impl Color for LightFreshEggplant

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;90m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;90m"

source§

const RAW_ANSI_BG: &'static str = "48;5;90"

source§

const RAW_ANSI_FG: &'static str = "48;5;90"

source§

impl Color for LightGray

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;245m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;245m"

source§

const RAW_ANSI_BG: &'static str = "48;5;245"

source§

const RAW_ANSI_FG: &'static str = "48;5;245"

source§

impl Color for LightHeliotrope

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;141m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;141m"

source§

const RAW_ANSI_BG: &'static str = "48;5;141"

source§

const RAW_ANSI_FG: &'static str = "48;5;141"

source§

impl Color for LightHollywoodCerise

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;199m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;199m"

source§

const RAW_ANSI_BG: &'static str = "48;5;199"

source§

const RAW_ANSI_FG: &'static str = "48;5;199"

source§

impl Color for LightJapaneseLaurel

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;34m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;34m"

source§

const RAW_ANSI_BG: &'static str = "48;5;34"

source§

const RAW_ANSI_FG: &'static str = "48;5;34"

source§

impl Color for LightLimeade

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;106m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;106m"

source§

const RAW_ANSI_BG: &'static str = "48;5;106"

source§

const RAW_ANSI_FG: &'static str = "48;5;106"

source§

impl Color for LightMalibuBlue

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;111m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;111m"

source§

const RAW_ANSI_BG: &'static str = "48;5;111"

source§

const RAW_ANSI_FG: &'static str = "48;5;111"

source§

impl Color for LightMineShaft

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;237m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;237m"

source§

const RAW_ANSI_BG: &'static str = "48;5;237"

source§

const RAW_ANSI_FG: &'static str = "48;5;237"

source§

impl Color for LightMintGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;156m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;156m"

source§

const RAW_ANSI_BG: &'static str = "48;5;156"

source§

const RAW_ANSI_FG: &'static str = "48;5;156"

source§

impl Color for LightOrchid

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;176m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;176m"

source§

const RAW_ANSI_BG: &'static str = "48;5;176"

source§

const RAW_ANSI_FG: &'static str = "48;5;176"

source§

impl Color for LightPastelGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;113m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;113m"

source§

const RAW_ANSI_BG: &'static str = "48;5;113"

source§

const RAW_ANSI_FG: &'static str = "48;5;113"

source§

impl Color for LightScreaminGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;119m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;119m"

source§

const RAW_ANSI_BG: &'static str = "48;5;119"

source§

const RAW_ANSI_FG: &'static str = "48;5;119"

source§

impl Color for LightSilverChalice

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;249m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;249m"

source§

const RAW_ANSI_BG: &'static str = "48;5;249"

source§

const RAW_ANSI_FG: &'static str = "48;5;249"

source§

impl Color for LightSpringGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;49m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;49m"

source§

const RAW_ANSI_BG: &'static str = "48;5;49"

source§

const RAW_ANSI_FG: &'static str = "48;5;49"

source§

impl Color for LighterAquamarine

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;122m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;122m"

source§

const RAW_ANSI_BG: &'static str = "48;5;122"

source§

const RAW_ANSI_FG: &'static str = "48;5;122"

source§

impl Color for LighterHeliotrope

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;171m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;171m"

source§

const RAW_ANSI_BG: &'static str = "48;5;171"

source§

const RAW_ANSI_FG: &'static str = "48;5;171"

source§

impl Color for Lilac

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;60m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;60m"

source§

const RAW_ANSI_BG: &'static str = "48;5;60"

source§

const RAW_ANSI_FG: &'static str = "48;5;60"

source§

impl Color for Lime

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;154m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;154m"

source§

const RAW_ANSI_BG: &'static str = "48;5;154"

source§

const RAW_ANSI_FG: &'static str = "48;5;154"

source§

impl Color for Limeade

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;70m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;70m"

source§

const RAW_ANSI_BG: &'static str = "48;5;70"

source§

const RAW_ANSI_FG: &'static str = "48;5;70"

source§

impl Color for LochmaraBlue

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;32m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;32m"

source§

const RAW_ANSI_BG: &'static str = "48;5;32"

source§

const RAW_ANSI_FG: &'static str = "48;5;32"

source§

impl Color for Malachite

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;41m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;41m"

source§

const RAW_ANSI_BG: &'static str = "48;5;41"

source§

const RAW_ANSI_FG: &'static str = "48;5;41"

source§

impl Color for MalibuBlue

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;81m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;81m"

source§

const RAW_ANSI_BG: &'static str = "48;5;81"

source§

const RAW_ANSI_FG: &'static str = "48;5;81"

source§

impl Color for MangoTango

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;172m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;172m"

source§

const RAW_ANSI_BG: &'static str = "48;5;172"

source§

const RAW_ANSI_FG: &'static str = "48;5;172"

source§

impl Color for Maroon

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;88m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;88m"

source§

const RAW_ANSI_BG: &'static str = "48;5;88"

source§

const RAW_ANSI_FG: &'static str = "48;5;88"

source§

impl Color for MatrixPink

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;131m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;131m"

source§

const RAW_ANSI_BG: &'static str = "48;5;131"

source§

const RAW_ANSI_FG: &'static str = "48;5;131"

source§

impl Color for Mauve

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;183m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;183m"

source§

const RAW_ANSI_BG: &'static str = "48;5;183"

source§

const RAW_ANSI_FG: &'static str = "48;5;183"

source§

impl Color for MediumPurple

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;134m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;134m"

source§

const RAW_ANSI_BG: &'static str = "48;5;134"

source§

const RAW_ANSI_FG: &'static str = "48;5;134"

source§

impl Color for MediumVioletRed

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;162m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;162m"

source§

const RAW_ANSI_BG: &'static str = "48;5;162"

source§

const RAW_ANSI_FG: &'static str = "48;5;162"

source§

impl Color for MelroseLilac

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;147m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;147m"

source§

const RAW_ANSI_BG: &'static str = "48;5;147"

source§

const RAW_ANSI_FG: &'static str = "48;5;147"

source§

impl Color for Mercury

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;254m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;254m"

source§

const RAW_ANSI_BG: &'static str = "48;5;254"

source§

const RAW_ANSI_FG: &'static str = "48;5;254"

source§

impl Color for MidnightBlue

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;19m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;19m"

source§

const RAW_ANSI_BG: &'static str = "48;5;19"

source§

const RAW_ANSI_FG: &'static str = "48;5;19"

source§

impl Color for MineShaft

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;236m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;236m"

source§

const RAW_ANSI_BG: &'static str = "48;5;236"

source§

const RAW_ANSI_FG: &'static str = "48;5;236"

source§

impl Color for MintGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;121m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;121m"

source§

const RAW_ANSI_BG: &'static str = "48;5;121"

source§

const RAW_ANSI_FG: &'static str = "48;5;121"

source§

impl Color for MuesliOrange

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;137m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;137m"

source§

const RAW_ANSI_BG: &'static str = "48;5;137"

source§

const RAW_ANSI_FG: &'static str = "48;5;137"

source§

impl Color for NavyBlue

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;18m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;18m"

source§

const RAW_ANSI_BG: &'static str = "48;5;18"

source§

const RAW_ANSI_FG: &'static str = "48;5;18"

source§

impl Color for NobelGray

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;247m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;247m"

source§

const RAW_ANSI_BG: &'static str = "48;5;247"

source§

const RAW_ANSI_FG: &'static str = "48;5;247"

source§

impl Color for Olive

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;100m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;100m"

source§

const RAW_ANSI_BG: &'static str = "48;5;100"

source§

const RAW_ANSI_FG: &'static str = "48;5;100"

source§

impl Color for OliveGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;143m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;143m"

source§

const RAW_ANSI_BG: &'static str = "48;5;143"

source§

const RAW_ANSI_FG: &'static str = "48;5;143"

source§

impl Color for Orchid

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;170m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;170m"

source§

const RAW_ANSI_BG: &'static str = "48;5;170"

source§

const RAW_ANSI_FG: &'static str = "48;5;170"

source§

impl Color for OrientBlue

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;24m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;24m"

source§

const RAW_ANSI_BG: &'static str = "48;5;24"

source§

const RAW_ANSI_FG: &'static str = "48;5;24"

source§

impl Color for OysterBay

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;195m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;195m"

source§

const RAW_ANSI_BG: &'static str = "48;5;195"

source§

const RAW_ANSI_FG: &'static str = "48;5;195"

source§

impl Color for PaleGoldenrod

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;187m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;187m"

source§

const RAW_ANSI_BG: &'static str = "48;5;187"

source§

const RAW_ANSI_FG: &'static str = "48;5;187"

source§

impl Color for PastelGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;78m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;78m"

source§

const RAW_ANSI_BG: &'static str = "48;5;78"

source§

const RAW_ANSI_FG: &'static str = "48;5;78"

source§

impl Color for PersianGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;36m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;36m"

source§

const RAW_ANSI_BG: &'static str = "48;5;36"

source§

const RAW_ANSI_FG: &'static str = "48;5;36"

source§

impl Color for PharlapPink

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;138m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;138m"

source§

const RAW_ANSI_BG: &'static str = "48;5;138"

source§

const RAW_ANSI_FG: &'static str = "48;5;138"

source§

impl Color for PigmentIndigo

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;54m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;54m"

source§

const RAW_ANSI_BG: &'static str = "48;5;54"

source§

const RAW_ANSI_FG: &'static str = "48;5;54"

source§

impl Color for PinkFlamingo

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;207m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;207m"

source§

const RAW_ANSI_BG: &'static str = "48;5;207"

source§

const RAW_ANSI_FG: &'static str = "48;5;207"

source§

impl Color for PinkLace

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;225m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;225m"

source§

const RAW_ANSI_BG: &'static str = "48;5;225"

source§

const RAW_ANSI_FG: &'static str = "48;5;225"

source§

impl Color for PinkSalmon

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;211m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;211m"

source§

const RAW_ANSI_BG: &'static str = "48;5;211"

source§

const RAW_ANSI_FG: &'static str = "48;5;211"

source§

impl Color for PirateGold

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;136m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;136m"

source§

const RAW_ANSI_BG: &'static str = "48;5;136"

source§

const RAW_ANSI_FG: &'static str = "48;5;136"

source§

impl Color for Pistachio

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;112m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;112m"

source§

const RAW_ANSI_BG: &'static str = "48;5;112"

source§

const RAW_ANSI_FG: &'static str = "48;5;112"

source§

impl Color for PixieGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;151m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;151m"

source§

const RAW_ANSI_BG: &'static str = "48;5;151"

source§

const RAW_ANSI_FG: &'static str = "48;5;151"

source§

impl Color for PoloBlue

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;110m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;110m"

source§

const RAW_ANSI_BG: &'static str = "48;5;110"

source§

const RAW_ANSI_FG: &'static str = "48;5;110"

source§

impl Color for PompadourMagenta

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;53m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;53m"

source§

const RAW_ANSI_BG: &'static str = "48;5;53"

source§

const RAW_ANSI_FG: &'static str = "48;5;53"

source§

impl Color for PortafinoYellow

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;229m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;229m"

source§

const RAW_ANSI_BG: &'static str = "48;5;229"

source§

const RAW_ANSI_FG: &'static str = "48;5;229"

source§

impl Color for Purple

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;91m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;91m"

source§

const RAW_ANSI_BG: &'static str = "48;5;91"

source§

const RAW_ANSI_FG: &'static str = "48;5;91"

source§

impl Color for PurplePizzazz

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;200m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;200m"

source§

const RAW_ANSI_BG: &'static str = "48;5;200"

source§

const RAW_ANSI_FG: &'static str = "48;5;200"

source§

impl Color for RazzmatazzCerise

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;161m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;161m"

source§

const RAW_ANSI_BG: &'static str = "48;5;161"

source§

const RAW_ANSI_FG: &'static str = "48;5;161"

source§

impl Color for owo_colors::colors::xterm::Red

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;196m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;196m"

source§

const RAW_ANSI_BG: &'static str = "48;5;196"

source§

const RAW_ANSI_FG: &'static str = "48;5;196"

source§

impl Color for ReefPaleYellow

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;193m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;193m"

source§

const RAW_ANSI_BG: &'static str = "48;5;193"

source§

const RAW_ANSI_FG: &'static str = "48;5;193"

source§

impl Color for RioGrandeGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;148m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;148m"

source§

const RAW_ANSI_BG: &'static str = "48;5;148"

source§

const RAW_ANSI_FG: &'static str = "48;5;148"

source§

impl Color for RobinEggBlue

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;44m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;44m"

source§

const RAW_ANSI_BG: &'static str = "48;5;44"

source§

const RAW_ANSI_FG: &'static str = "48;5;44"

source§

impl Color for RomanOrange

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;167m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;167m"

source§

const RAW_ANSI_BG: &'static str = "48;5;167"

source§

const RAW_ANSI_FG: &'static str = "48;5;167"

source§

impl Color for Rose

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;198m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;198m"

source§

const RAW_ANSI_BG: &'static str = "48;5;198"

source§

const RAW_ANSI_FG: &'static str = "48;5;198"

source§

impl Color for RoseofSharonOrange

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;130m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;130m"

source§

const RAW_ANSI_BG: &'static str = "48;5;130"

source§

const RAW_ANSI_FG: &'static str = "48;5;130"

source§

impl Color for Rosewood

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;52m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;52m"

source§

const RAW_ANSI_BG: &'static str = "48;5;52"

source§

const RAW_ANSI_FG: &'static str = "48;5;52"

source§

impl Color for Salmon

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;209m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;209m"

source§

const RAW_ANSI_BG: &'static str = "48;5;209"

source§

const RAW_ANSI_FG: &'static str = "48;5;209"

source§

impl Color for ScampiIndigo

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;61m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;61m"

source§

const RAW_ANSI_BG: &'static str = "48;5;61"

source§

const RAW_ANSI_FG: &'static str = "48;5;61"

source§

impl Color for ScienceBlue

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;26m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;26m"

source§

const RAW_ANSI_BG: &'static str = "48;5;26"

source§

const RAW_ANSI_FG: &'static str = "48;5;26"

source§

impl Color for ScorpionGray

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;240m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;240m"

source§

const RAW_ANSI_BG: &'static str = "48;5;240"

source§

const RAW_ANSI_FG: &'static str = "48;5;240"

source§

impl Color for ScorpionOlive

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;59m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;59m"

source§

const RAW_ANSI_BG: &'static str = "48;5;59"

source§

const RAW_ANSI_FG: &'static str = "48;5;59"

source§

impl Color for ScreaminGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;84m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;84m"

source§

const RAW_ANSI_BG: &'static str = "48;5;84"

source§

const RAW_ANSI_FG: &'static str = "48;5;84"

source§

impl Color for SeaPink

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;174m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;174m"

source§

const RAW_ANSI_BG: &'static str = "48;5;174"

source§

const RAW_ANSI_FG: &'static str = "48;5;174"

source§

impl Color for ShakespeareBlue

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;74m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;74m"

source§

const RAW_ANSI_BG: &'static str = "48;5;74"

source§

const RAW_ANSI_FG: &'static str = "48;5;74"

source§

impl Color for Silver

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;251m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;251m"

source§

const RAW_ANSI_BG: &'static str = "48;5;251"

source§

const RAW_ANSI_FG: &'static str = "48;5;251"

source§

impl Color for SilverChalice

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;145m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;145m"

source§

const RAW_ANSI_BG: &'static str = "48;5;145"

source§

const RAW_ANSI_FG: &'static str = "48;5;145"

source§

impl Color for SilverTree

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;72m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;72m"

source§

const RAW_ANSI_BG: &'static str = "48;5;72"

source§

const RAW_ANSI_FG: &'static str = "48;5;72"

source§

impl Color for SlateBlue

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;105m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;105m"

source§

const RAW_ANSI_BG: &'static str = "48;5;105"

source§

const RAW_ANSI_FG: &'static str = "48;5;105"

source§

impl Color for SnowyMint

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;194m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;194m"

source§

const RAW_ANSI_BG: &'static str = "48;5;194"

source§

const RAW_ANSI_FG: &'static str = "48;5;194"

source§

impl Color for SpringGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;48m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;48m"

source§

const RAW_ANSI_BG: &'static str = "48;5;48"

source§

const RAW_ANSI_FG: &'static str = "48;5;48"

source§

impl Color for StratosBlue

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;17m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;17m"

source§

const RAW_ANSI_BG: &'static str = "48;5;17"

source§

const RAW_ANSI_FG: &'static str = "48;5;17"

source§

impl Color for StrikemasterPurple

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;96m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;96m"

source§

const RAW_ANSI_BG: &'static str = "48;5;96"

source§

const RAW_ANSI_FG: &'static str = "48;5;96"

source§

impl Color for Sundown

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;217m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;217m"

source§

const RAW_ANSI_BG: &'static str = "48;5;217"

source§

const RAW_ANSI_FG: &'static str = "48;5;217"

source§

impl Color for Tacao

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;216m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;216m"

source§

const RAW_ANSI_BG: &'static str = "48;5;216"

source§

const RAW_ANSI_FG: &'static str = "48;5;216"

source§

impl Color for TachaOrange

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;185m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;185m"

source§

const RAW_ANSI_BG: &'static str = "48;5;185"

source§

const RAW_ANSI_FG: &'static str = "48;5;185"

source§

impl Color for TanBeige

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;180m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;180m"

source§

const RAW_ANSI_BG: &'static str = "48;5;180"

source§

const RAW_ANSI_FG: &'static str = "48;5;180"

source§

impl Color for TapestryPink

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;132m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;132m"

source§

const RAW_ANSI_BG: &'static str = "48;5;132"

source§

const RAW_ANSI_FG: &'static str = "48;5;132"

source§

impl Color for Teal

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;30m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;30m"

source§

const RAW_ANSI_BG: &'static str = "48;5;30"

source§

const RAW_ANSI_FG: &'static str = "48;5;30"

source§

impl Color for TennOrange

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;166m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;166m"

source§

const RAW_ANSI_BG: &'static str = "48;5;166"

source§

const RAW_ANSI_FG: &'static str = "48;5;166"

source§

impl Color for TexasRose

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;215m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;215m"

source§

const RAW_ANSI_BG: &'static str = "48;5;215"

source§

const RAW_ANSI_FG: &'static str = "48;5;215"

source§

impl Color for ThistlePink

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;182m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;182m"

source§

const RAW_ANSI_BG: &'static str = "48;5;182"

source§

const RAW_ANSI_FG: &'static str = "48;5;182"

source§

impl Color for Tradewind

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;73m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;73m"

source§

const RAW_ANSI_BG: &'static str = "48;5;73"

source§

const RAW_ANSI_FG: &'static str = "48;5;73"

source§

impl Color for Tundora

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;239m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;239m"

source§

const RAW_ANSI_BG: &'static str = "48;5;239"

source§

const RAW_ANSI_FG: &'static str = "48;5;239"

source§

impl Color for UserBlack

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;0m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;0m"

source§

const RAW_ANSI_BG: &'static str = "48;5;0"

source§

const RAW_ANSI_FG: &'static str = "48;5;0"

source§

impl Color for UserBlue

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;4m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;4m"

source§

const RAW_ANSI_BG: &'static str = "48;5;4"

source§

const RAW_ANSI_FG: &'static str = "48;5;4"

source§

impl Color for UserBrightBlack

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;8m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;8m"

source§

const RAW_ANSI_BG: &'static str = "48;5;8"

source§

const RAW_ANSI_FG: &'static str = "48;5;8"

source§

impl Color for UserBrightBlue

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;12m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;12m"

source§

const RAW_ANSI_BG: &'static str = "48;5;12"

source§

const RAW_ANSI_FG: &'static str = "48;5;12"

source§

impl Color for UserBrightCyan

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;14m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;14m"

source§

const RAW_ANSI_BG: &'static str = "48;5;14"

source§

const RAW_ANSI_FG: &'static str = "48;5;14"

source§

impl Color for UserBrightGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;10m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;10m"

source§

const RAW_ANSI_BG: &'static str = "48;5;10"

source§

const RAW_ANSI_FG: &'static str = "48;5;10"

source§

impl Color for UserBrightMagenta

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;13m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;13m"

source§

const RAW_ANSI_BG: &'static str = "48;5;13"

source§

const RAW_ANSI_FG: &'static str = "48;5;13"

source§

impl Color for UserBrightRed

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;9m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;9m"

source§

const RAW_ANSI_BG: &'static str = "48;5;9"

source§

const RAW_ANSI_FG: &'static str = "48;5;9"

source§

impl Color for UserBrightWhite

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;15m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;15m"

source§

const RAW_ANSI_BG: &'static str = "48;5;15"

source§

const RAW_ANSI_FG: &'static str = "48;5;15"

source§

impl Color for UserBrightYellow

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;11m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;11m"

source§

const RAW_ANSI_BG: &'static str = "48;5;11"

source§

const RAW_ANSI_FG: &'static str = "48;5;11"

source§

impl Color for UserCyan

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;6m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;6m"

source§

const RAW_ANSI_BG: &'static str = "48;5;6"

source§

const RAW_ANSI_FG: &'static str = "48;5;6"

source§

impl Color for UserGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;2m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;2m"

source§

const RAW_ANSI_BG: &'static str = "48;5;2"

source§

const RAW_ANSI_FG: &'static str = "48;5;2"

source§

impl Color for UserMagenta

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;5m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;5m"

source§

const RAW_ANSI_BG: &'static str = "48;5;5"

source§

const RAW_ANSI_FG: &'static str = "48;5;5"

source§

impl Color for UserRed

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;1m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;1m"

source§

const RAW_ANSI_BG: &'static str = "48;5;1"

source§

const RAW_ANSI_FG: &'static str = "48;5;1"

source§

impl Color for UserWhite

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;7m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;7m"

source§

const RAW_ANSI_BG: &'static str = "48;5;7"

source§

const RAW_ANSI_FG: &'static str = "48;5;7"

source§

impl Color for UserYellow

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;3m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;3m"

source§

const RAW_ANSI_BG: &'static str = "48;5;3"

source§

const RAW_ANSI_FG: &'static str = "48;5;3"

source§

impl Color for VerdunGreen

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;58m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;58m"

source§

const RAW_ANSI_BG: &'static str = "48;5;58"

source§

const RAW_ANSI_FG: &'static str = "48;5;58"

source§

impl Color for Viking

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;80m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;80m"

source§

const RAW_ANSI_BG: &'static str = "48;5;80"

source§

const RAW_ANSI_FG: &'static str = "48;5;80"

source§

impl Color for VistaBlue

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;115m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;115m"

source§

const RAW_ANSI_BG: &'static str = "48;5;115"

source§

const RAW_ANSI_FG: &'static str = "48;5;115"

source§

impl Color for VividTangerine

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;210m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;210m"

source§

const RAW_ANSI_BG: &'static str = "48;5;210"

source§

const RAW_ANSI_FG: &'static str = "48;5;210"

source§

impl Color for owo_colors::colors::xterm::White

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;231m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;231m"

source§

const RAW_ANSI_BG: &'static str = "48;5;231"

source§

const RAW_ANSI_FG: &'static str = "48;5;231"

source§

impl Color for WildBlueYonder

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;103m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;103m"

source§

const RAW_ANSI_BG: &'static str = "48;5;103"

source§

const RAW_ANSI_FG: &'static str = "48;5;103"

source§

impl Color for WildWatermelon

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;204m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;204m"

source§

const RAW_ANSI_BG: &'static str = "48;5;204"

source§

const RAW_ANSI_FG: &'static str = "48;5;204"

source§

impl Color for WistfulLilac

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;146m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;146m"

source§

const RAW_ANSI_BG: &'static str = "48;5;146"

source§

const RAW_ANSI_FG: &'static str = "48;5;146"

source§

impl Color for owo_colors::colors::xterm::Yellow

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;226m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;226m"

source§

const RAW_ANSI_BG: &'static str = "48;5;226"

source§

const RAW_ANSI_FG: &'static str = "48;5;226"

source§

impl Color for YellowSea

source§

const ANSI_FG: &'static str = "\u{1b}[38;5;214m"

source§

const ANSI_BG: &'static str = "\u{1b}[48;5;214m"

source§

const RAW_ANSI_BG: &'static str = "48;5;214"

source§

const RAW_ANSI_FG: &'static str = "48;5;214"

source§

impl<const R: u8, const G: u8, const B: u8> Color for CustomColor<R, G, B>

source§

const ANSI_FG: &'static str = _

source§

const ANSI_BG: &'static str = _

source§

const RAW_ANSI_FG: &'static str = _

source§

const RAW_ANSI_BG: &'static str = _