├── LICENSE ├── README.md ├── color_detection.py ├── image01.jpg └── wikipedia_color_names.csv /LICENSE: -------------------------------------------------------------------------------- 1 | GNU LESSER GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | 9 | This version of the GNU Lesser General Public License incorporates 10 | the terms and conditions of version 3 of the GNU General Public 11 | License, supplemented by the additional permissions listed below. 12 | 13 | 0. Additional Definitions. 14 | 15 | As used herein, "this License" refers to version 3 of the GNU Lesser 16 | General Public License, and the "GNU GPL" refers to version 3 of the GNU 17 | General Public License. 18 | 19 | "The Library" refers to a covered work governed by this License, 20 | other than an Application or a Combined Work as defined below. 21 | 22 | An "Application" is any work that makes use of an interface provided 23 | by the Library, but which is not otherwise based on the Library. 24 | Defining a subclass of a class defined by the Library is deemed a mode 25 | of using an interface provided by the Library. 26 | 27 | A "Combined Work" is a work produced by combining or linking an 28 | Application with the Library. The particular version of the Library 29 | with which the Combined Work was made is also called the "Linked 30 | Version". 31 | 32 | The "Minimal Corresponding Source" for a Combined Work means the 33 | Corresponding Source for the Combined Work, excluding any source code 34 | for portions of the Combined Work that, considered in isolation, are 35 | based on the Application, and not on the Linked Version. 36 | 37 | The "Corresponding Application Code" for a Combined Work means the 38 | object code and/or source code for the Application, including any data 39 | and utility programs needed for reproducing the Combined Work from the 40 | Application, but excluding the System Libraries of the Combined Work. 41 | 42 | 1. Exception to Section 3 of the GNU GPL. 43 | 44 | You may convey a covered work under sections 3 and 4 of this License 45 | without being bound by section 3 of the GNU GPL. 46 | 47 | 2. Conveying Modified Versions. 48 | 49 | If you modify a copy of the Library, and, in your modifications, a 50 | facility refers to a function or data to be supplied by an Application 51 | that uses the facility (other than as an argument passed when the 52 | facility is invoked), then you may convey a copy of the modified 53 | version: 54 | 55 | a) under this License, provided that you make a good faith effort to 56 | ensure that, in the event an Application does not supply the 57 | function or data, the facility still operates, and performs 58 | whatever part of its purpose remains meaningful, or 59 | 60 | b) under the GNU GPL, with none of the additional permissions of 61 | this License applicable to that copy. 62 | 63 | 3. Object Code Incorporating Material from Library Header Files. 64 | 65 | The object code form of an Application may incorporate material from 66 | a header file that is part of the Library. You may convey such object 67 | code under terms of your choice, provided that, if the incorporated 68 | material is not limited to numerical parameters, data structure 69 | layouts and accessors, or small macros, inline functions and templates 70 | (ten or fewer lines in length), you do both of the following: 71 | 72 | a) Give prominent notice with each copy of the object code that the 73 | Library is used in it and that the Library and its use are 74 | covered by this License. 75 | 76 | b) Accompany the object code with a copy of the GNU GPL and this license 77 | document. 78 | 79 | 4. Combined Works. 80 | 81 | You may convey a Combined Work under terms of your choice that, 82 | taken together, effectively do not restrict modification of the 83 | portions of the Library contained in the Combined Work and reverse 84 | engineering for debugging such modifications, if you also do each of 85 | the following: 86 | 87 | a) Give prominent notice with each copy of the Combined Work that 88 | the Library is used in it and that the Library and its use are 89 | covered by this License. 90 | 91 | b) Accompany the Combined Work with a copy of the GNU GPL and this license 92 | document. 93 | 94 | c) For a Combined Work that displays copyright notices during 95 | execution, include the copyright notice for the Library among 96 | these notices, as well as a reference directing the user to the 97 | copies of the GNU GPL and this license document. 98 | 99 | d) Do one of the following: 100 | 101 | 0) Convey the Minimal Corresponding Source under the terms of this 102 | License, and the Corresponding Application Code in a form 103 | suitable for, and under terms that permit, the user to 104 | recombine or relink the Application with a modified version of 105 | the Linked Version to produce a modified Combined Work, in the 106 | manner specified by section 6 of the GNU GPL for conveying 107 | Corresponding Source. 108 | 109 | 1) Use a suitable shared library mechanism for linking with the 110 | Library. A suitable mechanism is one that (a) uses at run time 111 | a copy of the Library already present on the user's computer 112 | system, and (b) will operate properly with a modified version 113 | of the Library that is interface-compatible with the Linked 114 | Version. 115 | 116 | e) Provide Installation Information, but only if you would otherwise 117 | be required to provide such information under section 6 of the 118 | GNU GPL, and only to the extent that such information is 119 | necessary to install and execute a modified version of the 120 | Combined Work produced by recombining or relinking the 121 | Application with a modified version of the Linked Version. (If 122 | you use option 4d0, the Installation Information must accompany 123 | the Minimal Corresponding Source and Corresponding Application 124 | Code. If you use option 4d1, you must provide the Installation 125 | Information in the manner specified by section 6 of the GNU GPL 126 | for conveying Corresponding Source.) 127 | 128 | 5. Combined Libraries. 129 | 130 | You may place library facilities that are a work based on the 131 | Library side by side in a single library together with other library 132 | facilities that are not Applications and are not covered by this 133 | License, and convey such a combined library under terms of your 134 | choice, if you do both of the following: 135 | 136 | a) Accompany the combined library with a copy of the same work based 137 | on the Library, uncombined with any other library facilities, 138 | conveyed under the terms of this License. 139 | 140 | b) Give prominent notice with the combined library that part of it 141 | is a work based on the Library, and explaining where to find the 142 | accompanying uncombined form of the same work. 143 | 144 | 6. Revised Versions of the GNU Lesser General Public License. 145 | 146 | The Free Software Foundation may publish revised and/or new versions 147 | of the GNU Lesser General Public License from time to time. Such new 148 | versions will be similar in spirit to the present version, but may 149 | differ in detail to address new problems or concerns. 150 | 151 | Each version is given a distinguishing version number. If the 152 | Library as you received it specifies that a certain numbered version 153 | of the GNU Lesser General Public License "or any later version" 154 | applies to it, you have the option of following the terms and 155 | conditions either of that published version or of any later version 156 | published by the Free Software Foundation. If the Library as you 157 | received it does not specify a version number of the GNU Lesser 158 | General Public License, you may choose any version of the GNU Lesser 159 | General Public License ever published by the Free Software Foundation. 160 | 161 | If the Library as you received it specifies that a proxy can decide 162 | whether future versions of the GNU Lesser General Public License shall 163 | apply, that proxy's public statement of acceptance of any version is 164 | permanent authorization for you to choose that version for the 165 | Library. 166 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Most of the time we don't remember the name of color 2 | and there can be 16 million colors based on the different RGB color values but we only remember a few. 3 | In this project i am trying to find the color name on the base of mouse left button click. 4 | "# Color-Detection" 5 | -------------------------------------------------------------------------------- /color_detection.py: -------------------------------------------------------------------------------- 1 | import pandas as pd 2 | import cv2 3 | 4 | imageUrl = 'image01.jpg' 5 | clicked = False 6 | redValue = 0 7 | greenValue = 0 8 | blueValue = 0 9 | xPosition = 0 10 | yPosition = 0 11 | 12 | colorNameDataFrame = pd.read_csv('wikipedia_color_names.csv') 13 | colorNameDataFrame.drop(colorNameDataFrame.iloc[:,5:8], inplace=True, axis=1) 14 | colorNameDataFrame.rename(columns={'Hex (24 bit)':'Hex', 'Red (8 bit)':'Red', 'Green (8 bit)':'Green', 'Blue (8 bit)':'Blue'}, inplace=True) 15 | image = cv2.imread(imageUrl) 16 | 17 | def getColorName(red,green,blue): 18 | minimumValue = 10000 19 | for i in range(len(colorNameDataFrame)): 20 | rgbValue = abs(red- int(colorNameDataFrame.loc[i,"Red"])) + abs(green- int(colorNameDataFrame.loc[i,"Green"]))+ abs(blue- int(colorNameDataFrame.loc[i,"Blue"])) 21 | if(rgbValue <= minimumValue): 22 | minimumValue = rgbValue 23 | colorName = colorNameDataFrame.loc[i,"Name"] 24 | return colorName 25 | 26 | def draw_function(event, x,y, flags, param): 27 | if event == cv2.EVENT_LBUTTONDBLCLK: 28 | global blueValue, greenValue, redValue, xPosition, yPosition, clicked 29 | clicked = True 30 | xPosition = x 31 | yPosition = y 32 | blueValue, greenValue, redValue = image[yPosition, xPosition] 33 | blueValue = int(blueValue) 34 | greenValue = int(greenValue) 35 | redValue = int(redValue) 36 | 37 | if __name__ == '__main__': 38 | cv2.namedWindow('Color Name') 39 | cv2.setMouseCallback('Color Name', draw_function) 40 | 41 | while (1): 42 | if (clicked): 43 | cv2.rectangle(image, (20, 20), (950, 60), (blueValue, greenValue, redValue), -1) 44 | colorName = 'Selected color name is:-' + getColorName(redValue, greenValue, blueValue) 45 | cv2.putText(image, colorName, (50, 50), 2, 0.75, (255, 255, 255), 1, cv2.FONT_ITALIC) 46 | minimumValue = abs(redValue + greenValue + blueValue) 47 | if (minimumValue >= 600): 48 | cv2.putText(image, colorName, (50, 50), 2, 0.75, (0, 0, 0), 1, cv2.FONT_ITALIC) 49 | clicked = False 50 | cv2.imshow("Color Name", image) 51 | # Break the loop when user hits 'esc' key 52 | if cv2.waitKey(20) & 0xFF == 27: 53 | break 54 | cv2.destroyAllWindows() 55 | 56 | -------------------------------------------------------------------------------- /image01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitpatyal/Color-Detection/7d7b3ec4af4453ed0249251e459881315a6241a4/image01.jpg -------------------------------------------------------------------------------- /wikipedia_color_names.csv: -------------------------------------------------------------------------------- 1 | "Name","Hex (24 bit)","Red (8 bit)","Green (8 bit)","Blue (8 bit)","Hue (degrees)","HSL.S (%)","HSL.L (%), HSV.S (%), HSV.V (%)" 2 | "Absolute zero","#0048BA",0,72,186,217.0,100.0,37.0 3 | "Acid green","#B0BF1A",176,191,26,65.0,76.0,43.0 4 | "Aero","#7CB9E8",124,185,232,206.0,70.0,70.0 5 | "Aero blue","#C9FFE5",201,255,229,151.0,100.0,89.0 6 | "African violet","#B284BE",178,132,190,288.0,31.0,63.0 7 | "Air Force blue (RAF)","#5D8AA8",93,138,168,204.0,30.0,51.0 8 | "Air Force blue (USAF)","#00308F",0,48,143,220.0,100.0,28.0 9 | "Air superiority blue","#72A0C1",114,160,193,205.0,39.0,60.0 10 | "Alabama crimson","#AF002A",175,0,42,346.0,100.0,34.0 11 | "Alabaster","#F2F0E6",242,240,230,346.0,32.0,93.0 12 | "Alice blue","#F0F8FF",240,248,255,208.0,100.0,97.0 13 | "Alien Armpit","#84DE02",132,222,2,85.0,98.0,44.0 14 | "Alizarin crimson","#E32636",227,38,54,355.0,77.0,52.0 15 | "Alloy orange","#C46210",196,98,16,27.0,85.0,42.0 16 | "Almond","#EFDECD",239,222,205,30.0,52.0,87.0 17 | "Amaranth","#E52B50",229,43,80,348.0,78.0,53.0 18 | "Amaranth deep purple","#9F2B68",159,43,104,328.0,57.0,40.0 19 | "Amaranth pink","#F19CBB",241,156,187,338.0,75.0,78.0 20 | "Amaranth purple","#AB274F",171,39,79,342.0,63.0,41.0 21 | "Amaranth red","#D3212D",211,33,45,356.0,73.0,48.0 22 | "Amazon","#3B7A57",59,122,87,147.0,35.0,35.0 23 | "Amazonite","#00C4B0",0,196,176,356.0,100.0,38.0 24 | "Amber","#FFBF00",255,191,0,45.0,100.0,50.0 25 | "Amber (SAE/ECE)","#FF7E00",255,126,0,30.0,100.0,50.0 26 | "American rose","#FF033E",255,3,62,346.0,100.0,51.0 27 | "Amethyst","#9966CC",153,102,204,270.0,50.0,60.0 28 | "Android green","#A4C639",164,198,57,74.0,55.0,50.0 29 | "Anti-flash white","#F2F3F4",242,243,244,210.0,8.0,95.0 30 | "Antique brass","#CD9575",205,149,117,22.0,47.0,63.0 31 | "Antique bronze","#665D1E",102,93,30,53.0,55.0,26.0 32 | "Antique fuchsia","#915C83",145,92,131,316.0,22.0,46.0 33 | "Antique ruby","#841B2D",132,27,45,350.0,66.0,31.0 34 | "Antique white","#FAEBD7",250,235,215,34.0,78.0,91.0 35 | "Ao (English)","#008000",0,128,0,120.0,100.0,25.0 36 | "Apple green","#8DB600",141,182,0,74.0,100.0,36.0 37 | "Apricot","#FBCEB1",251,206,177,24.0,90.0,84.0 38 | "Aqua","#00FFFF",0,255,255,180.0,100.0,50.0 39 | "Aquamarine","#7FFFD4",127,255,212,160.0,100.0,75.0 40 | "Arctic lime","#D0FF14",208,255,20,72.0,100.0,54.0 41 | "Army green","#4B5320",75,83,32,69.0,44.0,23.0 42 | "Arsenic","#3B444B",59,68,75,206.0,12.0,26.0 43 | "Artichoke","#8F9779",143,151,121,76.0,13.0,53.0 44 | "Arylide yellow","#E9D66B",233,214,107,51.0,74.0,67.0 45 | "Ash grey","#B2BEB5",178,190,181,135.0,8.0,72.0 46 | "Asparagus","#87A96B",135,169,107,93.0,26.0,54.0 47 | "Atomic tangerine","#FF9966",255,153,102,20.0,100.0,70.0 48 | "Auburn","#A52A2A",165,42,42,0.0,59.0,41.0 49 | "Aureolin","#FDEE00",253,238,0,56.0,100.0,50.0 50 | "AuroMetalSaurus","#6E7F80",110,127,128,183.0,8.0,47.0 51 | "Avocado","#568203",86,130,3,81.0,95.0,26.0 52 | "Awesome","#FF2052",255,32,82,81.0,95.0,56.0 53 | "Aztec Gold","#C39953",195,153,83,38.0,48.0,55.0 54 | "Azure","#007FFF",0,127,255,210.0,100.0,50.0 55 | "Azure (web color)","#F0FFFF",240,255,255,180.0,100.0,97.0 56 | "Azure mist","#F0FFFF",240,255,255,180.0,100.0,97.0 57 | "Azureish white","#DBE9F4",219,233,244,206.0,53.0,91.0 58 | "Baby blue","#89CFF0",137,207,240,199.0,77.0,74.0 59 | "Baby blue eyes","#A1CAF1",161,202,241,209.0,74.0,79.0 60 | "Baby pink","#F4C2C2",244,194,194,0.0,69.0,86.0 61 | "Baby powder","#FEFEFA",254,254,250,60.0,67.0,99.0 62 | "Baker-Miller pink","#FF91AF",255,145,175,344.0,100.0,78.0 63 | "Ball blue","#21ABCD",33,171,205,192.0,72.0,47.0 64 | "Banana Mania","#FAE7B5",250,231,181,43.0,87.0,85.0 65 | "Banana yellow","#FFE135",255,225,53,51.0,100.0,60.0 66 | "Bangladesh green","#006A4E",0,106,78,164.0,100.0,21.0 67 | "Barbie pink","#E0218A",224,33,138,327.0,75.0,50.0 68 | "Barn red","#7C0A02",124,10,2,4.0,97.0,25.0 69 | "Battery Charged Blue","#1DACD6",29,172,214,194.0,76.0,48.0 70 | "Battleship grey","#848482",132,132,130,60.0,1.0,51.0 71 | "Bazaar","#98777B",152,119,123,353.0,14.0,53.0 72 | "Beau blue","#BCD4E6",188,212,230,206.0,46.0,82.0 73 | "Beaver","#9F8170",159,129,112,22.0,20.0,53.0 74 | "Begonia","#FA6E79",250,110,121,355.0,93.0,71.0 75 | "Beige","#F5F5DC",245,245,220,60.0,56.0,91.0 76 | "B'dazzled blue","#2E5894",46,88,148,215.0,53.0,38.0 77 | "Big dip o’ruby","#9C2542",156,37,66,345.0,62.0,38.0 78 | "Big Foot Feet","#E88E5A",232,142,90,22.0,76.0,63.0 79 | "Bisque","#FFE4C4",255,228,196,33.0,100.0,88.0 80 | "Bistre","#3D2B1F",61,43,31,24.0,33.0,18.0 81 | "Bistre brown","#967117",150,113,23,43.0,73.0,34.0 82 | "Bitter lemon","#CAE00D",202,224,13,66.0,89.0,46.0 83 | "Bitter lime","#BFFF00",191,255,0,75.0,100.0,50.0 84 | "Bittersweet","#FE6F5E",254,111,94,6.0,99.0,68.0 85 | "Bittersweet shimmer","#BF4F51",191,79,81,359.0,47.0,53.0 86 | "Black","#000000",0,0,0,0,0.0,0.0 87 | "Black bean","#3D0C02",61,12,2,10.0,94.0,12.0 88 | "Black Coral","#54626F",84,98,111,209.0,14.0,38.0 89 | "Black leather jacket","#253529",37,53,41,135.0,18.0,18.0 90 | "Black olive","#3B3C36",59,60,54,70.0,5.0,22.0 91 | "Black Shadows","#BFAFB2",191,175,178,349.0,11.0,72.0 92 | "Blanched almond","#FFEBCD",255,235,205,36.0,100.0,90.0 93 | "Blast-off bronze","#A57164",165,113,100,12.0,27.0,52.0 94 | "Bleu de France","#318CE7",49,140,231,210.0,79.0,55.0 95 | "Blizzard Blue","#ACE5EE",172,229,238,188.0,66.0,80.0 96 | "Blond","#FAF0BE",250,240,190,50.0,86.0,86.0 97 | "Blue","#0000FF",0,0,255,240.0,100.0,50.0 98 | "Blue (Crayola)","#1F75FE",31,117,254,217.0,99.0,56.0 99 | "Blue (Munsell)","#0093AF",0,147,175,190.0,100.0,34.0 100 | "Blue (NCS)","#0087BD",0,135,189,197.0,100.0,37.0 101 | "Blue (Pantone)","#0018A8",0,24,168,231.0,100.0,33.0 102 | "Blue (pigment)","#333399",51,51,153,240.0,50.0,40.0 103 | "Blue (RYB)","#0247FE",2,71,254,224.0,99.0,50.0 104 | "Blue Bell","#A2A2D0",162,162,208,240.0,33.0,73.0 105 | "Blue Bolt","#00B9FB",0,185,251,196.0,100.0,49.0 106 | "Blue-gray","#6699CC",102,153,204,210.0,50.0,60.0 107 | "Blue-green","#0D98BA",13,152,186,192.0,87.0,39.0 108 | "Blue Jeans","#5DADEC",93,173,236,206.0,79.0,65.0 109 | "Blue Lagoon","#ACE5EE",172,229,238,188.0,66.0,80.0 110 | "Blue-magenta violet","#553592",85,53,146,261.0,47.0,39.0 111 | "Blue sapphire","#126180",18,97,128,197.0,75.0,29.0 112 | "Blue-violet","#8A2BE2",138,43,226,271.0,76.0,53.0 113 | "Blue yonder","#5072A7",80,114,167,217.0,35.0,48.0 114 | "Blueberry","#4F86F7",79,134,247,220.0,91.0,64.0 115 | "Bluebonnet","#1C1CF0",28,28,240,240.0,88.0,53.0 116 | "Blush","#DE5D83",222,93,131,342.0,66.0,62.0 117 | "Bole","#79443B",121,68,59,9.0,34.0,35.0 118 | "Bondi blue","#0095B6",0,149,182,191.0,100.0,36.0 119 | "Bone","#E3DAC9",227,218,201,39.0,32.0,84.0 120 | "Booger Buster","#DDE26A",221,226,106,63.0,67.0,65.0 121 | "Boston University Red","#CC0000",204,0,0,0.0,100.0,40.0 122 | "Bottle green","#006A4E",0,106,78,164.0,100.0,21.0 123 | "Boysenberry","#873260",135,50,96,328.0,46.0,36.0 124 | "Brandeis blue","#0070FF",0,112,255,214.0,100.0,50.0 125 | "Brass","#B5A642",181,166,66,52.0,47.0,48.0 126 | "Brick red","#CB4154",203,65,84,352.0,57.0,53.0 127 | "Bright cerulean","#1DACD6",29,172,214,194.0,76.0,48.0 128 | "Bright green","#66FF00",102,255,0,96.0,100.0,50.0 129 | "Bright lavender","#BF94E4",191,148,228,272.0,60.0,74.0 130 | "Bright lilac","#D891EF",216,145,239,285.0,75.0,75.0 131 | "Bright maroon","#C32148",195,33,72,346.0,71.0,45.0 132 | "Bright navy blue","#1974D2",25,116,210,210.0,79.0,46.0 133 | "Bright pink","#FF007F",255,0,127,330.0,100.0,50.0 134 | "Bright turquoise","#08E8DE",8,232,222,177.0,93.0,47.0 135 | "Bright ube","#D19FE8",209,159,232,281.0,61.0,77.0 136 | "Bright Yellow (Crayola)","#FFAA1D",255,170,29,37.0,100.0,56.0 137 | "Brilliant azure","#3399FF",51,153,255,210.0,100.0,60.0 138 | "Brilliant lavender","#F4BBFF",244,187,255,290.0,100.0,87.0 139 | "Brilliant rose","#FF55A3",255,85,163,332.0,100.0,67.0 140 | "Brink pink","#FB607F",251,96,127,348.0,95.0,68.0 141 | "British racing green","#004225",0,66,37,154.0,100.0,13.0 142 | "Bronze","#CD7F32",205,127,50,30.0,61.0,50.0 143 | "Bronze Yellow","#737000",115,112,0,58.0,100.0,23.0 144 | "Brown (traditional)","#964B00",150,75,0,30.0,100.0,29.0 145 | "Brown (web)","#A52A2A",165,42,42,0.0,59.0,41.0 146 | "Brown-nose","#6B4423",107,68,35,28.0,51.0,28.0 147 | "Brown Sugar","#AF6E4D",175,110,77,20.0,39.0,49.0 148 | "Brown Yellow","#cc9966",204,153,102,30.0,50.0,60.0 149 | "Brunswick green","#1B4D3E",27,77,62,162.0,48.0,20.0 150 | "Bubble gum","#FFC1CC",255,193,204,349.0,100.0,88.0 151 | "Bubbles","#E7FEFF",231,254,255,183.0,100.0,95.0 152 | "Bud green","#7BB661",123,182,97,102.0,37.0,55.0 153 | "Buff","#F0DC82",240,220,130,49.0,79.0,73.0 154 | "Bulgarian rose","#480607",72,6,7,359.0,85.0,15.0 155 | "Burgundy","#800020",128,0,32,345.0,100.0,25.0 156 | "Burlywood","#DEB887",222,184,135,34.0,57.0,70.0 157 | "Burnished Brown","#A17A74",161,122,116,8.0,19.0,54.0 158 | "Burnt orange","#CC5500",204,85,0,25.0,100.0,40.0 159 | "Burnt sienna","#E97451",233,116,81,14.0,78.0,62.0 160 | "Burnt umber","#8A3324",138,51,36,9.0,59.0,34.0 161 | "Byzantine","#BD33A4",189,51,164,311.0,58.0,47.0 162 | "Byzantium","#702963",112,41,99,311.0,46.0,30.0 163 | "Cadet","#536872",83,104,114,199.0,16.0,39.0 164 | "Cadet blue","#5F9EA0",95,158,160,182.0,25.0,50.0 165 | "Cadet grey","#91A3B0",145,163,176,205.0,16.0,63.0 166 | "Cadmium green","#006B3C",0,107,60,154.0,100.0,21.0 167 | "Cadmium orange","#ED872D",237,135,45,28.0,84.0,55.0 168 | "Cadmium red","#E30022",227,0,34,351.0,100.0,45.0 169 | "Cadmium yellow","#FFF600",255,246,0,58.0,100.0,50.0 170 | "Café au lait","#A67B5B",166,123,91,26.0,30.0,50.0 171 | "Café noir","#4B3621",75,54,33,30.0,39.0,21.0 172 | "Cal Poly Pomona green","#1E4D2B",30,77,43,137.0,44.0,21.0 173 | "Cambridge Blue","#A3C1AD",163,193,173,140.0,19.0,70.0 174 | "Camel","#C19A6B",193,154,107,33.0,41.0,59.0 175 | "Cameo pink","#EFBBCC",239,187,204,340.0,62.0,84.0 176 | "Camouflage green","#78866B",120,134,107,91.0,11.0,47.0 177 | "Canary","#FFFF99",255,255,153,60.0,100.0,80.0 178 | "Canary yellow","#FFEF00",255,239,0,56.0,100.0,50.0 179 | "Candy apple red","#FF0800",255,8,0,2.0,100.0,50.0 180 | "Candy pink","#E4717A",228,113,122,355.0,68.0,67.0 181 | "Capri","#00BFFF",0,191,255,195.0,100.0,50.0 182 | "Caput mortuum","#592720",89,39,32,7.0,47.0,24.0 183 | "Cardinal","#C41E3A",196,30,58,350.0,73.0,44.0 184 | "Caribbean green","#00CC99",0,204,153,165.0,100.0,40.0 185 | "Carmine","#960018",150,0,24,350.0,100.0,29.0 186 | "Carmine (M&P)","#D70040",215,0,64,342.0,100.0,42.0 187 | "Carmine pink","#EB4C42",235,76,66,4.0,81.0,59.0 188 | "Carmine red","#FF0038",255,0,56,347.0,100.0,50.0 189 | "Carnation pink","#FFA6C9",255,166,201,336.0,100.0,83.0 190 | "Carnelian","#B31B1B",179,27,27,0.0,74.0,40.0 191 | "Carolina blue","#56A0D3",86,160,211,204.0,59.0,58.0 192 | "Carrot orange","#ED9121",237,145,33,33.0,85.0,53.0 193 | "Castleton green","#00563F",0,86,63,164.0,100.0,17.0 194 | "Catalina blue","#062A78",6,42,120,221.0,90.0,25.0 195 | "Catawba","#703642",112,54,66,348.0,35.0,33.0 196 | "Cedar Chest","#C95A49",201,90,73,8.0,54.0,54.0 197 | "Ceil","#92A1CF",146,161,207,225.0,39.0,69.0 198 | "Celadon","#ACE1AF",172,225,175,123.0,47.0,78.0 199 | "Celadon blue","#007BA7",0,123,167,196.0,100.0,33.0 200 | "Celadon green","#2F847C",47,132,124,174.0,47.0,35.0 201 | "Celeste","#B2FFFF",178,255,255,180.0,100.0,85.0 202 | "Celestial blue","#4997D0",73,151,208,205.0,59.0,55.0 203 | "Cerise","#DE3163",222,49,99,343.0,72.0,53.0 204 | "Cerise pink","#EC3B83",236,59,131,336.0,82.0,58.0 205 | "Cerulean","#007BA7",0,123,167,196.0,100.0,33.0 206 | "Cerulean blue","#2A52BE",42,82,190,224.0,64.0,45.0 207 | "Cerulean frost","#6D9BC3",109,155,195,208.0,42.0,60.0 208 | "CG Blue","#007AA5",0,122,165,196.0,100.0,32.0 209 | "CG Red","#E03C31",224,60,49,4.0,74.0,54.0 210 | "Chamoisee","#A0785A",160,120,90,26.0,28.0,49.0 211 | "Champagne","#F7E7CE",247,231,206,37.0,72.0,89.0 212 | "Champagne pink","#F1DDCF",241,221,207,25.0,55.0,88.0 213 | "Charcoal","#36454F",54,69,79,204.0,19.0,26.0 214 | "Charleston green","#232B2B",35,43,43,180.0,10.0,15.0 215 | "Charm pink","#E68FAC",230,143,172,340.0,64.0,73.0 216 | "Chartreuse (traditional)","#DFFF00",223,255,0,68.0,100.0,50.0 217 | "Chartreuse (web)","#7FFF00",127,255,0,90.0,100.0,50.0 218 | "Cherry","#DE3163",222,49,99,343.0,72.0,53.0 219 | "Cherry blossom pink","#FFB7C5",255,183,197,348.0,100.0,86.0 220 | "Chestnut","#954535",149,69,53,10.0,48.0,40.0 221 | "China pink","#DE6FA1",222,111,161,333.0,63.0,65.0 222 | "China rose","#A8516E",168,81,110,340.0,35.0,49.0 223 | "Chinese red","#AA381E",170,56,30,11.0,70.0,39.0 224 | "Chinese violet","#856088",133,96,136,296.0,17.0,45.0 225 | "Chlorophyll green","#4AFF00",74,255,0,103.0,100.0,50.0 226 | "Chocolate (traditional)","#7B3F00",123,63,0,31.0,100.0,24.0 227 | "Chocolate (web)","#D2691E",210,105,30,25.0,75.0,47.0 228 | "Chrome yellow","#FFA700",255,167,0,39.0,100.0,50.0 229 | "Cinereous","#98817B",152,129,123,12.0,12.0,54.0 230 | "Cinnabar","#E34234",227,66,52,5.0,76.0,55.0 231 | "Cinnamon[citation needed]","#D2691E",210,105,30,25.0,75.0,47.0 232 | "Cinnamon Satin","#CD607E",205,96,126,343.0,52.0,59.0 233 | "Citrine","#E4D00A",228,208,10,54.0,92.0,47.0 234 | "Citron","#9FA91F",158,169,31,64.0,69.0,39.0 235 | "Claret","#7F1734",127,23,52,343.0,69.0,29.0 236 | "Classic rose","#FBCCE7",251,204,231,326.0,85.0,89.0 237 | "Cobalt Blue","#0047AB",0,71,171,215.0,100.0,34.0 238 | "Cocoa brown","#D2691E",210,105,30,25.0,75.0,47.0 239 | "Coconut","#965A3E",150,90,62,19.0,42.0,42.0 240 | "Coffee","#6F4E37",111,78,55,25.0,34.0,33.0 241 | "Columbia Blue","#C4D8E2",196,216,226,200.0,34.0,83.0 242 | "Congo pink","#F88379",248,131,121,5.0,90.0,72.0 243 | "Cool Black","#002E63",0,46,99,212.0,100.0,19.0 244 | "Cool grey","#8C92AC",140,146,172,229.0,16.0,61.0 245 | "Copper","#B87333",184,115,51,29.0,57.0,46.0 246 | "Copper (Crayola)","#DA8A67",218,138,103,18.0,61.0,63.0 247 | "Copper penny","#AD6F69",173,111,105,5.0,29.0,55.0 248 | "Copper red","#CB6D51",203,109,81,14.0,54.0,56.0 249 | "Copper rose","#996666",153,102,102,0.0,20.0,50.0 250 | "Coquelicot","#FF3800",255,56,0,13.0,100.0,50.0 251 | "Coral","#FF7F50",255,127,80,16.0,100.0,66.0 252 | "Coral pink","#F88379",248,131,121,5.0,90.0,72.0 253 | "Coral red","#FF4040",255,64,64,0.0,100.0,63.0 254 | "Coral Reef","#FD7C6E",253,124,110,6.0,97.0,71.0 255 | "Cordovan","#893F45",137,63,69,355.0,37.0,39.0 256 | "Corn","#FBEC5D",251,236,93,54.0,95.0,67.0 257 | "Cornell Red","#B31B1B",179,27,27,0.0,74.0,40.0 258 | "Cornflower blue","#6495ED",100,149,237,219.0,79.0,66.0 259 | "Cornsilk","#FFF8DC",255,248,220,48.0,100.0,93.0 260 | "Cosmic Cobalt","#2E2D88",46,45,136,241.0,50.0,36.0 261 | "Cosmic latte","#FFF8E7",255,248,231,43.0,100.0,95.0 262 | "Coyote brown","#81613C",129,97,60,62.0,37.0,37.0 263 | "Cotton candy","#FFBCD9",255,188,217,334.0,100.0,87.0 264 | "Cream","#FFFDD0",255,253,208,57.0,100.0,91.0 265 | "Crimson","#DC143C",220,20,60,348.0,83.0,47.0 266 | "Crimson glory","#BE0032",190,0,50,344.0,100.0,37.0 267 | "Crimson red","#990000",153,0,0,0.0,100.0,30.0 268 | "Cultured","#F5F5F5",245,245,245,0.0,0.0,96.0 269 | "Cyan","#00FFFF",0,255,255,180.0,100.0,50.0 270 | "Cyan azure","#4E82B4",78,130,180,209.0,41.0,51.0 271 | "Cyan-blue azure","#4682BF",70,130,191,210.0,49.0,51.0 272 | "Cyan cobalt blue","#28589C",40,88,156,215.0,59.0,38.0 273 | "Cyan cornflower blue","#188BC2",24,139,194,199.0,78.0,43.0 274 | "Cyan (process)","#00B7EB",0,183,235,193.0,100.0,46.0 275 | "Cyber grape","#58427C",88,66,124,263.0,31.0,37.0 276 | "Cyber yellow","#FFD300",255,211,0,50.0,100.0,50.0 277 | "Cyclamen","#F56FA1",245,111,161,0.0,87.0,70.0 278 | "Daffodil","#FFFF31",255,255,49,60.0,100.0,60.0 279 | "Dandelion","#F0E130",240,225,48,55.0,86.0,56.0 280 | "Dark blue","#00008B",0,0,139,240.0,100.0,27.0 281 | "Dark blue-gray","#666699",102,102,153,240.0,20.0,50.0 282 | "Dark brown","#654321",101,67,33,30.0,51.0,26.0 283 | "Dark brown-tangelo","#88654E",136,101,78,24.0,27.0,42.0 284 | "Dark byzantium","#5D3954",93,57,84,315.0,24.0,29.0 285 | "Dark candy apple red","#A40000",164,0,0,0.0,100.0,32.0 286 | "Dark cerulean","#08457E",8,69,126,209.0,88.0,26.0 287 | "Dark chestnut","#986960",152,105,96,10.0,23.0,49.0 288 | "Dark coral","#CD5B45",205,91,69,10.0,58.0,54.0 289 | "Dark cyan","#008B8B",0,139,139,180.0,100.0,27.0 290 | "Dark electric blue","#536878",83,104,120,206.0,18.0,40.0 291 | "Dark goldenrod","#B8860B",184,134,11,43.0,89.0,38.0 292 | "Dark gray (X11)","#A9A9A9",169,169,169,0,0.0,66.0 293 | "Dark green","#013220",1,50,32,158.0,96.0,10.0 294 | "Dark green (X11)","#006400",0,100,0,120.0,100.0,20.0 295 | "Dark gunmetal","#1F262A",31,38,42,202.0,15.0,14.0 296 | "Dark imperial blue","#00416A",0,65,106,203.0,100.0,21.0 297 | "Dark imperial blue","#00147E",0,20,126,183.0,100.0,25.0 298 | "Dark jungle green","#1A2421",26,36,33,162.0,16.0,12.0 299 | "Dark khaki","#BDB76B",189,183,107,56.0,38.0,58.0 300 | "Dark lava","#483C32",72,60,50,27.0,18.0,24.0 301 | "Dark lavender","#734F96",115,79,150,270.0,31.0,45.0 302 | "Dark liver","#534B4F",83,75,79,330.0,5.0,31.0 303 | "Dark liver (horses)","#543D37",84,61,55,12.0,21.0,27.0 304 | "Dark magenta","#8B008B",139,0,139,300.0,100.0,27.0 305 | "Dark medium gray","#A9A9A9",169,169,169,0,0.0,66.0 306 | "Dark midnight blue","#003366",0,51,102,210.0,100.0,20.0 307 | "Dark moss green","#4A5D23",74,93,35,80.0,45.0,25.0 308 | "Dark olive green","#556B2F",85,107,47,82.0,39.0,30.0 309 | "Dark orange","#FF8C00",255,140,0,33.0,100.0,50.0 310 | "Dark orchid","#9932CC",153,50,204,280.0,61.0,50.0 311 | "Dark pastel blue","#779ECB",119,158,203,212.0,45.0,63.0 312 | "Dark pastel green","#03C03C",3,192,60,138.0,97.0,38.0 313 | "Dark pastel purple","#966FD6",150,111,214,263.0,56.0,64.0 314 | "Dark pastel red","#C23B22",194,59,34,9.0,70.0,45.0 315 | "Dark pink","#E75480",231,84,128,342.0,75.0,62.0 316 | "Dark powder blue","#003399",0,51,153,220.0,100.0,30.0 317 | "Dark puce","#4F3A3C",79,58,60,354.0,15.0,27.0 318 | "Dark purple","#301934",48,25,52,291.0,35.0,15.0 319 | "Dark raspberry","#872657",135,38,87,330.0,56.0,34.0 320 | "Dark red","#8B0000",139,0,0,0.0,100.0,27.0 321 | "Dark salmon","#E9967A",233,150,122,15.0,72.0,70.0 322 | "Dark scarlet","#560319",86,3,25,344.0,93.0,17.0 323 | "Dark sea green","#8FBC8F",143,188,143,120.0,25.0,65.0 324 | "Dark sienna","#3C1414",60,20,20,0.0,50.0,16.0 325 | "Dark sky blue","#8CBED6",140,190,214,199.0,47.0,69.0 326 | "Dark slate blue","#483D8B",72,61,139,248.0,39.0,39.0 327 | "Dark slate gray","#2F4F4F",47,79,79,180.0,25.0,25.0 328 | "Dark spring green","#177245",23,114,69,150.0,66.0,27.0 329 | "Dark tan","#918151",145,129,81,45.0,28.0,44.0 330 | "Dark tangerine","#FFA812",255,168,18,38.0,100.0,54.0 331 | "Dark taupe","#483C32",72,60,50,27.0,18.0,24.0 332 | "Dark terra cotta","#CC4E5C",204,78,92,353.0,55.0,55.0 333 | "Dark turquoise","#00CED1",0,206,209,181.0,100.0,41.0 334 | "Dark vanilla","#D1BEA8",209,190,168,32.0,31.0,74.0 335 | "Dark violet","#9400D3",148,0,211,282.0,100.0,41.0 336 | "Dark yellow","#9B870C",155,135,12,52.0,86.0,33.0 337 | "Dartmouth green","#00703C",0,112,60,152.0,100.0,22.0 338 | "Davy's grey","#555555",85,85,85,0,0.0,33.0 339 | "Debian red","#D70A53",215,10,83,339.0,91.0,44.0 340 | "Deep aquamarine","#40826D",64,130,109,161.0,34.0,38.0 341 | "Deep carmine","#A9203E",169,32,62,347.0,68.0,39.0 342 | "Deep carmine pink","#EF3038",239,48,56,357.0,86.0,56.0 343 | "Deep carrot orange","#E9692C",233,105,44,19.0,81.0,54.0 344 | "Deep cerise","#DA3287",218,50,135,330.0,69.0,53.0 345 | "Deep champagne","#FAD6A5",250,214,165,35.0,90.0,81.0 346 | "Deep chestnut","#B94E48",185,78,72,3.0,45.0,50.0 347 | "Deep coffee","#704241",112,66,65,1.0,27.0,35.0 348 | "Deep fuchsia","#C154C1",193,84,193,300.0,47.0,54.0 349 | "Deep Green","#056608",5,102,8,122.0,91.0,21.0 350 | "Deep green-cyan turquoise","#0E7C61",14,124,97,165.0,80.0,27.0 351 | "Deep jungle green","#004B49",0,75,73,178.0,100.0,15.0 352 | "Deep koamaru","#333366",51,51,102,240.0,33.0,30.0 353 | "Deep lemon","#F5C71A",245,199,26,47.0,92.0,53.0 354 | "Deep lilac","#9955BB",153,85,187,280.0,43.0,53.0 355 | "Deep magenta","#CC00CC",204,0,204,300.0,100.0,40.0 356 | "Deep maroon","#820000",130,0,0,0.0,100.0,26.0 357 | "Deep mauve","#D473D4",212,115,212,300.0,53.0,64.0 358 | "Deep moss green","#355E3B",53,94,59,129.0,28.0,29.0 359 | "Deep peach","#FFCBA4",255,203,164,26.0,100.0,82.0 360 | "Deep pink","#FF1493",255,20,147,328.0,100.0,54.0 361 | "Deep puce","#A95C68",169,92,104,351.0,31.0,51.0 362 | "Deep Red","#850101",133,1,1,0.0,99.0,26.0 363 | "Deep ruby","#843F5B",132,63,91,336.0,35.0,38.0 364 | "Deep saffron","#FF9933",255,153,51,30.0,100.0,60.0 365 | "Deep sky blue","#00BFFF",0,191,255,195.0,100.0,50.0 366 | "Deep Space Sparkle","#4A646C",74,100,108,194.0,19.0,36.0 367 | "Deep spring bud","#556B2F",85,107,47,82.0,39.0,30.0 368 | "Deep Taupe","#7E5E60",126,94,96,356.0,15.0,43.0 369 | "Deep Tuscan red","#66424D",102,66,77,342.0,21.0,33.0 370 | "Deep violet","#330066",51,0,102,270.0,100.0,20.0 371 | "Deer","#BA8759",186,135,89,28.0,41.0,54.0 372 | "Denim","#1560BD",21,96,189,213.0,80.0,41.0 373 | "Denim Blue","#2243B6",34,67,182,227.0,69.0,42.0 374 | "Desaturated cyan","#669999",102,153,153,180.0,20.0,50.0 375 | "Desert","#C19A6B",193,154,107,33.0,41.0,59.0 376 | "Desert sand","#EDC9AF",237,201,175,25.0,63.0,81.0 377 | "Desire","#EA3C53",234,60,83,352.0,81.0,58.0 378 | "Diamond","#B9F2FF",185,242,255,191.0,100.0,86.0 379 | "Dim gray","#696969",105,105,105,0,0.0,41.0 380 | "Dingy Dungeon","#C53151",197,49,81,347.0,60.0,48.0 381 | "Dirt","#9B7653",155,118,83,29.0,30.0,47.0 382 | "Dodger blue","#1E90FF",30,144,255,210.0,100.0,56.0 383 | "Dogwood rose","#D71868",215,24,104,335.0,80.0,47.0 384 | "Dollar bill","#85BB65",133,187,101,98.0,39.0,56.0 385 | "Dolphin Gray","#828E84",130,142,132,130.0,5.0,53.0 386 | "Donkey brown","#664C28",102,76,40,35.0,44.0,28.0 387 | "Drab","#967117",150,113,23,43.0,73.0,34.0 388 | "Duke blue","#00009C",0,0,156,240.0,100.0,31.0 389 | "Dust storm","#E5CCC9",229,204,201,6.0,35.0,84.0 390 | "Dutch white","#EFDFBB",239,223,187,42.0,62.0,84.0 391 | "Earth yellow","#E1A95F",225,169,95,34.0,68.0,63.0 392 | "Ebony","#555D50",85,93,80,97.0,8.0,34.0 393 | "Ecru","#C2B280",194,178,128,45.0,35.0,63.0 394 | "Eerie black","#1B1B1B",27,27,27,0,0.0,11.0 395 | "Eggplant","#614051",97,64,81,329.0,20.0,32.0 396 | "Eggshell","#F0EAD6",240,234,214,46.0,46.0,89.0 397 | "Egyptian blue","#1034A6",16,52,166,226.0,82.0,36.0 398 | "Electric blue","#7DF9FF",125,249,255,183.0,100.0,75.0 399 | "Electric crimson","#FF003F",255,0,63,345.0,100.0,50.0 400 | "Electric cyan","#00FFFF",0,255,255,180.0,100.0,50.0 401 | "Electric green","#00FF00",0,255,0,120.0,100.0,50.0 402 | "Electric indigo","#6F00FF",111,0,255,266.0,100.0,50.0 403 | "Electric lavender","#F4BBFF",244,187,255,290.0,100.0,87.0 404 | "Electric lime","#CCFF00",204,255,0,72.0,100.0,50.0 405 | "Electric purple","#BF00FF",191,0,255,285.0,100.0,50.0 406 | "Electric ultramarine","#3F00FF",63,0,255,255.0,100.0,50.0 407 | "Electric violet","#8F00FF",143,0,255,274.0,100.0,50.0 408 | "Electric yellow","#FFFF33",255,255,51,60.0,100.0,60.0 409 | "Emerald","#50C878",80,200,120,140.0,52.0,55.0 410 | "Eminence","#6C3082",108,48,130,284.0,46.0,35.0 411 | "English green","#1B4D3E",27,77,62,162.0,48.0,20.0 412 | "English lavender","#B48395",180,131,149,338.0,25.0,61.0 413 | "English red","#AB4B52",171,75,82,356.0,39.0,48.0 414 | "English vermillion","#CC474B",204,71,75,358.0,57.0,54.0 415 | "English violet","#563C5C",86,60,92,289.0,21.0,30.0 416 | "Eton blue","#96C8A2",150,200,162,134.0,31.0,69.0 417 | "Eucalyptus","#44D7A8",68,215,168,161.0,65.0,55.0 418 | "Fallow","#C19A6B",193,154,107,33.0,41.0,59.0 419 | "Falu red","#801818",128,24,24,0.0,68.0,30.0 420 | "Fandango","#B53389",181,51,137,320.0,56.0,45.0 421 | "Fandango pink","#DE5285",222,82,133,338.0,68.0,60.0 422 | "Fashion fuchsia","#F400A1",244,0,161,320.0,100.0,48.0 423 | "Fawn","#E5AA70",229,170,112,30.0,69.0,67.0 424 | "Feldgrau","#4D5D53",77,93,83,143.0,9.0,33.0 425 | "Feldspar","#FDD5B1",253,213,177,28.0,95.0,84.0 426 | "Fern green","#4F7942",79,121,66,106.0,29.0,37.0 427 | "Ferrari Red","#FF2800",255,40,0,9.0,100.0,50.0 428 | "Field drab","#6C541E",108,84,30,42.0,57.0,27.0 429 | "Fiery Rose","#FF5470",255,84,112,350.0,100.0,67.0 430 | "Firebrick","#B22222",178,34,34,0.0,68.0,42.0 431 | "Fire engine red","#CE2029",206,32,41,357.0,73.0,47.0 432 | "Flame","#E25822",226,88,34,17.0,77.0,51.0 433 | "Flamingo pink","#FC8EAC",252,142,172,344.0,95.0,77.0 434 | "Flattery","#6B4423",107,68,35,28.0,51.0,28.0 435 | "Flavescent","#F7E98E",247,233,142,52.0,87.0,76.0 436 | "Flax","#EEDC82",238,220,130,50.0,76.0,72.0 437 | "Flirt","#A2006D",162,0,109,320.0,100.0,32.0 438 | "Floral white","#FFFAF0",255,250,240,40.0,100.0,97.0 439 | "Fluorescent orange","#FFBF00",255,191,0,45.0,100.0,50.0 440 | "Fluorescent pink","#FF1493",255,20,147,328.0,100.0,54.0 441 | "Fluorescent yellow","#CCFF00",204,255,0,72.0,100.0,50.0 442 | "Folly","#FF004F",255,0,79,341.0,100.0,50.0 443 | "Forest green (traditional)","#014421",1,68,33,149.0,97.0,14.0 444 | "Forest green (web)","#228B22",34,139,34,120.0,61.0,34.0 445 | "French beige","#A67B5B",166,123,91,26.0,30.0,50.0 446 | "French bistre","#856D4D",133,109,77,34.0,27.0,41.0 447 | "French blue","#0072BB",0,114,187,203.0,100.0,37.0 448 | "French fuchsia","#FD3F92",253,63,146,334.0,98.0,62.0 449 | "French lilac","#86608E",134,96,142,290.0,19.0,47.0 450 | "French lime","#9EFD38",158,253,56,89.0,98.0,61.0 451 | "French mauve","#D473D4",212,115,212,300.0,53.0,64.0 452 | "French pink","#FD6C9E",253,108,158,339.0,97.0,71.0 453 | "French plum","#811453",129,20,83,325.0,73.0,29.0 454 | "French puce","#4E1609",78,22,9,11.0,79.0,17.0 455 | "French raspberry","#C72C48",199,44,72,349.0,64.0,48.0 456 | "French rose","#F64A8A",246,74,138,338.0,91.0,63.0 457 | "French sky blue","#77B5FE",119,181,254,212.0,99.0,73.0 458 | "French violet","#8806CE",136,6,206,279.0,94.0,42.0 459 | "French wine","#AC1E44",172,30,68,344.0,70.0,40.0 460 | "Fresh Air","#A6E7FF",166,231,255,196.0,100.0,83.0 461 | "Frostbite","#E936A7",233,54,167,322.0,80.0,56.0 462 | "Fuchsia","#FF00FF",255,0,255,300.0,100.0,50.0 463 | "Fuchsia (Crayola)","#C154C1",193,84,193,300.0,47.0,54.0 464 | "Fuchsia pink","#FF77FF",255,119,255,300.0,100.0,73.0 465 | "Fuchsia purple","#CC397B",204,57,123,333.0,59.0,51.0 466 | "Fuchsia rose","#C74375",199,67,117,337.0,54.0,52.0 467 | "Fulvous","#E48400",228,132,0,35.0,100.0,45.0 468 | "Fuzzy Wuzzy","#CC6666",204,102,102,0.0,50.0,60.0 469 | "Gainsboro","#DCDCDC",220,220,220,0.0,0.0,86.0 470 | "Gamboge","#E49B0F",228,155,15,39.0,88.0,48.0 471 | "Gamboge orange (brown)","#996600",152,102,0,40.0,100.0,30.0 472 | "Gargoyle Gas","#FFDF46",255,223,70,50.0,100.0,64.0 473 | "Generic viridian","#007F66",0,127,102,168.0,100.0,25.0 474 | "Ghost white","#F8F8FF",248,248,255,240.0,100.0,99.0 475 | "Giant's Club","#B05C52",176,92,82,6.0,37.0,51.0 476 | "Giants orange","#FE5A1D",254,90,29,16.0,99.0,55.0 477 | "Ginger","#B06500",176,101,0,34.0,100.0,35.0 478 | "Glaucous","#6082B6",96,130,182,216.0,37.0,55.0 479 | "Glitter","#E6E8FA",230,232,250,234.0,67.0,94.0 480 | "Glossy Grape","#AB92B3",171,146,179,285.0,18.0,64.0 481 | "GO green","#00AB66",0,171,102,156.0,100.0,34.0 482 | "Gold (metallic)","#D4AF37",212,175,55,46.0,65.0,52.0 483 | "Gold (web) (Golden)","#FFD700",255,215,0,51.0,100.0,50.0 484 | "Gold Fusion","#85754E",133,117,78,43.0,26.0,41.0 485 | "Golden brown","#996515",153,101,21,36.0,76.0,34.0 486 | "Golden poppy","#FCC200",252,194,0,46.0,100.0,49.0 487 | "Golden yellow","#FFDF00",255,223,0,52.0,100.0,50.0 488 | "Goldenrod","#DAA520",218,165,32,43.0,74.0,49.0 489 | "Granite Gray","#676767",103,103,103,0.0,0.0,40.0 490 | "Granny Smith Apple","#A8E4A0",168,228,160,113.0,56.0,76.0 491 | "Grape","#6F2DA8",111,45,168,272.0,58.0,42.0 492 | "Gray","#808080",128,128,128,0.0,0.0,50.0 493 | "Gray (HTML/CSS gray)","#808080",128,128,128,0.0,0.0,50.0 494 | "Gray (X11 gray)","#BEBEBE",190,190,190,0.0,0.0,75.0 495 | "Gray-asparagus","#465945",70,89,69,117.0,13.0,31.0 496 | "Gray-blue","#8C92AC",140,146,172,229.0,16.0,61.0 497 | "Green (Color Wheel) (X11 green)","#00FF00",0,255,0,120.0,100.0,50.0 498 | "Green (Crayola)","#1CAC78",28,172,120,158.0,72.0,39.0 499 | "Green (HTML/CSS color)","#008000",0,128,0,120.0,100.0,25.0 500 | "Green (Munsell)","#00A877",0,168,119,163.0,100.0,33.0 501 | "Green (NCS)","#009F6B",0,159,107,160.0,100.0,31.0 502 | "Green (Pantone)","#00AD43",0,173,67,143.0,100.0,34.0 503 | "Green (pigment)","#00A550",0,165,80,149.0,100.0,32.0 504 | "Green (RYB)","#66B032",102,176,50,95.0,56.0,44.0 505 | "Green-blue","#1164B4",17,100,180,209.0,83.0,39.0 506 | "Green-cyan","#009966",0,153,102,160.0,100.0,30.0 507 | "Green Lizard","#A7F432",167,244,50,84.0,90.0,58.0 508 | "Green Sheen","#6EAEA1",110,174,161,168.0,28.0,56.0 509 | "Green-yellow","#ADFF2F",173,255,47,84.0,100.0,59.0 510 | "Grizzly","#885818",136,88,24,34.0,70.0,31.0 511 | "Grullo","#A99A86",169,154,134,34.0,17.0,59.0 512 | "Guppie green","#00FF7F",0,255,127,150.0,100.0,50.0 513 | "Gunmetal","#2a3439",42,52,57,200.0,15.0,19.0 514 | "Halayà úbe","#663854",102,55,84,323.0,29.0,31.0 515 | "Han blue","#446CCF",68,108,207,223.0,59.0,54.0 516 | "Han purple","#5218FA",82,24,250,255.0,96.0,54.0 517 | "Hansa yellow","#E9D66B",233,214,107,51.0,74.0,67.0 518 | "Harlequin","#3FFF00",63,255,0,105.0,100.0,50.0 519 | "Harlequin green","#46CB18",70,203,24,105.0,79.0,45.0 520 | "Harvard crimson","#C90016",201,0,22,353.0,100.0,39.0 521 | "Harvest gold","#DA9100",218,145,0,40.0,100.0,43.0 522 | "Heart Gold","#808000",128,128,0,60.0,100.0,25.0 523 | "Heat Wave","#FF7A00",255,122,0,29.0,100.0,50.0 524 | "Heidelberg Red[2]","#960018",150,0,24,10.0,100.0,29.0 525 | "Heliotrope","#DF73FF",223,115,255,286.0,100.0,73.0 526 | "Heliotrope gray","#AA98A9",170,152,168,303.0,10.0,63.0 527 | "Heliotrope magenta","#AA00BB",170,0,187,295.0,100.0,37.0 528 | "Hollywood cerise","#F400A1",244,0,161,320.0,100.0,48.0 529 | "Honeydew","#F0FFF0",240,255,240,120.0,100.0,97.0 530 | "Honolulu blue","#006DB0",0,109,176,203.0,100.0,35.0 531 | "Hooker's green","#49796B",73,121,107,163.0,25.0,38.0 532 | "Hot magenta","#FF1DCE",255,29,206,313.0,100.0,56.0 533 | "Hot pink","#FF69B4",255,105,180,330.0,100.0,71.0 534 | "Hunter green","#355E3B",53,94,59,129.0,28.0,29.0 535 | "Iceberg","#71A6D2",113,166,210,207.0,52.0,63.0 536 | "Icterine","#FCF75E",252,247,94,58.0,96.0,68.0 537 | "Iguana Green","#71BC78",113,188,120,126.0,36.0,59.0 538 | "Illuminating Emerald","#319177",49,145,119,164.0,49.0,38.0 539 | "Imperial","#602F6B",96,47,107,289.0,39.0,30.0 540 | "Imperial blue","#002395",0,35,149,226.0,100.0,29.0 541 | "Imperial purple","#66023C",102,2,60,325.0,96.0,20.0 542 | "Imperial red","#ED2939",237,41,57,355.0,84.0,55.0 543 | "Inchworm","#B2EC5D",178,236,93,84.0,79.0,65.0 544 | "Independence","#4C516D",76,81,109,231.0,18.0,36.0 545 | "India green","#138808",19,136,8,115.0,89.0,28.0 546 | "Indian red","#CD5C5C",205,92,92,0.0,53.0,58.0 547 | "Indian yellow","#E3A857",227,168,87,35.0,71.0,62.0 548 | "Indigo","#4B0082",75,0,130,266.0,100.0,26.0 549 | "Indigo dye","#091F92",9,31,146,230.0,88.0,30.0 550 | "Indigo (web)","#4B0082",75,0,130,275.0,100.0,25.0 551 | "Infra Red","#FF496C",255,73,108,348.0,100.0,64.0 552 | "Interdimensional Blue","#360CCC",54,12,204,253.0,89.0,42.0 553 | "International Klein Blue","#002FA7",0,47,167,223.0,100.0,33.0 554 | "International orange (aerospace)","#FF4F00",255,79,0,19.0,100.0,50.0 555 | "International orange (engineering)","#BA160C",186,22,12,3.0,88.0,39.0 556 | "International orange (Golden Gate Bridge)","#C0362C",192,54,44,4.0,63.0,46.0 557 | "Iris","#5A4FCF",90,79,207,245.0,57.0,56.0 558 | "Irresistible","#B3446C",179,68,108,338.0,45.0,48.0 559 | "Isabelline","#F4F0EC",244,240,236,30.0,27.0,94.0 560 | "Islamic green","#009000",0,144,0,120.0,100.0,28.0 561 | "Italian sky blue","#B2FFFF",178,255,255,180.0,100.0,85.0 562 | "Ivory","#FFFFF0",255,255,240,60.0,100.0,97.0 563 | "Jade","#00A86B",0,168,107,158.0,100.0,33.0 564 | "Japanese carmine","#9D2933",157,41,51,355.0,59.0,39.0 565 | "Japanese indigo","#264348",38,67,72,189.0,31.0,22.0 566 | "Japanese violet","#5B3256",91,50,86,307.0,29.0,28.0 567 | "Jasmine","#F8DE7E",248,222,126,47.0,90.0,73.0 568 | "Jasper","#D73B3E",215,59,62,359.0,66.0,54.0 569 | "Jazzberry jam","#A50B5E",165,11,94,328.0,88.0,35.0 570 | "Jelly Bean","#DA614E",218,97,78,8.0,65.0,58.0 571 | "Jet","#343434",52,52,52,0,0.0,20.0 572 | "Jonquil","#F4CA16",244,202,22,49.0,91.0,52.0 573 | "Jordy blue","#8AB9F1",138,185,241,213.0,79.0,74.0 574 | "June bud","#BDDA57",189,218,87,73.0,64.0,60.0 575 | "Jungle green","#29AB87",41,171,135,163.0,61.0,42.0 576 | "Kelly green","#4CBB17",76,187,23,101.0,78.0,41.0 577 | "Kenyan copper","#7C1C05",124,28,5,12.0,92.0,25.0 578 | "Keppel","#3AB09E",58,176,158,171.0,50.0,46.0 579 | "Key Lime","#E8F48C",232,244,140,67.0,83.0,75.0 580 | "Khaki (HTML/CSS) (Khaki)","#C3B091",195,176,145,37.0,29.0,67.0 581 | "Khaki (X11) (Light khaki)","#F0E68C",240,230,140,54.0,77.0,75.0 582 | "Kiwi","#8EE53F",142,229,63,91.0,76.0,57.0 583 | "Kobe","#882D17",136,45,23,12.0,71.0,31.0 584 | "Kobi","#E79FC4",231,159,196,329.0,60.0,76.0 585 | "Kobicha","#6B4423",107,68,35,28.0,51.0,28.0 586 | "Kombu green","#354230",53,66,48,103.0,16.0,22.0 587 | "KSU Purple","#512888",79,38,131,266.0,55.0,33.0 588 | "KU Crimson","#E8000D",232,0,13,357.0,100.0,45.0 589 | "La Salle Green","#087830",8,120,48,141.0,88.0,25.0 590 | "Languid lavender","#D6CADD",214,202,221,278.0,22.0,83.0 591 | "Lapis lazuli","#26619C",38,97,156,210.0,61.0,38.0 592 | "Laser Lemon","#FFFF66",255,255,102,60.0,100.0,70.0 593 | "Laurel green","#A9BA9D",169,186,157,95.0,17.0,67.0 594 | "Lava","#CF1020",207,16,32,355.0,86.0,44.0 595 | "Lavender (floral)","#B57EDC",181,126,220,275.0,57.0,68.0 596 | "Lavender (web)","#E6E6FA",230,230,250,240.0,67.0,94.0 597 | "Lavender blue","#CCCCFF",204,204,255,240.0,100.0,90.0 598 | "Lavender blush","#FFF0F5",255,240,245,340.0,100.0,97.0 599 | "Lavender gray","#C4C3D0",196,195,208,245.0,12.0,79.0 600 | "Lavender indigo","#9457EB",148,87,235,265.0,79.0,63.0 601 | "Lavender magenta","#EE82EE",238,130,238,300.0,76.0,72.0 602 | "Lavender mist","#E6E6FA",230,230,250,240.0,67.0,94.0 603 | "Lavender pink","#FBAED2",251,174,210,332.0,91.0,83.0 604 | "Lavender purple","#967BB6",150,123,182,267.0,29.0,60.0 605 | "Lavender rose","#FBA0E3",251,160,227,316.0,92.0,81.0 606 | "Lawn green","#7CFC00",124,252,0,90.0,100.0,49.0 607 | "Lemon","#FFF700",255,247,0,58.0,100.0,50.0 608 | "Lemon chiffon","#FFFACD",255,250,205,54.0,100.0,90.0 609 | "Lemon curry","#CCA01D",204,160,29,45.0,75.0,46.0 610 | "Lemon glacier","#FDFF00",253,255,0,60.0,100.0,50.0 611 | "Lemon lime","#E3FF00",227,255,0,67.0,100.0,50.0 612 | "Lemon meringue","#F6EABE",246,234,190,47.0,76.0,85.0 613 | "Lemon yellow","#FFF44F",255,244,79,56.0,100.0,65.0 614 | "Licorice","#1A1110",26,17,16,6.0,24.0,8.0 615 | "Liberty","#545AA7",84,90,167,236.0,33.0,49.0 616 | "Light apricot","#FDD5B1",253,213,177,28.0,95.0,84.0 617 | "Light blue","#ADD8E6",173,216,230,195.0,53.0,79.0 618 | "Light brown","#B5651D",181,101,29,28.0,72.0,41.0 619 | "Light carmine pink","#E66771",230,103,113,355.0,72.0,65.0 620 | "Light cobalt blue","#88ACE0",136,172,224,215.0,59.0,71.0 621 | "Light coral","#F08080",240,128,128,0.0,79.0,72.0 622 | "Light cornflower blue","#93CCEA",147,204,234,201.0,67.0,75.0 623 | "Light crimson","#F56991",245,105,145,343.0,88.0,69.0 624 | "Light cyan","#E0FFFF",224,255,255,180.0,100.0,94.0 625 | "Light deep pink","#FF5CCD",255,92,205,318.0,100.0,68.0 626 | "Light French beige","#C8AD7F",200,173,127,38.0,40.0,64.0 627 | "Light fuchsia pink","#F984EF",249,132,239,305.0,91.0,75.0 628 | "Light goldenrod yellow","#FAFAD2",250,250,210,60.0,80.0,90.0 629 | "Light gray","#D3D3D3",211,211,211,0.0,0.0,83.0 630 | "Light grayish magenta","#CC99CC",204,153,204,300.0,33.0,70.0 631 | "Light green","#90EE90",144,238,144,120.0,73.0,75.0 632 | "Light hot pink","#FFB3DE",255,179,222,326.0,100.0,85.0 633 | "Light khaki","#F0E68C",240,230,140,54.0,77.0,75.0 634 | "Light medium orchid","#D39BCB",211,155,203,309.0,39.0,72.0 635 | "Light moss green","#ADDFAD",173,223,173,120.0,44.0,78.0 636 | "Light orchid","#E6A8D7",230,168,215,315.0,55.0,78.0 637 | "Light pastel purple","#B19CD9",177,156,217,261.0,45.0,73.0 638 | "Light pink","#FFB6C1",255,182,193,351.0,100.0,86.0 639 | "Light red ochre","#E97451",233,116,81,14.0,78.0,62.0 640 | "Light salmon","#FFA07A",255,160,122,17.0,100.0,74.0 641 | "Light salmon pink","#FF9999",255,153,153,0.0,100.0,80.0 642 | "Light sea green","#20B2AA",32,178,170,177.0,70.0,41.0 643 | "Light sky blue","#87CEFA",135,206,250,203.0,92.0,75.0 644 | "Light slate gray","#778899",119,136,153,210.0,14.0,53.0 645 | "Light steel blue","#B0C4DE",176,196,222,214.0,41.0,78.0 646 | "Light taupe","#B38B6D",179,139,109,26.0,32.0,56.0 647 | "Light Thulian pink","#E68FAC",230,143,172,340.0,64.0,73.0 648 | "Light yellow","#FFFFE0",255,255,224,60.0,100.0,94.0 649 | "Lilac","#C8A2C8",200,162,200,300.0,26.0,71.0 650 | "Lilac Luster","#AE98AA",174,152,170,311.0,12.0,64.0 651 | "Lime (color wheel)","#BFFF00",191,255,0,75.0,100.0,50.0 652 | "Lime (web) (X11 green)","#00FF00",0,255,0,120.0,100.0,50.0 653 | "Lime green","#32CD32",50,205,50,120.0,61.0,50.0 654 | "Limerick","#9DC209",157,194,9,72.0,91.0,40.0 655 | "Lincoln green","#195905",25,89,5,106.0,89.0,18.0 656 | "Linen","#FAF0E6",250,240,230,30.0,67.0,94.0 657 | "Loeen(lopen)look/vomit+indogo+Lopen+Gabriel","#15F2FD",123,154,200,33.0,41.0,63.0 658 | "Liseran Purple","#DE6FA1",222,111,161,333.0,63.0,65.0 659 | "Little boy blue","#6CA0DC",108,160,220,212.0,62.0,64.0 660 | "Liver","#674C47",103,76,71,9.0,18.0,34.0 661 | "Liver (dogs)","#B86D29",184,109,41,29.0,64.0,44.0 662 | "Liver (organ)","#6C2E1F",108,46,31,12.0,55.0,27.0 663 | "Liver chestnut","#987456",152,116,86,27.0,28.0,47.0 664 | "Livid","#6699CC",102,153,204,210.0,50.0,60.0 665 | "Lumber","#FFE4CD",255,228,205,28.0,100.0,90.0 666 | "Lust","#E62020",230,32,32,0.0,80.0,51.0 667 | "Maastricht Blue","#001C3D",0,28,61,212.0,100.0,12.0 668 | "Macaroni and Cheese","#FFBD88",255,189,136,27.0,100.0,77.0 669 | "Madder Lake","#CC3336",204,51,54,359.0,60.0,50.0 670 | "Magenta","#FF00FF",255,0,255,300.0,100.0,50.0 671 | "Magenta (Crayola)","#FF55A3",255,85,163,332.0,100.0,67.0 672 | "Magenta (dye)","#CA1F7B",202,31,123,328.0,73.0,46.0 673 | "Magenta (Pantone)","#D0417E",208,65,126,334.0,60.0,54.0 674 | "Magenta (process)","#FF0090",255,0,144,326.0,100.0,50.0 675 | "Magenta haze","#9F4576",159,69,118,327.0,39.0,45.0 676 | "Magenta-pink","#CC338B",204,51,139,325.0,60.0,50.0 677 | "Magic mint","#AAF0D1",170,240,209,153.0,70.0,80.0 678 | "Magic Potion","#FF4466",255,68,102,349.0,100.0,63.0 679 | "Magnolia","#F8F4FF",248,244,255,262.0,100.0,98.0 680 | "Mahogany","#C04000",192,64,0,20.0,100.0,38.0 681 | "Maize","#FBEC5D",251,236,93,54.0,95.0,67.0 682 | "Majorelle Blue","#6050DC",96,80,220,247.0,67.0,59.0 683 | "Malachite","#0BDA51",11,218,81,140.0,90.0,45.0 684 | "Manatee","#979AAA",151,154,170,231.0,10.0,63.0 685 | "Mandarin","#F37A48",243,122,72,18.0,88.0,62.0 686 | "Mango Tango","#FF8243",255,130,67,20.0,100.0,63.0 687 | "Mantis","#74C365",116,195,101,110.0,44.0,58.0 688 | "Mardi Gras","#880085",136,0,133,301.0,100.0,27.0 689 | "Marigold","#EAA221",234,162,33,39.0,83.0,52.0 690 | "Maroon (Crayola)","#C32148",195,33,72,346.0,71.0,45.0 691 | "Maroon (HTML/CSS)","#800000",128,0,0,0.0,100.0,25.0 692 | "Maroon (X11)","#B03060",176,48,96,338.0,57.0,44.0 693 | "Mauve","#E0B0FF",224,176,255,276.0,100.0,85.0 694 | "Mauve taupe","#915F6D",145,95,109,343.0,21.0,47.0 695 | "Mauvelous","#EF98AA",239,152,170,348.0,73.0,77.0 696 | "Maximum Blue","#47ABCC",71,171,204,195.0,57.0,54.0 697 | "Maximum Blue Green","#30BFBF",48,191,191,180.0,60.0,47.0 698 | "Maximum Blue Purple","#ACACE6",172,172,230,240.0,54.0,79.0 699 | "Maximum Green","#5E8C31",94,140,49,90.0,48.0,37.0 700 | "Maximum Green Yellow","#D9E650",217,230,80,65.0,75.0,61.0 701 | "Maximum Purple","#733380",115,51,128,290.0,43.0,35.0 702 | "Maximum Red","#D92121",217,33,33,0.0,74.0,49.0 703 | "Maximum Red Purple","#A63A79",166,58,121,325.0,48.0,44.0 704 | "Maximum Yellow","#FAFA37",250,250,55,60.0,95.0,60.0 705 | "Maximum Yellow Red","#F2BA49",242,186,73,40.0,87.0,62.0 706 | "May green","#4C9141",76,145,65,112.0,38.0,41.0 707 | "Maya blue","#73C2FB",115,194,251,205.0,94.0,72.0 708 | "Meat brown","#E5B73B",229,183,59,44.0,77.0,56.0 709 | "Medium aquamarine","#66DDAA",102,221,170,154.0,64.0,63.0 710 | "Medium blue","#0000CD",0,0,205,240.0,100.0,40.0 711 | "Medium candy apple red","#E2062C",226,6,44,350.0,95.0,45.0 712 | "Medium carmine","#AF4035",175,64,53,5.0,54.0,45.0 713 | "Medium champagne","#F3E5AB",243,229,171,48.0,75.0,81.0 714 | "Medium electric blue","#035096",3,80,150,209.0,96.0,30.0 715 | "Medium jungle green","#1C352D",28,53,45,161.0,31.0,16.0 716 | "Medium lavender magenta","#DDA0DD",221,160,221,300.0,47.0,75.0 717 | "Medium orchid","#BA55D3",186,85,211,288.0,59.0,58.0 718 | "Medium Persian blue","#0067A5",0,103,165,203.0,100.0,32.0 719 | "Medium purple","#9370DB",147,112,219,260.0,60.0,65.0 720 | "Medium red-violet","#BB3385",187,51,133,324.0,57.0,47.0 721 | "Medium ruby","#AA4069",170,64,105,337.0,45.0,46.0 722 | "Medium sea green","#3CB371",60,179,113,147.0,50.0,47.0 723 | "Medium sky blue","#80DAEB",128,218,235,190.0,73.0,71.0 724 | "Medium slate blue","#7B68EE",123,104,238,249.0,80.0,67.0 725 | "Medium spring bud","#C9DC87",201,220,135,73.0,55.0,70.0 726 | "Medium spring green","#00FA9A",0,250,154,157.0,100.0,49.0 727 | "Medium taupe","#674C47",103,76,71,9.0,18.0,34.0 728 | "Medium turquoise","#48D1CC",72,209,204,178.0,60.0,55.0 729 | "Medium Tuscan red","#79443B",121,68,59,9.0,34.0,35.0 730 | "Medium vermilion","#D9603B",217,96,59,14.0,68.0,54.0 731 | "Medium violet-red","#C71585",199,21,133,322.0,81.0,43.0 732 | "Mellow apricot","#F8B878",248,184,120,30.0,90.0,72.0 733 | "Mellow yellow","#F8DE7E",248,222,126,47.0,90.0,73.0 734 | "Melon","#FDBCB4",253,188,180,7.0,95.0,85.0 735 | "Metallic Seaweed","#0A7E8C",10,126,140,186.0,87.0,29.0 736 | "Metallic Sunburst","#9C7C38",156,124,56,41.0,47.0,42.0 737 | "Mexican pink","#E4007C",228,0,124,327.0,100.0,45.0 738 | "Middle Blue","#7ED4E6",126,212,230,126.0,68.0,70.0 739 | "Middle Blue Green","#8DD9CC",141,217,204,141.0,50.0,70.0 740 | "Middle Blue Purple","#8B72BE",139,114,190,260.0,37.0,60.0 741 | "Middle Red Purple","#210837",33,8,55,139.0,75.0,12.0 742 | "Middle Green","#4D8C57",77,140,87,130.0,29.0,43.0 743 | "Middle Green Yellow","#ACBF60",172,191,96,72.0,43.0,56.0 744 | "Middle Purple","#D982B5",217,130,181,325.0,53.0,68.0 745 | "Middle Red","#E58E73",229,144,115,15.0,69.0,68.0 746 | "Middle Red Purple","#A55353",0,83,83,165.0,100.0,16.0 747 | "Middle Yellow","#FFEB00",255,235,0,55.0,100.0,50.0 748 | "Middle Yellow Red","#ECB176",166,58,121,236.0,48.0,44.0 749 | "Midnight","#702670",112,38,112,300.0,49.0,29.0 750 | "Midnight blue","#191970",25,25,112,240.0,64.0,27.0 751 | "Midnight green (eagle green)","#004953",0,73,83,187.0,100.0,16.0 752 | "Mikado yellow","#FFC40C",255,196,12,45.0,100.0,52.0 753 | "Milk","#FDFFF5",253,255,245,72.0,100.0,98.0 754 | "Mimi Pink","#FFDAE9",255,218,233,336.0,100.0,93.0 755 | "Mindaro","#E3F988",227,249,136,72.0,90.0,75.0 756 | "Ming","#36747D",54,116,125,188.0,40.0,35.0 757 | "Minion Yellow","#F5E050",245,220,80,52.0,89.0,64.0 758 | "Mint","#3EB489",62,180,137,158.0,49.0,47.0 759 | "Mint cream","#F5FFFA",245,255,250,150.0,100.0,98.0 760 | "Mint green","#98FF98",152,255,152,120.0,100.0,80.0 761 | "Misty Moss","#BBB477",187,180,119,54.0,33.0,60.0 762 | "Misty rose","#FFE4E1",255,228,225,6.0,100.0,94.0 763 | "Moccasin","#FAEBD7",250,235,215,34.0,78.0,91.0 764 | "Mode beige","#967117",150,113,23,43.0,73.0,34.0 765 | "Moonstone blue","#73A9C2",115,169,194,199.0,39.0,61.0 766 | "Mordant red 19","#AE0C00",174,12,0,4.0,100.0,34.0 767 | "Moss green","#8A9A5B",138,154,91,75.0,26.0,48.0 768 | "Mountain Meadow","#30BA8F",48,186,143,161.0,59.0,46.0 769 | "Mountbatten pink","#997A8D",153,122,141,323.0,13.0,54.0 770 | "MSU Green","#18453B",24,69,59,167.0,48.0,18.0 771 | "Mughal green","#306030",48,96,48,120.0,33.0,28.0 772 | "Mulberry","#C54B8C",197,75,140,328.0,51.0,53.0 773 | "Mummy's Tomb","#828E84",130,142,132,130.0,5.0,53.0 774 | "Mustard","#FFDB58",255,219,88,47.0,100.0,67.0 775 | "Myrtle green","#317873",49,120,115,176.0,42.0,33.0 776 | "Mystic","#D65282",214,82,130,338.0,62.0,58.0 777 | "Mystic Maroon","#AD4379",173,67,121,329.0,44.0,47.0 778 | "Nadeshiko pink","#F6ADC6",246,173,198,339.0,80.0,82.0 779 | "Napier green","#2A8000",42,128,0,100.0,100.0,25.0 780 | "Naples yellow","#FADA5E",250,218,94,48.0,94.0,67.0 781 | "Navajo white","#FFDEAD",255,222,173,36.0,100.0,84.0 782 | "Navy","#000080",0,0,128,240.0,100.0,25.0 783 | "Navy purple","#9457EB",148,87,235,265.0,79.0,63.0 784 | "Neon Carrot","#FFA343",255,163,67,31.0,100.0,63.0 785 | "Neon fuchsia","#FE4164",254,65,100,349.0,99.0,63.0 786 | "Neon green","#39FF14",57,255,20,111.0,100.0,54.0 787 | "New Car","#214FC6",33,79,198,223.0,71.0,45.0 788 | "New York pink","#D7837F",215,131,127,3.0,52.0,67.0 789 | "Nickel","#727472",114,116,114,120.0,1.0,45.0 790 | "Non-photo blue","#A4DDED",164,221,237,193.0,67.0,79.0 791 | "North Texas Green","#059033",5,144,51,140.0,93.0,29.0 792 | "Nyanza","#E9FFDB",233,255,219,97.0,100.0,93.0 793 | "Ocean Blue","#4F42B5",79,66,181,247.0,47.0,48.0 794 | "Ocean Boat Blue","#0077BE",0,119,190,202.0,100.0,37.0 795 | "Ocean Green","#48BF91",72,191,145,157.0,48.0,52.0 796 | "Ochre","#CC7722",204,119,34,30.0,71.0,47.0 797 | "Office green","#008000",0,128,0,120.0,100.0,25.0 798 | "Ogre Odor","#FD5240",253,82,64,6.0,98.0,62.0 799 | "Old burgundy","#43302E",67,48,46,6.0,19.0,22.0 800 | "Old gold","#CFB53B",207,181,59,49.0,61.0,52.0 801 | "Old heliotrope","#563C5C",86,60,92,289.0,21.0,30.0 802 | "Old lace","#FDF5E6",253,245,230,39.0,85.0,95.0 803 | "Old lavender","#796878",121,104,120,304.0,8.0,44.0 804 | "Old mauve","#673147",103,49,71,336.0,36.0,30.0 805 | "Old moss green","#867E36",134,126,54,54.0,43.0,37.0 806 | "Old rose","#C08081",192,128,129,359.0,34.0,63.0 807 | "Old silver","#848482",132,132,130,60.0,1.0,51.0 808 | "Olive","#808000",128,128,0,60.0,100.0,25.0 809 | "Olive Drab (#3)","#6B8E23",107,142,35,80.0,60.0,35.0 810 | "Olive Drab #7","#3C341F",60,52,31,43.0,32.0,18.0 811 | "Olivine","#9AB973",154,185,115,87.0,33.0,59.0 812 | "Onyx","#353839",53,56,57,195.0,4.0,22.0 813 | "Opera mauve","#B784A7",183,132,167,319.0,26.0,62.0 814 | "Orange (color wheel)","#FF7F00",255,127,0,30.0,100.0,50.0 815 | "Orange (Crayola)","#FF7538",255,117,56,18.0,100.0,61.0 816 | "Orange (Pantone)","#FF5800",255,88,0,21.0,100.0,50.0 817 | "Orange (RYB)","#FB9902",251,153,2,36.0,98.0,50.0 818 | "Orange (web)","#FFA500",255,165,0,39.0,100.0,50.0 819 | "Orange peel","#FF9F00",255,159,0,37.0,100.0,50.0 820 | "Orange-red","#FF4500",255,69,0,16.0,100.0,50.0 821 | "Orange Soda","#FA5B3D",250,91,61,10.0,95.0,61.0 822 | "Orange-yellow","#F8D568",248,213,104,45.0,91.0,69.0 823 | "Orchid","#DA70D6",218,112,214,302.0,59.0,65.0 824 | "Orchid pink","#F2BDCD",242,189,205,342.0,67.0,85.0 825 | "Orioles orange","#FB4F14",251,79,20,15.0,97.0,53.0 826 | "Otter brown","#654321",101,67,33,30.0,51.0,26.0 827 | "Outer Space","#414A4C",65,74,76,191.0,8.0,28.0 828 | "Outrageous Orange","#FF6E4A",255,110,74,12.0,100.0,65.0 829 | "Oxford Blue","#002147",0,33,71,212.0,100.0,14.0 830 | "OU Crimson Red","#990000",153,0,0,0.0,100.0,30.0 831 | "Pacific Blue","#1CA9C9",28,169,201,191.0,76.0,45.0 832 | "Pakistan green","#006600",0,102,0,120.0,100.0,20.0 833 | "Palatinate blue","#273BE2",39,59,226,234.0,76.0,52.0 834 | "Palatinate purple","#682860",104,40,96,308.0,44.0,28.0 835 | "Pale aqua","#BCD4E6",188,212,230,206.0,46.0,82.0 836 | "Pale blue","#AFEEEE",175,238,238,180.0,65.0,81.0 837 | "Pale brown","#987654",152,118,84,30.0,29.0,46.0 838 | "Pale carmine","#AF4035",175,64,53,5.0,54.0,45.0 839 | "Pale cerulean","#9BC4E2",155,196,226,205.0,55.0,75.0 840 | "Pale chestnut","#DDADAF",221,173,175,358.0,41.0,77.0 841 | "Pale copper","#DA8A67",218,138,103,18.0,61.0,63.0 842 | "Pale cornflower blue","#ABCDEF",171,205,239,210.0,68.0,80.0 843 | "Pale cyan","#87D3F8",135,211,248,200.0,89.0,75.0 844 | "Pale gold","#E6BE8A",230,190,138,34.0,65.0,72.0 845 | "Pale goldenrod","#EEE8AA",238,232,170,55.0,67.0,80.0 846 | "Pale green","#98FB98",152,251,152,120.0,93.0,79.0 847 | "Pale lavender","#DCD0FF",220,208,255,255.0,100.0,91.0 848 | "Pale magenta","#F984E5",249,132,229,310.0,91.0,75.0 849 | "Pale magenta-pink","#FF99CC",255,153,204,330.0,100.0,80.0 850 | "Pale pink","#FADADD",250,218,221,354.0,76.0,92.0 851 | "Pale plum","#DDA0DD",221,160,221,300.0,47.0,75.0 852 | "Pale red-violet","#DB7093",219,112,147,340.0,60.0,65.0 853 | "Pale robin egg blue","#96DED1",150,222,209,169.0,52.0,73.0 854 | "Pale silver","#C9C0BB",201,192,187,21.0,11.0,76.0 855 | "Pale spring bud","#ECEBBD",236,235,189,59.0,55.0,83.0 856 | "Pale taupe","#BC987E",188,152,126,25.0,32.0,62.0 857 | "Pale turquoise","#AFEEEE",175,238,238,180.0,65.0,81.0 858 | "Pale violet","#CC99FF",204,153,255,270.0,100.0,80.0 859 | "Pale violet-red","#DB7093",219,112,147,340.0,60.0,65.0 860 | "Palm Leaf","#6F9940",130,142,132,88.0,5.0,53.0 861 | "Pansy purple","#78184A",120,24,74,329.0,67.0,28.0 862 | "Paolo Veronese green","#009B7D",0,155,125,168.0,100.0,30.0 863 | "Papaya whip","#FFEFD5",255,239,213,37.0,100.0,92.0 864 | "Paradise pink","#E63E62",230,62,98,347.0,77.0,57.0 865 | "Paris Green","#50C878",80,200,120,140.0,52.0,55.0 866 | "Parrot Pink","#D998A0",217,152,160,353.0,46.0,72.0 867 | "Pastel blue","#AEC6CF",174,198,207,196.0,26.0,75.0 868 | "Pastel brown","#836953",130,105,83,28.0,22.0,42.0 869 | "Pastel gray","#CFCFC4",207,207,196,60.0,10.0,79.0 870 | "Pastel green","#77DD77",119,221,119,120.0,60.0,67.0 871 | "Pastel magenta","#F49AC2",244,154,194,333.0,80.0,78.0 872 | "Pastel orange","#FFB347",255,179,71,35.0,100.0,64.0 873 | "Pastel pink","#DEA5A4",222,165,164,1.0,47.0,76.0 874 | "Pastel purple","#B39EB5",179,158,181,295.0,13.0,66.0 875 | "Pastel red","#FF6961",255,105,97,3.0,100.0,69.0 876 | "Pastel violet","#CB99C9",203,153,201,302.0,32.0,70.0 877 | "Pastel yellow","#FDFD96",253,253,150,60.0,96.0,79.0 878 | "Patriarch","#800080",128,0,128,300.0,100.0,25.0 879 | "Payne's grey","#536878",83,104,120,206.0,18.0,40.0 880 | "Peach","#FFE5B4",255,229,180,39.0,100.0,85.0 881 | "Peach","#FFCBA4",255,203,164,26.0,100.0,82.0 882 | "Peach-orange","#FFCC99",255,204,153,30.0,100.0,80.0 883 | "Peach puff","#FFDAB9",255,218,185,28.0,100.0,86.0 884 | "Peach-yellow","#FADFAD",250,223,173,39.0,89.0,83.0 885 | "Pear","#D1E231",209,226,49,66.0,75.0,54.0 886 | "Pearl","#EAE0C8",234,224,200,42.0,45.0,85.0 887 | "Pearl Aqua","#88D8C0",136,216,192,162.0,51.0,69.0 888 | "Pearly purple","#B768A2",183,104,162,316.0,35.0,56.0 889 | "Peridot","#E6E200",230,226,0,59.0,100.0,45.0 890 | "Periwinkle","#CCCCFF",204,204,255,240.0,100.0,90.0 891 | "Permanent Geranium Lake","#E12C2C",225,44,44,0.0,75.0,53.0 892 | "Persian blue","#1C39BB",28,57,187,229.0,74.0,42.0 893 | "Persian green","#00A693",0,166,147,173.0,100.0,33.0 894 | "Persian indigo","#32127A",50,18,122,258.0,74.0,27.0 895 | "Persian orange","#D99058",217,144,88,26.0,63.0,60.0 896 | "Persian pink","#F77FBE",247,127,190,329.0,88.0,73.0 897 | "Persian plum","#701C1C",112,28,28,0.0,60.0,27.0 898 | "Persian red","#CC3333",204,51,51,0.0,60.0,50.0 899 | "Persian rose","#FE28A2",254,40,162,326.0,99.0,58.0 900 | "Persimmon","#EC5800",236,88,0,22.0,100.0,46.0 901 | "Peru","#CD853F",205,133,63,30.0,59.0,53.0 902 | "Pewter Blue","#8BA8B7",139,168,183,200.0,23.0,63.0 903 | "Phlox","#DF00FF",223,0,255,292.0,100.0,50.0 904 | "Phthalo blue","#000F89",0,15,137,233.0,100.0,27.0 905 | "Phthalo green","#123524",18,53,36,151.0,49.0,14.0 906 | "Picton blue","#45B1E8",69,177,232,200.0,78.0,59.0 907 | "Pictorial carmine","#C30B4E",195,11,78,338.0,89.0,40.0 908 | "Piggy pink","#FDDDE6",253,221,230,343.0,89.0,93.0 909 | "Pine green","#01796F",1,121,111,175.0,98.0,24.0 910 | "Pineapple","#563C5C",86,60,13,289.0,74.0,19.0 911 | "Pink","#FFC0CB",255,192,203,350.0,100.0,88.0 912 | "Pink (Pantone)","#D74894",215,72,148,328.0,64.0,56.0 913 | "Pink Flamingo","#FC74FD",252,116,253,300.0,97.0,72.0 914 | "Pink lace","#FFDDF4",255,221,244,319.0,100.0,93.0 915 | "Pink lavender","#D8B2D1",216,178,209,311.0,33.0,77.0 916 | "Pink-orange","#FF9966",255,153,102,20.0,100.0,70.0 917 | "Pink pearl","#E7ACCF",231,172,207,324.0,55.0,79.0 918 | "Pink raspberry","#980036",152,0,54,339.0,100.0,30.0 919 | "Pink Sherbet","#F78FA7",247,143,167,346.0,87.0,76.0 920 | "Pistachio","#93C572",147,197,114,96.0,42.0,61.0 921 | "Pixie Powder","#391285",57,18,133,260.0,76.0,30.0 922 | "Platinum","#E5E4E2",229,228,226,40.0,5.0,89.0 923 | "Plum","#8E4585",142,69,133,307.0,35.0,41.0 924 | "Plum (web)","#DDA0DD",221,160,221,300.0,47.0,75.0 925 | "Plump Purple","#5946B2",89,70,178,251.0,44.0,49.0 926 | "Polished Pine","#5DA493",93,164,147,166.0,28.0,50.0 927 | "Pomp and Power","#86608E",134,96,142,290.0,19.0,47.0 928 | "Popstar","#BE4F62",190,79,98,350.0,46.0,53.0 929 | "Portland Orange","#FF5A36",255,90,54,11.0,100.0,61.0 930 | "Powder blue","#B0E0E6",176,224,230,187.0,52.0,80.0 931 | "Princess Perfume","#FF85CF",255,133,207,324.0,100.0,76.0 932 | "Princeton orange","#F58025",245,128,37,26.0,91.0,55.0 933 | "Prune","#701C1C",112,28,28,0.0,60.0,27.0 934 | "Prussian blue","#003153",0,49,83,205.0,100.0,16.0 935 | "Psychedelic purple","#DF00FF",223,0,255,292.0,100.0,50.0 936 | "Puce","#CC8899",204,136,153,345.0,40.0,67.0 937 | "Puce red","#722F37",114,47,55,353.0,42.0,32.0 938 | "Pullman Brown (UPS Brown)","#644117",100,65,23,33.0,63.0,24.0 939 | "Pullman Green","#3B331C",59,51,28,45.0,36.0,17.0 940 | "Pumpkin","#FF7518",255,117,24,24.0,100.0,55.0 941 | "Purple (HTML)","#800080",128,0,128,300.0,100.0,25.0 942 | "Purple (Munsell)","#9F00C5",159,0,197,288.0,100.0,39.0 943 | "Purple (X11)","#A020F0",160,32,240,277.0,87.0,53.0 944 | "Purple Heart","#69359C",105,53,156,270.0,49.0,41.0 945 | "Purple mountain majesty","#9678B6",150,120,182,269.0,30.0,59.0 946 | "Purple navy","#4E5180",78,81,128,236.0,24.0,40.0 947 | "Purple pizzazz","#FE4EDA",254,78,218,312.0,99.0,65.0 948 | "Purple Plum","#9C51B6",156,81,182,285.0,41.0,52.0 949 | "Purple taupe","#50404D",80,64,77,311.0,11.0,28.0 950 | "Purpureus","#9A4EAE",154,78,174,288.0,38.0,49.0 951 | "Quartz","#51484F",81,72,79,313.0,6.0,30.0 952 | "Queen blue","#436B95",67,107,149,211.0,38.0,42.0 953 | "Queen pink","#E8CCD7",232,204,215,336.0,38.0,85.0 954 | "Quick Silver","#A6A6A6",166,166,166,0.0,0.0,65.0 955 | "Quinacridone magenta","#8E3A59",142,58,89,338.0,42.0,39.0 956 | "Rackley","#5D8AA8",93,138,168,204.0,30.0,51.0 957 | "Radical Red","#FF355E",255,53,94,348.0,100.0,60.0 958 | "Raisin black","#242124",36,33,36,300.0,4.0,14.0 959 | "Rajah","#FBAB60",251,171,96,29.0,95.0,68.0 960 | "Raspberry","#E30B5D",227,11,92,337.0,91.0,47.0 961 | "Raspberry glace","#915F6D",145,95,109,343.0,21.0,47.0 962 | "Raspberry pink","#E25098",226,80,152,330.0,72.0,60.0 963 | "Raspberry rose","#B3446C",179,68,108,338.0,45.0,48.0 964 | "Raw Sienna","#D68A59",214,138,89,24.0,60.0,59.0 965 | "Raw umber","#826644",130,102,68,33.0,31.0,39.0 966 | "Razzle dazzle rose","#FF33CC",255,51,204,315.0,100.0,60.0 967 | "Razzmatazz","#E3256B",227,37,107,338.0,77.0,52.0 968 | "Razzmic Berry","#8D4E85",141,78,133,308.0,29.0,43.0 969 | "Rebecca Purple","#663399",102,52,153,270.0,49.0,40.0 970 | "Red","#FF0000",255,0,0,0.0,100.0,50.0 971 | "Red (Crayola)","#EE204D",238,32,77,347.0,86.0,53.0 972 | "Red (Munsell)","#F2003C",242,0,60,345.0,100.0,47.0 973 | "Red (NCS)","#C40233",196,2,51,345.0,98.0,39.0 974 | "Red (Pantone)","#ED2939",237,41,57,355.0,84.0,55.0 975 | "Red (pigment)","#ED1C24",237,28,36,358.0,85.0,52.0 976 | "Red (RYB)","#FE2712",254,39,18,5.0,99.0,53.0 977 | "Red-brown","#A52A2A",165,42,42,0.0,59.0,41.0 978 | "Red devil","#860111",134,1,17,353.0,99.0,26.0 979 | "Red-orange","#FF5349",255,83,73,3.0,100.0,64.0 980 | "Red-purple","#E40078",228,0,120,328.0,100.0,45.0 981 | "Red Salsa","#FD3A4A",253,58,74,355.0,98.0,61.0 982 | "Red-violet","#C71585",199,21,133,322.0,81.0,43.0 983 | "Redwood","#A45A52",164,90,82,6.0,33.0,48.0 984 | "Regalia","#522D80",82,45,128,267.0,48.0,34.0 985 | "Registration black","#000000",0,0,0,0,0.0,0.0 986 | "Resolution blue","#002387",0,35,135,224.0,100.0,26.0 987 | "Rhythm","#777696",119,118,150,242.0,13.0,53.0 988 | "Rich black","#004040",0,64,64,180.0,100.0,13.0 989 | "Rich black (FOGRA29)","#010B13",1,11,19,207.0,90.0,4.0 990 | "Rich black (FOGRA39)","#010203",1,2,3,210.0,50.0,1.0 991 | "Rich brilliant lavender","#F1A7FE",241,167,254,291.0,98.0,83.0 992 | "Rich carmine","#D70040",215,0,64,342.0,100.0,42.0 993 | "Rich electric blue","#0892D0",8,146,208,199.0,93.0,42.0 994 | "Rich lavender","#A76BCF",167,107,207,276.0,51.0,62.0 995 | "Rich lilac","#B666D2",182,102,210,284.0,55.0,61.0 996 | "Rich maroon","#B03060",176,48,96,338.0,57.0,44.0 997 | "Rifle green","#444C38",68,76,56,84.0,15.0,26.0 998 | "Roast coffee","#704241",112,66,65,1.0,27.0,35.0 999 | "Robin egg blue","#00CCCC",0,204,204,180.0,100.0,40.0 1000 | "Rocket metallic","#8A7F80",138,127,128,355.0,4.0,52.0 1001 | "Roman silver","#838996",131,137,150,221.0,8.0,55.0 1002 | "Rose","#FF007F",255,0,127,330.0,100.0,50.0 1003 | "Rose bonbon","#F9429E",249,66,158,330.0,94.0,62.0 1004 | "Rose Dust","#9E5E6F",158,94,111,344.0,25.0,49.0 1005 | "Rose ebony","#674846",103,72,70,4.0,19.0,34.0 1006 | "Rose gold","#B76E79",183,110,121,351.0,34.0,57.0 1007 | "Rose madder","#E32636",227,38,54,355.0,77.0,52.0 1008 | "Rose pink","#FF66CC",255,102,204,320.0,100.0,70.0 1009 | "Rose quartz","#AA98A9",170,152,169,303.0,10.0,63.0 1010 | "Rose red","#C21E56",194,30,86,340.0,73.0,44.0 1011 | "Rose taupe","#905D5D",144,93,93,0.0,22.0,46.0 1012 | "Rose vale","#AB4E52",171,78,82,357.0,37.0,49.0 1013 | "Rosewood","#65000B",101,0,11,353.0,100.0,20.0 1014 | "Rosso corsa","#D40000",212,0,0,0.0,100.0,42.0 1015 | "Rosy brown","#BC8F8F",188,143,143,0.0,25.0,65.0 1016 | "Royal azure","#0038A8",0,56,168,220.0,100.0,33.0 1017 | "Royal blue","#002366",0,35,102,219.0,100.0,20.0 1018 | "Royal blue","#4169E1",65,105,225,225.0,73.0,57.0 1019 | "Royal fuchsia","#CA2C92",202,44,146,321.0,64.0,48.0 1020 | "Royal purple","#7851A9",120,81,169,267.0,35.0,49.0 1021 | "Royal yellow","#FADA5E",250,218,94,48.0,94.0,67.0 1022 | "Ruber","#CE4676",206,70,118,339.0,58.0,54.0 1023 | "Rubine red","#D10056",209,0,86,335.0,100.0,41.0 1024 | "Ruby","#E0115F",224,17,95,337.0,86.0,47.0 1025 | "Ruby red","#9B111E",155,17,30,354.0,80.0,34.0 1026 | "Ruddy","#FF0028",255,0,40,351.0,100.0,50.0 1027 | "Ruddy brown","#BB6528",187,101,40,25.0,65.0,45.0 1028 | "Ruddy pink","#E18E96",225,142,150,354.0,58.0,72.0 1029 | "Rufous","#A81C07",168,28,7,8.0,92.0,34.0 1030 | "Russet","#80461B",128,70,27,26.0,65.0,30.0 1031 | "Russian green","#679267",103,146,103,120.0,17.0,49.0 1032 | "Russian violet","#32174D",50,23,77,270.0,54.0,20.0 1033 | "Rust","#B7410E",183,65,14,18.0,86.0,39.0 1034 | "Rusty red","#DA2C43",218,44,67,352.0,70.0,51.0 1035 | "Sacramento State green","#00563F",0,86,63,164.0,100.0,17.0 1036 | "Saddle brown","#8B4513",139,69,19,25.0,76.0,31.0 1037 | "Safety orange","#FF7800",255,120,0,28.0,100.0,50.0 1038 | "Safety orange (blaze orange)","#FF6700",255,103,0,24.0,100.0,50.0 1039 | "Safety yellow","#EED202",238,210,2,53.0,98.0,47.0 1040 | "Saffron","#F4C430",244,196,48,45.0,90.0,57.0 1041 | "Sage","#BCB88A",188,184,138,55.0,27.0,64.0 1042 | "St. Patrick's blue","#23297A",35,41,122,236.0,55.0,31.0 1043 | "Salmon","#FA8072",250,128,114,6.0,93.0,71.0 1044 | "Salmon pink","#FF91A4",255,145,164,350.0,100.0,78.0 1045 | "Sand","#C2B280",194,178,128,45.0,35.0,63.0 1046 | "Sand dune","#967117",150,113,23,43.0,73.0,34.0 1047 | "Sandstorm","#ECD540",236,213,64,52.0,82.0,59.0 1048 | "Sandy brown","#F4A460",244,164,96,28.0,87.0,67.0 1049 | "Sandy Tan","#FDD9B5",253,217,181,30.0,95.0,85.0 1050 | "Sandy taupe","#967117",150,113,23,43.0,73.0,34.0 1051 | "Sangria","#92000A",146,0,10,356.0,100.0,29.0 1052 | "Sap green","#507D2A",80,125,42,93.0,50.0,33.0 1053 | "Sapphire","#0F52BA",15,82,186,216.0,85.0,39.0 1054 | "Sapphire blue","#0067A5",0,103,165,203.0,100.0,32.0 1055 | "Sasquatch Socks","#FF4681",255,70,129,341.0,100.0,64.0 1056 | "Satin sheen gold","#CBA135",203,161,53,43.0,59.0,50.0 1057 | "Scarlet","#FF2400",255,36,0,8.0,100.0,50.0 1058 | "Scarlet","#FD0E35",253,14,53,350.0,98.0,52.0 1059 | "Schauss pink","#FF91AF",255,145,175,344.0,100.0,78.0 1060 | "School bus yellow","#FFD800",255,216,0,51.0,100.0,50.0 1061 | "Screamin' Green","#66FF66",102,255,102,120.0,100.0,70.0 1062 | "Sea blue","#006994",0,105,148,197.0,100.0,29.0 1063 | "Sea Foam Green","#9FE2BF",195,226,191,149.0,38.0,82.0 1064 | "Sea green","#2E8B57",46,139,87,146.0,50.0,36.0 1065 | "Sea Serpent","#4BC7CF",75,199,207,184.0,58.0,55.0 1066 | "Seal brown","#59260B",50,20,20,0.0,43.0,14.0 1067 | "Seashell","#FFF5EE",255,245,238,25.0,100.0,97.0 1068 | "Selective yellow","#FFBA00",255,186,0,44.0,100.0,50.0 1069 | "Sepia","#704214",112,66,20,30.0,70.0,26.0 1070 | "Shadow","#8A795D",138,121,93,37.0,19.0,45.0 1071 | "Shadow blue","#778BA5",119,139,165,214.0,20.0,56.0 1072 | "Shampoo","#FFCFF1",255,207,241,318.0,100.0,91.0 1073 | "Shamrock green","#009E60",0,158,96,156.0,100.0,31.0 1074 | "Sheen Green","#8FD400",143,212,0,80.0,100.0,42.0 1075 | "Shimmering Blush","#D98695",217,134,149,349.0,52.0,69.0 1076 | "Shiny Shamrock","#5FA778",95,167,120,141.0,29.0,51.0 1077 | "Shocking pink","#FC0FC0",252,15,192,315.0,98.0,52.0 1078 | "Shocking pink (Crayola)","#FF6FFF",255,111,255,300.0,100.0,72.0 1079 | "Sienna","#882D17",136,45,23,12.0,71.0,31.0 1080 | "Silver","#C0C0C0",192,192,192,0,0.0,75.0 1081 | "Silver chalice","#ACACAC",172,172,172,0,0.0,67.0 1082 | "Silver Lake blue","#5D89BA",93,137,186,212.0,40.0,55.0 1083 | "Silver pink","#C4AEAD",196,174,173,3.0,16.0,72.0 1084 | "Silver sand","#BFC1C2",191,193,194,200.0,2.0,75.0 1085 | "Sinopia","#CB410B",203,65,11,17.0,90.0,42.0 1086 | "Sizzling Red","#FF3855",255,56,85,351.0,100.0,61.0 1087 | "Sizzling Sunrise","#FFDB00",255,219,0,52.0,100.0,50.0 1088 | "Skobeloff","#007474",0,116,116,180.0,100.0,23.0 1089 | "Sky blue","#87CEEB",135,206,235,197.0,71.0,73.0 1090 | "Sky magenta","#CF71AF",207,113,175,320.0,49.0,63.0 1091 | "Slate blue","#6A5ACD",106,90,205,248.0,53.0,58.0 1092 | "Slate gray","#708090",112,128,144,210.0,13.0,50.0 1093 | "Smalt (Dark powder blue)","#003399",0,51,153,220.0,100.0,30.0 1094 | "Slimy Green","#299617",41,150,23,111.0,73.0,34.0 1095 | "Smashed Pumpkin","#FF6D3A",255,109,58,16.0,100.0,61.0 1096 | "Smitten","#C84186",200,65,134,329.0,55.0,52.0 1097 | "Smoke","#738276",115,130,118,132.0,6.0,48.0 1098 | "Smokey Topaz","#832A0D",131,42,34,15.0,59.0,32.0 1099 | "Smoky black","#100C08",16,12,8,30.0,33.0,5.0 1100 | "Smoky Topaz","#933D41",147,61,65,357.0,41.0,41.0 1101 | "Snow","#FFFAFA",255,250,250,0.0,100.0,99.0 1102 | "Soap","#CEC8EF",206,200,239,249.0,55.0,86.0 1103 | "Solid pink","#893843",137,56,67,352.0,42.0,38.0 1104 | "Sonic silver","#757575",117,117,117,0,0.0,46.0 1105 | "Spartan Crimson","#9E1316",158,19,22,359.0,79.0,35.0 1106 | "Space cadet","#1D2951",29,41,81,226.0,47.0,22.0 1107 | "Spanish bistre","#807532",128,117,50,52.0,44.0,35.0 1108 | "Spanish blue","#0070B8",0,112,184,203.0,100.0,36.0 1109 | "Spanish carmine","#D10047",209,0,71,340.0,100.0,41.0 1110 | "Spanish crimson","#E51A4C",229,26,76,345.0,80.0,50.0 1111 | "Spanish gray","#989898",152,152,152,0,0.0,60.0 1112 | "Spanish green","#009150",0,145,80,153.0,100.0,28.0 1113 | "Spanish orange","#E86100",232,97,0,25.0,100.0,45.0 1114 | "Spanish pink","#F7BFBE",247,191,190,1.0,78.0,86.0 1115 | "Spanish red","#E60026",230,0,38,350.0,100.0,45.0 1116 | "Spanish sky blue","#00FFFF",0,255,255,180.0,100.0,50.0 1117 | "Spanish violet","#4C2882",76,40,130,264.0,53.0,33.0 1118 | "Spanish viridian","#007F5C",0,127,92,163.0,100.0,25.0 1119 | "Spicy mix","#8B5f4D",139,95,77,17.0,29.0,42.0 1120 | "Spiro Disco Ball","#0FC0FC",15,192,252,195.0,98.0,52.0 1121 | "Spring bud","#A7FC00",167,252,0,80.0,100.0,49.0 1122 | "Spring Frost","#87FF2A",135,255,42,94.0,100.0,58.0 1123 | "Spring green","#00FF7F",0,255,127,150.0,100.0,50.0 1124 | "Star command blue","#007BB8",0,123,184,200.0,100.0,36.0 1125 | "Steel blue","#4682B4",70,130,180,207.0,44.0,49.0 1126 | "Steel pink","#CC33CC",204,51,204,300.0,60.0,50.0 1127 | "Steel Teal","#5F8A8B",95,138,139,181.0,19.0,46.0 1128 | "Stil de grain yellow","#FADA5E",250,218,94,48.0,94.0,67.0 1129 | "Stizza","#990000",153,0,0,0.0,100.0,30.0 1130 | "Stormcloud","#4F666A",79,102,106,189.0,15.0,36.0 1131 | "Straw","#E4D96F",228,217,111,54.0,68.0,66.0 1132 | "Strawberry","#FC5A8D",252,90,141,341.0,96.0,67.0 1133 | "Sugar Plum","#914E75",145,78,117,325.0,30.0,44.0 1134 | "Sunburnt Cyclops","#FF404C",255,64,76,356.0,100.0,63.0 1135 | "Sunglow","#FFCC33",255,204,51,45.0,100.0,60.0 1136 | "Sunny","#F2F27A",242,242,122,60.0,82.0,71.0 1137 | "Sunray","#E3AB57",227,171,87,36.0,71.0,62.0 1138 | "Sunset","#FAD6A5",250,214,165,35.0,89.0,81.0 1139 | "Sunset orange","#FD5E53",253,94,83,4.0,98.0,66.0 1140 | "Super pink","#CF6BA9",207,107,169,323.0,51.0,62.0 1141 | "Sweet Brown","#A83731",168,55,49,3.0,55.0,43.0 1142 | "Tan","#D2B48C",210,180,140,34.0,44.0,69.0 1143 | "Tangelo","#F94D00",249,77,0,19.0,100.0,49.0 1144 | "Tangerine","#F28500",242,133,0,33.0,100.0,47.0 1145 | "Tangerine yellow","#FFCC00",255,204,0,48.0,100.0,50.0 1146 | "Tango pink","#E4717A",228,113,122,355.0,68.0,67.0 1147 | "Tart Orange","#FB4D46",251,77,70,2.0,96.0,63.0 1148 | "Taupe","#483C32",72,60,50,27.0,18.0,24.0 1149 | "Taupe gray","#8B8589",139,133,137,320.0,3.0,53.0 1150 | "Tea green","#D0F0C0",208,240,192,100.0,62.0,85.0 1151 | "Tea rose","#F88379",248,131,121,5.0,90.0,72.0 1152 | "Tea rose","#F4C2C2",244,194,194,0.0,69.0,86.0 1153 | "Teal","#008080",0,128,128,180.0,100.0,25.0 1154 | "Teal blue","#367588",54,117,136,194.0,43.0,37.0 1155 | "Teal deer","#99E6B3",153,230,179,140.0,61.0,75.0 1156 | "Teal green","#00827F",0,130,127,179.0,100.0,25.0 1157 | "Telemagenta","#CF3476",207,52,118,334.0,62.0,51.0 1158 | "Tenné (tawny)","#CD5700",205,87,0,25.0,100.0,40.0 1159 | "Terra cotta","#E2725B",226,114,91,10.0,70.0,62.0 1160 | "Thistle","#D8BFD8",216,191,216,300.0,24.0,80.0 1161 | "Thulian pink","#DE6FA1",222,111,161,333.0,63.0,65.0 1162 | "Tickle Me Pink","#FC89AC",252,137,172,342.0,95.0,76.0 1163 | "Tiffany Blue","#0ABAB5",10,186,181,178.0,90.0,38.0 1164 | "Tiger's eye","#E08D3C",224,141,60,30.0,73.0,56.0 1165 | "Timberwolf","#DBD7D2",219,215,210,33.0,11.0,84.0 1166 | "Titanium yellow","#EEE600",238,230,0,58.0,100.0,47.0 1167 | "Tomato","#FF6347",255,99,71,9.0,100.0,64.0 1168 | "Toolbox","#746CC0",116,108,192,246.0,40.0,59.0 1169 | "Topaz","#FFC87C",255,200,124,35.0,100.0,74.0 1170 | "Tractor red","#FD0E35",253,14,53,350.0,98.0,52.0 1171 | "Trolley Grey","#808080",128,128,128,0,0.0,50.0 1172 | "Tropical rain forest","#00755E",0,117,94,168.0,100.0,23.0 1173 | "Tropical violet","#CDA4DE",205,164,222,282.0,47.0,76.0 1174 | "True Blue","#0073CF",0,115,207,207.0,100.0,41.0 1175 | "Tufts Blue","#3E8EDE",62,142,222,210.0,71.0,56.0 1176 | "Tulip","#FF878D",255,135,141,357.0,100.0,76.0 1177 | "Tumbleweed","#DEAA88",222,170,136,24.0,57.0,70.0 1178 | "Turkish rose","#B57281",181,114,129,347.0,31.0,58.0 1179 | "Turquoise","#40E0D0",64,224,208,174.0,72.0,56.0 1180 | "Turquoise blue","#00FFEF",0,255,239,176.0,100.0,50.0 1181 | "Turquoise green","#A0D6B4",160,214,180,142.0,40.0,73.0 1182 | "Turquoise Surf","#00C5CD",0,197,205,182.0,100.0,40.0 1183 | "Turtle green","#8A9A5B",138,154,91,75.0,26.0,48.0 1184 | "Tuscan","#FAD6A5",250,214,165,35.0,89.0,81.0 1185 | "Tuscan brown","#6F4E37",111,78,55,25.0,34.0,33.0 1186 | "Tuscan red","#7C4848",124,72,72,0.0,27.0,38.0 1187 | "Tuscan tan","#A67B5B",166,123,91,26.0,30.0,50.0 1188 | "Tuscany","#C09999",192,153,153,0.0,24.0,68.0 1189 | "Twilight lavender","#8A496B",138,73,107,329.0,31.0,41.0 1190 | "Tyrian purple","#66023C",102,2,60,325.0,96.0,20.0 1191 | "UA blue","#0033AA",0,51,170,222.0,100.0,33.0 1192 | "UA red","#D9004C",217,0,76,339.0,100.0,43.0 1193 | "Ube","#8878C3",136,120,195,253.0,39.0,62.0 1194 | "UCLA Blue","#536895",83,104,149,221.0,28.0,46.0 1195 | "UCLA Gold","#FFB300",255,179,0,42.0,100.0,50.0 1196 | "UFO Green","#3CD070",60,208,112,141.0,61.0,53.0 1197 | "Ultramarine","#3F00FF",18,10,143,244.0,87.0,30.0 1198 | "Ultramarine blue","#4166F5",65,102,245,228.0,90.0,61.0 1199 | "Ultra pink","#FF6FFF",255,111,255,300.0,100.0,72.0 1200 | "Ultra red","#FC6C85",252,108,133,350.0,96.0,71.0 1201 | "Umber","#635147",99,81,71,21.0,16.0,33.0 1202 | "Unbleached silk","#FFDDCA",255,221,202,22.0,100.0,90.0 1203 | "United Nations blue","#5B92E5",91,146,229,216.0,73.0,63.0 1204 | "University of California Gold","#B78727",183,135,39,40.0,65.0,44.0 1205 | "Unmellow yellow","#FFFF66",255,255,102,60.0,100.0,70.0 1206 | "UP Forest green","#014421",1,68,33,149.0,97.0,14.0 1207 | "UP Maroon","#7B1113",123,17,19,359.0,76.0,27.0 1208 | "Upsdell red","#AE2029",174,32,41,356.0,69.0,40.0 1209 | "Urobilin","#E1AD21",225,173,33,44.0,76.0,51.0 1210 | "USAFA blue","#004F98",0,79,152,209.0,100.0,30.0 1211 | "USC Cardinal","#990000",153,0,0,0.0,100.0,30.0 1212 | "USC Gold","#FFCC00",255,204,0,48.0,100.0,50.0 1213 | "University of Tennessee Orange","#F77F00",247,127,0,31.0,100.0,48.0 1214 | "Utah Crimson","#D3003F",211,0,63,342.0,100.0,41.0 1215 | "Van Dyke Brown","#664228",102,66,40,25.0,44.0,28.0 1216 | "Vanilla","#F3E5AB",243,229,171,48.0,75.0,81.0 1217 | "Vanilla ice","#F38FA9",243,143,169,344.0,81.0,76.0 1218 | "Vegas gold","#C5B358",197,179,88,50.0,48.0,56.0 1219 | "Venetian red","#C80815",200,8,21,356.0,92.0,41.0 1220 | "Verdigris","#43B3AE",67,179,174,177.0,46.0,48.0 1221 | "Vermilion","#E34234",227,66,52,5.0,76.0,55.0 1222 | "Vermilion","#D9381E",217,56,30,8.0,76.0,48.0 1223 | "Veronica","#A020F0",160,32,240,277.0,87.0,53.0 1224 | "Very light azure","#74BBFB",116,187,251,208.0,94.0,72.0 1225 | "Very light blue","#6666FF",102,102,255,240.0,100.0,70.0 1226 | "Very light malachite green","#64E986",100,233,134,135.0,75.0,65.0 1227 | "Very light tangelo","#FFB077",255,176,119,25.0,100.0,73.0 1228 | "Very pale orange","#FFDFBF",255,223,191,30.0,100.0,88.0 1229 | "Very pale yellow","#FFFFBF",255,255,191,60.0,100.0,88.0 1230 | "Violet","#8F00FF",143,0,255,274.0,100.0,50.0 1231 | "Violet (color wheel)","#7F00FF",127,0,255,270.0,100.0,50.0 1232 | "Violet (RYB)","#8601AF",134,1,175,286.0,99.0,35.0 1233 | "Violet (web)","#EE82EE",238,130,238,300.0,76.0,72.0 1234 | "Violet-blue","#324AB2",50,74,178,229.0,56.0,45.0 1235 | "Violet-red","#F75394",247,83,148,336.0,91.0,65.0 1236 | "Viridian","#40826D",64,130,109,161.0,34.0,38.0 1237 | "Viridian green","#009698",0,150,152,181.0,100.0,30.0 1238 | "Vista blue","#7C9ED9",124,158,217,218.0,55.0,67.0 1239 | "Vivid amber","#CC9900",204,153,0,45.0,100.0,40.0 1240 | "Vivid auburn","#922724",146,39,36,2.0,60.0,36.0 1241 | "Vivid burgundy","#9F1D35",159,29,53,349.0,69.0,37.0 1242 | "Vivid cerise","#DA1D81",218,29,129,328.0,77.0,48.0 1243 | "Vivid cerulean","#00AAEE",0,170,238,197.0,100.0,47.0 1244 | "Vivid crimson","#CC0033",204,0,51,345.0,100.0,40.0 1245 | "Vivid gamboge","#FF9900",255,153,0,36.0,100.0,50.0 1246 | "Vivid lime green","#A6D608",166,214,8,74.0,93.0,44.0 1247 | "Vivid malachite","#00CC33",0,204,51,135.0,100.0,40.0 1248 | "Vivid mulberry","#B80CE3",184,12,227,288.0,90.0,47.0 1249 | "Vivid orange","#FF5F00",255,95,0,22.0,100.0,50.0 1250 | "Vivid orange peel","#FFA000",255,160,0,18.0,100.0,50.0 1251 | "Vivid orchid","#CC00FF",204,0,255,288.0,100.0,50.0 1252 | "Vivid raspberry","#FF006C",255,0,108,335.0,100.0,50.0 1253 | "Vivid red","#F70D1A",247,13,26,357.0,94.0,51.0 1254 | "Vivid red-tangelo","#DF6124",223,97,36,20.0,75.0,51.0 1255 | "Vivid sky blue","#00CCFF",0,204,255,192.0,100.0,50.0 1256 | "Vivid tangelo","#F07427",240,116,39,23.0,87.0,55.0 1257 | "Vivid tangerine","#FFA089",255,160,137,12.0,100.0,77.0 1258 | "Vivid vermilion","#E56024",229,96,36,19.0,79.0,52.0 1259 | "Vivid violet","#9F00FF",159,0,255,277.0,100.0,50.0 1260 | "Vivid yellow","#FFE302",255,227,2,53.0,100.0,50.0 1261 | "Volt","#CEFF00",205,255,0,72.0,100.0,50.0 1262 | "Wageningen Green","#34B233",52,178,51,120.0,56.0,45.0 1263 | "Warm black","#004242",0,66,66,180.0,100.0,13.0 1264 | "Waterspout","#A4F4F9",164,244,249,184.0,88.0,81.0 1265 | "Weldon Blue","#7C98AB",124,152,171,204.0,22.0,58.0 1266 | "Wenge","#645452",100,84,82,7.0,10.0,36.0 1267 | "Wheat","#F5DEB3",245,222,179,39.0,77.0,83.0 1268 | "White","#FFFFFF",255,255,255,0,0.0,100.0 1269 | "White smoke","#F5F5F5",245,245,245,0,0.0,96.0 1270 | "Wild blue yonder","#A2ADD0",162,173,208,226.0,33.0,73.0 1271 | "Wild orchid","#D470A2",212,112,162,330.0,54.0,64.0 1272 | "Wild Strawberry","#FF43A4",255,67,164,329.0,100.0,63.0 1273 | "Wild watermelon","#FC6C85",252,108,133,350.0,96.0,71.0 1274 | "Willpower orange","#FD5800",253,88,0,21.0,100.0,50.0 1275 | "Windsor tan","#A75502",167,85,2,30.0,98.0,33.0 1276 | "Wine","#722F37",114,47,55,353.0,42.0,32.0 1277 | "Wine dregs","#673147",103,49,71,336.0,36.0,30.0 1278 | "Winter Sky","#FF007C",255,0,124,331.0,100.0,50.0 1279 | "Winter Wizard","#A0E6FF",160,230,255,196.0,100.0,81.0 1280 | "Wintergreen Dream","#56887D",86,136,125,167.0,23.0,44.0 1281 | "Wisteria","#C9A0DC",201,160,220,281.0,46.0,75.0 1282 | "Wood brown","#C19A6B",193,154,107,33.0,41.0,59.0 1283 | "Xanadu","#738678",115,134,120,136.0,8.0,49.0 1284 | "Yale Blue","#0F4D92",15,77,146,212.0,81.0,32.0 1285 | "Yankees blue","#1C2841",28,40,65,221.0,40.0,18.0 1286 | "Yellow","#FFFF00",255,255,0,60.0,100.0,50.0 1287 | "Yellow (Crayola)","#FCE883",252,232,131,50.0,95.0,75.0 1288 | "Yellow (Munsell)","#EFCC00",239,204,0,51.0,100.0,47.0 1289 | "Yellow (NCS)","#FFD300",255,211,0,50.0,100.0,50.0 1290 | "Yellow (Pantone)","#FEDF00",254,223,0,53.0,100.0,50.0 1291 | "Yellow (process)","#FFEF00",255,239,0,56.0,100.0,50.0 1292 | "Yellow (RYB)","#FEFE33",254,254,51,60.0,99.0,60.0 1293 | "Yellow-green","#9ACD32",154,205,50,80.0,61.0,50.0 1294 | "Yellow Orange","#FFAE42",255,174,66,34.0,100.0,63.0 1295 | "Yellow rose","#FFF000",255,240,0,56.0,100.0,50.0 1296 | "Yellow Sunshine","#FFF700",255,247,0,58.0,100.0,50.0 1297 | "Zaffre","#0014A8",0,20,168,233.0,100.0,33.0 1298 | "Zinnwaldite brown","#2C1608",44,22,8,23.0,69.0,10.0 1299 | "Zomp","#39A78E",57,167,142,166.0,49.0,44.0 1300 | --------------------------------------------------------------------------------