[][src]Static termimage::util::ANSI_COLOURS_BLACK_BG

pub static ANSI_COLOURS_BLACK_BG: [Rgb<u8>; 16]

Linux-theme ANSI colours, in the same order as ANSI_COLOUR_ESCAPES.

Acquired from the colorname table in st, as decoded according to the X11 colour names Wikipedia article:

static const char *colorname[] = {
    /* 8 normal colors */
    "black",
    "red3",
    "green3",
    "yellow3",
    "blue2",
    "magenta3",
    "cyan3",
    "gray90",

    /* 8 bright colors */
    "gray50",
    "red",
    "green",
    "yellow",
    "#5c5cff",
    "magenta",
    "cyan",
    "white",

    // …
}