colornamer 1.0.1

give me a color and I will name it
Documentation
use color_names::ColorNames;
use color::{Color, color_from_triplet};

pub struct HTMLColors {
}

impl ColorNames for HTMLColors {
    fn get_colors(&self) -> Vec<Color> {
        return vec![
            color_from_triplet("aqua", (0, 255, 255)),
            color_from_triplet("aliceblue", (240, 248, 255)),
            color_from_triplet("antiquewhite", (250, 235, 215)),
            color_from_triplet("black", (0, 0, 0)),
            color_from_triplet("blue", (0, 0, 255)),
            color_from_triplet("cyan", (0, 255, 255)),
            color_from_triplet("darkblue", (0, 0, 139)),
            color_from_triplet("darkcyan", (0, 139, 139)),
            color_from_triplet("darkgreen", (0, 100, 0)),
            color_from_triplet("darkturquoise", (0, 206, 209)),
            color_from_triplet("deepskyblue", (0, 191, 255)),
            color_from_triplet("green", (0, 128, 0)),
            color_from_triplet("lime", (0, 255, 0)),
            color_from_triplet("mediumblue", (0, 0, 205)),
            color_from_triplet("mediumspringgreen", (0, 250, 154)),
            color_from_triplet("navy", (0, 0, 128)),
            color_from_triplet("springgreen", (0, 255, 127)),
            color_from_triplet("teal", (0, 128, 128)),
            color_from_triplet("midnightblue", (25, 25, 112)),
            color_from_triplet("dodgerblue", (30, 144, 255)),
            color_from_triplet("lightseagreen", (32, 178, 170)),
            color_from_triplet("forestgreen", (34, 139, 34)),
            color_from_triplet("seagreen", (46, 139, 87)),
            color_from_triplet("darkslategray", (47, 79, 79)),
            color_from_triplet("darkslategrey", (47, 79, 79)),
            color_from_triplet("limegreen", (50, 205, 50)),
            color_from_triplet("mediumseagreen", (60, 179, 113)),
            color_from_triplet("turquoise", (64, 224, 208)),
            color_from_triplet("royalblue", (65, 105, 225)),
            color_from_triplet("steelblue", (70, 130, 180)),
            color_from_triplet("darkslateblue", (72, 61, 139)),
            color_from_triplet("mediumturquoise", (72, 209, 204)),
            color_from_triplet("indigo", (75, 0, 130)),
            color_from_triplet("darkolivegreen", (85, 107, 47)),
            color_from_triplet("cadetblue", (95, 158, 160)),
            color_from_triplet("cornflowerblue", (100, 149, 237)),
            color_from_triplet("mediumaquamarine", (102, 205, 170)),
            color_from_triplet("dimgray", (105, 105, 105)),
            color_from_triplet("dimgrey", (105, 105, 105)),
            color_from_triplet("slateblue", (106, 90, 205)),
            color_from_triplet("olivedrab", (107, 142, 35)),
            color_from_triplet("slategray", (112, 128, 144)),
            color_from_triplet("slategrey", (112, 128, 144)),
            color_from_triplet("lightslategray", (119, 136, 153)),
            color_from_triplet("lightslategrey", (119, 136, 153)),
            color_from_triplet("mediumslateblue", (123, 104, 238)),
            color_from_triplet("lawngreen", (124, 252, 0)),
            color_from_triplet("aquamarine", (127, 255, 212)),
            color_from_triplet("chartreuse", (127, 255, 0)),
            color_from_triplet("gray", (128, 128, 128)),
            color_from_triplet("grey", (128, 128, 128)),
            color_from_triplet("maroon", (128, 0, 0)),
            color_from_triplet("olive", (128, 128, 0)),
            color_from_triplet("purple", (128, 0, 128)),
            color_from_triplet("lightskyblue", (135, 206, 250)),
            color_from_triplet("skyblue", (135, 206, 235)),
            color_from_triplet("blueviolet", (138, 43, 226)),
            color_from_triplet("darkmagenta", (139, 0, 139)),
            color_from_triplet("darkred", (139, 0, 0)),
            color_from_triplet("saddlebrown", (139, 69, 19)),
            color_from_triplet("darkseagreen", (143, 188, 143)),
            color_from_triplet("lightgreen", (144, 238, 144)),
            color_from_triplet("mediumpurple", (147, 112, 219)),
            color_from_triplet("darkviolet", (148, 0, 211)),
            color_from_triplet("palegreen", (152, 251, 152)),
            color_from_triplet("darkorchid", (153, 50, 204)),
            color_from_triplet("yellowgreen", (154, 205, 50)),
            color_from_triplet("sienna", (160, 82, 45)),
            color_from_triplet("brown", (165, 42, 42)),
            color_from_triplet("darkgray", (169, 169, 169)),
            color_from_triplet("darkgrey", (169, 169, 169)),
            color_from_triplet("greenyellow", (173, 255, 47)),
            color_from_triplet("lightblue", (173, 216, 230)),
            color_from_triplet("paleturquoise", (175, 238, 238)),
            color_from_triplet("lightsteelblue", (176, 196, 222)),
            color_from_triplet("powderblue", (176, 224, 230)),
            color_from_triplet("firebrick", (178, 34, 34)),
            color_from_triplet("darkgoldenrod", (184, 134, 11)),
            color_from_triplet("mediumorchid", (186, 85, 211)),
            color_from_triplet("rosybrown", (188, 143, 143)),
            color_from_triplet("darkkhaki", (189, 183, 107)),
            color_from_triplet("silver", (192, 192, 192)),
            color_from_triplet("mediumvioletred", (199, 21, 133)),
            color_from_triplet("indianred", (205, 92, 92)),
            color_from_triplet("peru", (205, 133, 63)),
            color_from_triplet("chocolate", (210, 105, 30)),
            color_from_triplet("tan", (210, 180, 140)),
            color_from_triplet("lightgray", (211, 211, 211)),
            color_from_triplet("lightgrey", (211, 211, 211)),
            color_from_triplet("thistle", (216, 191, 216)),
            color_from_triplet("goldenrod", (218, 165, 32)),
            color_from_triplet("orchid", (218, 112, 214)),
            color_from_triplet("palevioletred", (219, 112, 147)),
            color_from_triplet("crimson", (220, 20, 60)),
            color_from_triplet("gainsboro", (220, 220, 220)),
            color_from_triplet("plum", (221, 160, 221)),
            color_from_triplet("burlywood", (222, 184, 135)),
            color_from_triplet("lightcyan", (224, 255, 255)),
            color_from_triplet("lavender", (230, 230, 250)),
            color_from_triplet("darksalmon", (233, 150, 122)),
            color_from_triplet("palegoldenrod", (238, 232, 170)),
            color_from_triplet("violet", (238, 130, 238)),
            color_from_triplet("azure", (240, 255, 255)),
            color_from_triplet("honeydew", (240, 255, 240)),
            color_from_triplet("khaki", (240, 230, 140)),
            color_from_triplet("lightcoral", (240, 128, 128)),
            color_from_triplet("sandybrown", (244, 164, 96)),
            color_from_triplet("beige", (245, 245, 220)),
            color_from_triplet("mintcream", (245, 255, 250)),
            color_from_triplet("wheat", (245, 222, 179)),
            color_from_triplet("whitesmoke", (245, 245, 245)),
            color_from_triplet("ghostwhite", (248, 248, 255)),
            color_from_triplet("lightgoldenrodyellow", (250, 250, 210)),
            color_from_triplet("linen", (250, 240, 230)),
            color_from_triplet("salmon", (250, 128, 114)),
            color_from_triplet("oldlace", (253, 245, 230)),
            color_from_triplet("bisque", (255, 228, 196)),
            color_from_triplet("blanchedalmond", (255, 235, 205)),
            color_from_triplet("coral", (255, 127, 80)),
            color_from_triplet("cornsilk", (255, 248, 220)),
            color_from_triplet("darkorange", (255, 140, 0)),
            color_from_triplet("deeppink", (255, 20, 147)),
            color_from_triplet("floralwhite", (255, 250, 240)),
            color_from_triplet("fuchsia", (255, 0, 255)),
            color_from_triplet("gold", (255, 215, 0)),
            color_from_triplet("hotpink", (255, 105, 180)),
            color_from_triplet("ivory", (255, 255, 240)),
            color_from_triplet("lavenderblush", (255, 240, 245)),
            color_from_triplet("lemonchiffon", (255, 250, 205)),
            color_from_triplet("lightpink", (255, 182, 193)),
            color_from_triplet("lightsalmon", (255, 160, 122)),
            color_from_triplet("lightyellow", (255, 255, 224)),
            color_from_triplet("magenta", (255, 0, 255)),
            color_from_triplet("mistyrose", (255, 228, 225)),
            color_from_triplet("moccasin", (255, 228, 181)),
            color_from_triplet("navajowhite", (255, 222, 173)),
            color_from_triplet("orange", (255, 165, 0)),
            color_from_triplet("orangered", (255, 69, 0)),
            color_from_triplet("papayawhip", (255, 239, 213)),
            color_from_triplet("peachpuff", (255, 218, 185)),
            color_from_triplet("pink", (255, 192, 203)),
            color_from_triplet("red", (255, 0, 0)),
            color_from_triplet("seashell", (255, 245, 238)),
            color_from_triplet("snow", (255, 250, 250)),
            color_from_triplet("tomato", (255, 99, 71)),
            color_from_triplet("white", (255, 255, 255)),
            color_from_triplet("yellow", (255, 255, 0))
        ]
    }
}