/** * This function tells Lavendeux about this extension. * It must return an object similar to the one below. * @returns Object */ function extension() { return { name: "HTML Colour Utilities", author: "@rscarson", version: "0.2.0", functions: { "complement": "function_complement", "color": "function_colour", "colour": "function_colour" }, decorators: { "color": "decorator_colour", "colour": "decorator_colour" } }; } /** * Function that finds an HTML color code for a color with a given name * Usage: color() * Can be called from the lavendeux parser * It takes in an array of value objects, which will have one of the following properties: * Integer, Float, String * * It then returns a value object * @param {Value} args * @returns {Value} result */ function function_colour(args) { if (args.length != 1) { throw "color(s): expected 1 argument"; } else if (!args[0].String) { throw "color(s): expected a string value"; } let result = color_map[args[0].String.toLowerCase()]; if (result) { return { "Integer": result }; } throw "color(s): unknown color name "+args[0].String.toLowerCase(); } /** * Function that calculates the complement of an integer value representing an HTML color code * Usage: complement() * Can be called from the lavendeux parser * It takes in an array of value objects, which will have one of the following properties: * Integer, Float, String * * It then returns a value object * @param {Value} args * @returns {Value} result */ function function_complement(args) { if (args.length != 1) { throw "complement(n): expected 1 argument"; } else if (!args[0].Integer) { throw "complement(n): expected an integer value"; } // Get RBG bytes, and complement let rgb_val = extract_rgb(args[0].Integer); rgb_val.r = 255 - rgb_val.r; rgb_val.g = 255 - rgb_val.g; rgb_val.b = 255 - rgb_val.b; return { "Integer": pack_rgb(rgb_val) }; } /** * Decorator that expresses an integer value into as HTML color code * Usage: @color * Can be called from the lavendeux parser * It takes in a value objects, which will have one of the following properties: * Integer, Float, String * * It then returns a string * @param {Value} args * @returns {String} result */ function decorator_colour(value) { if (value.Integer) { return '#'+value.Integer.toString(16).padEnd(6, '0'); } throw "@color: expected an integer value"; } function extract_rgb(int_val) { return { "b": int_val & 0xFF, "g": (int_val >> 8) & 0xFF, "r": (int_val >> 16) & 0xFF }; } function pack_rgb(rgb_val) { let val = 0; val |= rgb_val.r; val = val << 8; val |= rgb_val.b; val = val << 8; val |= rgb_val.b; return val; } const color_map = { "air_force_blue_raf": 0x5d8aa8, "air_force_blue_usaf": 0x00308f, "air_superiority_blue": 0x72a0c1, "alabama_crimson": 0xa32638, "alice_blue": 0xf0f8ff, "alizarin_crimson": 0xe32636, "alloy_orange": 0xc46210, "almond": 0xefdecd, "amaranth": 0xe52b50, "amber": 0xffbf00, "amber_sae_ece": 0xff7e00, "american_rose": 0xff033e, "amethyst": 0x96c, "android_green": 0xa4c639, "anti_flash_white": 0xf2f3f4, "antique_brass": 0xcd9575, "antique_fuchsia": 0x915c83, "antique_ruby": 0x841b2d, "antique_white": 0xfaebd7, "ao_english": 0x008000, "apple_green": 0x8db600, "apricot": 0xfbceb1, "aqua": 0x0ff, "aquamarine": 0x7fffd4, "army_green": 0x4b5320, "arsenic": 0x3b444b, "arylide_yellow": 0xe9d66b, "ash_grey": 0xb2beb5, "asparagus": 0x87a96b, "atomic_tangerine": 0xf96, "auburn": 0xa52a2a, "aureolin": 0xfdee00, "aurometalsaurus": 0x6e7f80, "avocado": 0x568203, "azure": 0x007fff, "azure_mist_web": 0xf0ffff, "baby_blue": 0x89cff0, "baby_blue_eyes": 0xa1caf1, "baby_pink": 0xf4c2c2, "ball_blue": 0x21abcd, "banana_mania": 0xfae7b5, "banana_yellow": 0xffe135, "barn_red": 0x7c0a02, "battleship_grey": 0x848482, "bazaar": 0x98777b, "beau_blue": 0xbcd4e6, "beaver": 0x9f8170, "beige": 0xf5f5dc, "big_dip_o_ruby": 0x9c2542, "bisque": 0xffe4c4, "bistre": 0x3d2b1f, "bittersweet": 0xfe6f5e, "bittersweet_shimmer": 0xbf4f51, "black": 0x000, "black_bean": 0x3d0c02, "black_leather_jacket": 0x253529, "black_olive": 0x3b3c36, "blanched_almond": 0xffebcd, "blast_off_bronze": 0xa57164, "bleu_de_france": 0x318ce7, "blizzard_blue": 0xace5ee, "blond": 0xfaf0be, "blue": 0x00f, "blue_bell": 0xa2a2d0, "blue_crayola": 0x1f75fe, "blue_gray": 0x69c, "blue_green": 0x0d98ba, "blue_munsell": 0x0093af, "blue_ncs": 0x0087bd, "blue_pigment": 0x339, "blue_ryb": 0x0247fe, "blue_sapphire": 0x126180, "blue_violet": 0x8a2be2, "blush": 0xde5d83, "bole": 0x79443b, "bondi_blue": 0x0095b6, "bone": 0xe3dac9, "boston_university_red": 0xc00, "bottle_green": 0x006a4e, "boysenberry": 0x873260, "brandeis_blue": 0x0070ff, "brass": 0xb5a642, "brick_red": 0xcb4154, "bright_cerulean": 0x1dacd6, "bright_green": 0x6f0, "bright_lavender": 0xbf94e4, "bright_maroon": 0xc32148, "bright_pink": 0xff007f, "bright_turquoise": 0x08e8de, "bright_ube": 0xd19fe8, "brilliant_lavender": 0xf4bbff, "brilliant_rose": 0xff55a3, "brink_pink": 0xfb607f, "british_racing_green": 0x004225, "bronze": 0xcd7f32, "brown_traditional": 0x964b00, "brown_web": 0xa52a2a, "bubble_gum": 0xffc1cc, "bubbles": 0xe7feff, "buff": 0xf0dc82, "bulgarian_rose": 0x480607, "burgundy": 0x800020, "burlywood": 0xdeb887, "burnt_orange": 0xc50, "burnt_sienna": 0xe97451, "burnt_umber": 0x8a3324, "byzantine": 0xbd33a4, "byzantium": 0x702963, "cadet": 0x536872, "cadet_blue": 0x5f9ea0, "cadet_grey": 0x91a3b0, "cadmium_green": 0x006b3c, "cadmium_orange": 0xed872d, "cadmium_red": 0xe30022, "cadmium_yellow": 0xfff600, "caf_au_lait": 0xa67b5b, "caf_noir": 0x4b3621, "cal_poly_green": 0x1e4d2b, "cambridge_blue": 0xa3c1ad, "camel": 0xc19a6b, "cameo_pink": 0xefbbcc, "camouflage_green": 0x78866b, "canary_yellow": 0xffef00, "candy_apple_red": 0xff0800, "candy_pink": 0xe4717a, "capri": 0x00bfff, "caput_mortuum": 0x592720, "cardinal": 0xc41e3a, "caribbean_green": 0x0c9, "carmine": 0x960018, "carmine_m_p": 0xd70040, "carmine_pink": 0xeb4c42, "carmine_red": 0xff0038, "carnation_pink": 0xffa6c9, "carnelian": 0xb31b1b, "carolina_blue": 0x99badd, "carrot_orange": 0xed9121, "catalina_blue": 0x062a78, "ceil": 0x92a1cf, "celadon": 0xace1af, "celadon_blue": 0x007ba7, "celadon_green": 0x2f847c, "celeste_colour": 0xb2ffff, "celestial_blue": 0x4997d0, "cerise": 0xde3163, "cerise_pink": 0xec3b83, "cerulean": 0x007ba7, "cerulean_blue": 0x2a52be, "cerulean_frost": 0x6d9bc3, "cg_blue": 0x007aa5, "cg_red": 0xe03c31, "chamoisee": 0xa0785a, "champagne": 0xfad6a5, "charcoal": 0x36454f, "charm_pink": 0xe68fac, "chartreuse_traditional": 0xdfff00, "chartreuse_web": 0x7fff00, "cherry": 0xde3163, "cherry_blossom_pink": 0xffb7c5, "chestnut": 0xcd5c5c, "china_pink": 0xde6fa1, "china_rose": 0xa8516e, "chinese_red": 0xaa381e, "chocolate_traditional": 0x7b3f00, "chocolate_web": 0xd2691e, "chrome_yellow": 0xffa700, "cinereous": 0x98817b, "cinnabar": 0xe34234, "cinnamon": 0xd2691e, "citrine": 0xe4d00a, "classic_rose": 0xfbcce7, "cobalt": 0x0047ab, "cocoa_brown": 0xd2691e, "coffee": 0x6f4e37, "columbia_blue": 0x9bddff, "congo_pink": 0xf88379, "cool_black": 0x002e63, "cool_grey": 0x8c92ac, "copper": 0xb87333, "copper_crayola": 0xda8a67, "copper_penny": 0xad6f69, "copper_red": 0xcb6d51, "copper_rose": 0x966, "coquelicot": 0xff3800, "coral": 0xff7f50, "coral_pink": 0xf88379, "coral_red": 0xff4040, "cordovan": 0x893f45, "corn": 0xfbec5d, "cornell_red": 0xb31b1b, "cornflower_blue": 0x6495ed, "cornsilk": 0xfff8dc, "cosmic_latte": 0xfff8e7, "cotton_candy": 0xffbcd9, "cream": 0xfffdd0, "crimson": 0xdc143c, "crimson_glory": 0xbe0032, "cyan": 0x0ff, "cyan_process": 0x00b7eb, "daffodil": 0xffff31, "dandelion": 0xf0e130, "dark_blue": 0x00008b, "dark_brown": 0x654321, "dark_byzantium": 0x5d3954, "dark_candy_apple_red": 0xa40000, "dark_cerulean": 0x08457e, "dark_chestnut": 0x986960, "dark_coral": 0xcd5b45, "dark_cyan": 0x008b8b, "dark_electric_blue": 0x536878, "dark_goldenrod": 0xb8860b, "dark_gray": 0xa9a9a9, "dark_green": 0x013220, "dark_imperial_blue": 0x00416a, "dark_jungle_green": 0x1a2421, "dark_khaki": 0xbdb76b, "dark_lava": 0x483c32, "dark_lavender": 0x734f96, "dark_magenta": 0x8b008b, "dark_midnight_blue": 0x036, "dark_olive_green": 0x556b2f, "dark_orange": 0xff8c00, "dark_orchid": 0x9932cc, "dark_pastel_blue": 0x779ecb, "dark_pastel_green": 0x03c03c, "dark_pastel_purple": 0x966fd6, "dark_pastel_red": 0xc23b22, "dark_pink": 0xe75480, "dark_powder_blue": 0x039, "dark_raspberry": 0x872657, "dark_red": 0x8b0000, "dark_salmon": 0xe9967a, "dark_scarlet": 0x560319, "dark_sea_green": 0x8fbc8f, "dark_sienna": 0x3c1414, "dark_slate_blue": 0x483d8b, "dark_slate_gray": 0x2f4f4f, "dark_spring_green": 0x177245, "dark_tan": 0x918151, "dark_tangerine": 0xffa812, "dark_taupe": 0x483c32, "dark_terra_cotta": 0xcc4e5c, "dark_turquoise": 0x00ced1, "dark_violet": 0x9400d3, "dark_yellow": 0x9b870c, "dartmouth_green": 0x00703c, "davy_s_grey": 0x555, "debian_red": 0xd70a53, "deep_carmine": 0xa9203e, "deep_carmine_pink": 0xef3038, "deep_carrot_orange": 0xe9692c, "deep_cerise": 0xda3287, "deep_champagne": 0xfad6a5, "deep_chestnut": 0xb94e48, "deep_coffee": 0x704241, "deep_fuchsia": 0xc154c1, "deep_jungle_green": 0x004b49, "deep_lilac": 0x95b, "deep_magenta": 0xc0c, "deep_peach": 0xffcba4, "deep_pink": 0xff1493, "deep_ruby": 0x843f5b, "deep_saffron": 0xf93, "deep_sky_blue": 0x00bfff, "deep_tuscan_red": 0x66424d, "denim": 0x1560bd, "desert": 0xc19a6b, "desert_sand": 0xedc9af, "dim_gray": 0x696969, "dodger_blue": 0x1e90ff, "dogwood_rose": 0xd71868, "dollar_bill": 0x85bb65, "drab": 0x967117, "duke_blue": 0x00009c, "earth_yellow": 0xe1a95f, "ebony": 0x555d50, "ecru": 0xc2b280, "eggplant": 0x614051, "eggshell": 0xf0ead6, "egyptian_blue": 0x1034a6, "electric_blue": 0x7df9ff, "electric_crimson": 0xff003f, "electric_cyan": 0x0ff, "electric_green": 0x0f0, "electric_indigo": 0x6f00ff, "electric_lavender": 0xf4bbff, "electric_lime": 0xcf0, "electric_purple": 0xbf00ff, "electric_ultramarine": 0x3f00ff, "electric_violet": 0x8f00ff, "electric_yellow": 0xff0, "emerald": 0x50c878, "english_lavender": 0xb48395, "eton_blue": 0x96c8a2, "fallow": 0xc19a6b, "falu_red": 0x801818, "fandango": 0xb53389, "fashion_fuchsia": 0xf400a1, "fawn": 0xe5aa70, "feldgrau": 0x4d5d53, "fern_green": 0x4f7942, "ferrari_red": 0xff2800, "field_drab": 0x6c541e, "fire_engine_red": 0xce2029, "firebrick": 0xb22222, "flame": 0xe25822, "flamingo_pink": 0xfc8eac, "flavescent": 0xf7e98e, "flax": 0xeedc82, "floral_white": 0xfffaf0, "fluorescent_orange": 0xffbf00, "fluorescent_pink": 0xff1493, "fluorescent_yellow": 0xcf0, "folly": 0xff004f, "forest_green_traditional": 0x014421, "forest_green_web": 0x228b22, "french_beige": 0xa67b5b, "french_blue": 0x0072bb, "french_lilac": 0x86608e, "french_lime": 0xcf0, "french_raspberry": 0xc72c48, "french_rose": 0xf64a8a, "fuchsia": 0xf0f, "fuchsia_crayola": 0xc154c1, "fuchsia_pink": 0xf7f, "fuchsia_rose": 0xc74375, "fulvous": 0xe48400, "fuzzy_wuzzy": 0xc66, "gainsboro": 0xdcdcdc, "gamboge": 0xe49b0f, "ghost_white": 0xf8f8ff, "ginger": 0xb06500, "glaucous": 0x6082b6, "glitter": 0xe6e8fa, "gold_metallic": 0xd4af37, "gold_web_golden": 0xffd700, "golden_brown": 0x996515, "golden_poppy": 0xfcc200, "golden_yellow": 0xffdf00, "goldenrod": 0xdaa520, "granny_smith_apple": 0xa8e4a0, "gray": 0x808080, "gray_asparagus": 0x465945, "gray_html_css_gray": 0x808080, "gray_x11_gray": 0xbebebe, "green_color_wheel_x11_green": 0x0f0, "green_crayola": 0x1cac78, "green_html_css_green": 0x008000, "green_munsell": 0x00a877, "green_ncs": 0x009f6b, "green_pigment": 0x00a550, "green_ryb": 0x66b032, "green_yellow": 0xadff2f, "grullo": 0xa99a86, "guppie_green": 0x00ff7f, "halay_be": 0x663854, "han_blue": 0x446ccf, "han_purple": 0x5218fa, "hansa_yellow": 0xe9d66b, "harlequin": 0x3fff00, "harvard_crimson": 0xc90016, "harvest_gold": 0xda9100, "heart_gold": 0x808000, "heliotrope": 0xdf73ff, "hollywood_cerise": 0xf400a1, "honeydew": 0xf0fff0, "honolulu_blue": 0x007fbf, "hooker_s_green": 0x49796b, "hot_magenta": 0xff1dce, "hot_pink": 0xff69b4, "hunter_green": 0x355e3b, "iceberg": 0x71a6d2, "icterine": 0xfcf75e, "imperial_blue": 0x002395, "inchworm": 0xb2ec5d, "india_green": 0x138808, "indian_red": 0xcd5c5c, "indian_yellow": 0xe3a857, "indigo": 0x6f00ff, "indigo_dye": 0x00416a, "indigo_web": 0x4b0082, "international_klein_blue": 0x002fa7, "international_orange_aerospace": 0xff4f00, "international_orange_engineering": 0xba160c, "international_orange_golden_gate_bridge": 0xc0362c, "iris": 0x5a4fcf, "isabelline": 0xf4f0ec, "islamic_green": 0x009000, "ivory": 0xfffff0, "jade": 0x00a86b, "jasmine": 0xf8de7e, "jasper": 0xd73b3e, "jazzberry_jam": 0xa50b5e, "jet": 0x343434, "jonquil": 0xfada5e, "june_bud": 0xbdda57, "jungle_green": 0x29ab87, "kelly_green": 0x4cbb17, "kenyan_copper": 0x7c1c05, "khaki_html_css_khaki": 0xc3b091, "khaki_x11_light_khaki": 0xf0e68c, "ku_crimson": 0xe8000d, "la_salle_green": 0x087830, "languid_lavender": 0xd6cadd, "lapis_lazuli": 0x26619c, "laser_lemon": 0xfefe22, "laurel_green": 0xa9ba9d, "lava": 0xcf1020, "lavender_blue": 0xccf, "lavender_blush": 0xfff0f5, "lavender_floral": 0xb57edc, "lavender_gray": 0xc4c3d0, "lavender_indigo": 0x9457eb, "lavender_magenta": 0xee82ee, "lavender_mist": 0xe6e6fa, "lavender_pink": 0xfbaed2, "lavender_purple": 0x967bb6, "lavender_rose": 0xfba0e3, "lavender_web": 0xe6e6fa, "lawn_green": 0x7cfc00, "lemon": 0xfff700, "lemon_chiffon": 0xfffacd, "lemon_lime": 0xe3ff00, "licorice": 0x1a1110, "light_apricot": 0xfdd5b1, "light_blue": 0xadd8e6, "light_brown": 0xb5651d, "light_carmine_pink": 0xe66771, "light_coral": 0xf08080, "light_cornflower_blue": 0x93ccea, "light_crimson": 0xf56991, "light_cyan": 0xe0ffff, "light_fuchsia_pink": 0xf984ef, "light_goldenrod_yellow": 0xfafad2, "light_gray": 0xd3d3d3, "light_green": 0x90ee90, "light_khaki": 0xf0e68c, "light_pastel_purple": 0xb19cd9, "light_pink": 0xffb6c1, "light_red_ochre": 0xe97451, "light_salmon": 0xffa07a, "light_salmon_pink": 0xf99, "light_sea_green": 0x20b2aa, "light_sky_blue": 0x87cefa, "light_slate_gray": 0x789, "light_taupe": 0xb38b6d, "light_thulian_pink": 0xe68fac, "light_yellow": 0xffffe0, "lilac": 0xc8a2c8, "lime_color_wheel": 0xbfff00, "lime_green": 0x32cd32, "lime_web_x11_green": 0x0f0, "limerick": 0x9dc209, "lincoln_green": 0x195905, "linen": 0xfaf0e6, "lion": 0xc19a6b, "little_boy_blue": 0x6ca0dc, "liver": 0x534b4f, "lust": 0xe62020, "magenta": 0xf0f, "magenta_dye": 0xca1f7b, "magenta_process": 0xff0090, "magic_mint": 0xaaf0d1, "magnolia": 0xf8f4ff, "mahogany": 0xc04000, "maize": 0xfbec5d, "majorelle_blue": 0x6050dc, "malachite": 0x0bda51, "manatee": 0x979aaa, "mango_tango": 0xff8243, "mantis": 0x74c365, "mardi_gras": 0x880085, "maroon_crayola": 0xc32148, "maroon_html_css": 0x800000, "maroon_x11": 0xb03060, "mauve": 0xe0b0ff, "mauve_taupe": 0x915f6d, "mauvelous": 0xef98aa, "maya_blue": 0x73c2fb, "meat_brown": 0xe5b73b, "medium_aquamarine": 0x6da, "medium_blue": 0x0000cd, "medium_candy_apple_red": 0xe2062c, "medium_carmine": 0xaf4035, "medium_champagne": 0xf3e5ab, "medium_electric_blue": 0x035096, "medium_jungle_green": 0x1c352d, "medium_lavender_magenta": 0xdda0dd, "medium_orchid": 0xba55d3, "medium_persian_blue": 0x0067a5, "medium_purple": 0x9370db, "medium_red_violet": 0xbb3385, "medium_ruby": 0xaa4069, "medium_sea_green": 0x3cb371, "medium_slate_blue": 0x7b68ee, "medium_spring_bud": 0xc9dc87, "medium_spring_green": 0x00fa9a, "medium_taupe": 0x674c47, "medium_turquoise": 0x48d1cc, "medium_tuscan_red": 0x79443b, "medium_vermilion": 0xd9603b, "medium_violet_red": 0xc71585, "mellow_apricot": 0xf8b878, "mellow_yellow": 0xf8de7e, "melon": 0xfdbcb4, "midnight_blue": 0x191970, "midnight_green_eagle_green": 0x004953, "mikado_yellow": 0xffc40c, "mint": 0x3eb489, "mint_cream": 0xf5fffa, "mint_green": 0x98ff98, "misty_rose": 0xffe4e1, "moccasin": 0xfaebd7, "mode_beige": 0x967117, "moonstone_blue": 0x73a9c2, "mordant_red_19": 0xae0c00, "moss_green": 0xaddfad, "mountain_meadow": 0x30ba8f, "mountbatten_pink": 0x997a8d, "msu_green": 0x18453b, "mulberry": 0xc54b8c, "mustard": 0xffdb58, "myrtle": 0x21421e, "nadeshiko_pink": 0xf6adc6, "napier_green": 0x2a8000, "naples_yellow": 0xfada5e, "navajo_white": 0xffdead, "navy_blue": 0x000080, "neon_carrot": 0xffa343, "neon_fuchsia": 0xfe4164, "neon_green": 0x39ff14, "new_york_pink": 0xd7837f, "non_photo_blue": 0xa4dded, "north_texas_green": 0x059033, "ocean_boat_blue": 0x0077be, "ochre": 0xc72, "office_green": 0x008000, "old_gold": 0xcfb53b, "old_lace": 0xfdf5e6, "old_lavender": 0x796878, "old_mauve": 0x673147, "old_rose": 0xc08081, "olive": 0x808000, "olive_drab_7": 0x3c341f, "olive_drab_web_olive_drab_3": 0x6b8e23, "olivine": 0x9ab973, "onyx": 0x353839, "opera_mauve": 0xb784a7, "orange_color_wheel": 0xff7f00, "orange_peel": 0xff9f00, "orange_red": 0xff4500, "orange_ryb": 0xfb9902, "orange_web_color": 0xffa500, "orchid": 0xda70d6, "otter_brown": 0x654321, "ou_crimson_red": 0x900, "outer_space": 0x414a4c, "outrageous_orange": 0xff6e4a, "oxford_blue": 0x002147, "pakistan_green": 0x060, "palatinate_blue": 0x273be2, "palatinate_purple": 0x682860, "pale_aqua": 0xbcd4e6, "pale_blue": 0xafeeee, "pale_brown": 0x987654, "pale_carmine": 0xaf4035, "pale_cerulean": 0x9bc4e2, "pale_chestnut": 0xddadaf, "pale_copper": 0xda8a67, "pale_cornflower_blue": 0xabcdef, "pale_gold": 0xe6be8a, "pale_goldenrod": 0xeee8aa, "pale_green": 0x98fb98, "pale_lavender": 0xdcd0ff, "pale_magenta": 0xf984e5, "pale_pink": 0xfadadd, "pale_plum": 0xdda0dd, "pale_red_violet": 0xdb7093, "pale_robin_egg_blue": 0x96ded1, "pale_silver": 0xc9c0bb, "pale_spring_bud": 0xecebbd, "pale_taupe": 0xbc987e, "pale_violet_red": 0xdb7093, "pansy_purple": 0x78184a, "papaya_whip": 0xffefd5, "paris_green": 0x50c878, "pastel_blue": 0xaec6cf, "pastel_brown": 0x836953, "pastel_gray": 0xcfcfc4, "pastel_green": 0x7d7, "pastel_magenta": 0xf49ac2, "pastel_orange": 0xffb347, "pastel_pink": 0xdea5a4, "pastel_purple": 0xb39eb5, "pastel_red": 0xff6961, "pastel_violet": 0xcb99c9, "pastel_yellow": 0xfdfd96, "patriarch": 0x800080, "payne_s_grey": 0x536878, "peach": 0xffe5b4, "peach_crayola": 0xffcba4, "peach_orange": 0xfc9, "peach_puff": 0xffdab9, "peach_yellow": 0xfadfad, "pear": 0xd1e231, "pearl": 0xeae0c8, "pearl_aqua": 0x88d8c0, "pearly_purple": 0xb768a2, "peridot": 0xe6e200, "periwinkle": 0xccf, "persian_blue": 0x1c39bb, "persian_green": 0x00a693, "persian_indigo": 0x32127a, "persian_orange": 0xd99058, "persian_pink": 0xf77fbe, "persian_plum": 0x701c1c, "persian_red": 0xc33, "persian_rose": 0xfe28a2, "persimmon": 0xec5800, "peru": 0xcd853f, "phlox": 0xdf00ff, "phthalo_blue": 0x000f89, "phthalo_green": 0x123524, "piggy_pink": 0xfddde6, "pine_green": 0x01796f, "pink": 0xffc0cb, "pink_lace": 0xffddf4, "pink_orange": 0xf96, "pink_pearl": 0xe7accf, "pink_sherbet": 0xf78fa7, "pistachio": 0x93c572, "platinum": 0xe5e4e2, "plum_traditional": 0x8e4585, "plum_web": 0xdda0dd, "portland_orange": 0xff5a36, "powder_blue_web": 0xb0e0e6, "princeton_orange": 0xff8f00, "prune": 0x701c1c, "prussian_blue": 0x003153, "psychedelic_purple": 0xdf00ff, "puce": 0xc89, "pumpkin": 0xff7518, "purple_heart": 0x69359c, "purple_html_css": 0x800080, "purple_mountain_majesty": 0x9678b6, "purple_munsell": 0x9f00c5, "purple_pizzazz": 0xfe4eda, "purple_taupe": 0x50404d, "purple_x11": 0xa020f0, "quartz": 0x51484f, "rackley": 0x5d8aa8, "radical_red": 0xff355e, "rajah": 0xfbab60, "raspberry": 0xe30b5d, "raspberry_glace": 0x915f6d, "raspberry_pink": 0xe25098, "raspberry_rose": 0xb3446c, "raw_umber": 0x826644, "razzle_dazzle_rose": 0xf3c, "razzmatazz": 0xe3256b, "red": 0xf00, "red_brown": 0xa52a2a, "red_devil": 0x860111, "red_munsell": 0xf2003c, "red_ncs": 0xc40233, "red_orange": 0xff5349, "red_pigment": 0xed1c24, "red_ryb": 0xfe2712, "red_violet": 0xc71585, "redwood": 0xab4e52, "regalia": 0x522d80, "resolution_blue": 0x002387, "rich_black": 0x004040, "rich_brilliant_lavender": 0xf1a7fe, "rich_carmine": 0xd70040, "rich_electric_blue": 0x0892d0, "rich_lavender": 0xa76bcf, "rich_lilac": 0xb666d2, "rich_maroon": 0xb03060, "rifle_green": 0x414833, "robin_egg_blue": 0x0cc, "rose": 0xff007f, "rose_bonbon": 0xf9429e, "rose_ebony": 0x674846, "rose_gold": 0xb76e79, "rose_madder": 0xe32636, "rose_pink": 0xf6c, "rose_quartz": 0xaa98a9, "rose_taupe": 0x905d5d, "rose_vale": 0xab4e52, "rosewood": 0x65000b, "rosso_corsa": 0xd40000, "rosy_brown": 0xbc8f8f, "royal_azure": 0x0038a8, "royal_blue_traditional": 0x002366, "royal_blue_web": 0x4169e1, "royal_fuchsia": 0xca2c92, "royal_purple": 0x7851a9, "royal_yellow": 0xfada5e, "rubine_red": 0xd10056, "ruby": 0xe0115f, "ruby_red": 0x9b111e, "ruddy": 0xff0028, "ruddy_brown": 0xbb6528, "ruddy_pink": 0xe18e96, "rufous": 0xa81c07, "russet": 0x80461b, "rust": 0xb7410e, "rusty_red": 0xda2c43, "sacramento_state_green": 0x00563f, "saddle_brown": 0x8b4513, "safety_orange_blaze_orange": 0xff6700, "saffron": 0xf4c430, "salmon": 0xff8c69, "salmon_pink": 0xff91a4, "sand": 0xc2b280, "sand_dune": 0x967117, "sandstorm": 0xecd540, "sandy_brown": 0xf4a460, "sandy_taupe": 0x967117, "sangria": 0x92000a, "sap_green": 0x507d2a, "sapphire": 0x0f52ba, "sapphire_blue": 0x0067a5, "satin_sheen_gold": 0xcba135, "scarlet": 0xff2400, "scarlet_crayola": 0xfd0e35, "school_bus_yellow": 0xffd800, "screamin_green": 0x76ff7a, "sea_blue": 0x006994, "sea_green": 0x2e8b57, "seal_brown": 0x321414, "seashell": 0xfff5ee, "selective_yellow": 0xffba00, "sepia": 0x704214, "shadow": 0x8a795d, "shamrock_green": 0x009e60, "shocking_pink": 0xfc0fc0, "shocking_pink_crayola": 0xff6fff, "sienna": 0x882d17, "silver": 0xc0c0c0, "sinopia": 0xcb410b, "skobeloff": 0x007474, "sky_blue": 0x87ceeb, "sky_magenta": 0xcf71af, "slate_blue": 0x6a5acd, "slate_gray": 0x708090, "smalt_dark_powder_blue": 0x039, "smokey_topaz": 0x933d41, "smoky_black": 0x100c08, "snow": 0xfffafa, "spiro_disco_ball": 0x0fc0fc, "spring_bud": 0xa7fc00, "spring_green": 0x00ff7f, "st_patrick_s_blue": 0x23297a, "steel_blue": 0x4682b4, "stil_de_grain_yellow": 0xfada5e, "stizza": 0x900, "stormcloud": 0x4f666a, "straw": 0xe4d96f, "sunglow": 0xfc3, "sunset": 0xfad6a5, "tan": 0xd2b48c, "tangelo": 0xf94d00, "tangerine": 0xf28500, "tangerine_yellow": 0xfc0, "tango_pink": 0xe4717a, "taupe": 0x483c32, "taupe_gray": 0x8b8589, "tea_green": 0xd0f0c0, "tea_rose_orange": 0xf88379, "tea_rose_rose": 0xf4c2c2, "teal": 0x008080, "teal_blue": 0x367588, "teal_green": 0x00827f, "telemagenta": 0xcf3476, "tenn_tawny": 0xcd5700, "terra_cotta": 0xe2725b, "thistle": 0xd8bfd8, "thulian_pink": 0xde6fa1, "tickle_me_pink": 0xfc89ac, "tiffany_blue": 0x0abab5, "tiger_s_eye": 0xe08d3c, "timberwolf": 0xdbd7d2, "titanium_yellow": 0xeee600, "tomato": 0xff6347, "toolbox": 0x746cc0, "topaz": 0xffc87c, "tractor_red": 0xfd0e35, "trolley_grey": 0x808080, "tropical_rain_forest": 0x00755e, "true_blue": 0x0073cf, "tufts_blue": 0x417dc1, "tumbleweed": 0xdeaa88, "turkish_rose": 0xb57281, "turquoise": 0x30d5c8, "turquoise_blue": 0x00ffef, "turquoise_green": 0xa0d6b4, "tuscan_red": 0x7c4848, "twilight_lavender": 0x8a496b, "tyrian_purple": 0x66023c, "ua_blue": 0x03a, "ua_red": 0xd9004c, "ube": 0x8878c3, "ucla_blue": 0x536895, "ucla_gold": 0xffb300, "ufo_green": 0x3cd070, "ultra_pink": 0xff6fff, "ultramarine": 0x120a8f, "ultramarine_blue": 0x4166f5, "umber": 0x635147, "unbleached_silk": 0xffddca, "united_nations_blue": 0x5b92e5, "university_of_california_gold": 0xb78727, "unmellow_yellow": 0xff6, "up_forest_green": 0x014421, "up_maroon": 0x7b1113, "upsdell_red": 0xae2029, "urobilin": 0xe1ad21, "usafa_blue": 0x004f98, "usc_cardinal": 0x900, "usc_gold": 0xfc0, "utah_crimson": 0xd3003f, "vanilla": 0xf3e5ab, "vegas_gold": 0xc5b358, "venetian_red": 0xc80815, "verdigris": 0x43b3ae, "vermilion_cinnabar": 0xe34234, "vermilion_plochere": 0xd9603b, "veronica": 0xa020f0, "violet": 0x8f00ff, "violet_blue": 0x324ab2, "violet_color_wheel": 0x7f00ff, "violet_ryb": 0x8601af, "violet_web": 0xee82ee, "viridian": 0x40826d, "vivid_auburn": 0x922724, "vivid_burgundy": 0x9f1d35, "vivid_cerise": 0xda1d81, "vivid_tangerine": 0xffa089, "vivid_violet": 0x9f00ff, "warm_black": 0x004242, "waterspout": 0xa4f4f9, "wenge": 0x645452, "wheat": 0xf5deb3, "white": 0xfff, "white_smoke": 0xf5f5f5, "wild_blue_yonder": 0xa2add0, "wild_strawberry": 0xff43a4, "wild_watermelon": 0xfc6c85, "wine": 0x722f37, "wine_dregs": 0x673147, "wisteria": 0xc9a0dc, "wood_brown": 0xc19a6b, "xanadu": 0x738678, "yale_blue": 0x0f4d92, "yellow": 0xff0, "yellow_green": 0x9acd32, "yellow_munsell": 0xefcc00, "yellow_ncs": 0xffd300, "yellow_orange": 0xffae42, "yellow_process": 0xffef00, "yellow_ryb": 0xfefe33, "zaffre": 0x0014a8, "zinnwaldite_brown": 0x2c1608, }