Skip to content

Instantly share code, notes, and snippets.

@data-man
Created August 4, 2024 09:15
Show Gist options
  • Save data-man/d75bf51887426915696ac9ec43d14cc2 to your computer and use it in GitHub Desktop.
Save data-man/d75bf51887426915696ac9ec43d14cc2 to your computer and use it in GitHub Desktop.
More colors in David Peter's Pastel
diff --git a/src/cli/commands/list.rs b/src/cli/commands/list.rs
index 2c2de51..501c3fb 100644
--- a/src/cli/commands/list.rs
+++ b/src/cli/commands/list.rs
@@ -11,8 +11,9 @@ impl GenericCommand for ListCommand {
let sort_order = matches.value_of("sort-order").expect("required argument");
let mut colors: Vec<&NamedColor> = NAMED_COLORS.iter().collect();
- colors.sort_by_key(|nc| key_function(sort_order, &nc.color));
- colors.dedup_by(|n1, n2| n1.color == n2.color);
+ if sort_order != "name" {
+ colors.sort_by_key(|nc| key_function(sort_order, &nc.color));
+ }
if config.interactive_mode {
for nc in colors {
@@ -23,12 +24,12 @@ impl GenericCommand for ListCommand {
"{}",
config
.brush
- .paint(format!(" {:24}", nc.name), fg.ansi_style().on(bg))
+ .paint(format!(" {:22} {:42} {} ", nc.name, nc.fullname, nc.color.to_rgb_hex_string(true)), fg.ansi_style().on(bg))
)?;
}
} else {
for nc in colors {
- let res = writeln!(out.handle, "{}", nc.name);
+ let res = writeln!(out.handle, "{} {}", nc.name, nc.color.to_rgb_hex_string(true));
if res.is_err() {
break;
}
diff --git a/src/named.rs b/src/named.rs
index c9dae0c..68e254a 100644
--- a/src/named.rs
+++ b/src/named.rs
@@ -5,165 +5,1407 @@ use crate::Color;
#[derive(Debug, Clone)]
pub struct NamedColor {
pub name: &'static str,
+ pub fullname: &'static str,
pub color: Color,
}
-fn named_color(name: &'static str, r: u8, g: u8, b: u8) -> NamedColor {
+fn named_color(name: &'static str, fullname: &'static str, r: u8, g: u8, b: u8) -> NamedColor {
NamedColor {
name,
+ fullname,
color: Color::from_rgb(r, g, b),
}
}
-pub static NAMED_COLORS: Lazy<[NamedColor; 148]> = Lazy::new(|| {
+pub static NAMED_COLORS: Lazy<[NamedColor; 1388]> = Lazy::new(|| {
[
- named_color("aliceblue", 240, 248, 255),
- named_color("antiquewhite", 250, 235, 215),
- named_color("aqua", 0, 255, 255),
- named_color("aquamarine", 127, 255, 212),
- named_color("azure", 240, 255, 255),
- named_color("beige", 245, 245, 220),
- named_color("bisque", 255, 228, 196),
- named_color("black", 0, 0, 0),
- named_color("blanchedalmond", 255, 235, 205),
- named_color("blue", 0, 0, 255),
- named_color("blueviolet", 138, 43, 226),
- named_color("brown", 165, 42, 42),
- named_color("burlywood", 222, 184, 135),
- named_color("cadetblue", 95, 158, 160),
- named_color("chartreuse", 127, 255, 0),
- named_color("chocolate", 210, 105, 30),
- named_color("coral", 255, 127, 80),
- named_color("cornflowerblue", 100, 149, 237),
- named_color("cornsilk", 255, 248, 220),
- named_color("crimson", 220, 20, 60),
- named_color("cyan", 0, 255, 255),
- named_color("darkblue", 0, 0, 139),
- named_color("darkcyan", 0, 139, 139),
- named_color("darkgoldenrod", 184, 134, 11),
- named_color("darkgray", 169, 169, 169),
- named_color("darkgreen", 0, 100, 0),
- named_color("darkgrey", 169, 169, 169),
- named_color("darkkhaki", 189, 183, 107),
- named_color("darkmagenta", 139, 0, 139),
- named_color("darkolivegreen", 85, 107, 47),
- named_color("darkorange", 255, 140, 0),
- named_color("darkorchid", 153, 50, 204),
- named_color("darkred", 139, 0, 0),
- named_color("darksalmon", 233, 150, 122),
- named_color("darkseagreen", 143, 188, 143),
- named_color("darkslateblue", 72, 61, 139),
- named_color("darkslategray", 47, 79, 79),
- named_color("darkslategrey", 47, 79, 79),
- named_color("darkturquoise", 0, 206, 209),
- named_color("darkviolet", 148, 0, 211),
- named_color("deeppink", 255, 20, 147),
- named_color("deepskyblue", 0, 191, 255),
- named_color("dimgray", 105, 105, 105),
- named_color("dimgrey", 105, 105, 105),
- named_color("dodgerblue", 30, 144, 255),
- named_color("firebrick", 178, 34, 34),
- named_color("floralwhite", 255, 250, 240),
- named_color("forestgreen", 34, 139, 34),
- named_color("fuchsia", 255, 0, 255),
- named_color("gainsboro", 220, 220, 220),
- named_color("ghostwhite", 248, 248, 255),
- named_color("gold", 255, 215, 0),
- named_color("goldenrod", 218, 165, 32),
- named_color("gray", 128, 128, 128),
- named_color("green", 0, 128, 0),
- named_color("greenyellow", 173, 255, 47),
- named_color("grey", 128, 128, 128),
- named_color("honeydew", 240, 255, 240),
- named_color("hotpink", 255, 105, 180),
- named_color("indianred", 205, 92, 92),
- named_color("indigo", 75, 0, 130),
- named_color("ivory", 255, 255, 240),
- named_color("khaki", 240, 230, 140),
- named_color("lavender", 230, 230, 250),
- named_color("lavenderblush", 255, 240, 245),
- named_color("lawngreen", 124, 252, 0),
- named_color("lemonchiffon", 255, 250, 205),
- named_color("lightblue", 173, 216, 230),
- named_color("lightcoral", 240, 128, 128),
- named_color("lightcyan", 224, 255, 255),
- named_color("lightgoldenrodyellow", 250, 250, 210),
- named_color("lightgray", 211, 211, 211),
- named_color("lightgreen", 144, 238, 144),
- named_color("lightgrey", 211, 211, 211),
- named_color("lightpink", 255, 182, 193),
- named_color("lightsalmon", 255, 160, 122),
- named_color("lightseagreen", 32, 178, 170),
- named_color("lightskyblue", 135, 206, 250),
- named_color("lightslategray", 119, 136, 153),
- named_color("lightslategrey", 119, 136, 153),
- named_color("lightsteelblue", 176, 196, 222),
- named_color("lightyellow", 255, 255, 224),
- named_color("lime", 0, 255, 0),
- named_color("limegreen", 50, 205, 50),
- named_color("linen", 250, 240, 230),
- named_color("magenta", 255, 0, 255),
- named_color("maroon", 128, 0, 0),
- named_color("mediumaquamarine", 102, 205, 170),
- named_color("mediumblue", 0, 0, 205),
- named_color("mediumorchid", 186, 85, 211),
- named_color("mediumpurple", 147, 112, 219),
- named_color("mediumseagreen", 60, 179, 113),
- named_color("mediumslateblue", 123, 104, 238),
- named_color("mediumspringgreen", 0, 250, 154),
- named_color("mediumturquoise", 72, 209, 204),
- named_color("mediumvioletred", 199, 21, 133),
- named_color("midnightblue", 25, 25, 112),
- named_color("mintcream", 245, 255, 250),
- named_color("mistyrose", 255, 228, 225),
- named_color("moccasin", 255, 228, 181),
- named_color("navajowhite", 255, 222, 173),
- named_color("navy", 0, 0, 128),
- named_color("oldlace", 253, 245, 230),
- named_color("olive", 128, 128, 0),
- named_color("olivedrab", 107, 142, 35),
- named_color("orange", 255, 165, 0),
- named_color("orangered", 255, 69, 0),
- named_color("orchid", 218, 112, 214),
- named_color("palegoldenrod", 238, 232, 170),
- named_color("palegreen", 152, 251, 152),
- named_color("paleturquoise", 175, 238, 238),
- named_color("palevioletred", 219, 112, 147),
- named_color("papayawhip", 255, 239, 213),
- named_color("peachpuff", 255, 218, 185),
- named_color("peru", 205, 133, 63),
- named_color("pink", 255, 192, 203),
- named_color("plum", 221, 160, 221),
- named_color("powderblue", 176, 224, 230),
- named_color("purple", 128, 0, 128),
- named_color("rebeccapurple", 102, 51, 153),
- named_color("red", 255, 0, 0),
- named_color("rosybrown", 188, 143, 143),
- named_color("royalblue", 65, 105, 225),
- named_color("saddlebrown", 139, 69, 19),
- named_color("salmon", 250, 128, 114),
- named_color("sandybrown", 244, 164, 96),
- named_color("seagreen", 46, 139, 87),
- named_color("seashell", 255, 245, 238),
- named_color("sienna", 160, 82, 45),
- named_color("silver", 192, 192, 192),
- named_color("skyblue", 135, 206, 235),
- named_color("slateblue", 106, 90, 205),
- named_color("slategray", 112, 128, 144),
- named_color("slategrey", 112, 128, 144),
- named_color("snow", 255, 250, 250),
- named_color("springgreen", 0, 255, 127),
- named_color("steelblue", 70, 130, 180),
- named_color("tan", 210, 180, 140),
- named_color("teal", 0, 128, 128),
- named_color("thistle", 216, 191, 216),
- named_color("tomato", 255, 99, 71),
- named_color("turquoise", 64, 224, 208),
- named_color("violet", 238, 130, 238),
- named_color("wheat", 245, 222, 179),
- named_color("white", 255, 255, 255),
- named_color("whitesmoke", 245, 245, 245),
- named_color("yellow", 255, 255, 0),
- named_color("yellowgreen", 154, 205, 50),
+ named_color("absolutezero", "Absolute Zero", 0, 72, 186),
+ named_color("acidgreen", "Acid green", 176, 191, 26),
+ named_color("aero", "Aero", 124, 185, 232),
+ named_color("aeroblue", "Aero blue", 201, 255, 229),
+ named_color("africanviolet", "African violet", 178, 132, 190),
+ named_color("airsuperiorityblue", "Air superiority blue", 114, 160, 193),
+ named_color("alabaster", "Alabaster", 237, 234, 224),
+ named_color("aliceblue", "Alice blue", 240, 248, 255),
+ named_color("alloyorange", "Alloy orange", 196, 98, 16),
+ named_color("almond", "Almond", 239, 222, 205),
+ named_color("amaranth", "Amaranth", 229, 43, 80),
+ named_color("amaranthmandp", "Amaranth (M&P)", 159, 43, 104),
+ named_color("amaranthpink", "Amaranth pink", 241, 156, 187),
+ named_color("amaranthpurple", "Amaranth purple", 171, 39, 79),
+ named_color("amaranthred", "Amaranth red", 211, 33, 45),
+ named_color("amazon", "Amazon", 59, 122, 87),
+ named_color("amber", "Amber", 255, 191, 0),
+ named_color("ambersaeece", "Amber (SAE/ECE)", 255, 126, 0),
+ named_color("amethyst", "Amethyst", 153, 102, 204),
+ named_color("androidgreen", "Android green", 164, 198, 57),
+ named_color("antiquebrass", "Antique brass", 205, 149, 117),
+ named_color("antiquebronze", "Antique bronze", 102, 93, 30),
+ named_color("antiquefuchsia", "Antique fuchsia", 145, 92, 131),
+ named_color("antiqueruby", "Antique ruby", 132, 27, 45),
+ named_color("antiquewhite", "Antique white", 250, 235, 215),
+ named_color("antiquewhite1", "Antique white 1 (X11)", 255, 239, 219),
+ named_color("antiquewhite2", "Antique white 2 (X11)", 238, 223, 204),
+ named_color("antiquewhite3", "Antique white 3 (X11)", 205, 192, 176),
+ named_color("antiquewhite4", "Antique white 4 (X11)", 139, 131, 120),
+ named_color("aoenglish", "Ao (English)", 0, 128, 0),
+ named_color("applegreen", "Apple green", 141, 182, 0),
+ named_color("apricot", "Apricot", 251, 206, 177),
+ named_color("aqua", "Aqua", 0, 255, 255),
+ named_color("aquamarine", "Aquamarine", 127, 255, 212),
+ named_color("aquamarine1", "Aquamarine 1 (X11)", 127, 255, 212),
+ named_color("aquamarine2", "Aquamarine 2 (X11)", 118, 238, 198),
+ named_color("aquamarine3", "Aquamarine 3 (X11)", 102, 205, 170),
+ named_color("aquamarine4", "Aquamarine 4 (X11)", 69, 139, 116),
+ named_color("arcticlime", "Arctic lime", 208, 255, 20),
+ named_color("armygreen", "Army green", 75, 83, 32),
+ named_color("artichoke", "Artichoke", 143, 151, 121),
+ named_color("arylideyellow", "Arylide yellow", 233, 214, 107),
+ named_color("ashgray", "Ash gray", 178, 190, 181),
+ named_color("asparagus", "Asparagus", 135, 169, 107),
+ named_color("atomictangerine", "Atomic tangerine", 255, 153, 102),
+ named_color("auburn", "Auburn", 165, 42, 42),
+ named_color("aureolin", "Aureolin", 253, 238, 0),
+ named_color("avocado", "Avocado", 86, 130, 3),
+ named_color("azure", "Azure", 0, 127, 255),
+ named_color("azure1", "Azure 1 (X11)", 240, 255, 255),
+ named_color("azure2", "Azure 2 (X11)", 224, 238, 238),
+ named_color("azure3", "Azure 3 (X11)", 193, 205, 205),
+ named_color("azure4", "Azure 4 (X11)", 131, 139, 139),
+ named_color("azurex11", "Azure (X11/web color)", 240, 255, 255),
+ named_color("babyblue", "Baby blue", 137, 207, 240),
+ named_color("babyblueeyes", "Baby blue eyes", 161, 202, 241),
+ named_color("babypink", "Baby pink", 244, 194, 194),
+ named_color("babypowder", "Baby powder", 254, 254, 250),
+ named_color("bakermillerpink", "Baker-Miller pink", 255, 145, 175),
+ named_color("bananamania", "Banana Mania", 250, 231, 181),
+ named_color("barbiepink", "Barbie Pink", 218, 24, 132),
+ named_color("barnred", "Barn red", 124, 10, 2),
+ named_color("battleshipgrey", "Battleship grey", 132, 132, 130),
+ named_color("bdazzledblue", "B'dazzled blue", 46, 88, 148),
+ named_color("beaublue", "Beau blue", 188, 212, 230),
+ named_color("beaver", "Beaver", 159, 129, 112),
+ named_color("beige", "Beige", 245, 245, 220),
+ named_color("bigdipo’ruby", "Big dip o’ruby", 156, 37, 66),
+ named_color("bisque", "Bisque", 255, 228, 196),
+ named_color("bisque1", "Bisque 1 (X11)", 255, 228, 196),
+ named_color("bisque2", "Bisque 2 (X11)", 238, 213, 183),
+ named_color("bisque3", "Bisque 3 (X11)", 205, 183, 158),
+ named_color("bisque4", "Bisque 4 (X11)", 139, 125, 107),
+ named_color("bistre", "Bistre", 61, 43, 31),
+ named_color("bistrebrown", "Bistre brown", 150, 113, 23),
+ named_color("bitterlemon", "Bitter lemon", 202, 224, 13),
+ named_color("bitterlime", "Bitter lime", 191, 255, 0),
+ named_color("bittersweet", "Bittersweet", 254, 111, 94),
+ named_color("bittersweetshimmer", "Bittersweet shimmer", 191, 79, 81),
+ named_color("black", "Black", 0, 0, 0),
+ named_color("blackbean", "Black bean", 61, 12, 2),
+ named_color("blackchocolate", "Black chocolate", 27, 24, 17),
+ named_color("blackcoffee", "Black coffee", 59, 47, 47),
+ named_color("blackcoral", "Black coral", 84, 98, 111),
+ named_color("blackolive", "Black olive", 59, 60, 54),
+ named_color("blackshadows", "Black Shadows", 191, 175, 178),
+ named_color("blanchedalmond", "Blanched almond", 255, 235, 205),
+ named_color("blastoffbronze", "Blast-off bronze", 165, 113, 100),
+ named_color("blazeorange", "Blaze orange", 255, 103, 0),
+ named_color("bleudefrance", "Bleu de France", 49, 140, 231),
+ named_color("blizzardblue", "Blizzard blue", 172, 229, 238),
+ named_color("blond", "Blond", 250, 240, 190),
+ named_color("bloodred", "Blood red", 102, 0, 0),
+ named_color("blue", "Blue", 0, 0, 255),
+ named_color("blue1", "Blue 1 (X11)", 0, 0, 255),
+ named_color("blue2", "Blue 2 (X11)", 0, 0, 238),
+ named_color("blue3", "Blue 3 (X11)", 0, 0, 205),
+ named_color("blue4", "Blue 4 (X11)", 0, 0, 139),
+ named_color("bluebell", "Blue bell", 162, 162, 208),
+ named_color("bluecrayola", "Blue (Crayola)", 31, 117, 254),
+ named_color("bluegray", "Blue-gray", 102, 153, 204),
+ named_color("bluegreen", "Blue-green", 13, 152, 186),
+ named_color("bluegreencolorwheel", "Blue-green (color wheel)", 6, 78, 64),
+ named_color("bluejeans", "Blue jeans", 93, 173, 236),
+ named_color("bluemunsell", "Blue (Munsell)", 0, 147, 175),
+ named_color("bluencs", "Blue (NCS)", 0, 135, 189),
+ named_color("bluepantone", "Blue (Pantone)", 0, 24, 168),
+ named_color("bluepigment", "Blue (pigment)", 51, 51, 153),
+ named_color("blueryb", "Blue (RYB)", 2, 71, 254),
+ named_color("bluesapphire", "Blue sapphire", 18, 97, 128),
+ named_color("bluetiful", "Bluetiful", 60, 105, 231),
+ named_color("blueviolet", "Blue-violet", 138, 43, 226),
+ named_color("bluevioletcolorwheel", "Blue-violet (color wheel)", 77, 26, 127),
+ named_color("bluevioletcrayola", "Blue-violet (Crayola)", 115, 102, 189),
+ named_color("blueyonder", "Blue yonder", 80, 114, 167),
+ named_color("blush", "Blush", 222, 93, 131),
+ named_color("bole", "Bole", 121, 68, 59),
+ named_color("bone", "Bone", 227, 218, 201),
+ named_color("bottlegreen", "Bottle green", 0, 106, 78),
+ named_color("brandy", "Brandy", 135, 65, 63),
+ named_color("brickred", "Brick red", 203, 65, 84),
+ named_color("brightgreen", "Bright green", 102, 255, 0),
+ named_color("brightlilac", "Bright lilac", 216, 145, 239),
+ named_color("brightmaroon", "Bright maroon", 195, 33, 72),
+ named_color("brightnavyblue", "Bright navy blue", 25, 116, 210),
+ named_color("brightyellowcrayola", "Bright yellow (Crayola)", 255, 170, 29),
+ named_color("brilliantrose", "Brilliant rose", 255, 85, 163),
+ named_color("brinkpink", "Brink pink", 251, 96, 127),
+ named_color("britishracinggreen", "British racing green", 0, 66, 37),
+ named_color("bronze", "Bronze", 205, 127, 50),
+ named_color("brown", "Brown", 136, 84, 11),
+ named_color("brown1", "Brown 1 (X11)", 255, 64, 64),
+ named_color("brown2", "Brown 2 (X11)", 238, 59, 59),
+ named_color("brown3", "Brown 3 (X11)", 205, 51, 51),
+ named_color("brown4", "Brown 4 (X11)", 139, 35, 35),
+ named_color("brownsugar", "Brown sugar", 175, 110, 77),
+ named_color("brownx11", "Brown (X11)", 165, 42, 42),
+ named_color("brunswickgreen", "Brunswick green", 27, 77, 62),
+ named_color("budgreen", "Bud green", 123, 182, 97),
+ named_color("buff", "Buff", 240, 220, 130),
+ named_color("burgundy", "Burgundy", 128, 0, 32),
+ named_color("burlywood", "Burlywood", 222, 184, 135),
+ named_color("burlywood1", "Burlywood 1 (X11)", 255, 211, 155),
+ named_color("burlywood2", "Burlywood 2 (X11)", 238, 197, 145),
+ named_color("burlywood3", "Burlywood 3 (X11)", 205, 170, 125),
+ named_color("burlywood4", "Burlywood 4 (X11)", 139, 115, 85),
+ named_color("burnishedbrown", "Burnished brown", 161, 122, 116),
+ named_color("burntorange", "Burnt orange", 204, 85, 0),
+ named_color("burntsienna", "Burnt sienna", 233, 116, 81),
+ named_color("burntumber", "Burnt umber", 138, 51, 36),
+ named_color("byzantine", "Byzantine", 189, 51, 164),
+ named_color("byzantium", "Byzantium", 112, 41, 99),
+ named_color("cadet", "Cadet", 83, 104, 114),
+ named_color("cadetblue", "Cadet blue", 95, 158, 160),
+ named_color("cadetblue1", "Cadet blue 1 (X11)", 152, 245, 255),
+ named_color("cadetblue2", "Cadet blue 2 (X11)", 142, 229, 238),
+ named_color("cadetblue3", "Cadet blue 3 (X11)", 122, 197, 205),
+ named_color("cadetblue4", "Cadet blue 4 (X11)", 83, 134, 139),
+ named_color("cadetbluecrayola", "Cadet blue (Crayola)", 169, 178, 195),
+ named_color("cadetgrey", "Cadet grey", 145, 163, 176),
+ named_color("cadmiumgreen", "Cadmium green", 0, 107, 60),
+ named_color("cadmiumorange", "Cadmium orange", 237, 135, 45),
+ named_color("cadmiumred", "Cadmium red", 227, 0, 34),
+ named_color("cadmiumyellow", "Cadmium yellow", 255, 246, 0),
+ named_color("cafeaulait", "Café au lait", 166, 123, 91),
+ named_color("cafenoir", "Café noir", 75, 54, 33),
+ named_color("cambridgeblue", "Cambridge blue", 163, 193, 173),
+ named_color("camel", "Camel", 193, 154, 107),
+ named_color("cameopink", "Cameo pink", 239, 187, 204),
+ named_color("canary", "Canary", 255, 255, 153),
+ named_color("canaryyellow", "Canary yellow", 255, 239, 0),
+ named_color("candyapplered", "Candy apple red", 255, 8, 0),
+ named_color("candypink", "Candy pink", 228, 113, 122),
+ named_color("capri", "Capri", 0, 191, 255),
+ named_color("caputmortuum", "Caput mortuum", 89, 39, 32),
+ named_color("cardinal", "Cardinal", 196, 30, 58),
+ named_color("caribbeangreen", "Caribbean green", 0, 204, 153),
+ named_color("carmine", "Carmine", 150, 0, 24),
+ named_color("carminemandp", "Carmine (M&P)", 215, 0, 64),
+ named_color("carnationpink", "Carnation pink", 255, 166, 201),
+ named_color("carnelian", "Carnelian", 179, 27, 27),
+ named_color("carolinablue", "Carolina blue", 86, 160, 211),
+ named_color("carrotorange", "Carrot orange", 237, 145, 33),
+ named_color("castletongreen", "Castleton green", 0, 86, 63),
+ named_color("catawba", "Catawba", 112, 54, 66),
+ named_color("cedarchest", "Cedar Chest", 201, 90, 73),
+ named_color("celadon", "Celadon", 172, 225, 175),
+ named_color("celadonblue", "Celadon blue", 0, 123, 167),
+ named_color("celadongreen", "Celadon green", 47, 132, 124),
+ named_color("celeste", "Celeste", 178, 255, 255),
+ named_color("celticblue", "Celtic blue", 36, 107, 206),
+ named_color("cerise", "Cerise", 222, 49, 99),
+ named_color("cerulean", "Cerulean", 0, 123, 167),
+ named_color("ceruleanblue", "Cerulean blue", 42, 82, 190),
+ named_color("ceruleancrayola", "Cerulean (Crayola)", 29, 172, 214),
+ named_color("ceruleanfrost", "Cerulean frost", 109, 155, 195),
+ named_color("cgblue", "CG blue", 0, 122, 165),
+ named_color("cgred", "CG red", 224, 60, 49),
+ named_color("champagne", "Champagne", 247, 231, 206),
+ named_color("champagnepink", "Champagne pink", 241, 221, 207),
+ named_color("charcoal", "Charcoal", 54, 69, 79),
+ named_color("charlestongreen", "Charleston green", 35, 43, 43),
+ named_color("charmpink", "Charm pink", 230, 143, 172),
+ named_color("chartreuse", "Chartreuse (traditional)", 223, 255, 0),
+ named_color("chartreuse1", "Chartreuse 1 (X11)", 127, 255, 0),
+ named_color("chartreuse2", "Chartreuse 2 (X11)", 118, 238, 0),
+ named_color("chartreuse3", "Chartreuse 3 (X11)", 102, 205, 0),
+ named_color("chartreuse4", "Chartreuse 4 (X11)", 69, 139, 0),
+ named_color("chartreusex11", "Chartreuse (web)", 127, 255, 0),
+ named_color("cherryblossompink", "Cherry blossom pink", 255, 183, 197),
+ named_color("chestnut", "Chestnut", 149, 69, 53),
+ named_color("chinapink", "China pink", 222, 111, 161),
+ named_color("chinarose", "China rose", 168, 81, 110),
+ named_color("chinesered", "Chinese red", 170, 56, 30),
+ named_color("chineseviolet", "Chinese violet", 133, 96, 136),
+ named_color("chineseyellow", "Chinese yellow", 255, 178, 0),
+ named_color("chocolate", "Chocolate (traditional)", 123, 63, 0),
+ named_color("chocolate1", "Chocolate 1 (X11)", 255, 127, 36),
+ named_color("chocolate2", "Chocolate 2 (X11)", 238, 118, 33),
+ named_color("chocolate3", "Chocolate 3 (X11)", 205, 102, 29),
+ named_color("chocolate4", "Chocolate 4 (X11)", 139, 69, 19),
+ named_color("chocolatex11", "Chocolate (X11/web)", 210, 105, 30),
+ named_color("chromeyellow", "Chrome yellow", 255, 167, 0),
+ named_color("cinereous", "Cinereous", 152, 129, 123),
+ named_color("cinnabar", "Cinnabar", 227, 66, 52),
+ named_color("cinnamonsatin", "Cinnamon Satin", 205, 96, 126),
+ named_color("citrine", "Citrine", 228, 208, 10),
+ named_color("citron", "Citron", 159, 169, 31),
+ named_color("claret", "Claret", 127, 23, 52),
+ named_color("cobaltblue", "Cobalt blue", 0, 71, 171),
+ named_color("cocoabrown", "Cocoa brown", 210, 105, 30),
+ named_color("coffee", "Coffee", 111, 78, 55),
+ named_color("columbiablue", "Columbia Blue", 185, 217, 235),
+ named_color("congopink", "Congo pink", 248, 131, 121),
+ named_color("coolgrey", "Cool grey", 140, 146, 172),
+ named_color("copper", "Copper", 184, 115, 51),
+ named_color("coppercrayola", "Copper (Crayola)", 218, 138, 103),
+ named_color("copperpenny", "Copper penny", 173, 111, 105),
+ named_color("copperred", "Copper red", 203, 109, 81),
+ named_color("copperrose", "Copper rose", 153, 102, 102),
+ named_color("coquelicot", "Coquelicot", 255, 56, 0),
+ named_color("coral", "Coral", 255, 127, 80),
+ named_color("coral1", "Coral 1 (X11)", 255, 114, 86),
+ named_color("coral2", "Coral 2 (X11)", 238, 106, 80),
+ named_color("coral3", "Coral 3 (X11)", 205, 91, 69),
+ named_color("coral4", "Coral 4 (X11)", 139, 62, 47),
+ named_color("coralpink", "Coral pink", 248, 131, 121),
+ named_color("cordovan", "Cordovan", 137, 63, 69),
+ named_color("corn", "Corn", 251, 236, 93),
+ named_color("cornflowerblue", "Cornflower blue", 100, 149, 237),
+ named_color("cornsilk", "Cornsilk", 255, 248, 220),
+ named_color("cornsilk1", "Cornsilk 1 (X11)", 255, 248, 220),
+ named_color("cornsilk2", "Cornsilk 2 (X11)", 238, 232, 205),
+ named_color("cornsilk3", "Cornsilk 3 (X11)", 205, 200, 177),
+ named_color("cornsilk4", "Cornsilk 4 (X11)", 139, 136, 120),
+ named_color("cosmiccobalt", "Cosmic cobalt", 46, 45, 136),
+ named_color("cosmiclatte", "Cosmic latte", 255, 248, 231),
+ named_color("cottoncandy", "Cotton candy", 255, 188, 217),
+ named_color("coyotebrown", "Coyote brown", 129, 97, 60),
+ named_color("cream", "Cream", 255, 253, 208),
+ named_color("crimson", "Crimson", 220, 20, 60),
+ named_color("crimsonua", "Crimson (UA)", 158, 27, 50),
+ named_color("cultured", "Cultured", 245, 245, 245),
+ named_color("cyan", "Cyan", 0, 255, 255),
+ named_color("cyan1", "Cyan 1 (X11)", 0, 255, 255),
+ named_color("cyan2", "Cyan 2 (X11)", 0, 238, 238),
+ named_color("cyan3", "Cyan 3 (X11)", 0, 205, 205),
+ named_color("cyan4", "Cyan 4 (X11)", 0, 139, 139),
+ named_color("cyanprocess", "Cyan (process)", 0, 183, 235),
+ named_color("cybergrape", "Cyber grape", 88, 66, 124),
+ named_color("cyberyellow", "Cyber yellow", 255, 211, 0),
+ named_color("cyclamen", "Cyclamen", 245, 111, 161),
+ named_color("darkblue", "Dark blue", 0, 0, 139),
+ named_color("darkbluegray", "Dark blue-gray", 102, 102, 153),
+ named_color("darkbrown", "Dark brown", 101, 67, 33),
+ named_color("darkbyzantium", "Dark byzantium", 93, 57, 84),
+ named_color("darkcornflowerblue", "Dark cornflower blue", 38, 66, 139),
+ named_color("darkcyan", "Dark cyan", 0, 139, 139),
+ named_color("darkelectricblue", "Dark electric blue", 83, 104, 120),
+ named_color("darkgoldenrod", "Dark goldenrod", 184, 134, 11),
+ named_color("darkgoldenrod1", "Dark goldenrod 1 (X11)", 255, 185, 15),
+ named_color("darkgoldenrod2", "Dark goldenrod 2 (X11)", 238, 173, 14),
+ named_color("darkgoldenrod3", "Dark goldenrod 3 (X11)", 205, 149, 12),
+ named_color("darkgoldenrod4", "Dark goldenrod 4 (X11)", 139, 101, 8),
+ named_color("darkgray", "Dark gray (X11)", 169, 169, 169),
+ named_color("darkgreen", "Dark green", 1, 50, 32),
+ named_color("darkgreenx11", "Dark green (X11)", 0, 100, 0),
+ named_color("darkjunglegreen", "Dark jungle green", 26, 36, 33),
+ named_color("darkkhaki", "Dark khaki", 189, 183, 107),
+ named_color("darklava", "Dark lava", 72, 60, 50),
+ named_color("darkliver", "Dark liver", 83, 75, 79),
+ named_color("darkliverhorses", "Dark liver (horses)", 84, 61, 55),
+ named_color("darkmagenta", "Dark magenta", 139, 0, 139),
+ named_color("darkmossgreen", "Dark moss green", 74, 93, 35),
+ named_color("darkolivegreen", "Dark olive green", 85, 107, 47),
+ named_color("darkolivegreen1", "Dark olive green 1 (X11)", 202, 255, 112),
+ named_color("darkolivegreen2", "Dark olive green 2 (X11)", 188, 238, 104),
+ named_color("darkolivegreen3", "Dark olive green 3 (X11)", 162, 205, 90),
+ named_color("darkolivegreen4", "Dark olive green 4 (X11)", 110, 139, 61),
+ named_color("darkorange", "Dark orange", 255, 140, 0),
+ named_color("darkorange1", "Dark orange 1 (X11)", 255, 127, 0),
+ named_color("darkorange2", "Dark orange 2 (X11)", 238, 118, 0),
+ named_color("darkorange3", "Dark orange 3 (X11)", 205, 102, 0),
+ named_color("darkorange4", "Dark orange 4 (X11)", 139, 69, 0),
+ named_color("darkorchid", "Dark orchid", 153, 50, 204),
+ named_color("darkorchid1", "Dark orchid 1 (X11)", 191, 62, 255),
+ named_color("darkorchid2", "Dark orchid 2 (X11)", 178, 58, 238),
+ named_color("darkorchid3", "Dark orchid 3 (X11)", 154, 50, 205),
+ named_color("darkorchid4", "Dark orchid 4 (X11)", 104, 34, 139),
+ named_color("darkpastelgreen", "Dark pastel green", 3, 192, 60),
+ named_color("darkpurple", "Dark purple", 48, 25, 52),
+ named_color("darkred", "Dark red", 139, 0, 0),
+ named_color("darksalmon", "Dark salmon", 233, 150, 122),
+ named_color("darkseagreen", "Dark sea green", 143, 188, 143),
+ named_color("darkseagreen1", "Dark sea green 1 (X11)", 193, 255, 193),
+ named_color("darkseagreen2", "Dark sea green 2 (X11)", 180, 238, 180),
+ named_color("darkseagreen3", "Dark sea green 3 (X11)", 155, 205, 155),
+ named_color("darkseagreen4", "Dark sea green 4 (X11)", 105, 139, 105),
+ named_color("darksienna", "Dark sienna", 60, 20, 20),
+ named_color("darkskyblue", "Dark sky blue", 140, 190, 214),
+ named_color("darkslateblue", "Dark slate blue", 72, 61, 139),
+ named_color("darkslategray", "Dark slate gray", 47, 79, 79),
+ named_color("darkslategray1", "Dark slate gray 1 (X11)", 151, 255, 255),
+ named_color("darkslategray2", "Dark slate gray 2 (X11)", 141, 238, 238),
+ named_color("darkslategray3", "Dark slate gray 3 (X11)", 121, 205, 205),
+ named_color("darkslategray4", "Dark slate gray 4 (X11)", 82, 139, 139),
+ named_color("darkspringgreen", "Dark spring green", 23, 114, 69),
+ named_color("darkturquoise", "Dark turquoise", 0, 206, 209),
+ named_color("darkviolet", "Dark violet", 148, 0, 211),
+ named_color("dartmouthgreen", "Dartmouth green", 0, 112, 60),
+ named_color("davysgrey", "Davy's grey", 85, 85, 85),
+ named_color("deepcerise", "Deep cerise", 218, 50, 135),
+ named_color("deepchampagne", "Deep champagne", 250, 214, 165),
+ named_color("deepchestnut", "Deep chestnut", 185, 78, 72),
+ named_color("deepjunglegreen", "Deep jungle green", 0, 75, 73),
+ named_color("deeppink", "Deep pink", 255, 20, 147),
+ named_color("deeppink1", "Deep pink 1 (X11)", 255, 20, 147),
+ named_color("deeppink2", "Deep pink 2 (X11)", 238, 18, 137),
+ named_color("deeppink3", "Deep pink 3 (X11)", 205, 16, 118),
+ named_color("deeppink4", "Deep pink 4 (X11)", 139, 10, 80),
+ named_color("deepsaffron", "Deep saffron", 255, 153, 51),
+ named_color("deepskyblue", "Deep sky blue", 0, 191, 255),
+ named_color("deepskyblue1", "Deep sky blue 1 (X11)", 0, 191, 255),
+ named_color("deepskyblue2", "Deep sky blue 2 (X11)", 0, 178, 238),
+ named_color("deepskyblue3", "Deep sky blue 3 (X11)", 0, 154, 205),
+ named_color("deepskyblue4", "Deep sky blue 4 (X11)", 0, 104, 139),
+ named_color("deepspacesparkle", "Deep Space Sparkle", 74, 100, 108),
+ named_color("deeptaupe", "Deep taupe", 126, 94, 96),
+ named_color("denim", "Denim", 21, 96, 189),
+ named_color("denimblue", "Denim blue", 34, 67, 182),
+ named_color("desert", "Desert", 193, 154, 107),
+ named_color("desertsand", "Desert sand", 237, 201, 175),
+ named_color("dimgray", "Dim gray", 105, 105, 105),
+ named_color("dodgerblue", "Dodger blue", 30, 144, 255),
+ named_color("dodgerblue1", "Dodger blue 1 (X11)", 30, 144, 255),
+ named_color("dodgerblue2", "Dodger blue 2 (X11)", 28, 134, 238),
+ named_color("dodgerblue3", "Dodger blue 3 (X11)", 24, 116, 205),
+ named_color("dodgerblue4", "Dodger blue 4 (X11)", 16, 78, 139),
+ named_color("dogwoodrose", "Dogwood rose", 215, 24, 104),
+ named_color("drab", "Drab", 150, 113, 23),
+ named_color("dukeblue", "Duke blue", 0, 0, 156),
+ named_color("dutchwhite", "Dutch white", 239, 223, 187),
+ named_color("earthyellow", "Earth yellow", 225, 169, 95),
+ named_color("ebony", "Ebony", 85, 93, 80),
+ named_color("ecru", "Ecru", 194, 178, 128),
+ named_color("eerieblack", "Eerie black", 27, 27, 27),
+ named_color("eggplant", "Eggplant", 97, 64, 81),
+ named_color("eggshell", "Eggshell", 240, 234, 214),
+ named_color("egyptianblue", "Egyptian blue", 16, 52, 166),
+ named_color("electricblue", "Electric blue", 125, 249, 255),
+ named_color("electricgreen", "Electric green", 0, 255, 0),
+ named_color("electricindigo", "Electric indigo", 111, 0, 255),
+ named_color("electriclime", "Electric lime", 204, 255, 0),
+ named_color("electricpurple", "Electric purple", 191, 0, 255),
+ named_color("electricviolet", "Electric violet", 143, 0, 255),
+ named_color("emerald", "Emerald", 80, 200, 120),
+ named_color("eminence", "Eminence", 108, 48, 130),
+ named_color("englishgreen", "English green", 27, 77, 62),
+ named_color("englishlavender", "English lavender", 180, 131, 149),
+ named_color("englishred", "English red", 171, 75, 82),
+ named_color("englishvermillion", "English vermillion", 204, 71, 75),
+ named_color("englishviolet", "English violet", 86, 60, 92),
+ named_color("erin", "Erin", 0, 255, 64),
+ named_color("etonblue", "Eton blue", 150, 200, 162),
+ named_color("fallow", "Fallow", 193, 154, 107),
+ named_color("falured", "Falu red", 128, 24, 24),
+ named_color("fandango", "Fandango", 181, 51, 137),
+ named_color("fandangopink", "Fandango pink", 222, 82, 133),
+ named_color("fashionfuchsia", "Fashion fuchsia", 244, 0, 161),
+ named_color("fawn", "Fawn", 229, 170, 112),
+ named_color("feldgrau", "Feldgrau", 77, 93, 83),
+ named_color("ferngreen", "Fern green", 79, 121, 66),
+ named_color("fielddrab", "Field drab", 108, 84, 30),
+ named_color("fieryrose", "Fiery rose", 255, 84, 112),
+ named_color("firebrick", "Firebrick", 178, 34, 34),
+ named_color("firebrick1", "Firebrick 1 (X11)", 255, 48, 48),
+ named_color("firebrick2", "Firebrick 2 (X11)", 238, 44, 44),
+ named_color("firebrick3", "Firebrick 3 (X11)", 205, 38, 38),
+ named_color("firebrick4", "Firebrick 4 (X11)", 139, 26, 26),
+ named_color("fireenginered", "Fire engine red", 206, 32, 41),
+ named_color("fireopal", "Fire opal", 233, 92, 75),
+ named_color("flame", "Flame", 226, 88, 34),
+ named_color("flax", "Flax", 238, 220, 130),
+ named_color("flickrblue", "Flickr Blue", 0, 99, 220),
+ named_color("flickrpink", "Flickr Pink", 251, 0, 129),
+ named_color("flirt", "Flirt", 162, 0, 109),
+ named_color("floralwhite", "Floral white", 255, 250, 240),
+ named_color("fluorescentblue", "Fluorescent blue", 21, 244, 238),
+ named_color("forestgreen", "Forest green (traditional)", 1, 68, 33),
+ named_color("forestgreencrayola", "Forest green (Crayola)", 95, 167, 119),
+ named_color("forestgreenweb", "Forest green (web)", 34, 139, 34),
+ named_color("frenchbeige", "French beige", 166, 123, 91),
+ named_color("frenchbistre", "French bistre", 133, 109, 77),
+ named_color("frenchblue", "French blue", 0, 114, 187),
+ named_color("frenchfuchsia", "French fuchsia", 253, 63, 146),
+ named_color("frenchlilac", "French lilac", 134, 96, 142),
+ named_color("frenchlime", "French lime", 158, 253, 56),
+ named_color("frenchmauve", "French mauve", 212, 115, 212),
+ named_color("frenchpink", "French pink", 253, 108, 158),
+ named_color("frenchraspberry", "French raspberry", 199, 44, 72),
+ named_color("frenchrose", "French rose", 246, 74, 138),
+ named_color("frenchskyblue", "French sky blue", 119, 181, 254),
+ named_color("frenchviolet", "French violet", 136, 6, 206),
+ named_color("frostbite", "Frostbite", 233, 54, 167),
+ named_color("fuchsia", "Fuchsia", 255, 0, 255),
+ named_color("fuchsiacrayola", "Fuchsia (Crayola)", 193, 84, 193),
+ named_color("fuchsiapurple", "Fuchsia purple", 204, 57, 123),
+ named_color("fuchsiarose", "Fuchsia rose", 199, 67, 117),
+ named_color("fulvous", "Fulvous", 228, 132, 0),
+ named_color("fuzzywuzzy", "Fuzzy Wuzzy", 204, 102, 102),
+ named_color("gainsboro", "Gainsboro", 220, 220, 220),
+ named_color("gamboge", "Gamboge", 228, 155, 15),
+ named_color("genericviridian", "Generic viridian", 0, 127, 102),
+ named_color("ghostwhite", "Ghost white", 248, 248, 255),
+ named_color("glaucous", "Glaucous", 96, 130, 182),
+ named_color("glossygrape", "Glossy grape", 171, 146, 179),
+ named_color("gogreen", "GO green", 0, 171, 102),
+ named_color("gold", "Gold", 165, 124, 0),
+ named_color("gold1", "Gold 1 (X11)", 255, 215, 0),
+ named_color("gold2", "Gold 2 (X11)", 238, 201, 0),
+ named_color("gold3", "Gold 3 (X11)", 205, 173, 0),
+ named_color("gold4", "Gold 4 (X11)", 139, 117, 0),
+ named_color("goldcrayola", "Gold (Crayola)", 230, 190, 138),
+ named_color("goldenbrown", "Golden brown", 153, 101, 21),
+ named_color("goldenpoppy", "Golden poppy", 252, 194, 0),
+ named_color("goldenrod", "Goldenrod", 218, 165, 32),
+ named_color("goldenrod1", "Goldenrod 1 (X11)", 255, 193, 37),
+ named_color("goldenrod2", "Goldenrod 2 (X11)", 238, 180, 34),
+ named_color("goldenrod3", "Goldenrod 3 (X11)", 205, 155, 29),
+ named_color("goldenrod4", "Goldenrod 4 (X11)", 139, 105, 20),
+ named_color("goldenyellow", "Golden yellow", 255, 223, 0),
+ named_color("goldfusion", "Gold Fusion", 133, 117, 78),
+ named_color("goldmetallic", "Gold (metallic)", 212, 175, 55),
+ named_color("goldwebgolden", "Gold (web) (Golden)", 255, 215, 0),
+ named_color("goldx11", "Gold (X11)", 255, 215, 0),
+ named_color("granitegray", "Granite gray", 103, 103, 103),
+ named_color("grannysmithapple", "Granny Smith apple", 168, 228, 160),
+ named_color("gray", "Gray (X11)", 190, 190, 190),
+ named_color("gray0", "Gray 0 (X11)", 0, 0, 0),
+ named_color("gray1", "Gray 1 (X11)", 3, 3, 3),
+ named_color("gray2", "Gray 2 (X11)", 5, 5, 5),
+ named_color("gray3", "Gray 3 (X11)", 8, 8, 8),
+ named_color("gray4", "Gray 4 (X11)", 10, 10, 10),
+ named_color("gray5", "Gray 5 (X11)", 13, 13, 13),
+ named_color("gray6", "Gray 6 (X11)", 15, 15, 15),
+ named_color("gray7", "Gray 7 (X11)", 18, 18, 18),
+ named_color("gray8", "Gray 8 (X11)", 20, 20, 20),
+ named_color("gray9", "Gray 9 (X11)", 23, 23, 23),
+ named_color("gray10", "Gray 10 (X11)", 26, 26, 26),
+ named_color("gray11", "Gray 11 (X11)", 28, 28, 28),
+ named_color("gray12", "Gray 12 (X11)", 31, 31, 31),
+ named_color("gray13", "Gray 13 (X11)", 33, 33, 33),
+ named_color("gray14", "Gray 14 (X11)", 36, 36, 36),
+ named_color("gray15", "Gray 15 (X11)", 38, 38, 38),
+ named_color("gray16", "Gray 16 (X11)", 41, 41, 41),
+ named_color("gray17", "Gray 17 (X11)", 43, 43, 43),
+ named_color("gray18", "Gray 18 (X11)", 46, 46, 46),
+ named_color("gray19", "Gray 19 (X11)", 48, 48, 48),
+ named_color("gray20", "Gray 20 (X11)", 51, 51, 51),
+ named_color("gray21", "Gray 21 (X11)", 54, 54, 54),
+ named_color("gray22", "Gray 22 (X11)", 56, 56, 56),
+ named_color("gray23", "Gray 23 (X11)", 59, 59, 59),
+ named_color("gray24", "Gray 24 (X11)", 61, 61, 61),
+ named_color("gray25", "Gray 25 (X11)", 64, 64, 64),
+ named_color("gray26", "Gray 26 (X11)", 66, 66, 66),
+ named_color("gray27", "Gray 27 (X11)", 69, 69, 69),
+ named_color("gray28", "Gray 28 (X11)", 71, 71, 71),
+ named_color("gray29", "Gray 29 (X11)", 74, 74, 74),
+ named_color("gray30", "Gray 30 (X11)", 77, 77, 77),
+ named_color("gray31", "Gray 31 (X11)", 79, 79, 79),
+ named_color("gray32", "Gray 32 (X11)", 82, 82, 82),
+ named_color("gray33", "Gray 33 (X11)", 84, 84, 84),
+ named_color("gray34", "Gray 34 (X11)", 87, 87, 87),
+ named_color("gray35", "Gray 35 (X11)", 89, 89, 89),
+ named_color("gray36", "Gray 36 (X11)", 92, 92, 92),
+ named_color("gray37", "Gray 37 (X11)", 94, 94, 94),
+ named_color("gray38", "Gray 38 (X11)", 97, 97, 97),
+ named_color("gray39", "Gray 39 (X11)", 99, 99, 99),
+ named_color("gray40", "Gray 40 (X11)", 102, 102, 102),
+ named_color("gray41", "Gray 41 (X11)", 105, 105, 105),
+ named_color("gray42", "Gray 42 (X11)", 107, 107, 107),
+ named_color("gray43", "Gray 43 (X11)", 110, 110, 110),
+ named_color("gray44", "Gray 44 (X11)", 112, 112, 112),
+ named_color("gray45", "Gray 45 (X11)", 115, 115, 115),
+ named_color("gray46", "Gray 46 (X11)", 117, 117, 117),
+ named_color("gray47", "Gray 47 (X11)", 120, 120, 120),
+ named_color("gray48", "Gray 48 (X11)", 122, 122, 122),
+ named_color("gray49", "Gray 49 (X11)", 125, 125, 125),
+ named_color("gray50", "Gray 50 (X11)", 127, 127, 127),
+ named_color("gray51", "Gray 51 (X11)", 130, 130, 130),
+ named_color("gray52", "Gray 52 (X11)", 133, 133, 133),
+ named_color("gray53", "Gray 53 (X11)", 135, 135, 135),
+ named_color("gray54", "Gray 54 (X11)", 138, 138, 138),
+ named_color("gray55", "Gray 55 (X11)", 140, 140, 140),
+ named_color("gray56", "Gray 56 (X11)", 143, 143, 143),
+ named_color("gray57", "Gray 57 (X11)", 145, 145, 145),
+ named_color("gray58", "Gray 58 (X11)", 148, 148, 148),
+ named_color("gray59", "Gray 59 (X11)", 150, 150, 150),
+ named_color("gray60", "Gray 60 (X11)", 153, 153, 153),
+ named_color("gray61", "Gray 61 (X11)", 156, 156, 156),
+ named_color("gray62", "Gray 62 (X11)", 158, 158, 158),
+ named_color("gray63", "Gray 63 (X11)", 161, 161, 161),
+ named_color("gray64", "Gray 64 (X11)", 163, 163, 163),
+ named_color("gray65", "Gray 65 (X11)", 166, 166, 166),
+ named_color("gray66", "Gray 66 (X11)", 168, 168, 168),
+ named_color("gray67", "Gray 67 (X11)", 171, 171, 171),
+ named_color("gray68", "Gray 68 (X11)", 173, 173, 173),
+ named_color("gray69", "Gray 69 (X11)", 176, 176, 176),
+ named_color("gray70", "Gray 70 (X11)", 179, 179, 179),
+ named_color("gray71", "Gray 71 (X11)", 181, 181, 181),
+ named_color("gray72", "Gray 72 (X11)", 184, 184, 184),
+ named_color("gray73", "Gray 73 (X11)", 186, 186, 186),
+ named_color("gray74", "Gray 74 (X11)", 189, 189, 189),
+ named_color("gray75", "Gray 75 (X11)", 191, 191, 191),
+ named_color("gray76", "Gray 76 (X11)", 194, 194, 194),
+ named_color("gray77", "Gray 77 (X11)", 196, 196, 196),
+ named_color("gray78", "Gray 78 (X11)", 199, 199, 199),
+ named_color("gray79", "Gray 79 (X11)", 201, 201, 201),
+ named_color("gray80", "Gray 80 (X11)", 204, 204, 204),
+ named_color("gray81", "Gray 81 (X11)", 207, 207, 207),
+ named_color("gray82", "Gray 82 (X11)", 209, 209, 209),
+ named_color("gray83", "Gray 83 (X11)", 212, 212, 212),
+ named_color("gray84", "Gray 84 (X11)", 214, 214, 214),
+ named_color("gray85", "Gray 85 (X11)", 217, 217, 217),
+ named_color("gray86", "Gray 86 (X11)", 219, 219, 219),
+ named_color("gray87", "Gray 87 (X11)", 222, 222, 222),
+ named_color("gray88", "Gray 88 (X11)", 224, 224, 224),
+ named_color("gray89", "Gray 89 (X11)", 227, 227, 227),
+ named_color("gray90", "Gray 90 (X11)", 229, 229, 229),
+ named_color("gray91", "Gray 91 (X11)", 232, 232, 232),
+ named_color("gray92", "Gray 92 (X11)", 235, 235, 235),
+ named_color("gray93", "Gray 93 (X11)", 237, 237, 237),
+ named_color("gray94", "Gray 94 (X11)", 240, 240, 240),
+ named_color("gray95", "Gray 95 (X11)", 242, 242, 242),
+ named_color("gray96", "Gray 96 (X11)", 245, 245, 245),
+ named_color("gray97", "Gray 97 (X11)", 247, 247, 247),
+ named_color("gray98", "Gray 98 (X11)", 250, 250, 250),
+ named_color("gray99", "Gray 99 (X11)", 252, 252, 252),
+ named_color("gray100", "Gray 100 (X11)", 255, 255, 255),
+ named_color("grayweb", "Gray (web)", 128, 128, 128),
+ named_color("green", "Green", 0, 255, 0),
+ named_color("green1", "Green 1 (X11)", 0, 255, 0),
+ named_color("green2", "Green 2 (X11)", 0, 238, 0),
+ named_color("green3", "Green 3 (X11)", 0, 205, 0),
+ named_color("green4", "Green 4 (X11)", 0, 139, 0),
+ named_color("greenblue", "Green-blue", 17, 100, 180),
+ named_color("greenbluecrayola", "Green-blue (Crayola)", 40, 135, 200),
+ named_color("greencrayola", "Green (Crayola)", 28, 172, 120),
+ named_color("greencyan", "Green-cyan", 0, 153, 102),
+ named_color("greenlizard", "Green Lizard", 167, 244, 50),
+ named_color("greenmunsell", "Green (Munsell)", 0, 168, 119),
+ named_color("greenncs", "Green (NCS)", 0, 159, 107),
+ named_color("greenpantone", "Green (Pantone)", 0, 173, 67),
+ named_color("greenpigment", "Green (pigment)", 0, 165, 80),
+ named_color("greenryb", "Green (RYB)", 102, 176, 50),
+ named_color("greensheen", "Green Sheen", 110, 174, 161),
+ named_color("greenweb", "Green (web)", 0, 128, 0),
+ named_color("greenyellow", "Green-yellow", 173, 255, 47),
+ named_color("greenyellowcrayola", "Green-yellow (Crayola)", 240, 232, 145),
+ named_color("grullo", "Grullo", 169, 154, 134),
+ named_color("gunmetal", "Gunmetal", 42, 52, 57),
+ named_color("hanblue", "Han blue", 68, 108, 207),
+ named_color("hanpurple", "Han purple", 82, 24, 250),
+ named_color("hansayellow", "Hansa yellow", 233, 214, 107),
+ named_color("harlequin", "Harlequin", 63, 255, 0),
+ named_color("harvestgold", "Harvest gold", 218, 145, 0),
+ named_color("heatwave", "Heat Wave", 255, 122, 0),
+ named_color("heliotrope", "Heliotrope", 223, 115, 255),
+ named_color("heliotropegray", "Heliotrope gray", 170, 152, 169),
+ named_color("hollywoodcerise", "Hollywood cerise", 244, 0, 161),
+ named_color("honeydew", "Honeydew", 240, 255, 240),
+ named_color("honeydew1", "Honeydew 1 (X11)", 240, 255, 240),
+ named_color("honeydew2", "Honeydew 2 (X11)", 224, 238, 224),
+ named_color("honeydew3", "Honeydew 3 (X11)", 193, 205, 193),
+ named_color("honeydew4", "Honeydew 4 (X11)", 131, 139, 131),
+ named_color("honolulublue", "Honolulu blue", 0, 109, 176),
+ named_color("hookersgreen", "Hooker's green", 73, 121, 107),
+ named_color("hotmagenta", "Hot magenta", 255, 29, 206),
+ named_color("hotpink", "Hot pink", 255, 105, 180),
+ named_color("hotpink1", "Hotpink1 (X11)", 255, 110, 180),
+ named_color("hotpink2", "Hotpink2 (X11)", 238, 106, 167),
+ named_color("hotpink3", "Hotpink3 (X11)", 205, 96, 144),
+ named_color("hotpink4", "Hotpink4 (X11)", 139, 58, 98),
+ named_color("huntergreen", "Hunter green", 53, 94, 59),
+ named_color("iceberg", "Iceberg", 113, 166, 210),
+ named_color("icterine", "Icterine", 252, 247, 94),
+ named_color("illuminatingemerald", "Illuminating emerald", 49, 145, 119),
+ named_color("imperialred", "Imperial red", 237, 41, 57),
+ named_color("inchworm", "Inchworm", 178, 236, 93),
+ named_color("independence", "Independence", 76, 81, 109),
+ named_color("indiagreen", "India green", 19, 136, 8),
+ named_color("indianred", "Indian red", 205, 92, 92),
+ named_color("indianred1", "Indian red 1 (X11)", 255, 106, 106),
+ named_color("indianred2", "Indian red 2 (X11)", 238, 99, 99),
+ named_color("indianred3", "Indian red 3 (X11)", 205, 85, 85),
+ named_color("indianred4", "Indian red 4 (X11)", 139, 58, 58),
+ named_color("indianyellow", "Indian yellow", 227, 168, 87),
+ named_color("indigo", "Indigo", 75, 0, 130),
+ named_color("indigodye", "Indigo dye", 0, 65, 106),
+ named_color("internationalkleinblue", "International Klein Blue", 0, 47, 167),
+ named_color("internationalorangeaerospace", "International orange (aerospace)", 255, 79, 0),
+ named_color("internationalorangeengineering", "International orange (engineering)", 186, 22, 12),
+ named_color("internationalorangegoldengatebridge", "International orange (Golden Gate Bridge)", 192, 54, 44),
+ named_color("iris", "Iris", 90, 79, 207),
+ named_color("irresistible", "Irresistible", 179, 68, 108),
+ named_color("isabelline", "Isabelline", 244, 240, 236),
+ named_color("italianskyblue", "Italian sky blue", 178, 255, 255),
+ named_color("ivory", "Ivory", 255, 255, 240),
+ named_color("ivory1", "Ivory 1 (X11)", 255, 255, 240),
+ named_color("ivory2", "Ivory 2 (X11)", 238, 238, 224),
+ named_color("ivory3", "Ivory 3 (X11)", 205, 205, 193),
+ named_color("ivory4", "Ivory 4 (X11)", 139, 139, 131),
+ named_color("jade", "Jade", 0, 168, 107),
+ named_color("jasmine", "Jasmine", 248, 222, 126),
+ named_color("jazzberryjam", "Jazzberry jam", 165, 11, 94),
+ named_color("jet", "Jet", 52, 52, 52),
+ named_color("jonquil", "Jonquil", 244, 202, 22),
+ named_color("junebud", "June bud", 189, 218, 87),
+ named_color("junglegreen", "Jungle green", 41, 171, 135),
+ named_color("kellygreen", "Kelly green", 76, 187, 23),
+ named_color("keppel", "Keppel", 58, 176, 158),
+ named_color("keylime", "Key lime", 232, 244, 140),
+ named_color("khakix11", "Khaki (X11)", 240, 230, 140),
+ named_color("khaki1", "Khaki 1 (X11)", 255, 246, 143),
+ named_color("khaki2", "Khaki 2 (X11)", 238, 230, 133),
+ named_color("khaki3", "Khaki 3 (X11)", 205, 198, 115),
+ named_color("khaki4", "Khaki 4 (X11)", 139, 134, 78),
+ named_color("khakiweb", "Khaki (web)", 195, 176, 145),
+ named_color("kobe", "Kobe", 136, 45, 23),
+ named_color("kobi", "Kobi", 231, 159, 196),
+ named_color("kobicha", "Kobicha", 107, 68, 35),
+ named_color("kombugreen", "Kombu green", 53, 66, 48),
+ named_color("ksupurple", "KSU purple", 81, 40, 136),
+ named_color("languidlavender", "Languid lavender", 214, 202, 221),
+ named_color("lapislazuli", "Lapis lazuli", 38, 97, 156),
+ named_color("laserlemon", "Laser lemon", 255, 255, 102),
+ named_color("laurelgreen", "Laurel green", 169, 186, 157),
+ named_color("lava", "Lava", 207, 16, 32),
+ named_color("lavender", "Lavender (X11/web)", 230, 230, 250),
+ named_color("lavenderblue", "Lavender blue", 204, 204, 255),
+ named_color("lavenderblush", "Lavender blush", 255, 240, 245),
+ named_color("lavenderblush1", "Lavender blush 1 (X11)", 255, 240, 245),
+ named_color("lavenderblush2", "Lavender blush 2 (X11)", 238, 224, 229),
+ named_color("lavenderblush3", "Lavender blush 3 (X11)", 205, 193, 197),
+ named_color("lavenderblush4", "Lavender blush 4 (X11)", 139, 131, 134),
+ named_color("lavenderfloral", "Lavender (floral)", 181, 126, 220),
+ named_color("lavendergray", "Lavender gray", 196, 195, 208),
+ named_color("lawngreen", "Lawn green", 124, 252, 0),
+ named_color("lemon", "Lemon", 255, 247, 0),
+ named_color("lemonchiffon", "Lemon chiffon", 255, 250, 205),
+ named_color("lemonchiffon1", "Lemon chiffon 1 (X11)", 255, 250, 205),
+ named_color("lemonchiffon2", "Lemon chiffon 2 (X11)", 238, 233, 191),
+ named_color("lemonchiffon3", "Lemon chiffon 3 (X11)", 205, 201, 165),
+ named_color("lemonchiffon4", "Lemon chiffon 4 (X11)", 139, 137, 112),
+ named_color("lemoncurry", "Lemon curry", 204, 160, 29),
+ named_color("lemonglacier", "Lemon glacier", 253, 255, 0),
+ named_color("lemonmeringue", "Lemon meringue", 246, 234, 190),
+ named_color("lemonyellow", "Lemon yellow", 255, 244, 79),
+ named_color("lemonyellowcrayola", "Lemon yellow (Crayola)", 255, 255, 159),
+ named_color("liberty", "Liberty", 84, 90, 167),
+ named_color("lightblue", "Light blue", 173, 216, 230),
+ named_color("lightblue1", "Light blue 1 (X11)", 191, 239, 255),
+ named_color("lightblue2", "Light blue 2 (X11)", 178, 223, 238),
+ named_color("lightblue3", "Light blue 3 (X11)", 154, 192, 205),
+ named_color("lightblue4", "Light blue 4 (X11)", 104, 131, 139),
+ named_color("lightcoral", "Light coral", 240, 128, 128),
+ named_color("lightcornflowerblue", "Light cornflower blue", 147, 204, 234),
+ named_color("lightcyan", "Light cyan", 224, 255, 255),
+ named_color("lightcyan1", "Light cyan 1 (X11)", 224, 255, 255),
+ named_color("lightcyan2", "Light cyan 2 (X11)", 209, 238, 238),
+ named_color("lightcyan3", "Light cyan 3 (X11)", 180, 205, 205),
+ named_color("lightcyan4", "Light cyan 4 (X11)", 122, 139, 139),
+ named_color("lightfrenchbeige", "Light French beige", 200, 173, 127),
+ named_color("lightgoldenrod", "Light goldenrod (X11)", 238, 221, 130),
+ named_color("lightgoldenrod1", "Light goldenrod 1 (X11)", 255, 236, 139),
+ named_color("lightgoldenrod2", "Light goldenrod 2 (X11)", 238, 220, 130),
+ named_color("lightgoldenrod3", "Light goldenrod 3 (X11)", 205, 190, 112),
+ named_color("lightgoldenrod4", "Light goldenrod 4 (X11)", 139, 129, 76),
+ named_color("lightgoldenrodyellow", "Light goldenrod yellow", 250, 250, 210),
+ named_color("lightgray", "Light gray", 211, 211, 211),
+ named_color("lightgreen", "Light green", 144, 238, 144),
+ named_color("lightkhaki", "Light khaki", 240, 230, 140),
+ named_color("lightorange", "Light orange", 254, 216, 177),
+ named_color("lightperiwinkle", "Light periwinkle", 197, 203, 225),
+ named_color("lightpink", "Light pink", 255, 182, 193),
+ named_color("lightpink1", "Light pink 1 (X11)", 255, 174, 185),
+ named_color("lightpink2", "Light pink 2 (X11)", 238, 162, 173),
+ named_color("lightpink3", "Light pink 3 (X11)", 205, 140, 149),
+ named_color("lightpink4", "Light pink 4 (X11)", 139, 95, 101),
+ named_color("lightsalmon", "Light salmon", 255, 160, 122),
+ named_color("lightsalmon1", "Light salmon 1 (X11)", 255, 160, 122),
+ named_color("lightsalmon2", "Light salmon 2 (X11)", 238, 149, 114),
+ named_color("lightsalmon3", "Light salmon 3 (X11)", 205, 129, 98),
+ named_color("lightsalmon4", "Light salmon 4 (X11)", 139, 87, 66),
+ named_color("lightseagreen", "Light sea green", 32, 178, 170),
+ named_color("lightskyblue", "Light sky blue", 135, 206, 250),
+ named_color("lightskyblue1", "Light sky blue 1 (X11)", 176, 226, 255),
+ named_color("lightskyblue2", "Light sky blue 2 (X11)", 164, 211, 238),
+ named_color("lightskyblue3", "Light sky blue 3 (X11)", 141, 182, 205),
+ named_color("lightskyblue4", "Light sky blue 4 (X11)", 96, 123, 139),
+ named_color("lightslategray", "Light slate gray", 119, 136, 153),
+ named_color("lightsteelblue", "Light steel blue", 176, 196, 222),
+ named_color("lightsteelblue1", "Light steel blue 1 (X11)", 202, 225, 255),
+ named_color("lightsteelblue2", "Light steel blue 2 (X11)", 188, 210, 238),
+ named_color("lightsteelblue3", "Light steel blue 3 (X11)", 162, 181, 205),
+ named_color("lightsteelblue4", "Light steel blue 4 (X11)", 110, 123, 139),
+ named_color("lightyellow", "Light yellow", 255, 255, 224),
+ named_color("lightyellow1", "Light yellow 1 (X11)", 255, 255, 224),
+ named_color("lightyellow2", "Light yellow 2 (X11)", 238, 238, 209),
+ named_color("lightyellow3", "Light yellow 3 (X11)", 205, 205, 180),
+ named_color("lightyellow4", "Light yellow 4 (X11)", 139, 139, 122),
+ named_color("lilac", "Lilac", 200, 162, 200),
+ named_color("lilacluster", "Lilac Luster", 174, 152, 170),
+ named_color("lime", "Lime", 0, 255, 0),
+ named_color("limecolorwheel", "Lime (color wheel)", 191, 255, 0),
+ named_color("limegreen", "Lime green", 50, 205, 50),
+ named_color("lincolngreen", "Lincoln green", 25, 89, 5),
+ named_color("linen", "Linen", 250, 240, 230),
+ named_color("lion", "Lion", 193, 154, 107),
+ named_color("liseranpurple", "Liseran purple", 222, 111, 161),
+ named_color("littleboyblue", "Little boy blue", 108, 160, 220),
+ named_color("liver", "Liver", 103, 76, 71),
+ named_color("liverchestnut", "Liver chestnut", 152, 116, 86),
+ named_color("liverdogs", "Liver (dogs)", 184, 109, 41),
+ named_color("liverorgan", "Liver (organ)", 108, 46, 31),
+ named_color("livid", "Livid", 102, 153, 204),
+ named_color("macaroniandcheese", "Macaroni and Cheese", 255, 189, 136),
+ named_color("madderlake", "Madder Lake", 204, 51, 54),
+ named_color("magenta", "Magenta", 255, 0, 255),
+ named_color("magenta1", "Magenta 1 (X11)", 255, 0, 255),
+ named_color("magenta2", "Magenta 2 (X11)", 238, 0, 238),
+ named_color("magenta3", "Magenta 3 (X11)", 205, 0, 205),
+ named_color("magenta4", "Magenta 4 (X11)", 139, 0, 139),
+ named_color("magentacrayola", "Magenta (Crayola)", 246, 83, 166),
+ named_color("magentadye", "Magenta (dye)", 202, 31, 123),
+ named_color("magentahaze", "Magenta haze", 159, 69, 118),
+ named_color("magentapantone", "Magenta (Pantone)", 208, 65, 126),
+ named_color("magentaprocess", "Magenta (process)", 255, 0, 144),
+ named_color("magicmint", "Magic mint", 170, 240, 209),
+ named_color("magnolia", "Magnolia", 248, 244, 255),
+ named_color("mahogany", "Mahogany", 192, 64, 0),
+ named_color("maize", "Maize", 251, 236, 93),
+ named_color("maizecrayola", "Maize (Crayola)", 242, 198, 73),
+ named_color("majorelleblue", "Majorelle blue", 96, 80, 220),
+ named_color("malachite", "Malachite", 11, 218, 81),
+ named_color("manatee", "Manatee", 151, 154, 170),
+ named_color("mandarin", "Mandarin", 243, 122, 72),
+ named_color("mango", "Mango", 253, 190, 2),
+ named_color("mangotango", "Mango Tango", 255, 130, 67),
+ named_color("mantis", "Mantis", 116, 195, 101),
+ named_color("mardigras", "Mardi Gras", 136, 0, 133),
+ named_color("marigold", "Marigold", 234, 162, 33),
+ named_color("marooncrayola", "Maroon (Crayola)", 195, 33, 72),
+ named_color("maroonweb", "Maroon (web)", 128, 0, 0),
+ named_color("maroonx11", "Maroon (X11)", 176, 48, 96),
+ named_color("maroon1", "Maroon 1 (X11)", 255, 52, 179),
+ named_color("maroon2", "Maroon 2 (X11)", 238, 48, 167),
+ named_color("maroon3", "Maroon 3 (X11)", 205, 41, 144),
+ named_color("maroon4", "Maroon 4 (X11)", 139, 28, 98),
+ named_color("mauve", "Mauve", 224, 176, 255),
+ named_color("mauvelous", "Mauvelous", 239, 152, 170),
+ named_color("mauvetaupe", "Mauve taupe", 145, 95, 109),
+ named_color("maximumblue", "Maximum blue", 71, 171, 204),
+ named_color("maximumbluegreen", "Maximum blue green", 48, 191, 191),
+ named_color("maximumbluepurple", "Maximum blue purple", 172, 172, 230),
+ named_color("maximumgreen", "Maximum green", 94, 140, 49),
+ named_color("maximumgreenyellow", "Maximum green yellow", 217, 230, 80),
+ named_color("maximumpurple", "Maximum purple", 115, 51, 128),
+ named_color("maximumred", "Maximum red", 217, 33, 33),
+ named_color("maximumredpurple", "Maximum red purple", 166, 58, 121),
+ named_color("maximumyellow", "Maximum yellow", 250, 250, 55),
+ named_color("maximumyellowred", "Maximum yellow red", 242, 186, 73),
+ named_color("mayablue", "Maya blue", 115, 194, 251),
+ named_color("maygreen", "May green", 76, 145, 65),
+ named_color("mediumaquamarine", "Medium aquamarine", 102, 221, 170),
+ named_color("mediumblue", "Medium blue", 0, 0, 205),
+ named_color("mediumcandyapplered", "Medium candy apple red", 226, 6, 44),
+ named_color("mediumcarmine", "Medium carmine", 175, 64, 53),
+ named_color("mediumchampagne", "Medium champagne", 243, 229, 171),
+ named_color("mediumorchid", "Medium orchid", 186, 85, 211),
+ named_color("mediumorchid1", "Medium orchid 1 (X11)", 224, 102, 255),
+ named_color("mediumorchid2", "Medium orchid 2 (X11)", 209, 95, 238),
+ named_color("mediumorchid3", "Medium orchid 3 (X11)", 180, 82, 205),
+ named_color("mediumorchid4", "Medium orchid 4 (X11)", 122, 55, 139),
+ named_color("mediumpurple", "Medium purple", 147, 112, 219),
+ named_color("mediumpurple1", "Medium purple 1 (X11)", 171, 130, 255),
+ named_color("mediumpurple2", "Medium purple 2 (X11)", 159, 121, 238),
+ named_color("mediumpurple3", "Medium purple 3 (X11)", 137, 104, 205),
+ named_color("mediumpurple4", "Medium purple 4 (X11)", 93, 71, 139),
+ named_color("mediumseagreen", "Medium sea green", 60, 179, 113),
+ named_color("mediumslateblue", "Medium slate blue", 123, 104, 238),
+ named_color("mediumspringgreen", "Medium spring green", 0, 250, 154),
+ named_color("mediumturquoise", "Medium turquoise", 72, 209, 204),
+ named_color("mediumvioletred", "Medium violet-red", 199, 21, 133),
+ named_color("mellowapricot", "Mellow apricot", 248, 184, 120),
+ named_color("mellowyellow", "Mellow yellow", 248, 222, 126),
+ named_color("melon", "Melon", 254, 186, 173),
+ named_color("metallicgold", "Metallic gold", 211, 175, 55),
+ named_color("metallicseaweed", "Metallic Seaweed", 10, 126, 140),
+ named_color("metallicsunburst", "Metallic Sunburst", 156, 124, 56),
+ named_color("mexicanpink", "Mexican pink", 228, 0, 124),
+ named_color("middleblue", "Middle blue", 126, 212, 230),
+ named_color("middlebluegreen", "Middle blue green", 141, 217, 204),
+ named_color("middlebluepurple", "Middle blue purple", 139, 114, 190),
+ named_color("middlegreen", "Middle green", 77, 140, 87),
+ named_color("middlegreenyellow", "Middle green yellow", 172, 191, 96),
+ named_color("middlegrey", "Middle grey", 139, 134, 128),
+ named_color("middlepurple", "Middle purple", 217, 130, 181),
+ named_color("middlered", "Middle red", 229, 142, 115),
+ named_color("middleredpurple", "Middle red purple", 165, 83, 83),
+ named_color("middleyellow", "Middle yellow", 255, 235, 0),
+ named_color("middleyellowred", "Middle yellow red", 236, 177, 118),
+ named_color("midnight", "Midnight", 112, 38, 112),
+ named_color("midnightblue", "Midnight blue", 25, 25, 112),
+ named_color("midnightgreeneaglegreen", "Midnight green (eagle green)", 0, 73, 83),
+ named_color("mikadoyellow", "Mikado yellow", 255, 196, 12),
+ named_color("mimipink", "Mimi pink", 255, 218, 233),
+ named_color("mindaro", "Mindaro", 227, 249, 136),
+ named_color("ming", "Ming", 54, 116, 125),
+ named_color("minionyellow", "Minion yellow", 245, 224, 80),
+ named_color("mint", "Mint", 62, 180, 137),
+ named_color("mintcream", "Mint cream", 245, 255, 250),
+ named_color("mintgreen", "Mint green", 152, 255, 152),
+ named_color("mistymoss", "Misty moss", 187, 180, 119),
+ named_color("mistyrose", "Misty rose", 255, 228, 225),
+ named_color("mistyrose1", "Mistyrose 1 (X11)", 255, 228, 225),
+ named_color("mistyrose2", "Mistyrose 2 (X11)", 238, 213, 210),
+ named_color("mistyrose3", "Mistyrose 3 (X11)", 205, 183, 181),
+ named_color("mistyrose4", "Mistyrose 4 (X11)", 139, 125, 123),
+ named_color("moccasin", "Moccasin", 255, 228, 181),
+ named_color("modebeige", "Mode beige", 150, 113, 23),
+ named_color("morningblue", "Morning blue", 141, 163, 153),
+ named_color("mossgreen", "Moss green", 138, 154, 91),
+ named_color("mountainmeadow", "Mountain Meadow", 48, 186, 143),
+ named_color("mountbattenpink", "Mountbatten pink", 153, 122, 141),
+ named_color("msugreen", "MSU green", 24, 69, 59),
+ named_color("mulberry", "Mulberry", 197, 75, 140),
+ named_color("mulberrycrayola", "Mulberry (Crayola)", 200, 80, 155),
+ named_color("mustard", "Mustard", 255, 219, 88),
+ named_color("myrtlegreen", "Myrtle green", 49, 120, 115),
+ named_color("mystic", "Mystic", 214, 82, 130),
+ named_color("mysticmaroon", "Mystic maroon", 173, 67, 121),
+ named_color("nadeshikopink", "Nadeshiko pink", 246, 173, 198),
+ named_color("naplesyellow", "Naples yellow", 250, 218, 94),
+ named_color("navajowhite", "Navajo white", 255, 222, 173),
+ named_color("navajowhite1", "Navajo white 1 (X11)", 255, 222, 173),
+ named_color("navajowhite2", "Navajo white 2 (X11)", 238, 207, 161),
+ named_color("navajowhite3", "Navajo white 3 (X11)", 205, 179, 139),
+ named_color("navajowhite4", "Navajo white 4 (X11)", 139, 121, 94),
+ named_color("navyblue", "Navy blue", 0, 0, 128),
+ named_color("navybluecrayola", "Navy blue (Crayola)", 25, 116, 210),
+ named_color("neonblue", "Neon blue", 70, 102, 255),
+ named_color("neongreen", "Neon green", 57, 255, 20),
+ named_color("newyorkpink", "New York pink", 215, 131, 127),
+ named_color("nickel", "Nickel", 114, 116, 114),
+ named_color("nonphotoblue", "Non-photo blue", 164, 221, 237),
+ named_color("nyanza", "Nyanza", 233, 255, 219),
+ named_color("oceanblue", "Ocean Blue", 79, 66, 181),
+ named_color("oceangreen", "Ocean green", 72, 191, 145),
+ named_color("ochre", "Ochre", 204, 119, 34),
+ named_color("oldburgundy", "Old burgundy", 67, 48, 46),
+ named_color("oldgold", "Old gold", 207, 181, 59),
+ named_color("oldlace", "Old lace", 253, 245, 230),
+ named_color("oldlavender", "Old lavender", 121, 104, 120),
+ named_color("oldmauve", "Old mauve", 103, 49, 71),
+ named_color("oldrose", "Old rose", 192, 128, 129),
+ named_color("oldsilver", "Old silver", 132, 132, 130),
+ named_color("olive", "Olive", 128, 128, 0),
+ named_color("olivedrab", "Olive drab", 107, 142, 35),
+ named_color("olivedrab1", "Olive drab 1 (X11)", 192, 255, 62),
+ named_color("olivedrab2", "Olive drab 2 (X11)", 179, 238, 58),
+ named_color("olivedrab3", "Olive drab 3 (X11)", 154, 205, 50),
+ named_color("olivedrab4", "Olive drab 4 (X11)", 105, 139, 34),
+ named_color("olivedrab7", "Olive drab #7", 60, 52, 31),
+ named_color("olivedrabcamouflage", "Olive drab camouflage", 84, 79, 61),
+ named_color("olivegreen", "Olive green", 181, 179, 92),
+ named_color("olivine", "Olivine", 154, 185, 115),
+ named_color("onyx", "Onyx", 53, 56, 57),
+ named_color("opal", "Opal", 168, 195, 188),
+ named_color("operamauve", "Opera mauve", 183, 132, 167),
+ named_color("orange", "Orange", 255, 127, 0),
+ named_color("orange1", "Orange 1 (X11)", 255, 165, 0),
+ named_color("orange2", "Orange 2 (X11)", 238, 154, 0),
+ named_color("orange3", "Orange 3 (X11)", 205, 133, 0),
+ named_color("orange4", "Orange 4 (X11)", 139, 90, 0),
+ named_color("orangecrayola", "Orange (Crayola)", 255, 117, 56),
+ named_color("orangepantone", "Orange (Pantone)", 255, 88, 0),
+ named_color("orangepeel", "Orange peel", 255, 159, 0),
+ named_color("orangered", "Orange-red", 255, 104, 31),
+ named_color("orangered1", "Orange-red 1 (X11)", 255, 69, 0),
+ named_color("orangered2", "Orange-red 2 (X11)", 238, 64, 0),
+ named_color("orangered3", "Orange-red 3 (X11)", 205, 55, 0),
+ named_color("orangered4", "Orange-red 4 (X11)", 139, 37, 0),
+ named_color("orangeredcrayola", "Orange-red (Crayola)", 255, 83, 73),
+ named_color("orangesoda", "Orange soda", 250, 91, 61),
+ named_color("orangex11", "Orange (X11/web)", 255, 165, 0),
+ named_color("orangeyellow", "Orange-yellow", 245, 189, 31),
+ named_color("orangeyellowcrayola", "Orange-yellow (Crayola)", 248, 213, 104),
+ named_color("orchid", "Orchid", 218, 112, 214),
+ named_color("orchid1", "Orchid 1 (X11)", 255, 131, 250),
+ named_color("orchid2", "Orchid 2 (X11)", 238, 122, 233),
+ named_color("orchid3", "Orchid 3 (X11)", 205, 105, 201),
+ named_color("orchid4", "Orchid 4 (X11)", 139, 71, 137),
+ named_color("orchidcrayola", "Orchid (Crayola)", 226, 156, 210),
+ named_color("orchidpink", "Orchid pink", 242, 189, 205),
+ named_color("oucrimsonred", "OU Crimson red", 132, 22, 23),
+ named_color("outerspacecrayola", "Outer space (Crayola)", 45, 56, 58),
+ named_color("outrageousorange", "Outrageous Orange", 255, 110, 74),
+ named_color("oxblood", "Oxblood", 128, 0, 32),
+ named_color("oxfordblue", "Oxford blue", 0, 33, 71),
+ named_color("pacificblue", "Pacific blue", 28, 169, 201),
+ named_color("pakistangreen", "Pakistan green", 0, 102, 0),
+ named_color("palatinatepurple", "Palatinate purple", 104, 40, 96),
+ named_color("paleaqua", "Pale aqua", 188, 212, 230),
+ named_color("palecerulean", "Pale cerulean", 155, 196, 226),
+ named_color("palegoldenrod", "Pale goldenrod (X11)", 238, 232, 170),
+ named_color("palegreen", "Pale green (X11)", 152, 251, 152),
+ named_color("palegreen1", "Pale green 1 (X11)", 154, 255, 154),
+ named_color("palegreen2", "Pale green 2 (X11)", 144, 238, 144),
+ named_color("palegreen3", "Pale green 3 (X11)", 124, 205, 124),
+ named_color("palegreen4", "Pale green 4 (X11)", 84, 139, 84),
+ named_color("palepink", "Pale pink", 250, 218, 221),
+ named_color("palepurplepantone", "Pale purple (Pantone)", 250, 230, 250),
+ named_color("palesilver", "Pale silver", 201, 192, 187),
+ named_color("palespringbud", "Pale spring bud", 236, 235, 189),
+ named_color("paleturquoise", "Pale turquoise (X11)", 175, 238, 238),
+ named_color("paleturquoise1", "Pale turquoise 1 (X11)", 187, 255, 255),
+ named_color("paleturquoise2", "Pale turquoise 2 (X11)", 174, 238, 238),
+ named_color("paleturquoise3", "Pale turquoise 3 (X11)", 150, 205, 205),
+ named_color("paleturquoise4", "Pale turquoise 4 (X11)", 102, 139, 139),
+ named_color("palevioletred", "Pale violet red (X11)", 219, 112, 147),
+ named_color("palevioletred1", "Pale violet red 1 (X11)", 255, 130, 171),
+ named_color("palevioletred2", "Pale violet red 2 (X11)", 238, 121, 159),
+ named_color("palevioletred3", "Pale violet red 3 (X11)", 205, 104, 137),
+ named_color("palevioletred4", "Pale violet red 4 (X11)", 139, 71, 93),
+ named_color("pansypurple", "Pansy purple", 120, 24, 74),
+ named_color("paoloveronesegreen", "Paolo Veronese green", 0, 155, 125),
+ named_color("papayawhip", "Papaya whip", 255, 239, 213),
+ named_color("paradisepink", "Paradise pink", 230, 62, 98),
+ named_color("parisgreen", "Paris Green", 80, 200, 120),
+ named_color("pastelpink", "Pastel pink", 222, 165, 164),
+ named_color("patriarch", "Patriarch", 128, 0, 128),
+ named_color("paynesgrey", "Payne's grey", 83, 104, 120),
+ named_color("peach", "Peach", 255, 229, 180),
+ named_color("peachcrayola", "Peach (Crayola)", 255, 203, 164),
+ named_color("peachpuff", "Peach puff", 255, 218, 185),
+ named_color("peachpuff1", "Peach puff 1 (X11)", 255, 218, 185),
+ named_color("peachpuff2", "Peach puff 2 (X11)", 238, 203, 173),
+ named_color("peachpuff3", "Peach puff 3 (X11)", 205, 175, 149),
+ named_color("peachpuff4", "Peach puff 4 (X11)", 139, 119, 101),
+ named_color("pear", "Pear", 209, 226, 49),
+ named_color("pearlypurple", "Pearly purple", 183, 104, 162),
+ named_color("periwinkle", "Periwinkle", 204, 204, 255),
+ named_color("periwinklecrayola", "Periwinkle (Crayola)", 195, 205, 230),
+ named_color("permanentgeraniumlake", "Permanent Geranium Lake", 225, 44, 44),
+ named_color("persianblue", "Persian blue", 28, 57, 187),
+ named_color("persiangreen", "Persian green", 0, 166, 147),
+ named_color("persianindigo", "Persian indigo", 50, 18, 122),
+ named_color("persianorange", "Persian orange", 217, 144, 88),
+ named_color("persianpink", "Persian pink", 247, 127, 190),
+ named_color("persianplum", "Persian plum", 112, 28, 28),
+ named_color("persianred", "Persian red", 204, 51, 51),
+ named_color("persianrose", "Persian rose", 254, 40, 162),
+ named_color("persimmon", "Persimmon", 236, 88, 0),
+ named_color("peru", "Peru", 205, 133, 63),
+ named_color("pewterblue", "Pewter Blue", 139, 168, 183),
+ named_color("phlox", "Phlox", 223, 0, 255),
+ named_color("phthaloblue", "Phthalo blue", 0, 15, 137),
+ named_color("phthalogreen", "Phthalo green", 18, 53, 36),
+ named_color("picoteeblue", "Picotee blue", 46, 39, 135),
+ named_color("pictorialcarmine", "Pictorial carmine", 195, 11, 78),
+ named_color("piggypink", "Piggy pink", 253, 221, 230),
+ named_color("pinegreen", "Pine green", 1, 121, 111),
+ named_color("pinetree", "Pine tree", 42, 47, 35),
+ named_color("pink", "Pink", 255, 192, 203),
+ named_color("pink1", "Pink 1 (X11)", 255, 181, 197),
+ named_color("pink2", "Pink 2 (X11)", 238, 169, 184),
+ named_color("pink3", "Pink 3 (X11)", 205, 145, 158),
+ named_color("pink4", "Pink 4 (X11)", 139, 99, 108),
+ named_color("pinkflamingo", "Pink flamingo", 252, 116, 253),
+ named_color("pinklace", "Pink lace", 255, 221, 244),
+ named_color("pinklavender", "Pink lavender", 216, 178, 209),
+ named_color("pinkpantone", "Pink (Pantone)", 215, 72, 148),
+ named_color("pinksherbet", "Pink Sherbet", 247, 143, 167),
+ named_color("pistachio", "Pistachio", 147, 197, 114),
+ named_color("platinum", "Platinum", 229, 228, 226),
+ named_color("plum", "Plum", 142, 69, 133),
+ named_color("plum1", "Plum 1 (X11)", 255, 187, 255),
+ named_color("plum2", "Plum 2 (X11)", 238, 174, 238),
+ named_color("plum3", "Plum 3 (X11)", 205, 150, 205),
+ named_color("plum4", "Plum 4 (X11)", 139, 102, 139),
+ named_color("plumppurple", "Plump Purple", 89, 70, 178),
+ named_color("plumweb", "Plum (web)", 221, 160, 221),
+ named_color("polishedpine", "Polished Pine", 93, 164, 147),
+ named_color("pompandpower", "Pomp and Power", 134, 96, 142),
+ named_color("popstar", "Popstar", 190, 79, 98),
+ named_color("portlandorange", "Portland Orange", 255, 90, 54),
+ named_color("powderblue", "Powder blue", 176, 224, 230),
+ named_color("princetonorange", "Princeton orange", 245, 128, 37),
+ named_color("prune", "Prune", 112, 28, 28),
+ named_color("prussianblue", "Prussian blue", 0, 49, 83),
+ named_color("psychedelicpurple", "Psychedelic purple", 223, 0, 255),
+ named_color("puce", "Puce", 204, 136, 153),
+ named_color("pullmanbrownupsbrown", "Pullman Brown (UPS Brown)", 100, 65, 23),
+ named_color("pumpkin", "Pumpkin", 255, 117, 24),
+ named_color("purple", "Purple", 106, 13, 173),
+ named_color("purple1", "Purple 1 (X11)", 155, 48, 255),
+ named_color("purple2", "Purple 2 (X11)", 145, 44, 238),
+ named_color("purple3", "Purple 3 (X11)", 125, 38, 205),
+ named_color("purple4", "Purple 4 (X11)", 85, 26, 139),
+ named_color("purplemountainmajesty", "Purple mountain majesty", 150, 120, 182),
+ named_color("purplemunsell", "Purple (Munsell)", 159, 0, 197),
+ named_color("purplenavy", "Purple navy", 78, 81, 128),
+ named_color("purplepizzazz", "Purple pizzazz", 254, 78, 218),
+ named_color("purpleplum", "Purple Plum", 156, 81, 182),
+ named_color("purpleweb", "Purple (web)", 128, 0, 128),
+ named_color("purplex11", "Purple (X11)", 160, 32, 240),
+ named_color("purpureus", "Purpureus", 154, 78, 174),
+ named_color("queenblue", "Queen blue", 67, 107, 149),
+ named_color("queenpink", "Queen pink", 232, 204, 215),
+ named_color("quicksilver", "Quick Silver", 166, 166, 166),
+ named_color("quinacridonemagenta", "Quinacridone magenta", 142, 58, 89),
+ named_color("radicalred", "Radical Red", 255, 53, 94),
+ named_color("raisinblack", "Raisin black", 36, 33, 36),
+ named_color("rajah", "Rajah", 251, 171, 96),
+ named_color("raspberry", "Raspberry", 227, 11, 93),
+ named_color("raspberryglace", "Raspberry glace", 145, 95, 109),
+ named_color("raspberryrose", "Raspberry rose", 179, 68, 108),
+ named_color("rawsienna", "Raw Sienna", 214, 138, 89),
+ named_color("rawumber", "Raw umber", 130, 102, 68),
+ named_color("razzledazzlerose", "Razzle dazzle rose", 255, 51, 204),
+ named_color("razzmatazz", "Razzmatazz", 227, 37, 107),
+ named_color("razzmicberry", "Razzmic Berry", 141, 78, 133),
+ named_color("rebeccapurple", "Rebecca Purple", 102, 51, 153),
+ named_color("red", "Red", 255, 0, 0),
+ named_color("red1", "Red 1 (X11)", 255, 0, 0),
+ named_color("red2", "Red 2 (X11)", 238, 0, 0),
+ named_color("red3", "Red 3 (X11)", 205, 0, 0),
+ named_color("red4", "Red 4 (X11)", 139, 0, 0),
+ named_color("redcrayola", "Red (Crayola)", 238, 32, 77),
+ named_color("redmunsell", "Red (Munsell)", 242, 0, 60),
+ named_color("redncs", "Red (NCS)", 196, 2, 51),
+ named_color("redorange", "Red-orange", 255, 83, 73),
+ named_color("redorangecolorwheel", "Red-orange (Color wheel)", 255, 69, 0),
+ named_color("redorangecrayola", "Red-orange (Crayola)", 255, 104, 31),
+ named_color("redpantone", "Red (Pantone)", 237, 41, 57),
+ named_color("redpigment", "Red (pigment)", 237, 28, 36),
+ named_color("redpurple", "Red-purple", 228, 0, 120),
+ named_color("redryb", "Red (RYB)", 254, 39, 18),
+ named_color("redsalsa", "Red Salsa", 253, 58, 74),
+ named_color("redviolet", "Red-violet", 199, 21, 133),
+ named_color("redvioletcolorwheel", "Red-violet (Color wheel)", 146, 43, 62),
+ named_color("redvioletcrayola", "Red-violet (Crayola)", 192, 68, 143),
+ named_color("redwood", "Redwood", 164, 90, 82),
+ named_color("resolutionblue", "Resolution blue", 0, 35, 135),
+ named_color("rhythm", "Rhythm", 119, 118, 150),
+ named_color("richblack", "Rich black", 0, 64, 64),
+ named_color("richblackfogra29", "Rich black (FOGRA29)", 1, 11, 19),
+ named_color("richblackfogra39", "Rich black (FOGRA39)", 1, 2, 3),
+ named_color("riflegreen", "Rifle green", 68, 76, 56),
+ named_color("robineggblue", "Robin egg blue", 0, 204, 204),
+ named_color("rocketmetallic", "Rocket metallic", 138, 127, 128),
+ named_color("romansilver", "Roman silver", 131, 137, 150),
+ named_color("rose", "Rose", 255, 0, 127),
+ named_color("rosebonbon", "Rose bonbon", 249, 66, 158),
+ named_color("rosedust", "Rose Dust", 158, 94, 111),
+ named_color("roseebony", "Rose ebony", 103, 72, 70),
+ named_color("rosemadder", "Rose madder", 227, 38, 54),
+ named_color("rosepink", "Rose pink", 255, 102, 204),
+ named_color("rosequartz", "Rose quartz", 170, 152, 169),
+ named_color("rosered", "Rose red", 194, 30, 86),
+ named_color("rosetaupe", "Rose taupe", 144, 93, 93),
+ named_color("rosevale", "Rose vale", 171, 78, 82),
+ named_color("rosewood", "Rosewood", 101, 0, 11),
+ named_color("rossocorsa", "Rosso corsa", 212, 0, 0),
+ named_color("rosybrown", "Rosy brown (X11)", 188, 143, 143),
+ named_color("rosybrown", "Rosy brown", 188, 143, 143),
+ named_color("rosybrown1", "Rosy brown 1 (X11)", 255, 193, 193),
+ named_color("rosybrown2", "Rosy brown 2 (X11)", 238, 180, 180),
+ named_color("rosybrown3", "Rosy brown 3 (X11)", 205, 155, 155),
+ named_color("rosybrown4", "Rosy brown 4 (X11)", 139, 105, 105),
+ named_color("royalblue", "Royal blue (X11)", 65, 105, 225),
+ named_color("royalblue1", "Royal blue 1 (X11)", 72, 118, 255),
+ named_color("royalblue2", "Royal blue 2 (X11)", 67, 110, 238),
+ named_color("royalblue3", "Royal blue 3 (X11)", 58, 95, 205),
+ named_color("royalblue4", "Royal blue 4 (X11)", 39, 64, 139),
+ named_color("royalbluedark", "Royal blue (dark)", 0, 35, 102),
+ named_color("royalbluelight", "Royal blue (light)", 65, 105, 225),
+ named_color("royalpurple", "Royal purple", 120, 81, 169),
+ named_color("royalyellow", "Royal yellow", 250, 218, 94),
+ named_color("ruber", "Ruber", 206, 70, 118),
+ named_color("rubinered", "Rubine red", 209, 0, 86),
+ named_color("ruby", "Ruby", 224, 17, 95),
+ named_color("rubyred", "Ruby red", 155, 17, 30),
+ named_color("rufous", "Rufous", 168, 28, 7),
+ named_color("russet", "Russet", 128, 70, 27),
+ named_color("russiangreen", "Russian green", 103, 146, 103),
+ named_color("russianviolet", "Russian violet", 50, 23, 77),
+ named_color("rust", "Rust", 183, 65, 14),
+ named_color("rustyred", "Rusty red", 218, 44, 67),
+ named_color("sacramentostategreen", "Sacramento State green", 4, 57, 39),
+ named_color("saddlebrown", "Saddle brown", 139, 69, 19),
+ named_color("safetyorange", "Safety orange", 255, 103, 0),
+ named_color("safetyorange", "Safety orange", 255, 120, 0),
+ named_color("safetyyellow", "Safety yellow", 238, 210, 2),
+ named_color("saffron", "Saffron", 244, 196, 48),
+ named_color("sage", "Sage", 188, 184, 138),
+ named_color("salmon", "Salmon", 250, 128, 114),
+ named_color("salmon1", "Salmon 1 (X11)", 255, 140, 105),
+ named_color("salmon2", "Salmon 2 (X11)", 238, 130, 98),
+ named_color("salmon3", "Salmon 3 (X11)", 205, 112, 84),
+ named_color("salmon4", "Salmon 4 (X11)", 139, 76, 57),
+ named_color("salmonpink", "Salmon pink", 255, 145, 164),
+ named_color("sand", "Sand", 194, 178, 128),
+ named_color("sanddune", "Sand dune", 150, 113, 23),
+ named_color("sandybrown", "Sandy brown", 244, 164, 96),
+ named_color("sapgreen", "Sap green", 80, 125, 42),
+ named_color("sapphire", "Sapphire", 15, 82, 186),
+ named_color("sapphireblue", "Sapphire blue", 0, 103, 165),
+ named_color("sapphirecrayola", "Sapphire (Crayola)", 0, 103, 165),
+ named_color("satinsheengold", "Satin sheen gold", 203, 161, 53),
+ named_color("scarlet", "Scarlet", 255, 36, 0),
+ named_color("schausspink", "Schauss pink", 255, 145, 175),
+ named_color("schoolbusyellow", "School bus yellow", 255, 216, 0),
+ named_color("screamingreen", "Screamin' Green", 102, 255, 102),
+ named_color("seagreen", "Sea green", 46, 139, 87),
+ named_color("seagreen1", "Sea green 1 (X11)", 84, 255, 159),
+ named_color("seagreen2", "Sea green 2 (X11)", 78, 238, 148),
+ named_color("seagreen3", "Sea green 3 (X11)", 67, 205, 128),
+ named_color("seagreen4", "Sea green 4 (X11)", 46, 139, 87),
+ named_color("seagreencrayola", "Sea green (Crayola)", 0, 255, 205),
+ named_color("sealbrown", "Seal brown", 89, 38, 11),
+ named_color("seashell", "Seashell", 255, 245, 238),
+ named_color("seashell1", "Seashell 1 (X11)", 255, 245, 238),
+ named_color("seashell2", "Seashell 2 (X11)", 238, 229, 222),
+ named_color("seashell3", "Seashell 3 (X11)", 205, 197, 191),
+ named_color("seashell4", "Seashell 4 (X11)", 139, 134, 130),
+ named_color("selectiveyellow", "Selective yellow", 255, 186, 0),
+ named_color("sepia", "Sepia", 112, 66, 20),
+ named_color("shadow", "Shadow", 138, 121, 93),
+ named_color("shadowblue", "Shadow blue", 119, 139, 165),
+ named_color("shamrockgreen", "Shamrock green", 0, 158, 96),
+ named_color("sheengreen", "Sheen green", 143, 212, 0),
+ named_color("shimmeringblush", "Shimmering Blush", 217, 134, 149),
+ named_color("shinyshamrock", "Shiny Shamrock", 95, 167, 120),
+ named_color("shockingpink", "Shocking pink", 252, 15, 192),
+ named_color("shockingpinkcrayola", "Shocking pink (Crayola)", 255, 111, 255),
+ named_color("sienna", "Sienna (X11)", 160, 82, 45),
+ named_color("sienna", "Sienna", 136, 45, 23),
+ named_color("sienna1", "Sienna 1 (X11)", 255, 130, 71),
+ named_color("sienna2", "Sienna 2 (X11)", 238, 121, 66),
+ named_color("sienna3", "Sienna 3 (X11)", 205, 104, 57),
+ named_color("sienna4", "Sienna 4 (X11)", 139, 71, 38),
+ named_color("silver", "Silver", 192, 192, 192),
+ named_color("silverchalice", "Silver chalice", 172, 172, 172),
+ named_color("silvercrayola", "Silver (Crayola)", 201, 192, 187),
+ named_color("silvermetallic", "Silver (Metallic)", 170, 169, 173),
+ named_color("silverpink", "Silver pink", 196, 174, 173),
+ named_color("silversand", "Silver sand", 191, 193, 194),
+ named_color("sinopia", "Sinopia", 203, 65, 11),
+ named_color("sizzlingred", "Sizzling Red", 255, 56, 85),
+ named_color("sizzlingsunrise", "Sizzling Sunrise", 255, 219, 0),
+ named_color("skobeloff", "Skobeloff", 0, 116, 116),
+ named_color("skyblue", "Sky blue", 135, 206, 235),
+ named_color("skyblue1", "Sky blue 1 (X11)", 135, 206, 255),
+ named_color("skyblue2", "Sky blue 2 (X11)", 126, 192, 238),
+ named_color("skyblue3", "Sky blue 3 (X11)", 108, 166, 205),
+ named_color("skyblue4", "Sky blue 4 (X11)", 74, 112, 139),
+ named_color("skybluecrayola", "Sky blue (Crayola)", 118, 215, 234),
+ named_color("skymagenta", "Sky magenta", 207, 113, 175),
+ named_color("slateblue", "Slate blue", 106, 90, 205),
+ named_color("slateblue1", "Slate blue 1 (X11)", 131, 111, 255),
+ named_color("slateblue2", "Slate blue 2 (X11)", 122, 103, 238),
+ named_color("slateblue3", "Slate blue 3 (X11)", 105, 89, 205),
+ named_color("slateblue4", "Slate blue 4 (X11)", 71, 60, 139),
+ named_color("slategray", "Slate gray", 112, 128, 144),
+ named_color("slategray1", "Slate gray 1 (X11)", 198, 226, 255),
+ named_color("slategray2", "Slate gray 2 (X11)", 185, 211, 238),
+ named_color("slategray3", "Slate gray 3 (X11)", 159, 182, 205),
+ named_color("slategray4", "Slate gray 4 (X11)", 108, 123, 139),
+ named_color("slimygreen", "Slimy green", 41, 150, 23),
+ named_color("smitten", "Smitten", 200, 65, 134),
+ named_color("smokyblack", "Smoky black", 16, 12, 8),
+ named_color("snow", "Snow", 255, 250, 250),
+ named_color("snow1", "Snow 1 (X11)", 255, 250, 250),
+ named_color("snow2", "Snow 2 (X11)", 238, 233, 233),
+ named_color("snow3", "Snow 3 (X11)", 205, 201, 201),
+ named_color("snow4", "Snow 4 (X11)", 139, 137, 137),
+ named_color("solidpink", "Solid pink", 137, 56, 67),
+ named_color("sonicsilver", "Sonic silver", 117, 117, 117),
+ named_color("spacecadet", "Space cadet", 29, 41, 81),
+ named_color("spanishbistre", "Spanish bistre", 128, 117, 50),
+ named_color("spanishblue", "Spanish blue", 0, 112, 184),
+ named_color("spanishcarmine", "Spanish carmine", 209, 0, 71),
+ named_color("spanishgray", "Spanish gray", 152, 152, 152),
+ named_color("spanishgreen", "Spanish green", 0, 145, 80),
+ named_color("spanishorange", "Spanish orange", 232, 97, 0),
+ named_color("spanishpink", "Spanish pink", 247, 191, 190),
+ named_color("spanishred", "Spanish red", 230, 0, 38),
+ named_color("spanishskyblue", "Spanish sky blue", 0, 255, 255),
+ named_color("spanishviolet", "Spanish violet", 76, 40, 130),
+ named_color("spanishviridian", "Spanish viridian", 0, 127, 92),
+ named_color("springbud", "Spring bud", 167, 252, 0),
+ named_color("springfrost", "Spring Frost", 135, 255, 42),
+ named_color("springgreen", "Spring green", 0, 255, 127),
+ named_color("springgreen1", "Spring green 1 (X11)", 0, 255, 127),
+ named_color("springgreen2", "Spring green 2 (X11)", 0, 238, 118),
+ named_color("springgreen3", "Spring green 3 (X11)", 0, 205, 102),
+ named_color("springgreen4", "Spring green 4 (X11)", 0, 139, 69),
+ named_color("springgreencrayola", "Spring green (Crayola)", 236, 235, 189),
+ named_color("starcommandblue", "Star command blue", 0, 123, 184),
+ named_color("steelblue", "Steel blue", 70, 130, 180),
+ named_color("steelblue1", "Steel blue 1 (X11)", 99, 184, 255),
+ named_color("steelblue2", "Steel blue 2 (X11)", 92, 172, 238),
+ named_color("steelblue3", "Steel blue 3 (X11)", 79, 148, 205),
+ named_color("steelblue4", "Steel blue 4 (X11)", 54, 100, 139),
+ named_color("steelpink", "Steel pink", 204, 51, 204),
+ named_color("steelteal", "Steel Teal", 95, 138, 139),
+ named_color("stildegrainyellow", "Stil de grain yellow", 250, 218, 94),
+ named_color("stpatricksblue", "St. Patrick's blue", 35, 41, 122),
+ named_color("straw", "Straw", 228, 217, 111),
+ named_color("sugarplum", "Sugar Plum", 145, 78, 117),
+ named_color("sunglow", "Sunglow", 255, 204, 51),
+ named_color("sunray", "Sunray", 227, 171, 87),
+ named_color("sunset", "Sunset", 250, 214, 165),
+ named_color("superpink", "Super pink", 207, 107, 169),
+ named_color("sweetbrown", "Sweet Brown", 168, 55, 49),
+ named_color("tan", "Tan", 210, 180, 140),
+ named_color("tan1", "Tan 1 (X11)", 255, 165, 79),
+ named_color("tan2", "Tan 2 (X11)", 238, 154, 73),
+ named_color("tan3", "Tan 3 (X11)", 205, 133, 63),
+ named_color("tan4", "Tan 4 (X11)", 139, 90, 43),
+ named_color("tancrayola", "Tan (Crayola)", 217, 154, 108),
+ named_color("tangerine", "Tangerine", 242, 133, 0),
+ named_color("tangopink", "Tango pink", 228, 113, 122),
+ named_color("tartorange", "Tart Orange", 251, 77, 70),
+ named_color("taupe", "Taupe", 72, 60, 50),
+ named_color("taupegray", "Taupe gray", 139, 133, 137),
+ named_color("teagreen", "Tea green", 208, 240, 192),
+ named_color("teal", "Teal", 0, 128, 128),
+ named_color("tealblue", "Teal blue", 54, 117, 136),
+ named_color("tearose", "Tea rose", 244, 194, 194),
+ named_color("tearose", "Tea rose", 248, 131, 121),
+ named_color("telemagenta", "Telemagenta", 207, 52, 118),
+ named_color("tennetawny", "Tenné (tawny)", 205, 87, 0),
+ named_color("terracotta", "Terra cotta", 226, 114, 91),
+ named_color("thistle", "Thistle", 216, 191, 216),
+ named_color("thistle1", "Thistle 1 (X11)", 255, 225, 255),
+ named_color("thistle2", "Thistle 2 (X11)", 238, 210, 238),
+ named_color("thistle3", "Thistle 3 (X11)", 205, 181, 205),
+ named_color("thistle4", "Thistle 4 (X11)", 139, 123, 139),
+ named_color("thulianpink", "Thulian pink", 222, 111, 161),
+ named_color("ticklemepink", "Tickle Me Pink", 252, 137, 172),
+ named_color("tiffanyblue", "Tiffany Blue", 10, 186, 181),
+ named_color("timberwolf", "Timberwolf", 219, 215, 210),
+ named_color("titaniumyellow", "Titanium yellow", 238, 230, 0),
+ named_color("tomato", "Tomato", 255, 99, 71),
+ named_color("tomato1", "Tomato 1 (X11)", 255, 99, 71),
+ named_color("tomato2", "Tomato 2 (X11)", 238, 92, 66),
+ named_color("tomato3", "Tomato 3 (X11)", 205, 79, 57),
+ named_color("tomato4", "Tomato 4 (X11)", 139, 54, 38),
+ named_color("tropicalrainforest", "Tropical rain forest", 0, 117, 94),
+ named_color("trueblue", "True Blue", 45, 104, 196),
+ named_color("trypanblue", "Trypan Blue", 28, 5, 179),
+ named_color("tuftsblue", "Tufts blue", 62, 142, 222),
+ named_color("tumbleweed", "Tumbleweed", 222, 170, 136),
+ named_color("turquoise", "Turquoise", 64, 224, 208),
+ named_color("turquoise1", "Turquoise 1 (X11)", 0, 245, 255),
+ named_color("turquoise2", "Turquoise 2 (X11)", 0, 229, 238),
+ named_color("turquoise3", "Turquoise 3 (X11)", 0, 197, 205),
+ named_color("turquoise4", "Turquoise 4 (X11)", 0, 134, 139),
+ named_color("turquoiseblue", "Turquoise blue", 0, 255, 239),
+ named_color("turquoisegreen", "Turquoise green", 160, 214, 180),
+ named_color("turtlegreen", "Turtle green", 138, 154, 91),
+ named_color("tuscan", "Tuscan", 250, 214, 165),
+ named_color("tuscanbrown", "Tuscan brown", 111, 78, 55),
+ named_color("tuscanred", "Tuscan red", 124, 72, 72),
+ named_color("tuscantan", "Tuscan tan", 166, 123, 91),
+ named_color("tuscany", "Tuscany", 192, 153, 153),
+ named_color("twilightlavender", "Twilight lavender", 138, 73, 107),
+ named_color("tyrianpurple", "Tyrian purple", 102, 2, 60),
+ named_color("uablue", "UA blue", 0, 51, 170),
+ named_color("uared", "UA red", 217, 0, 76),
+ named_color("ultramarine", "Ultramarine", 63, 0, 255),
+ named_color("ultramarineblue", "Ultramarine blue", 65, 102, 245),
+ named_color("ultrapink", "Ultra pink", 255, 111, 255),
+ named_color("ultrared", "Ultra red", 252, 108, 133),
+ named_color("umber", "Umber", 99, 81, 71),
+ named_color("unbleachedsilk", "Unbleached silk", 255, 221, 202),
+ named_color("unitednationsblue", "United Nations blue", 91, 146, 229),
+ named_color("unmellowyellow", "Unmellow yellow", 255, 255, 102),
+ named_color("upforestgreen", "UP Forest green", 1, 68, 33),
+ named_color("upmaroon", "UP maroon", 123, 17, 19),
+ named_color("upsdellred", "Upsdell red", 174, 32, 41),
+ named_color("uranianblue", "Uranian blue", 175, 219, 245),
+ named_color("usafablue", "USAFA blue", 0, 79, 152),
+ named_color("vandykebrown", "Van Dyke brown", 102, 66, 40),
+ named_color("vanilla", "Vanilla", 243, 229, 171),
+ named_color("vanillaice", "Vanilla ice", 243, 143, 169),
+ named_color("vegasgold", "Vegas gold", 197, 179, 88),
+ named_color("venetianred", "Venetian red", 200, 8, 21),
+ named_color("verdigris", "Verdigris", 67, 179, 174),
+ named_color("vermilion", "Vermilion", 217, 56, 30),
+ named_color("vermilion", "Vermilion", 227, 66, 52),
+ named_color("veronica", "Veronica", 160, 32, 240),
+ named_color("violet", "Violet", 143, 0, 255),
+ named_color("violetblue", "Violet-blue", 50, 74, 178),
+ named_color("violetbluecrayola", "Violet-blue (Crayola)", 118, 110, 200),
+ named_color("violetcolorwheel", "Violet (color wheel)", 127, 0, 255),
+ named_color("violetcrayola", "Violet (crayola)", 150, 61, 127),
+ named_color("violetred", "Violet-red", 247, 83, 148),
+ named_color("violetredx11", "Violet-red (X11)", 208, 32, 144),
+ named_color("violetred1", "Violet-red 1 (X11)", 255, 62, 150),
+ named_color("violetred2", "Violet-red 2 (X11)", 238, 58, 140),
+ named_color("violetred3", "Violet-red 3 (X11)", 205, 50, 120),
+ named_color("violetred4", "Violet-red 4 (X11)", 139, 34, 82),
+ named_color("violetryb", "Violet (RYB)", 134, 1, 175),
+ named_color("violetweb", "Violet (web)", 238, 130, 238),
+ named_color("violetx11", "Violet (X11)", 238, 130, 238),
+ named_color("viridian", "Viridian", 64, 130, 109),
+ named_color("viridiangreen", "Viridian green", 0, 150, 152),
+ named_color("vividburgundy", "Vivid burgundy", 159, 29, 53),
+ named_color("vividskyblue", "Vivid sky blue", 0, 204, 255),
+ named_color("vividtangerine", "Vivid tangerine", 255, 160, 137),
+ named_color("vividviolet", "Vivid violet", 159, 0, 255),
+ named_color("volt", "Volt", 206, 255, 0),
+ named_color("warmblack", "Warm black", 0, 66, 66),
+ named_color("wheat", "Wheat", 245, 222, 179),
+ named_color("wheat1", "Wheat 1 (X11)", 255, 231, 186),
+ named_color("wheat2", "Wheat 2 (X11)", 238, 216, 174),
+ named_color("wheat3", "Wheat 3 (X11)", 205, 186, 150),
+ named_color("wheat4", "Wheat 4 (X11)", 139, 126, 102),
+ named_color("white", "White", 255, 255, 255),
+ named_color("wildblueyonder", "Wild blue yonder", 162, 173, 208),
+ named_color("wildorchid", "Wild orchid", 212, 112, 162),
+ named_color("wildstrawberry", "Wild Strawberry", 255, 67, 164),
+ named_color("wildwatermelon", "Wild watermelon", 252, 108, 133),
+ named_color("windsortan", "Windsor tan", 167, 85, 2),
+ named_color("wine", "Wine", 114, 47, 55),
+ named_color("winedregs", "Wine dregs", 103, 49, 71),
+ named_color("wintergreendream", "Wintergreen Dream", 86, 136, 125),
+ named_color("wintersky", "Winter Sky", 255, 0, 124),
+ named_color("wisteria", "Wisteria", 201, 160, 220),
+ named_color("woodbrown", "Wood brown", 193, 154, 107),
+ named_color("xanadu", "Xanadu", 115, 134, 120),
+ named_color("xanthic", "Xanthic", 238, 237, 9),
+ named_color("xiketic", "Xiketic", 12, 2, 15),
+ named_color("yaleblue", "Yale Blue", 15, 77, 146),
+ named_color("yellow", "Yellow", 255, 255, 0),
+ named_color("yellow1", "Yellow1 (X11)", 255, 255, 0),
+ named_color("yellow2", "Yellow2 (X11)", 238, 238, 0),
+ named_color("yellow3", "Yellow3 (X11)", 205, 205, 0),
+ named_color("yellow4", "Yellow4 (X11)", 139, 139, 0),
+ named_color("yellowcrayola", "Yellow (Crayola)", 252, 232, 131),
+ named_color("yellowgreen", "Yellow-green", 154, 205, 50),
+ named_color("yellowgreencolorwheel", "Yellow-green (Color Wheel)", 48, 178, 26),
+ named_color("yellowgreencrayola", "Yellow-green (Crayola)", 197, 227, 132),
+ named_color("yellowmunsell", "Yellow (Munsell)", 239, 204, 0),
+ named_color("yellowncs", "Yellow (NCS)", 255, 211, 0),
+ named_color("yelloworange", "Yellow Orange", 255, 174, 66),
+ named_color("yelloworangecolorwheel", "Yellow Orange (Color Wheel)", 255, 149, 5),
+ named_color("yellowpantone", "Yellow (Pantone)", 254, 223, 0),
+ named_color("yellowprocess", "Yellow (process)", 255, 239, 0),
+ named_color("yellowryb", "Yellow (RYB)", 254, 254, 51),
+ named_color("yellowsunshine", "Yellow Sunshine", 255, 247, 0),
+ named_color("yinmnblue", "YInMn Blue", 46, 80, 144),
+ named_color("zaffre", "Zaffre", 0, 20, 168),
+ named_color("zomp", "Zomp", 57, 167, 142),
]
});
@data-man
Copy link
Author

data-man commented Aug 4, 2024

ksnip_20240804-141830

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment