From 236fd1d9f2009083fbbfce7190c27fbf1d7c88b8 Mon Sep 17 00:00:00 2001 From: yo mama Date: Fri, 7 Aug 2015 18:33:30 -0700 Subject: getting ready --- frontend/imgrid/colors/junk/ScrollEffect.js | 86 + .../imgrid/colors/junk/ScrollEffectcomingsoon.js | 237 + frontend/imgrid/colors/junk/brush.ani | Bin 0 -> 12950 bytes frontend/imgrid/colors/junk/colordictOLD.js | 2 + frontend/imgrid/colors/junk/colorpicker.html | 254 + frontend/imgrid/colors/junk/colorpixx.css | 2047 ++++++++ frontend/imgrid/colors/junk/colorpixx.js | 92 + frontend/imgrid/colors/junk/colors.html | 5429 ++++++++++++++++++++ frontend/imgrid/colors/junk/colorsbest.html | 3606 +++++++++++++ frontend/imgrid/colors/junk/divlist.js | 2 + frontend/imgrid/colors/junk/divlistmaker | 32 + frontend/imgrid/colors/junk/mapmaker.html | 3586 +++++++++++++ frontend/imgrid/colors/junk/picker.js | 15 + frontend/imgrid/colors/junk/scrollio.html | 3850 ++++++++++++++ frontend/imgrid/colors/junk/separate | 126 + frontend/imgrid/colors/junk/todo.txt | 135 + frontend/imgrid/colors/junk/withscroller.html | 3850 ++++++++++++++ 17 files changed, 23349 insertions(+) create mode 100755 frontend/imgrid/colors/junk/ScrollEffect.js create mode 100755 frontend/imgrid/colors/junk/ScrollEffectcomingsoon.js create mode 100755 frontend/imgrid/colors/junk/brush.ani create mode 100755 frontend/imgrid/colors/junk/colordictOLD.js create mode 100755 frontend/imgrid/colors/junk/colorpicker.html create mode 100755 frontend/imgrid/colors/junk/colorpixx.css create mode 100755 frontend/imgrid/colors/junk/colorpixx.js create mode 100755 frontend/imgrid/colors/junk/colors.html create mode 100755 frontend/imgrid/colors/junk/colorsbest.html create mode 100755 frontend/imgrid/colors/junk/divlist.js create mode 100755 frontend/imgrid/colors/junk/divlistmaker create mode 100755 frontend/imgrid/colors/junk/mapmaker.html create mode 100755 frontend/imgrid/colors/junk/picker.js create mode 100755 frontend/imgrid/colors/junk/scrollio.html create mode 100755 frontend/imgrid/colors/junk/separate create mode 100755 frontend/imgrid/colors/junk/todo.txt create mode 100755 frontend/imgrid/colors/junk/withscroller.html (limited to 'frontend/imgrid/colors/junk') diff --git a/frontend/imgrid/colors/junk/ScrollEffect.js b/frontend/imgrid/colors/junk/ScrollEffect.js new file mode 100755 index 0000000..ac8ca3f --- /dev/null +++ b/frontend/imgrid/colors/junk/ScrollEffect.js @@ -0,0 +1,86 @@ +var vt = function () { + var view_box, + scrolled_element, + scrolled_element_actualheight = 0, + new_scrolled_element_top_position = 0, + final_Landing_Spot = 0, + hidden_material = 0, + viewbox_actualheight = 0, + y_coordinate = 0; + + var velx; + var prevY; + // ----- setup jquery selectors, set mouse event, run function run on timer + var start = function (view_element, element_to_be_scrolled) { + + // ----- mouse event ----- + $('.colors').mousemove(function(e){ + y_coordinate = e.clientY; + velx = e.clientY - prevY; + }); + + // ----- selectors and variables + view_box = $('#'+view_element)[0];//.(view_element);//viewarea + scrolled_element = $('#'+element_to_be_scrolled)[0]; //container + viewbox_actualheight = view_box.offsetHeight;//always 850px + scrolled_element_actualheight = scrolled_element.offsetHeight; + hidden_material = scrolled_element_actualheight - viewbox_actualheight; + + + // ----- start engine ----- + + setInterval(run, 60);//previously 16, the higher the number, the easier it is on the browser + }; + ///////////////////////////////////////////////////////////////////////////// + + + // ----- main ----- all this function does is adjust the top position of the div + var run = function () { + + prevY = y_coordinate; + + //if velocity is negative, landing spot and scrolltop increase in value (you have to add it) + + //velocity function if velocity is high, final landing spot is high, + +//FINAL LANDING SPOT IS NO LONGER FINAL LANDING SPOT. INSTEAD it's +//how much the div will move + // ----- calculate the final landing spot +// if(y_coordinate < viewbox_actualheight){ //it almost always is + final_Landing_Spot = y_coordinate * -18.5//( hidden_material / viewbox_actualheight)*-1; //this is negative because it's adjusting top css + + $('#preview').html('x-velocity='+'scrolled element'+scrolled_element_offset_height+'thats it'+velx+'
') +// } + /*this is the mouse position multiplied by the ratio of hidden to visible. this makes sense going in the negative direction, because + it allows the number to grow in proportion to how much invisible stuff there is...the issue is that the mouse position is small at the top of + the screen and large at the bottom...it needs to be equalized*/ + + + + // ----- function to determine easing + var velocity = (final_Landing_Spot - new_scrolled_element_top_position) + new_scrolled_element_top_position += Math.max(-25, Math.min(25, (final_Landing_Spot - new_scrolled_element_top_position))); + + + + + + + + + + + + + $('#boners').html(' final_Landing_Spot ='+(final_Landing_Spot - new_scrolled_element_top_position)+'
var vvvvvvelocity='+velocity+'
clientY='+y_coordinate+'
new scrolled top='+new_scrolled_element_top_position+'
') + // ----- HTML position ----- + scrolled_element.style.top = Math.round(new_scrolled_element_top_position) + 'px'; //and finally it's put in...continuously against the timer + + }; + + return { + //////////////////////////////////////////////////////////////////////////// + /* ==== public functions ==== */ + start : start, + } +}(); diff --git a/frontend/imgrid/colors/junk/ScrollEffectcomingsoon.js b/frontend/imgrid/colors/junk/ScrollEffectcomingsoon.js new file mode 100755 index 0000000..3388d5f --- /dev/null +++ b/frontend/imgrid/colors/junk/ScrollEffectcomingsoon.js @@ -0,0 +1,237 @@ +var vt = function () { + var view_box, + scrolled_element, + scrolled_element_actualheight = 0, + easing = 0, + final_resting_place = 0, + hidden_material = 0, + viewbox_actualheight = 0; + var y_coordinate = 0; + + var velocity; + var prevY; + var lastrested = 0; + // ----- setup jquery selectors, set mouse event, run function run on timer + var start = function (view_element, element_to_be_scrolled) { + + // ----- mouse event ----- + $('.colors').mousemove(function(e){ + y_coordinate = e.clientY; + velocity = e.clientY - prevY; + }); + velocity = y_coordinate - prevY + // ----- selectors and variables + view_box = $('#'+view_element)[0];//.(view_element);//viewarea + scrolled_element = $('#'+element_to_be_scrolled)[0]; //container + viewbox_actualheight = view_box.offsetHeight;//always 850px + scrolled_element_actualheight = scrolled_element.offsetHeight; + hidden_material = scrolled_element_actualheight - viewbox_actualheight; + + + // ----- timer ----- + + setInterval(run, 50);//previously 16, the higher the number, the easier it is on the browser + }; + ///////////////////////////////////////////////////////////////////////////// + + + // ----- main ----- all this function does is adjust the top position of the div + var run = function () { + + prevY = y_coordinate; + + //if velocity is negative, landing spot and scrolltop increase in value (you have to add it) + + //velocity function if velocity is high, final landing spot is high, + +//FINAL LANDING SPOT IS NO LONGER FINAL LANDING SPOT. INSTEAD it's +//how much the div will move + // ----- calculate the final landing spot +// if(y_coordinate < viewbox_actualheight){ //it almost always is + final_resting_place = velocity * -8 + // -18.5//( hidden_material / viewbox_actualheight)*-1; //this is negative because it's adjusting top css + var rush = velocity*.1 + + $('#preview').html('velocity='+velocity+'
rush='+rush+'
') +// } + /*this is the mouse position multiplied by the ratio of hidden to visible. this makes sense going in the negative direction, because + it allows the number to grow in proportion to how much invisible stuff there is...the issue is that the mouse position is small at the top of + the screen and large at the bottom...it needs to be equalized*/ + + + + // ----- function to determine roll_to_zero + // var wheelshow; + var roll_to_zero; + // if(Math.abs(velocity)<10){roll_to_zero = roll_to_zero} + // else{ + roll_to_zero = (final_resting_place - easing) + // easing += Math.max(-25, Math.min(25, roll_to_zero));} + // easing += Math.max(-25, Math.min(25, roll_to_zero));} + if (roll_to_zero > 0) + {if (roll_to_zero > 8000) + {easing = easing + 100} + else if (roll_to_zero > 6000) + {easing = easing +50} + else if (roll_to_zero > 3000) + {easing = easing + 30} + else if (roll_to_zero > 1000) + {easing = easing + 20} + else if (roll_to_zero > 50) + {easing = easing +5} + else{easing = easing +1}} + else if (roll_to_zero < 0) + {if (roll_to_zero < 8000) + {easing = easing - 100} + else if (roll_to_zero < 6000) + {easing = easing -50} + else if (roll_to_zero < 3000) + {easing = easing - 30} + else if (roll_to_zero < 1000) + {easing = easing - 20} + else if (roll_to_zero < 50) + {easing = easing -1}} + else{easing = final_resting_place} + + if (roll_to_zero == 0){roll_to_zero = 0} + if (Math.abs(velocity) <= 50){roll_to_zero = 0} +// } + // easing = + //in other words if its less than 25(and moving down to zero), it uses 25 and if it's greater than 25 (moving up to zero) it uses 25. it will move + //faster going up if the Math.min(25, number is higher, but since the value is determined by the mouse cursor position it won't move as fast + + + + + + + + + + + $('#boners').html('
final resting place='+final_resting_place+'
var roll_to_zero='+roll_to_zero+'
clientY='+y_coordinate+'
easing='+easing+'
') + // ----- HTML position ----- + scrolled_element.style.top = Math.round(easing) + 'px'; //and finally it's put in...continuously against the timer + + }; +// var wheelshow = final_resting_place - lastrested; + // while(easing > 0){html = this div rightwheel} +// while(easing < 0){html = this div leftwheel.show} //wheel should be gray and transparent 3/4 view bg = colors under the mouseover + // if(easing == 0){hmtl = ''} + return { + //////////////////////////////////////////////////////////////////////////// + /* ==== public functions ==== */ + start : start, + } +}(); + + +/*minimap...how would it work? + +an image of the page... + +plus a div with a border + +there would have to be some sort of mathematical correllation to the window.height and the height of the div +against the minimap + + + + + +WHAT WE'VE GOT;;;;;;;;;;;;;;;;;;;;;;;;; +VELOCITY Y...A NUMBER THAT INDICATES THE CHANGE IN POSITION OF THE MOUSE + +HIDDENMATERIAL/VIEWBOX ACTUAL HeIGHT = 18.5 + +resting space range is -200 -1200 + + + +the way the algorithm works + + +final_top_position = (y coordinate)(-20) //some big number that's dependent on the y position + + +easing function...rolling toward the final_top_position + +[first off +the y coordinate shouldn't be based on the upper left (only because of VALUE, that's why it's easier to scroll down than up)] + +[e.pageY-($(window).height()*0.5)] + +value should be eradicated...we should instead use velocity which is DELTA. doesn't matter + + + roll_to_zero = (final_Landing_Spot - easing) first a destination spot is calculated, then easing takes place +new_scrolled_element + + + roll_to_zero = (final_Landing_Spot - easing)} + easing += Math.max(-25, Math.min(25, roll_to_zero)) + +instead of adjusting the height to the final landing spot, it becomes the easing value + +how easing works + x += Math.max(-25, Math.min(25, finalrestingplace-x));//as x approaches the final resting place, easing is used. 25 and -25 are used to traverse +long spaces more quickly + +where x = the current scroller position +as x becomes larger final resting place gets closer to 0 (it would actually be smaller, but we're dealing with negative values) + +the function is read from the inside out + +and of course, the statement that is missing is that x MUST be less than the overall distance travelable (which MUST be calculated) + +what's less important is the destination spot. more important would be the distance traveled per mouse move + +if the velocity is low, the distance is low, if the velocity is really high, it zooms to the end. + +before getting into specifics, for ease of reference lets say the velocity is has a range of -10 to 10, the over all distance traveled is 100px + +if the velocity is equal to range(-3,3) distance traved = 0 +if the velocity is between range(-4,-3) or range(3,4) distance traveled = 2 +if the velocity is between range (5,6) or (-5,-6) distance traveled would be 20 +if the velocity is between the range of 7,8 or -7,-8 the distance traveled would be 40 +if the velocity is between the range of 89 the velocity traveled would 80 +9-10 velocity is 160 + +0 +-12302 from the top is the current max + + + + + + + + +plotted out this looks like this + # + + + + + + + + # + + + + + # + + +__- __- __# __ __ __ __ __ __ __ __ __ + +essentially we want something that looks like this (0.3x)^5 +0.ax^b + +we can play with which exponent is right, but only choosing odd ones +where a is the stationary range number +and b is the new slope + + +this function is called on a timer*/ diff --git a/frontend/imgrid/colors/junk/brush.ani b/frontend/imgrid/colors/junk/brush.ani new file mode 100755 index 0000000..6da99b4 Binary files /dev/null and b/frontend/imgrid/colors/junk/brush.ani differ diff --git a/frontend/imgrid/colors/junk/colordictOLD.js b/frontend/imgrid/colors/junk/colordictOLD.js new file mode 100755 index 0000000..67220ca --- /dev/null +++ b/frontend/imgrid/colors/junk/colordictOLD.js @@ -0,0 +1,2 @@ +var hextoname = {'#EE1289': 'DeepPink2', '#EE8262': 'salmon2', '#C4C4C4': 'gray77', '#556B2F': 'DarkOliveGreen', '#FF8C00': 'DarkOrange', '#8B7B8B': 'thistle4', '#0000EE': 'blue2', '#EED5D2': 'MistyRose2', '#BA55D3': 'MediumOrchid', '#FFF5EE': 'seashell', '#912CEE': 'purple2', '#2F4F4F': 'DarkSlateGray', '#32814B': 'MediumForestGreen', '#D15FEE': 'MediumOrchid2', '#F0FFF0': 'honeydew', '#B23AEE': 'DarkOrchid2', '#8B7765': 'PeachPuff4', '#3D3D3D': 'gray24', '#54FF9F': 'SeaGreen1', '#636363': 'gray39', '#8B8386': 'LavenderBlush4', '#FF4040': 'brown1', '#EEA9B8': 'pink2', '#C2C2C2': 'gray76', '#800080': 'purple', '#545454': 'gray33', '#EE3A8C': 'VioletRed2', '#8A8A8A': 'gray54', '#FF00FF': 'fuchsia', '#436EEE': 'RoyalBlue2', '#8B864E': 'khaki4', '#0A0A0A': 'gray4', '#808000': 'olive', '#E3E3E3': 'gray89', '#1874CD': 'DodgerBlue3', '#BCD2EE': 'LightSteelBlue2', '#A9A9A9': 'DarkGray', '#F4A460': 'SandyBrown', '#FF3030': 'firebrick1', '#FFEBCD': 'BlanchedAlmond', '#B0C4DE': 'LightSteelBlue', '#00CDCD': 'cyan3', '#C0FF3E': 'OliveDrab1', '#FFD700': 'gold', '#242424': 'gray14', '#8B2252': 'VioletRed4', '#4EEE94': 'SeaGreen2', '#CD3278': 'VioletRed3', '#00E5EE': 'turquoise2', '#CD853F': 'peru', '#ADD8E6': 'LightBlue', '#C7C7C7': 'gray78', '#CD2990': 'maroon3', '#EEE5DE': 'seashell2', '#66CD00': 'chartreuse3', '#878787': 'gray53', '#FFA54F': 'tan1', '#A2B5CD': 'LightSteelBlue3', '#BC8F8F': 'RosyBrown', '#C9C9C9': 'gray79', '#D1C166': 'MediumGoldenRod', '#8B2323': 'brown4', '#B3EE3A': 'OliveDrab2', '#EEEED1': 'LightYellow2', '#AEEEEE': 'PaleTurquoise2', '#BDBDBD': 'gray74', '#FF7F00': 'DarkOrange1', '#FFC0CB': 'pink', '#EE3B3B': 'brown2', '#CDC8B1': 'cornsilk3', '#CDB38B': 'NavajoWhite3', '#CDBA96': 'wheat3', '#B4EEB4': 'DarkSeaGreen2', '#40E0D0': 'turquoise', '#8B795E': 'NavajoWhite4', '#27408B': 'RoyalBlue4', '#424242': 'gray26', '#CDB7B5': 'MistyRose3', '#CAE1FF': 'LightSteelBlue1', '#F0FFFF': 'azure', '#2E8B57': 'SeaGreen', '#87CEEB': 'SkyBlue', '#CD00CD': 'magenta3', '#CDAA7D': 'burlywood3', '#836FFF': 'SlateBlue1', '#ABABAB': 'gray67', '#EEB4B4': 'RosyBrown2', '#8B7355': 'burlywood4', '#F0E68C': 'khaki', '#CDCDB4': 'LightYellow3', '#4D4D4D': 'gray30', '#B8B8B8': 'gray72', '#B4CDCD': 'LightCyan3', '#008B8B': 'cyan4', '#828282': 'gray51', '#00EEEE': 'cyan2', '#708090': 'SlateGray', '#9AFF9A': 'PaleGreen1', '#FFA07A': 'LightSalmon', '#EBEBEB': 'gray92', '#FFB5C5': 'pink1', '#00688B': 'DeepSkyBlue4', '#DBDBDB': 'gray86', '#191970': 'MidnightBlue', '#FF83FA': 'orchid1', '#A1A1A1': 'gray63', '#838B8B': 'azure4', '#FFA500': 'orange', '#00FF7F': 'SpringGreen', '#EEAD0E': 'DarkGoldenrod2', '#B03060': 'maroon', '#96CDCD': 'PaleTurquoise3', '#CD3333': 'brown3', '#CDBE70': 'LightGoldenrod3', '#7CCD7C': 'PaleGreen3', '#97FFFF': 'DarkSlateGray1', '#DAA520': 'goldenrod', '#8B3A3A': 'IndianRed4', '#6B6B6B': 'gray42', '#FFFAF0': 'FloralWhite', '#757575': 'gray46', '#BFBFBF': 'gray75', '#00EE76': 'SpringGreen2', '#FFFAFA': 'snow', '#6E8B3D': 'DarkOliveGreen4', '#EEE685': 'khaki2', '#FF3E96': 'VioletRed1', '#EE0000': 'red2', '#FDF5E6': 'OldLace', '#E066FF': 'MediumOrchid1', '#8DB6CD': 'LightSkyBlue3', '#FF7256': 'coral1', '#7CFC00': 'LawnGreen', '#838B83': 'honeydew4', '#BF3EFF': 'DarkOrchid1', '#8B6914': 'goldenrod4', '#00CD66': 'SpringGreen3', '#525252': 'gray32', '#A4D3EE': 'LightSkyBlue2', '#00868B': 'turquoise4', '#8DEEEE': 'DarkSlateGray2', '#787878': 'gray47', '#8B1C62': 'maroon4', '#616161': 'gray38', '#4876FF': 'RoyalBlue1', '#9F79EE': 'MediumPurple2', '#212121': 'gray13', '#C1CDC1': 'honeydew3', '#CD69C9': 'orchid3', '#E0EEEE': 'azure2', '#8B7E66': 'wheat4', '#8A2BE2': 'BlueViolet', '#CDCD00': 'yellow3', '#EE5C42': 'tomato2', '#6E6E6E': 'gray43', '#EEAEEE': 'plum2', '#DC143C': 'crimson', '#CD919E': 'pink3', '#528B8B': 'DarkSlateGray4', '#AFEEEE': 'PaleTurquoise', '#CD6889': 'PaleVioletRed3', '#E6E6FA': 'lavender', '#EE00EE': 'magenta2', '#999999': 'gray60', '#F0F8FF': 'AliceBlue', '#595959': 'gray35', '#FF7F50': 'coral', '#A6A6A6': 'gray65', '#DEDEDE': 'gray87', '#262626': 'gray15', '#6CA6CD': 'SkyBlue3', '#8B8B83': 'ivory4', '#474747': 'gray28', '#F7F7F7': 'gray97', '#548B54': 'PaleGreen4', '#48D1CC': 'MediumTurquoise', '#C1CDCD': 'azure3', '#E0EEE0': 'honeydew2', '#FFB90F': 'DarkGoldenrod1', '#FFD39B': 'burlywood1', '#8B5A2B': 'tan4', '#EEE9BF': 'LemonChiffon2', '#BCEE68': 'DarkOliveGreen2', '#8470FF': 'LightSlateBlue', '#8B0A50': 'DeepPink4', '#FFF68F': 'khaki1', '#EEA2AD': 'LightPink2', '#CD5B45': 'coral3', '#7FFF00': 'chartreuse', '#8B8378': 'AntiqueWhite4', '#9BCD9B': 'DarkSeaGreen3', '#454545': 'gray27', '#D1D1D1': 'gray82', '#EEE8AA': 'PaleGoldenrod', '#668B8B': 'PaleTurquoise4', '#EE30A7': 'maroon2', '#FFC125': 'goldenrod1', '#8B475D': 'PaleVioletRed4', '#D8BFD8': 'thistle', '#404040': 'gray25', '#EEEE00': 'yellow2', '#CDB5CD': 'thistle3', '#00C5CD': 'turquoise3', '#00CED1': 'DarkTurquoise', '#CFCFCF': 'gray81', '#008B00': 'green4', '#7A7A7A': 'gray48', '#B8860B': 'DarkGoldenrod', '#1C86EE': 'DodgerBlue2', '#8B5742': 'LightSalmon4', '#1A1A1A': 'gray10', '#8B008B': 'DarkMagenta', '#0F0F0F': 'gray6', '#CD3700': 'OrangeRed3', '#7F7F7F': 'gray50', '#FF6EB4': 'HotPink1', '#6959CD': 'SlateBlue3', '#90EE90': 'LightGreen', '#8B4789': 'orchid4', '#EE7AE9': 'orchid2', '#8968CD': 'MediumPurple3', '#080808': 'gray3', '#CDC9C9': 'snow3', '#BDB76B': 'DarkKhaki', '#9370DB': 'MediumPurple', '#EEDC82': 'LightGoldenrod2', '#3CB371': 'MediumSeaGreen', '#F5FFFA': 'MintCream', '#303030': 'gray19', '#B9D3EE': 'SlateGray2', '#575757': 'gray34', '#F5F5DC': 'beige', '#BABABA': 'gray73', '#0000CD': 'blue3', '#FF8247': 'sienna1', '#F2F2F2': 'gray95', '#EED5B7': 'bisque2', '#FFEC8B': 'LightGoldenrod1', '#EE7600': 'DarkOrange2', '#8B636C': 'pink4', '#8B814C': 'LightGoldenrod4', '#FFE4B5': 'moccasin', '#4F94CD': 'SteelBlue3', '#CDAD00': 'gold3', '#CD5555': 'IndianRed3', '#8B7500': 'gold4', '#473C8B': 'SlateBlue4', '#B0E0E6': 'PowderBlue', '#FFFF00': 'yellow', '#CD96CD': 'plum3', '#006400': 'DarkGreen', '#FAFAFA': 'gray98', '#53868B': 'CadetBlue4', '#8B4513': 'chocolate4', '#98FB98': 'PaleGreen', '#63B8FF': 'SteelBlue1', '#FFAEB9': 'LightPink1', '#EE6A50': 'coral2', '#87CEFF': 'SkyBlue1', '#87CEFA': 'LightSkyBlue', '#ADFF2F': 'GreenYellow', '#008B45': 'SpringGreen4', '#EE4000': 'OrangeRed2', '#8B6969': 'RosyBrown4', '#00008B': 'blue4', '#DB7093': 'PaleVioletRed', '#7EC0EE': 'SkyBlue2', '#3B3B3B': 'gray23', '#8C8C8C': 'gray55', '#5F9EA0': 'cadet blue', '#EE799F': 'PaleVioletRed2', '#CD6090': 'HotPink3', '#8B8682': 'seashell4', '#458B74': 'aquamarine4', '#EECFA1': 'NavajoWhite2', '#76EE00': 'chartreuse2', '#000080': 'navy', '#228B22': 'ForestGreen', '#8B8B00': 'yellow4', '#B5B5B5': 'gray71', '#CD950C': 'DarkGoldenrod3', '#EE82EE': 'violet', '#EDEDED': 'gray93', '#F5DEB3': 'wheat', '#3A5FCD': 'RoyalBlue3', '#00FA9A': 'MediumSpringGreen', '#F0F0F0': 'gray94', '#D1EEEE': 'LightCyan2', '#2E2E2E': 'gray18', '#EEC591': 'burlywood2', '#8B3E2F': 'coral4', '#CD8162': 'LightSalmon3', '#9AC0CD': 'LightBlue3', '#8B8989': 'snow4', '#EED8AE': 'wheat2', '#551A8B': 'purple4', '#919191': 'gray57', '#949494': 'gray58', '#778899': 'LightSlateGray', '#FFFACD': 'LemonChiffon', '#458B00': 'chartreuse4', '#008000': 'green', '#FFFFF0': 'ivory', '#E0E0E0': 'gray88', '#EEB422': 'goldenrod2', '#A020F0': 'purple', '#5CACEE': 'SteelBlue2', '#CD4F39': 'tomato3', '#CDC0B0': 'AntiqueWhite3', '#6E7B8B': 'LightSteelBlue4', '#9E9E9E': 'gray62', '#CDC673': 'khaki3', '#104E8B': 'DodgerBlue4', '#E0FFFF': 'LightCyan', '#FFFFFF': 'white', '#6C7B8B': 'SlateGray4', '#FFC1C1': 'RosyBrown1', '#D6D6D6': 'gray84', '#8B4726': 'sienna4', '#CD9B1D': 'goldenrod3', '#FF6347': 'tomato', '#FF34B3': 'maroon1', '#7D7D7D': 'gray49', '#121212': 'gray7', '#B0E2FF': 'LightSkyBlue1', '#8B3A62': 'HotPink4', '#CD5C5C': 'IndianRed', '#4A4A4A': 'gray29', '#B0B0B0': 'gray69', '#D9D9D9': 'gray85', '#A2CD5A': 'DarkOliveGreen3', '#8B0000': 'DarkRed', '#FF6A6A': 'IndianRed1', '#CD6600': 'DarkOrange3', '#FFEFDB': 'AntiqueWhite1', '#E9967A': 'DarkSalmon', '#EEE9E9': 'snow2', '#D4D4D4': 'gray83', '#383838': 'gray22', '#7A67EE': 'SlateBlue2', '#4169E1': 'RoyalBlue', '#5E5E5E': 'gray37', '#00F5FF': 'turquoise1', '#FFEFD5': 'PapayaWhip', '#CDAF95': 'PeachPuff3', '#CCCCCC': 'gray80', '#00BFFF': 'DeepSkyBlue', '#CDB79E': 'bisque3', '#969696': 'gray59', '#4F4F4F': 'gray31', '#1E90FF': 'DodgerBlue', '#FCFCFC': 'gray99', '#EE2C2C': 'firebrick2', '#8B6508': 'DarkGoldenrod4', '#696969': 'DimGray', '#FF7F24': 'chocolate1', '#8FBC8F': 'DarkSeaGreen', '#66CDAA': 'aquamarine3', '#6495ED': 'CornflowerBlue', '#0D0D0D': 'gray5', '#EEE0E5': 'LavenderBlush2', '#666666': 'gray40', '#B2DFEE': 'LightBlue2', '#B22222': 'firebrick', '#4B0082': 'indigo', '#FF82AB': 'PaleVioletRed1', '#AB82FF': 'MediumPurple1', '#79CDCD': 'DarkSlateGray3', '#FFE4C4': 'bisque', '#DEB887': 'burlywood', '#5D478B': 'MediumPurple4', '#8B3626': 'tomato4', '#FFFFE0': 'LightYellow', '#FFE4E1': 'MistyRose', '#171717': 'gray9', '#EEDFCC': 'AntiqueWhite2', '#9400D3': 'DarkViolet', '#BFEFFF': 'LightBlue1', '#8B7D6B': 'bisque4', '#FF8C69': 'salmon1', '#C6E2FF': 'SlateGray1', '#1C1C1C': 'gray11', '#FF4500': 'OrangeRed', '#FFE7BA': 'wheat1', '#808080': 'fractal', '#EE9572': 'LightSalmon2', '#CD8500': 'orange3', '#8B5A00': 'orange4', '#9932CC': 'DarkOrchid', '#EECBAD': 'PeachPuff2', '#CD8C95': 'LightPink3', '#292929': 'gray16', '#CD1076': 'DeepPink3', '#7A378B': 'MediumOrchid4', '#FF0000': 'red', '#698B22': 'OliveDrab4', '#ADADAD': 'gray68', '#EEE8CD': 'cornsilk2', '#DDA0DD': 'plum', '#7D26CD': 'purple3', '#DA70D6': 'orchid', '#DCDCDC': 'gainsboro', '#68228B': 'DarkOrchid4', '#7B68EE': 'MediumSlateBlue', '#000000': 'black', '#6B8E23': 'OliveDrab', '#FF69B4': 'HotPink', '#800000': 'maroon', '#8B668B': 'plum4', '#363636': 'gray21', '#8B4500': 'DarkOrange4', '#D3D3D3': 'LightGray', '#607B8B': 'LightSkyBlue4', '#F08080': 'LightCoral', '#CD9B9B': 'RosyBrown3', '#76EEC6': 'aquamarine2', '#FAEBD7': 'AntiqueWhite', '#68838B': 'LightBlue4', '#7FFFD4': 'aquamarine', '#C0C0C0': 'silver', '#EEDD82': 'LightGoldenrod', '#EE9A49': 'tan2', '#4A708B': 'SkyBlue4', '#008080': 'teal', '#7AC5CD': 'CadetBlue3', '#98F5FF': 'CadetBlue1', '#8B2500': 'OrangeRed4', '#8F8F8F': 'gray56', '#FFF0F5': 'LavenderBlush', '#8B8970': 'LemonChiffon4', '#8B8878': 'cornsilk4', '#6A5ACD': 'SlateBlue', '#4682B4': 'SteelBlue', '#EEEEE0': 'ivory2', '#B3B3B3': 'gray70', '#00FF00': 'green1', '#FFDEAD': 'NavajoWhite', '#CD2626': 'firebrick3', '#8B4C39': 'salmon4', '#9B30FF': 'purple1', '#E5E5E5': 'gray90', '#36648B': 'SteelBlue4', '#9C9C9C': 'gray61', '#F8F8FF': 'GhostWhite', '#333333': 'gray20', '#5C5C5C': 'gray36', '#737373': 'gray45', '#EEC900': 'gold2', '#FFE1FF': 'thistle1', '#C1FFC1': 'DarkSeaGreen1', '#CDC5BF': 'seashell3', '#A0522D': 'sienna', '#8B5F65': 'LightPink4', '#CDC1C5': 'LavenderBlush3', '#EE7621': 'chocolate2', '#FFBBFF': 'plum1', '#CD6839': 'sienna3', '#698B69': 'DarkSeaGreen4', '#050505': 'gray2', '#CD661D': 'chocolate3', '#FAFAD2': 'LightGoldenrodYellow', '#CDCDC1': 'ivory3', '#FFF8DC': 'cornsilk', '#A8A8A8': 'gray66', '#B452CD': 'MediumOrchid3', '#D2B48C': 'tan', '#8EE5EE': 'CadetBlue2', '#483D8B': 'DarkSlateBlue', '#BBFFFF': 'PaleTurquoise1', '#0000FF': 'blue', '#EE6AA7': 'HotPink2', '#EE7942': 'sienna2', '#00CD00': 'green3', '#141414': 'gray8', '#9ACD32': 'OliveDrab3', '#C71585': 'MediumVioletRed', '#EE9A00': 'orange2', '#CAFF70': 'DarkOliveGreen1', '#F5F5F5': 'gray96', '#32CD32': 'LimeGreen', '#00EE00': 'green2', '#FFB6C1': 'LightPink', '#8B1A1A': 'firebrick4', '#00B2EE': 'DeepSkyBlue2', '#20B2AA': 'LightSeaGreen', '#707070': 'gray44', '#009ACD': 'DeepSkyBlue3', '#A52A2A': 'brown', '#EE6363': 'IndianRed2', '#FAF0E6': 'linen', '#8B7D7B': 'MistyRose4', '#9A32CD': 'DarkOrchid3', '#1F1F1F': 'gray12', '#E8E8E8': 'gray91', '#7E7E7E': 'gray', '#7A8B8B': 'LightCyan4', '#CD7054': 'salmon3', '#9FB6CD': 'SlateGray3', '#CDC9A5': 'LemonChiffon3', '#D02090': 'VioletRed', '#00FFFF': 'aqua', '#2B2B2B': 'gray17', '#858585': 'gray52', '#A3A3A3': 'gray64', '#CD0000': 'red3', '#43CD80': 'SeaGreen3', '#FA8072': 'salmon', '#FFDAB9': 'PeachPuff', '#D2691E': 'chocolate', '#FF1493': 'DeepPink', '#EED2EE': 'thistle2', '#030303': 'gray1', '#8B8B7A': 'LightYellow4'} +var nametohex = {'grey21': '#363636', 'yellow': '#FFFF00', 'grey61': '#9C9C9C', 'HotPink3': '#CD6090', 'grey63': '#A1A1A1', 'grey62': '#9E9E9E', 'grey65': '#A6A6A6', 'AliceBlue': '#F0F8FF', 'grey67': '#ABABAB', 'grey66': '#A8A8A8', 'LightCyan1': '#E0FFFF', 'grey68': '#ADADAD', 'LightCyan3': '#B4CDCD', 'LightCyan2': '#D1EEEE', 'LightCyan4': '#7A8B8B', 'gray32': '#525252', 'gray33': '#545454', 'DarkTurquoise': '#00CED1', 'gray31': '#4F4F4F', 'gray36': '#5C5C5C', 'gray37': '#5E5E5E', 'gray34': '#575757', 'gray35': '#595959', 'aquamarine4': '#458B74', 'gray38': '#616161', 'gray39': '#636363', 'aquamarine1': '#7FFFD4', 'aquamarine3': '#66CDAA', 'aquamarine2': '#76EEC6', 'CadetBlue4': '#53868B', 'CadetBlue3': '#7AC5CD', 'CadetBlue2': '#8EE5EE', 'CadetBlue1': '#98F5FF', 'crimson': '#DC143C', 'VioletRed1': '#FF3E96', 'VioletRed2': '#EE3A8C', 'VioletRed3': '#CD3278', 'VioletRed4': '#8B2252', 'brown': '#A52A2A', 'DarkGoldenrod': '#B8860B', 'gray8': '#141414', 'SlateGrey': '#708090', 'NavajoWhite2': '#EECFA1', 'gray2': '#050505', 'cyan': '#00FFFF', 'gray0': '#000000', 'gray1': '#030303', 'fractal': '#808080', 'gray7': '#121212', 'gray4': '#0A0A0A', 'gray5': '#0D0D0D', 'grey60': '#999999', 'DarkBlue': '#00008B', 'gray98': '#FAFAFA', 'DarkKhaki': '#BDB76B', 'gray99': '#FCFCFC', 'teal': '#008080', 'grey11': '#1C1C1C', 'coral4': '#8B3E2F', 'grey12': '#1F1F1F', 'grey64': '#A3A3A3', 'PaleGreen1': '#9AFF9A', 'PaleGreen3': '#7CCD7C', 'PaleGreen2': '#90EE90', 'PaleGreen4': '#548B54', 'grey14': '#242424', 'lavender': '#E6E6FA', 'grey15': '#262626', 'chartreuse3': '#66CD00', 'chartreuse2': '#76EE00', 'chartreuse1': '#7FFF00', 'chartreuse4': '#458B00', 'RosyBrown': '#BC8F8F', 'blue': '#0000FF', 'NavajoWhite': '#FFDEAD', 'opaque': '#000000', 'maroon4': '#8B1C62', 'maroon3': '#CD2990', 'maroon2': '#EE30A7', 'maroon1': '#FF34B3', 'gold3': '#CDAD00', 'gold2': '#EEC900', 'gold1': '#FFD700', 'gold4': '#8B7500', 'LightSlateGrey': '#778899', 'gray30': '#4D4D4D', 'DarkGreen': '#006400', 'SkyBlue': '#87CEEB', 'GhostWhite': '#F8F8FF', 'LavenderBlush': '#FFF0F5', 'SeaGreen': '#2E8B57', 'BlanchedAlmond': '#FFEBCD', 'gray60': '#999999', 'DarkOliveGreen': '#556B2F', 'firebrick2': '#EE2C2C', 'firebrick1': '#FF3030', 'firebrick4': '#8B1A1A', 'sienna': '#A0522D', 'blue1': '#0000FF', 'lime': '#00FF00', 'gray55': '#8C8C8C', 'blue2': '#0000EE', 'DarkViolet': '#9400D3', 'blue4': '#00008B', 'peru': '#CD853F', 'DarkMagenta': '#8B008B', 'LightBlue2': '#B2DFEE', 'red2': '#EE0000', 'red1': '#FF0000', 'LightBlue1': '#BFEFFF', 'LightBlue4': '#68838B', 'red4': '#8B0000', 'MediumSpringGreen': '#00FA9A', 'chocolate': '#D2691E', 'ForestGreen': '#228B22', 'DarkRed': '#8B0000', 'olive': '#808000', 'HotPink2': '#EE6AA7', 'HotPink1': '#FF6EB4', 'HotPink4': '#8B3A62', 'grey18': '#2E2E2E', 'grey19': '#303030', 'none': '#000000', 'PeachPuff': '#FFDAB9', 'MediumGoldenRod': '#D1C166', 'moccasin': '#FFE4B5', 'grey10': '#1A1A1A', 'chocolate1': '#FF7F24', 'chocolate2': '#EE7621', 'chocolate3': '#CD661D', 'chocolate4': '#8B4513', 'wheat2': '#EED8AE', 'grey16': '#292929', 'grey17': '#2B2B2B', 'gray69': '#B0B0B0', 'gray68': '#ADADAD', 'gray65': '#A6A6A6', 'gray64': '#A3A3A3', 'gray67': '#ABABAB', 'gray66': '#A8A8A8', 'gray61': '#9C9C9C', 'coral': '#FF7F50', 'gray63': '#A1A1A1', 'gray62': '#9E9E9E', 'LightGoldenrod': '#EEDD82', 'turquoise4': '#00868B', 'seashell2': '#EEE5DE', 'seashell3': '#CDC5BF', 'magenta': '#FF00FF', 'seashell1': '#FFF5EE', 'tan': '#D2B48C', 'seashell4': '#8B8682', 'pink': '#FFC0CB', 'LightSlateBlue': '#8470FF', 'SteelBlue1': '#63B8FF', 'SteelBlue3': '#4F94CD', 'SteelBlue2': '#5CACEE', 'SteelBlue4': '#36648B', 'grey89': '#E3E3E3', 'grey88': '#E0E0E0', 'grey87': '#DEDEDE', 'grey86': '#DBDBDB', 'grey85': '#D9D9D9', 'grey84': '#D6D6D6', 'grey83': '#D4D4D4', 'grey82': '#D1D1D1', 'grey81': '#CFCFCF', 'grey80': '#CCCCCC', 'ivory2': '#EEEEE0', 'khaki4': '#8B864E', 'khaki1': '#FFF68F', 'khaki2': '#EEE685', 'khaki3': '#CDC673', 'salmon1': '#FF8C69', 'salmon3': '#CD7054', 'salmon2': '#EE8262', 'salmon4': '#8B4C39', 'LightPink': '#FFB6C1', 'gray9': '#171717', 'green': '#008000', 'brown2': '#EE3B3B', 'brown3': '#CD3333', 'brown1': '#FF4040', 'brown4': '#8B2323', 'cadet blue': '#5F9EA0', 'orange4': '#8B5A00', 'orange1': '#FFA500', 'orange3': '#CD8500', 'orange2': '#EE9A00', 'gray3': '#080808', 'gray6': '#0F0F0F', 'yellow4': '#8B8B00', 'yellow3': '#CDCD00', 'yellow2': '#EEEE00', 'yellow1': '#FFFF00', 'PapayaWhip': '#FFEFD5', 'bisque2': '#EED5B7', 'OliveDrab4': '#698B22', 'bisque3': '#CDB79E', 'OliveDrab1': '#C0FF3E', 'OliveDrab2': '#B3EE3A', 'OliveDrab3': '#9ACD32', 'SkyBlue4': '#4A708B', 'SkyBlue1': '#87CEFF', 'SkyBlue3': '#6CA6CD', 'SkyBlue2': '#7EC0EE', 'grey58': '#949494', 'grey59': '#969696', 'grey54': '#8A8A8A', 'grey55': '#8C8C8C', 'grey56': '#8F8F8F', 'grey57': '#919191', 'grey50': '#7F7F7F', 'silver': '#C0C0C0', 'grey52': '#858585', 'grey53': '#878787', 'cyan2': '#00EEEE', 'cyan3': '#00CDCD', 'gray23': '#3B3B3B', 'RosyBrown4': '#8B6969', 'gray25': '#404040', 'CornflowerBlue': '#6495ED', 'cyan4': '#008B8B', 'gray26': '#424242', 'gray29': '#4A4A4A', 'LimeGreen': '#32CD32', 'MistyRose': '#FFE4E1', 'navy': '#000080', 'gray94': '#F0F0F0', 'gray95': '#F2F2F2', 'gray96': '#F5F5F5', 'gray97': '#F7F7F7', 'gray90': '#E5E5E5', 'gray91': '#E8E8E8', 'gray92': '#EBEBEB', 'gray93': '#EDEDED', 'MediumPurple': '#9370DB', 'MidnightBlue': '#191970', 'cornsilk': '#FFF8DC', 'red': '#FF0000', 'grey69': '#B0B0B0', 'DarkOrchid4': '#68228B', 'blue3': '#0000CD', 'LightSteelBlue': '#B0C4DE', 'DarkOrchid1': '#BF3EFF', 'DarkOrchid2': '#B23AEE', 'DarkOrchid3': '#9A32CD', 'grey72': '#B8B8B8', 'FloralWhite': '#FFFAF0', 'grey70': '#B3B3B3', 'DarkSeaGreen': '#8FBC8F', 'grey71': '#B5B5B5', 'gray17': '#2B2B2B', 'grey77': '#C4C4C4', 'tomato4': '#8B3626', 'tomato1': '#FF6347', 'tomato3': '#CD4F39', 'tomato2': '#EE5C42', 'DarkSlateGray1': '#97FFFF', 'DarkSlateGray2': '#8DEEEE', 'DarkSlateGray3': '#79CDCD', 'DarkSlateGray4': '#528B8B', 'SteelBlue': '#4682B4', 'MediumSlateBlue': '#7B68EE', 'OrangeRed': '#FF4500', 'grey79': '#C9C9C9', 'MediumVioletRed': '#C71585', 'burlywood': '#DEB887', 'white': '#FFFFFF', 'tomato': '#FF6347', 'DodgerBlue': '#1E90FF', 'RoyalBlue4': '#27408B', 'RoyalBlue1': '#4876FF', 'RoyalBlue3': '#3A5FCD', 'RoyalBlue2': '#436EEE', 'MistyRose1': '#FFE4E1', 'MistyRose3': '#CDB7B5', 'MistyRose2': '#EED5D2', 'MistyRose4': '#8B7D7B', 'LightGray': '#D3D3D3', 'LightYellow': '#FFFFE0', 'DarkOrange': '#FF8C00', 'DarkGray': '#A9A9A9', 'SlateGray': '#708090', 'turquoise3': '#00C5CD', 'turquoise2': '#00E5EE', 'turquoise1': '#00F5FF', 'burlywood2': '#EEC591', 'burlywood4': '#8B7355', 'DarkSlateGray': '#2F4F4F', 'linen': '#FAF0E6', 'grey47': '#787878', 'snow': '#FFFAFA', 'grey46': '#757575', 'gray58': '#949494', 'gray59': '#969696', 'IndianRed4': '#8B3A3A', 'purple4': '#551A8B', 'gray52': '#858585', 'gray53': '#878787', 'purple1': '#9B30FF', 'IndianRed1': '#FF6A6A', 'purple3': '#7D26CD', 'purple2': '#912CEE', 'thistle3': '#CDB5CD', 'thistle2': '#EED2EE', 'SpringGreen2': '#00EE76', 'SpringGreen3': '#00CD66', 'SpringGreen4': '#008B45', 'thistle4': '#8B7B8B', 'LightPink2': '#EEA2AD', 'LightPink3': '#CD8C95', 'LightPink1': '#FFAEB9', 'LightPink4': '#8B5F65', 'MediumPurple1': '#AB82FF', 'MediumPurple2': '#9F79EE', 'MediumPurple3': '#8968CD', 'MediumPurple4': '#5D478B', 'MediumTurquoise': '#48D1CC', 'DimGray': '#696969', 'gray14': '#242424', 'grey100': '#FFFFFF', 'OrangeRed3': '#CD3700', 'OrangeRed2': '#EE4000', 'OrangeRed1': '#FF4500', 'LightSeaGreen': '#20B2AA', 'gold': '#FFD700', 'OrangeRed4': '#8B2500', 'NavajoWhite4': '#8B795E', 'NavajoWhite1': '#FFDEAD', 'LawnGreen': '#7CFC00', 'NavajoWhite3': '#CDB38B', 'LightGoldenrod4': '#8B814C', 'LightGoldenrod1': '#FFEC8B', 'LightGoldenrod3': '#CDBE70', 'LightGoldenrod2': '#EEDC82', 'gray21': '#363636', 'PaleGreen': '#98FB98', 'green4': '#008B00', 'green1': '#00FF00', 'green3': '#00CD00', 'green2': '#00EE00', 'MediumOrchid': '#BA55D3', 'black': '#000000', 'gray20': '#333333', 'orchid4': '#8B4789', 'DodgerBlue1': '#1E90FF', 'DodgerBlue2': '#1C86EE', 'DodgerBlue3': '#1874CD', 'DodgerBlue4': '#104E8B', 'orchid1': '#FF83FA', 'orchid2': '#EE7AE9', 'orchid3': '#CD69C9', 'DarkSeaGreen4': '#698B69', 'DarkSeaGreen3': '#9BCD9B', 'DarkSeaGreen2': '#B4EEB4', 'DarkSeaGreen1': '#C1FFC1', 'gray100': '#FFFFFF', 'BlueViolet': '#8A2BE2', 'bisque4': '#8B7D6B', 'MediumOrchid4': '#7A378B', 'MintCream': '#F5FFFA', 'MediumOrchid1': '#E066FF', 'bisque1': '#FFE4C4', 'MediumOrchid3': '#B452CD', 'MediumOrchid2': '#D15FEE', 'gray': '#7E7E7E', 'DeepSkyBlue': '#00BFFF', 'LightGrey': '#D3D3D3', 'grey78': '#C7C7C7', 'gray22': '#383838', 'plum4': '#8B668B', 'plum3': '#CD96CD', 'plum2': '#EEAEEE', 'plum1': '#FFBBFF', 'DarkSlateGrey': '#2F4F4F', 'DarkOrchid': '#9932CC', 'OliveDrab': '#6B8E23', 'gray83': '#D4D4D4', 'grey49': '#7D7D7D', 'grey48': '#7A7A7A', 'thistle': '#D8BFD8', 'violet': '#EE82EE', 'grey43': '#6E6E6E', 'grey42': '#6B6B6B', 'LightSalmon4': '#8B5742', 'grey40': '#666666', 'LightSalmon2': '#EE9572', 'LightSalmon3': '#CD8162', 'grey45': '#737373', 'LightSalmon1': '#FFA07A', 'honeydew': '#F0FFF0', 'gray18': '#2E2E2E', 'gray19': '#303030', 'LightCyan': '#E0FFFF', 'gray15': '#262626', 'gray16': '#292929', 'gray82': '#D1D1D1', 'gray10': '#1A1A1A', 'gray11': '#1C1C1C', 'gray12': '#1F1F1F', 'gray13': '#212121', 'grey93': '#EDEDED', 'PaleGoldenrod': '#EEE8AA', 'gainsboro': '#DCDCDC', 'AntiqueWhite3': '#CDC0B0', 'AntiqueWhite2': '#EEDFCC', 'AntiqueWhite1': '#FFEFDB', 'gray27': '#454545', 'SlateBlue': '#6A5ACD', 'AntiqueWhite4': '#8B8378', 'DimGrey': '#696969', 'VioletRed': '#D02090', 'WhiteSmoke': '#F5F5F5', 'grey38': '#616161', 'grey39': '#636363', 'grey36': '#5C5C5C', 'grey37': '#5E5E5E', 'grey34': '#575757', 'grey35': '#595959', 'aqua': '#00FFFF', 'grey33': '#545454', 'grey30': '#4D4D4D', 'grey31': '#4F4F4F', 'NavyBlue': '#000080', 'sienna4': '#8B4726', 'gray81': '#CFCFCF', 'gray80': '#CCCCCC', 'sienna1': '#FF8247', 'gray86': '#DBDBDB', 'sienna3': '#CD6839', 'sienna2': '#EE7942', 'gray89': '#E3E3E3', 'gray88': '#E0E0E0', 'SlateBlue4': '#473C8B', 'gray87': '#DEDEDE', 'LightSteelBlue1': '#CAE1FF', 'magenta3': '#CD00CD', 'IndianRed': '#CD5C5C', 'SlateBlue2': '#7A67EE', 'SlateBlue1': '#836FFF', 'LightBlue': '#ADD8E6', 'PeachPuff4': '#8B7765', 'seashell': '#FFF5EE', 'SaddleBrown': '#8B4513', 'PeachPuff1': '#FFDAB9', 'PeachPuff2': '#EECBAD', 'PeachPuff3': '#CDAF95', 'aquamarine': '#7FFFD4', 'LemonChiffon2': '#EEE9BF', 'LemonChiffon1': '#FFFACD', 'tan4': '#8B5A2B', 'tan3': '#CD853F', 'tan2': '#EE9A49', 'tan1': '#FFA54F', 'LemonChiffon4': '#8B8970', 'orange': '#FFA500', 'OldLace': '#FDF5E6', 'PowderBlue': '#B0E0E6', 'RosyBrown3': '#CD9B9B', 'RoyalBlue': '#4169E1', 'LightSkyBlue4': '#607B8B', 'LightSkyBlue1': '#B0E2FF', 'LightSkyBlue2': '#A4D3EE', 'LightSkyBlue3': '#8DB6CD', 'LightYellow1': '#FFFFE0', 'LightYellow2': '#EEEED1', 'LightYellow3': '#CDCDB4', 'LightYellow4': '#8B8B7A', 'goldenrod4': '#8B6914', 'goldenrod1': '#FFC125', 'goldenrod2': '#EEB422', 'goldenrod3': '#CD9B1D', 'grey32': '#525252', 'LemonChiffon': '#FFFACD', 'burlywood1': '#FFD39B', 'YellowGreen': '#9ACD32', 'LightCoral': '#F08080', 'burlywood3': '#CDAA7D', 'ivory3': '#CDCDC1', 'firebrick3': '#CD2626', 'ivory1': '#FFFFF0', 'grey8': '#141414', 'ivory4': '#8B8B83', 'grey9': '#171717', 'DarkSalmon': '#E9967A', 'SlateGray1': '#C6E2FF', 'SlateGray2': '#B9D3EE', 'SlateGray3': '#9FB6CD', 'SlateGray4': '#6C7B8B', 'RosyBrown2': '#EEB4B4', 'RosyBrown1': '#FFC1C1', 'gray85': '#D9D9D9', 'gray84': '#D6D6D6', 'LightGreen': '#90EE90', 'LavenderBlush1': '#FFF0F5', 'grey73': '#BABABA', 'LavenderBlush3': '#CDC1C5', 'LavenderBlush2': '#EEE0E5', 'grey76': '#C2C2C2', 'LavenderBlush4': '#8B8386', 'grey74': '#BDBDBD', 'grey75': '#BFBFBF', 'pink1': '#FFB5C5', 'pink3': '#CD919E', 'pink2': '#EEA9B8', 'pink4': '#8B636C', 'gray47': '#787878', 'gray46': '#757575', 'gray45': '#737373', 'gray44': '#707070', 'gray43': '#6E6E6E', 'gray42': '#6B6B6B', 'gray41': '#696969', 'gray40': '#666666', 'gray49': '#7D7D7D', 'gray48': '#7A7A7A', 'MediumAquamarine': '#66CDAA', 'MediumForestGreen': '#32814B', 'azure1': '#F0FFFF', 'azure3': '#C1CDCD', 'azure2': '#E0EEEE', 'indigo': '#4B0082', 'azure4': '#838B8B', 'firebrick': '#B22222', 'DarkGrey': '#A9A9A9', 'magenta4': '#8B008B', 'SlateBlue3': '#6959CD', 'magenta2': '#EE00EE', 'magenta1': '#FF00FF', 'grey51': '#828282', 'chartreuse': '#7FFF00', 'grey41': '#696969', 'DarkOliveGreen4': '#6E8B3D', 'turquoise': '#40E0D0', 'DarkOliveGreen1': '#CAFF70', 'DarkOliveGreen3': '#A2CD5A', 'DarkOliveGreen2': '#BCEE68', 'grey6': '#0F0F0F', 'grey7': '#121212', 'grey4': '#0A0A0A', 'grey5': '#0D0D0D', 'grey2': '#050505', 'grey3': '#080808', 'grey0': '#000000', 'grey1': '#030303', 'gray50': '#7F7F7F', 'cyan1': '#00FFFF', 'gray51': '#828282', 'gray24': '#3D3D3D', 'HotPink': '#FF69B4', 'DarkGoldenrod4': '#8B6508', 'gray54': '#8A8A8A', 'DarkGoldenrod1': '#FFB90F', 'DarkGoldenrod2': '#EEAD0E', 'DarkGoldenrod3': '#CD950C', 'IndianRed2': '#EE6363', 'DeepPink': '#FF1493', 'gray28': '#474747', 'IndianRed3': '#CD5555', 'DarkCyan': '#008B8B', 'GreenYellow': '#ADFF2F', 'LightSalmon': '#FFA07A', 'DarkOrange4': '#8B4500', 'DarkOrange1': '#FF7F00', 'transparent': '#000000', 'DarkOrange3': '#CD6600', 'orchid': '#DA70D6', 'purple': '#800080', 'wheat4': '#8B7E66', 'wheat1': '#FFE7BA', 'wheat3': '#CDBA96', 'SpringGreen1': '#00FF7F', 'coral3': '#CD5B45', 'coral2': '#EE6A50', 'coral1': '#FF7256', 'thistle1': '#FFE1FF', 'PaleTurquoise': '#AFEEEE', 'bisque': '#FFE4C4', 'DeepPink3': '#CD1076', 'DeepPink2': '#EE1289', 'DeepPink1': '#FF1493', 'khaki': '#F0E68C', 'wheat': '#F5DEB3', 'MediumSeaGreen': '#3CB371', 'DeepPink4': '#8B0A50', 'salmon': '#FA8072', 'grey44': '#707070', 'DarkSlateBlue': '#483D8B', 'PaleVioletRed4': '#8B475D', 'PaleVioletRed1': '#FF82AB', 'PaleVioletRed2': '#EE799F', 'PaleVioletRed3': '#CD6889', 'AntiqueWhite': '#FAEBD7', 'PaleTurquoise4': '#668B8B', 'PaleTurquoise3': '#96CDCD', 'PaleTurquoise2': '#AEEEEE', 'PaleTurquoise1': '#BBFFFF', 'gray56': '#8F8F8F', 'plum': '#DDA0DD', 'beige': '#F5F5DC', 'SpringGreen': '#00FF7F', 'azure': '#F0FFFF', 'honeydew1': '#F0FFF0', 'honeydew2': '#E0EEE0', 'honeydew3': '#C1CDC1', 'honeydew4': '#838B83', 'gray57': '#919191', 'snow4': '#8B8989', 'snow2': '#EEE9E9', 'snow3': '#CDC9C9', 'snow1': '#FFFAFA', 'SandyBrown': '#F4A460', 'grey13': '#212121', 'SeaGreen4': '#2E8B57', 'SeaGreen3': '#43CD80', 'SeaGreen2': '#4EEE94', 'SeaGreen1': '#54FF9F', 'grey29': '#4A4A4A', 'grey28': '#474747', 'grey25': '#404040', 'grey24': '#3D3D3D', 'grey27': '#454545', 'grey26': '#424242', 'fuchsia': '#FF00FF', 'grey20': '#333333', 'grey23': '#3B3B3B', 'grey22': '#383838', 'gray78': '#C7C7C7', 'gray79': '#C9C9C9', 'gray76': '#C2C2C2', 'gray77': '#C4C4C4', 'gray74': '#BDBDBD', 'gray75': '#BFBFBF', 'gray72': '#B8B8B8', 'gray73': '#BABABA', 'gray70': '#B3B3B3', 'gray71': '#B5B5B5', 'ivory': '#FFFFF0', 'LemonChiffon3': '#CDC9A5', 'DeepSkyBlue4': '#00688B', 'DeepSkyBlue3': '#009ACD', 'DeepSkyBlue2': '#00B2EE', 'DeepSkyBlue1': '#00BFFF', 'cornsilk4': '#8B8878', 'cornsilk2': '#EEE8CD', 'cornsilk3': '#CDC8B1', 'CadetBlue': '#5F9EA0', 'cornsilk1': '#FFF8DC', 'grey90': '#E5E5E5', 'grey91': '#E8E8E8', 'grey92': '#EBEBEB', 'goldenrod': '#DAA520', 'grey94': '#F0F0F0', 'grey95': '#F2F2F2', 'grey96': '#F5F5F5', 'grey97': '#F7F7F7', 'grey98': '#FAFAFA', 'grey99': '#FCFCFC', 'red3': '#CD0000', 'LightSteelBlue2': '#BCD2EE', 'LightSteelBlue3': '#A2B5CD', 'LightSteelBlue4': '#6E7B8B', 'LightBlue3': '#9AC0CD', 'maroon': '#800000', 'LightSkyBlue': '#87CEFA', 'LightGoldenrodYellow': '#FAFAD2', 'MediumBlue': '#0000CD', 'LightSlateGray': '#778899', 'DarkOrange2': '#EE7600', 'PaleVioletRed': '#DB7093'} diff --git a/frontend/imgrid/colors/junk/colorpicker.html b/frontend/imgrid/colors/junk/colorpicker.html new file mode 100755 index 0000000..23993ac --- /dev/null +++ b/frontend/imgrid/colors/junk/colorpicker.html @@ -0,0 +1,254 @@ + + + + + + +
BLACH BLAH BLAH
+ +

hex

+

text

+
CLICK TO SHOW HEXES
+
+
funny
+
happy
+
silly
+
smart
+
click it
+ +
click me
+
+
+ +
choose between hex or text...
+ + + + + diff --git a/frontend/imgrid/colors/junk/colorpixx.css b/frontend/imgrid/colors/junk/colorpixx.css new file mode 100755 index 0000000..1ddf557 --- /dev/null +++ b/frontend/imgrid/colors/junk/colorpixx.css @@ -0,0 +1,2047 @@ + +body +{word-wrap: break-word;} + +#main div +{display: -moz-inline-stack; +display:inline-block; +vertical-align:bottom; +min-height: 30px; +min-width:20px; +zoom: 1; +*display: inline;} +} + +#main + { + width:600px; + } +#colornames +{position:fixed; +font-size:50px; +top:50px; +right:50%;} +#d0 +{background-color:#FFFAFA} + +#d1 +{background-color:#FFFAFA} + +#d2 +{background-color:#EEE9E9} + +#d3 +{background-color:#FFC1C1} + +#d4 +{background-color:#EEB4B4} + +#d5 +{background-color:#CDC9C9} + +#d6 +{background-color:#F08080} + +#d7 +{background-color:#FF6A6A} + +#d8 +{background-color:#CD9B9B} + +#d9 +{background-color:#EE6363} + +#d10 +{background-color:#BC8F8F} + +#d11 +{background-color:#FF4040} + +#d12 +{background-color:#FF3030} + +#d13 +{background-color:#EE3B3B} + +#d14 +{background-color:#CD5C5C} + +#d15 +{background-color:#CD5555} + +#d16 +{background-color:#EE2C2C} + +#d17 +{background-color:#8B8989} + +#d18 +{background-color:#CD3333} + +#d19 +{background-color:#FF0000} + +#d20 +{background-color:#FF0000} + +#d21 +{background-color:#8B6969} + +#d22 +{background-color:#CD2626} + +#d23 +{background-color:#EE0000} + +#d24 +{background-color:#B22222} + +#d25 +{background-color:#A52A2A} + +#d26 +{background-color:#CD0000} + +#d27 +{background-color:#8B3A3A} + +#d28 +{background-color:#8B2323} + +#d29 +{background-color:#8B1A1A} + +#d30 +{background-color:#8B0000} + +#d31 +{background-color:#8B0000} + +#d32 +{background-color:#800000} + +#d33 +{background-color:#FFAEB9} + +#d34 +{background-color:#CD8C95} + +#d35 +{background-color:#8B5F65} + +#d36 +{background-color:#EEA2AD} + +#d37 +{background-color:#FFB6C1} + +#d38 +{background-color:#FFC0CB} + +#d39 +{background-color:#DC143C} + +#d40 +{background-color:#FFB5C5} + +#d41 +{background-color:#EEA9B8} + +#d42 +{background-color:#CD919E} + +#d43 +{background-color:#8B636C} + +#d44 +{background-color:#8B475D} + +#d45 +{background-color:#DB7093} + +#d46 +{background-color:#EE799F} + +#d47 +{background-color:#FF82AB} + +#d48 +{background-color:#CD6889} + +#d49 +{background-color:#FFF0F5} + +#d50 +{background-color:#FFF0F5} + +#d51 +{background-color:#CDC1C5} + +#d52 +{background-color:#EEE0E5} + +#d53 +{background-color:#8B8386} + +#d54 +{background-color:#B03060} + +#d55 +{background-color:#CD6090} + +#d56 +{background-color:#CD3278} + +#d57 +{background-color:#FF3E96} + +#d58 +{background-color:#EE3A8C} + +#d59 +{background-color:#8B2252} + +#d60 +{background-color:#EE6AA7} + +#d61 +{background-color:#FF6EB4} + +#d62 +{background-color:#8B3A62} + +#d63 +{background-color:#FF69B4} + +#d64 +{background-color:#FF1493} + +#d65 +{background-color:#FF1493} + +#d66 +{background-color:#EE1289} + +#d67 +{background-color:#CD1076} + +#d68 +{background-color:#8B0A50} + +#d69 +{background-color:#FF34B3} + +#d70 +{background-color:#EE30A7} + +#d71 +{background-color:#CD2990} + +#d72 +{background-color:#8B1C62} + +#d73 +{background-color:#C71585} + +#d74 +{background-color:#D02090} + +#d75 +{background-color:#EE7AE9} + +#d76 +{background-color:#DA70D6} + +#d77 +{background-color:#FF83FA} + +#d78 +{background-color:#CD69C9} + +#d79 +{background-color:#8B4789} + +#d80 +{background-color:#FFE1FF} + +#d81 +{background-color:#EED2EE} + +#d82 +{background-color:#FFBBFF} + +#d83 +{background-color:#EEAEEE} + +#d84 +{background-color:#D8BFD8} + +#d85 +{background-color:#CDB5CD} + +#d86 +{background-color:#DDA0DD} + +#d87 +{background-color:#EE82EE} + +#d88 +{background-color:#CD96CD} + +#d89 +{background-color:#8B7B8B} + +#d90 +{background-color:#FF00FF} + +#d91 +{background-color:#FF00FF} + +#d92 +{background-color:#FF00FF} + +#d93 +{background-color:#8B668B} + +#d94 +{background-color:#EE00EE} + +#d95 +{background-color:#CD00CD} + +#d96 +{background-color:#8B008B} + +#d97 +{background-color:#8B008B} + +#d98 +{background-color:#800080} + +#d99 +{background-color:#BA55D3} + +#d100 +{background-color:#E066FF} + +#d101 +{background-color:#D15FEE} + +#d102 +{background-color:#B452CD} + +#d103 +{background-color:#7A378B} + +#d104 +{background-color:#9400D3} + +#d105 +{background-color:#9932CC} + +#d106 +{background-color:#BF3EFF} + +#d107 +{background-color:#9A32CD} + +#d108 +{background-color:#B23AEE} + +#d109 +{background-color:#68228B} + +#d110 +{background-color:#A020F0} + +#d111 +{background-color:#4B0082} + +#d112 +{background-color:#8A2BE2} + +#d113 +{background-color:#912CEE} + +#d114 +{background-color:#7D26CD} + +#d115 +{background-color:#551A8B} + +#d116 +{background-color:#9B30FF} + +#d117 +{background-color:#9370DB} + +#d118 +{background-color:#AB82FF} + +#d119 +{background-color:#9F79EE} + +#d120 +{background-color:#8968CD} + +#d121 +{background-color:#5D478B} + +#d122 +{background-color:#483D8B} + +#d123 +{background-color:#8470FF} + +#d124 +{background-color:#7B68EE} + +#d125 +{background-color:#6A5ACD} + +#d126 +{background-color:#836FFF} + +#d127 +{background-color:#7A67EE} + +#d128 +{background-color:#6959CD} + +#d129 +{background-color:#473C8B} + +#d130 +{background-color:#F8F8FF} + +#d131 +{background-color:#E6E6FA} + +#d132 +{background-color:#0000FF} + +#d133 +{background-color:#0000FF} + +#d134 +{background-color:#0000EE} + +#d135 +{background-color:#0000CD} + +#d136 +{background-color:#0000CD} + +#d137 +{background-color:#00008B} + +#d138 +{background-color:#00008B} + +#d139 +{background-color:#191970} + +#d140 +{background-color:#000080} + +#d141 +{background-color:#000080} + +#d142 +{background-color:#4169E1} + +#d143 +{background-color:#4876FF} + +#d144 +{background-color:#436EEE} + +#d145 +{background-color:#3A5FCD} + +#d146 +{background-color:#27408B} + +#d147 +{background-color:#6495ED} + +#d148 +{background-color:#B0C4DE} + +#d149 +{background-color:#CAE1FF} + +#d150 +{background-color:#BCD2EE} + +#d151 +{background-color:#A2B5CD} + +#d152 +{background-color:#6E7B8B} + +#d153 +{background-color:#6C7B8B} + +#d154 +{background-color:#C6E2FF} + +#d155 +{background-color:#B9D3EE} + +#d156 +{background-color:#9FB6CD} + +#d157 +{background-color:#778899} + +#d158 +{background-color:#778899} + +#d159 +{background-color:#708090} + +#d160 +{background-color:#708090} + +#d161 +{background-color:#1E90FF} + +#d162 +{background-color:#1E90FF} + +#d163 +{background-color:#1C86EE} + +#d164 +{background-color:#104E8B} + +#d165 +{background-color:#1874CD} + +#d166 +{background-color:#F0F8FF} + +#d167 +{background-color:#36648B} + +#d168 +{background-color:#4682B4} + +#d169 +{background-color:#63B8FF} + +#d170 +{background-color:#5CACEE} + +#d171 +{background-color:#4F94CD} + +#d172 +{background-color:#4A708B} + +#d173 +{background-color:#87CEFF} + +#d174 +{background-color:#7EC0EE} + +#d175 +{background-color:#6CA6CD} + +#d176 +{background-color:#87CEFA} + +#d177 +{background-color:#607B8B} + +#d178 +{background-color:#B0E2FF} + +#d179 +{background-color:#A4D3EE} + +#d180 +{background-color:#8DB6CD} + +#d181 +{background-color:#87CEEB} + +#d182 +{background-color:#9AC0CD} + +#d183 +{background-color:#00BFFF} + +#d184 +{background-color:#00BFFF} + +#d185 +{background-color:#00B2EE} + +#d186 +{background-color:#00688B} + +#d187 +{background-color:#009ACD} + +#d188 +{background-color:#BFEFFF} + +#d189 +{background-color:#B2DFEE} + +#d190 +{background-color:#ADD8E6} + +#d191 +{background-color:#68838B} + +#d192 +{background-color:#B0E0E6} + +#d193 +{background-color:#98F5FF} + +#d194 +{background-color:#8EE5EE} + +#d195 +{background-color:#7AC5CD} + +#d196 +{background-color:#53868B} + +#d197 +{background-color:#00F5FF} + +#d198 +{background-color:#00E5EE} + +#d199 +{background-color:#00C5CD} + +#d200 +{background-color:#00868B} + +#d201 +{background-color:#5F9EA0} + +#d202 +{background-color:#5F9EA0} + +#d203 +{background-color:#00CED1} + +#d204 +{background-color:#F0FFFF} + +#d205 +{background-color:#F0FFFF} + +#d206 +{background-color:#E0FFFF} + +#d207 +{background-color:#E0FFFF} + +#d208 +{background-color:#E0EEEE} + +#d209 +{background-color:#D1EEEE} + +#d210 +{background-color:#BBFFFF} + +#d211 +{background-color:#AFEEEE} + +#d212 +{background-color:#AEEEEE} + +#d213 +{background-color:#97FFFF} + +#d214 +{background-color:#C1CDCD} + +#d215 +{background-color:#B4CDCD} + +#d216 +{background-color:#8DEEEE} + +#d217 +{background-color:#96CDCD} + +#d218 +{background-color:#79CDCD} + +#d219 +{background-color:#838B8B} + +#d220 +{background-color:#7A8B8B} + +#d221 +{background-color:#00FFFF} + +#d222 +{background-color:#00FFFF} + +#d223 +{background-color:#00FFFF} + +#d224 +{background-color:#668B8B} + +#d225 +{background-color:#00EEEE} + +#d226 +{background-color:#528B8B} + +#d227 +{background-color:#00CDCD} + +#d228 +{background-color:#008B8B} + +#d229 +{background-color:#008B8B} + +#d230 +{background-color:#008080} + +#d231 +{background-color:#2F4F4F} + +#d232 +{background-color:#2F4F4F} + +#d233 +{background-color:#48D1CC} + +#d234 +{background-color:#20B2AA} + +#d235 +{background-color:#40E0D0} + +#d236 +{background-color:#458B74} + +#d237 +{background-color:#7FFFD4} + +#d238 +{background-color:#7FFFD4} + +#d239 +{background-color:#76EEC6} + +#d240 +{background-color:#66CDAA} + +#d241 +{background-color:#66CDAA} + +#d242 +{background-color:#00FA9A} + +#d243 +{background-color:#F5FFFA} + +#d244 +{background-color:#00FF7F} + +#d245 +{background-color:#00FF7F} + +#d246 +{background-color:#00EE76} + +#d247 +{background-color:#00CD66} + +#d248 +{background-color:#008B45} + +#d249 +{background-color:#3CB371} + +#d250 +{background-color:#2E8B57} + +#d251 +{background-color:#43CD80} + +#d252 +{background-color:#54FF9F} + +#d253 +{background-color:#2E8B57} + +#d254 +{background-color:#4EEE94} + +#d255 +{background-color:#32814B} + +#d256 +{background-color:#F0FFF0} + +#d257 +{background-color:#F0FFF0} + +#d258 +{background-color:#E0EEE0} + +#d259 +{background-color:#C1FFC1} + +#d260 +{background-color:#B4EEB4} + +#d261 +{background-color:#9AFF9A} + +#d262 +{background-color:#98FB98} + +#d263 +{background-color:#C1CDC1} + +#d264 +{background-color:#90EE90} + +#d265 +{background-color:#90EE90} + +#d266 +{background-color:#9BCD9B} + +#d267 +{background-color:#8FBC8F} + +#d268 +{background-color:#7CCD7C} + +#d269 +{background-color:#838B83} + +#d270 +{background-color:#00FF00} + +#d271 +{background-color:#00FF00} + +#d272 +{background-color:#32CD32} + +#d273 +{background-color:#698B69} + +#d274 +{background-color:#00EE00} + +#d275 +{background-color:#548B54} + +#d276 +{background-color:#00CD00} + +#d277 +{background-color:#228B22} + +#d278 +{background-color:#008B00} + +#d279 +{background-color:#008000} + +#d280 +{background-color:#006400} + +#d281 +{background-color:#7CFC00} + +#d282 +{background-color:#7FFF00} + +#d283 +{background-color:#7FFF00} + +#d284 +{background-color:#76EE00} + +#d285 +{background-color:#66CD00} + +#d286 +{background-color:#458B00} + +#d287 +{background-color:#ADFF2F} + +#d288 +{background-color:#A2CD5A} + +#d289 +{background-color:#CAFF70} + +#d290 +{background-color:#BCEE68} + +#d291 +{background-color:#6E8B3D} + +#d292 +{background-color:#556B2F} + +#d293 +{background-color:#6B8E23} + +#d294 +{background-color:#C0FF3E} + +#d295 +{background-color:#B3EE3A} + +#d296 +{background-color:#9ACD32} + +#d297 +{background-color:#9ACD32} + +#d298 +{background-color:#698B22} + +#d299 +{background-color:#FFFFF0} + +#d300 +{background-color:#FFFFF0} + +#d301 +{background-color:#FFFFE0} + +#d302 +{background-color:#FFFFE0} + +#d303 +{background-color:#F5F5DC} + +#d304 +{background-color:#EEEEE0} + +#d305 +{background-color:#FAFAD2} + +#d306 +{background-color:#EEEED1} + +#d307 +{background-color:#CDCDC1} + +#d308 +{background-color:#CDCDB4} + +#d309 +{background-color:#8B8B83} + +#d310 +{background-color:#8B8B7A} + +#d311 +{background-color:#FFFF00} + +#d312 +{background-color:#FFFF00} + +#d313 +{background-color:#EEEE00} + +#d314 +{background-color:#CDCD00} + +#d315 +{background-color:#8B8B00} + +#d316 +{background-color:#808000} + +#d317 +{background-color:#BDB76B} + +#d318 +{background-color:#EEE685} + +#d319 +{background-color:#8B8970} + +#d320 +{background-color:#FFF68F} + +#d321 +{background-color:#CDC673} + +#d322 +{background-color:#8B864E} + +#d323 +{background-color:#EEE8AA} + +#d324 +{background-color:#FFFACD} + +#d325 +{background-color:#FFFACD} + +#d326 +{background-color:#F0E68C} + +#d327 +{background-color:#CDC9A5} + +#d328 +{background-color:#EEE9BF} + +#d329 +{background-color:#D1C166} + +#d330 +{background-color:#8B8878} + +#d331 +{background-color:#FFD700} + +#d332 +{background-color:#FFD700} + +#d333 +{background-color:#EEC900} + +#d334 +{background-color:#CDAD00} + +#d335 +{background-color:#8B7500} + +#d336 +{background-color:#EEDD82} + +#d337 +{background-color:#8B814C} + +#d338 +{background-color:#FFEC8B} + +#d339 +{background-color:#CDBE70} + +#d340 +{background-color:#EEDC82} + +#d341 +{background-color:#CDC8B1} + +#d342 +{background-color:#EEE8CD} + +#d343 +{background-color:#FFF8DC} + +#d344 +{background-color:#FFF8DC} + +#d345 +{background-color:#DAA520} + +#d346 +{background-color:#FFC125} + +#d347 +{background-color:#EEB422} + +#d348 +{background-color:#CD9B1D} + +#d349 +{background-color:#8B6914} + +#d350 +{background-color:#B8860B} + +#d351 +{background-color:#FFB90F} + +#d352 +{background-color:#EEAD0E} + +#d353 +{background-color:#CD950C} + +#d354 +{background-color:#8B6508} + +#d355 +{background-color:#FFFAF0} + +#d356 +{background-color:#EED8AE} + +#d357 +{background-color:#FDF5E6} + +#d358 +{background-color:#F5DEB3} + +#d359 +{background-color:#FFE7BA} + +#d360 +{background-color:#CDBA96} + +#d361 +{background-color:#FFA500} + +#d362 +{background-color:#FFA500} + +#d363 +{background-color:#EE9A00} + +#d364 +{background-color:#CD8500} + +#d365 +{background-color:#8B5A00} + +#d366 +{background-color:#8B7E66} + +#d367 +{background-color:#FFE4B5} + +#d368 +{background-color:#FFEFD5} + +#d369 +{background-color:#CDB38B} + +#d370 +{background-color:#FFEBCD} + +#d371 +{background-color:#FFDEAD} + +#d372 +{background-color:#FFDEAD} + +#d373 +{background-color:#EECFA1} + +#d374 +{background-color:#8B795E} + +#d375 +{background-color:#8B8378} + +#d376 +{background-color:#FAEBD7} + +#d377 +{background-color:#D2B48C} + +#d378 +{background-color:#8B7D6B} + +#d379 +{background-color:#DEB887} + +#d380 +{background-color:#EEDFCC} + +#d381 +{background-color:#FFD39B} + +#d382 +{background-color:#CDAA7D} + +#d383 +{background-color:#EEC591} + +#d384 +{background-color:#FFEFDB} + +#d385 +{background-color:#8B7355} + +#d386 +{background-color:#CDC0B0} + +#d387 +{background-color:#FF8C00} + +#d388 +{background-color:#EED5B7} + +#d389 +{background-color:#FFE4C4} + +#d390 +{background-color:#FFE4C4} + +#d391 +{background-color:#CDB79E} + +#d392 +{background-color:#FF7F00} + +#d393 +{background-color:#FAF0E6} + +#d394 +{background-color:#EE7600} + +#d395 +{background-color:#CD6600} + +#d396 +{background-color:#8B4500} + +#d397 +{background-color:#CD853F} + +#d398 +{background-color:#FFA54F} + +#d399 +{background-color:#EE9A49} + +#d400 +{background-color:#CD853F} + +#d401 +{background-color:#8B5A2B} + +#d402 +{background-color:#FFDAB9} + +#d403 +{background-color:#FFDAB9} + +#d404 +{background-color:#8B7765} + +#d405 +{background-color:#EECBAD} + +#d406 +{background-color:#CDAF95} + +#d407 +{background-color:#F4A460} + +#d408 +{background-color:#8B8682} + +#d409 +{background-color:#EEE5DE} + +#d410 +{background-color:#CDC5BF} + +#d411 +{background-color:#D2691E} + +#d412 +{background-color:#FF7F24} + +#d413 +{background-color:#EE7621} + +#d414 +{background-color:#CD661D} + +#d415 +{background-color:#8B4513} + +#d416 +{background-color:#8B4513} + +#d417 +{background-color:#FFF5EE} + +#d418 +{background-color:#FFF5EE} + +#d419 +{background-color:#8B4726} + +#d420 +{background-color:#A0522D} + +#d421 +{background-color:#FF8247} + +#d422 +{background-color:#EE7942} + +#d423 +{background-color:#CD6839} + +#d424 +{background-color:#CD8162} + +#d425 +{background-color:#FFA07A} + +#d426 +{background-color:#FFA07A} + +#d427 +{background-color:#8B5742} + +#d428 +{background-color:#EE9572} + +#d429 +{background-color:#FF7F50} + +#d430 +{background-color:#FF4500} + +#d431 +{background-color:#FF4500} + +#d432 +{background-color:#EE4000} + +#d433 +{background-color:#CD3700} + +#d434 +{background-color:#8B2500} + +#d435 +{background-color:#E9967A} + +#d436 +{background-color:#FF8C69} + +#d437 +{background-color:#EE8262} + +#d438 +{background-color:#CD7054} + +#d439 +{background-color:#8B4C39} + +#d440 +{background-color:#FF7256} + +#d441 +{background-color:#EE6A50} + +#d442 +{background-color:#CD5B45} + +#d443 +{background-color:#8B3E2F} + +#d444 +{background-color:#8B3626} + +#d445 +{background-color:#FF6347} + +#d446 +{background-color:#FF6347} + +#d447 +{background-color:#EE5C42} + +#d448 +{background-color:#CD4F39} + +#d449 +{background-color:#8B7D7B} + +#d450 +{background-color:#EED5D2} + +#d451 +{background-color:#FFE4E1} + +#d452 +{background-color:#FFE4E1} + +#d453 +{background-color:#FA8072} + +#d454 +{background-color:#CDB7B5} + +#d455 +{background-color:#FFFFFF} + +#d456 +{background-color:#FFFFFF} + +#d457 +{background-color:#FFFFFF} + +#d458 +{background-color:#FFFFFF} + +#d459 +{background-color:#FCFCFC} + +#d460 +{background-color:#FCFCFC} + +#d461 +{background-color:#FAFAFA} + +#d462 +{background-color:#FAFAFA} + +#d463 +{background-color:#F7F7F7} + +#d464 +{background-color:#F7F7F7} + +#d465 +{background-color:#F5F5F5} + +#d466 +{background-color:#F5F5F5} + +#d467 +{background-color:#F5F5F5} + +#d468 +{background-color:#F2F2F2} + +#d469 +{background-color:#F2F2F2} + +#d470 +{background-color:#F0F0F0} + +#d471 +{background-color:#F0F0F0} + +#d472 +{background-color:#EDEDED} + +#d473 +{background-color:#EDEDED} + +#d474 +{background-color:#EBEBEB} + +#d475 +{background-color:#EBEBEB} + +#d476 +{background-color:#E8E8E8} + +#d477 +{background-color:#E8E8E8} + +#d478 +{background-color:#E5E5E5} + +#d479 +{background-color:#E5E5E5} + +#d480 +{background-color:#E3E3E3} + +#d481 +{background-color:#E3E3E3} + +#d482 +{background-color:#E0E0E0} + +#d483 +{background-color:#E0E0E0} + +#d484 +{background-color:#DEDEDE} + +#d485 +{background-color:#DEDEDE} + +#d486 +{background-color:#DCDCDC} + +#d487 +{background-color:#DBDBDB} + +#d488 +{background-color:#DBDBDB} + +#d489 +{background-color:#D9D9D9} + +#d490 +{background-color:#D9D9D9} + +#d491 +{background-color:#D6D6D6} + +#d492 +{background-color:#D6D6D6} + +#d493 +{background-color:#D4D4D4} + +#d494 +{background-color:#D4D4D4} + +#d495 +{background-color:#D3D3D3} + +#d496 +{background-color:#D3D3D3} + +#d497 +{background-color:#D1D1D1} + +#d498 +{background-color:#D1D1D1} + +#d499 +{background-color:#CFCFCF} + +#d500 +{background-color:#CFCFCF} + +#d501 +{background-color:#CCCCCC} + +#d502 +{background-color:#CCCCCC} + +#d503 +{background-color:#C9C9C9} + +#d504 +{background-color:#C9C9C9} + +#d505 +{background-color:#C7C7C7} + +#d506 +{background-color:#C7C7C7} + +#d507 +{background-color:#C4C4C4} + +#d508 +{background-color:#C4C4C4} + +#d509 +{background-color:#C2C2C2} + +#d510 +{background-color:#C2C2C2} + +#d511 +{background-color:#C0C0C0} + +#d512 +{background-color:#BFBFBF} + +#d513 +{background-color:#BFBFBF} + +#d514 +{background-color:#BDBDBD} + +#d515 +{background-color:#BDBDBD} + +#d516 +{background-color:#BABABA} + +#d517 +{background-color:#BABABA} + +#d518 +{background-color:#B8B8B8} + +#d519 +{background-color:#B8B8B8} + +#d520 +{background-color:#B5B5B5} + +#d521 +{background-color:#B5B5B5} + +#d522 +{background-color:#B3B3B3} + +#d523 +{background-color:#B3B3B3} + +#d524 +{background-color:#B0B0B0} + +#d525 +{background-color:#B0B0B0} + +#d526 +{background-color:#ADADAD} + +#d527 +{background-color:#ADADAD} + +#d528 +{background-color:#ABABAB} + +#d529 +{background-color:#ABABAB} + +#d530 +{background-color:#A9A9A9} + +#d531 +{background-color:#A9A9A9} + +#d532 +{background-color:#A8A8A8} + +#d533 +{background-color:#A8A8A8} + +#d534 +{background-color:#A6A6A6} + +#d535 +{background-color:#A6A6A6} + +#d536 +{background-color:#A3A3A3} + +#d537 +{background-color:#A3A3A3} + +#d538 +{background-color:#A1A1A1} + +#d539 +{background-color:#A1A1A1} + +#d540 +{background-color:#9E9E9E} + +#d541 +{background-color:#9E9E9E} + +#d542 +{background-color:#9C9C9C} + +#d543 +{background-color:#9C9C9C} + +#d544 +{background-color:#999999} + +#d545 +{background-color:#999999} + +#d546 +{background-color:#969696} + +#d547 +{background-color:#969696} + +#d548 +{background-color:#949494} + +#d549 +{background-color:#949494} + +#d550 +{background-color:#919191} + +#d551 +{background-color:#919191} + +#d552 +{background-color:#8F8F8F} + +#d553 +{background-color:#8F8F8F} + +#d554 +{background-color:#8C8C8C} + +#d555 +{background-color:#8C8C8C} + +#d556 +{background-color:#8A8A8A} + +#d557 +{background-color:#8A8A8A} + +#d558 +{background-color:#878787} + +#d559 +{background-color:#878787} + +#d560 +{background-color:#858585} + +#d561 +{background-color:#858585} + +#d562 +{background-color:#828282} + +#d563 +{background-color:#828282} + +#d564 +{background-color:#808080} + +#d565 +{background-color:#7F7F7F} + +#d566 +{background-color:#7F7F7F} + +#d567 +{background-color:#7E7E7E} + +#d568 +{background-color:#7D7D7D} + +#d569 +{background-color:#7D7D7D} + +#d570 +{background-color:#7A7A7A} + +#d571 +{background-color:#7A7A7A} + +#d572 +{background-color:#787878} + +#d573 +{background-color:#787878} + +#d574 +{background-color:#757575} + +#d575 +{background-color:#757575} + +#d576 +{background-color:#737373} + +#d577 +{background-color:#737373} + +#d578 +{background-color:#707070} + +#d579 +{background-color:#707070} + +#d580 +{background-color:#6E6E6E} + +#d581 +{background-color:#6E6E6E} + +#d582 +{background-color:#6B6B6B} + +#d583 +{background-color:#6B6B6B} + +#d584 +{background-color:#696969} + +#d585 +{background-color:#696969} + +#d586 +{background-color:#696969} + +#d587 +{background-color:#696969} + +#d588 +{background-color:#666666} + +#d589 +{background-color:#666666} + +#d590 +{background-color:#636363} + +#d591 +{background-color:#636363} + +#d592 +{background-color:#616161} + +#d593 +{background-color:#616161} + +#d594 +{background-color:#5E5E5E} + +#d595 +{background-color:#5E5E5E} + +#d596 +{background-color:#5C5C5C} + +#d597 +{background-color:#5C5C5C} + +#d598 +{background-color:#595959} + +#d599 +{background-color:#595959} + +#d600 +{background-color:#575757} + +#d601 +{background-color:#575757} + +#d602 +{background-color:#545454} + +#d603 +{background-color:#545454} + +#d604 +{background-color:#525252} + +#d605 +{background-color:#525252} + +#d606 +{background-color:#4F4F4F} + +#d607 +{background-color:#4F4F4F} + +#d608 +{background-color:#4D4D4D} + +#d609 +{background-color:#4D4D4D} + +#d610 +{background-color:#4A4A4A} + +#d611 +{background-color:#4A4A4A} + +#d612 +{background-color:#474747} + +#d613 +{background-color:#474747} + +#d614 +{background-color:#454545} + +#d615 +{background-color:#454545} + +#d616 +{background-color:#424242} + +#d617 +{background-color:#424242} + +#d618 +{background-color:#404040} + +#d619 +{background-color:#404040} + +#d620 +{background-color:#3D3D3D} + +#d621 +{background-color:#3D3D3D} + +#d622 +{background-color:#3B3B3B} + +#d623 +{background-color:#3B3B3B} + +#d624 +{background-color:#383838} + +#d625 +{background-color:#383838} + +#d626 +{background-color:#363636} + +#d627 +{background-color:#363636} + +#d628 +{background-color:#333333} + +#d629 +{background-color:#333333} + +#d630 +{background-color:#303030} + +#d631 +{background-color:#303030} + +#d632 +{background-color:#2E2E2E} + +#d633 +{background-color:#2E2E2E} + +#d634 +{background-color:#2B2B2B} + +#d635 +{background-color:#2B2B2B} + +#d636 +{background-color:#292929} + +#d637 +{background-color:#292929} + +#d638 +{background-color:#262626} + +#d639 +{background-color:#262626} + +#d640 +{background-color:#242424} + +#d641 +{background-color:#242424} + +#d642 +{background-color:#212121} + +#d643 +{background-color:#212121} + +#d644 +{background-color:#1F1F1F} + +#d645 +{background-color:#1F1F1F} + +#d646 +{background-color:#1C1C1C} + +#d647 +{background-color:#1C1C1C} + +#d648 +{background-color:#1A1A1A} + +#d649 +{background-color:#1A1A1A} + +#d650 +{background-color:#171717} + +#d651 +{background-color:#171717} + +#d652 +{background-color:#141414} + +#d653 +{background-color:#141414} + +#d654 +{background-color:#121212} + +#d655 +{background-color:#121212} + +#d656 +{background-color:#0F0F0F} + +#d657 +{background-color:#0F0F0F} + +#d658 +{background-color:#0D0D0D} + +#d659 +{background-color:#0D0D0D} + +#d660 +{background-color:#0A0A0A} + +#d661 +{background-color:#0A0A0A} + +#d662 +{background-color:#080808} + +#d663 +{background-color:#080808} + +#d664 +{background-color:#050505} + +#d665 +{background-color:#050505} + +#d666 +{background-color:#030303} + +#d667 +{background-color:#030303} + +#d668 +{background-color:#000000} + +#d669 +{background-color:#000000} + +#d670 +{background-color:#000000} + +#d671 +{background-color:#000000} + +#d672 +{background-color:#000000} + +#d673 +{background-color:#000000} +.colors +{height:30px; +width:10px;} diff --git a/frontend/imgrid/colors/junk/colorpixx.js b/frontend/imgrid/colors/junk/colorpixx.js new file mode 100755 index 0000000..4b42e4d --- /dev/null +++ b/frontend/imgrid/colors/junk/colorpixx.js @@ -0,0 +1,92 @@ +function goldenize(num) + { + ratio = (1+Math.sqrt(5))/2 + newnum = Math.round(num*ratio) + return newnum + } +//turns css property width or height into an integer value +function getproperty(idandselectr, propertystr) + { + grab = $(idandselectr).css(propertystr) + grab = grab.slice(0,-2) + numval = parseInt(grab) + return numval + } +function makegolden(idandselectr, propertystr) + { + result = getproperty(idandselectr, propertystr) + newwidth = goldenize(result) + widthval = newwidth.toString()+'px' + $(idandselectr).css('width', widthval) + } +makegolden('.colors', 'height') +//remove content this function takes the name out of the divs + +function removecontent() + { + $('.colors').html("") + } +removecontent() + +function colorToHex(color) { + if (color.substr(0, 1) === '#') { + return color; + } + var digits = /(.*?)rgb\((\d+), (\d+), (\d+)\)/.exec(color); + + var red = parseInt(digits[2]); + var green = parseInt(digits[3]); + var blue = parseInt(digits[4]); + + var rgb = blue | (green << 8) | (red << 16); + return digits[1] + '#' + rgb.toString(16); +}; + +//takes a div name and returns a colorname + +function showcolorname(divstr) + + { + + bgcolor = $('#'+divstr).css('background-color') + lowercasehex = colorToHex(bgcolor) + hex = lowercasehex.toUpperCase() + imname = hextoname[hex] +/* if ($('#hexortext:checked').length == 1) + { + imname = hex + }*/ + return imname + } +function bigname(divstr) + { + bebop = showcolorname(divstr) +// $('#colornames').html(bebop) + } +function writeit(text) + { +// $('#colornames').append(text) + } +function makebig(divstr) + { + firstheight = $('#'+divstr).height() + newheight = goldenize(firstheight) + $('#'+divstr).height(newheight) +// $('#colornames').append(firstheight) + } +function makesmall(divstr) + { + oldheight = $('.colors').height() + $('#'+divstr).height(oldheight) + } +$('.colors').hover(function() { + bigname(this.id); + makebig(this.id); + makegolden('#'+this.id, 'height')}, +function(){ + makesmall(this.id); + makegolden('#'+this.id, 'height') +}); +$('#colornames').html("") +$("#popupContact").css('background-color', 'black') +$('.colors').css('margin-top', '2px') diff --git a/frontend/imgrid/colors/junk/colors.html b/frontend/imgrid/colors/junk/colors.html new file mode 100755 index 0000000..0ef22f9 --- /dev/null +++ b/frontend/imgrid/colors/junk/colors.html @@ -0,0 +1,5429 @@ + + + + + + + + +
+

List of Color Names

+
+ +

a list of named colors for use with PHOTOBLASTER:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameColorRGBHex
snowsnowrgb(255, 250, 250)#FFFAFA
snow1snow1rgb(255, 250, 250)#FFFAFA
snow2snow2rgb(238, 233, 233)#EEE9E9
RosyBrown1RosyBrown1rgb(255, 193, 193)#FFC1C1
RosyBrown2RosyBrown2rgb(238, 180, 180)#EEB4B4
snow3snow3rgb(205, 201, 201)#CDC9C9
LightCoralLightCoralrgb(240, 128, 128)#F08080
IndianRed1IndianRed1rgb(255, 106, 106)#FF6A6A
RosyBrown3RosyBrown3rgb(205, 155, 155)#CD9B9B
IndianRed2IndianRed2rgb(238, 99, 99)#EE6363
RosyBrownRosyBrownrgb(188, 143, 143)#BC8F8F
brown1brown1rgb(255, 64, 64)#FF4040
firebrick1firebrick1rgb(255, 48, 48)#FF3030
brown2brown2rgb(238, 59, 59)#EE3B3B
IndianRedIndianRedrgb(205, 92, 92)#CD5C5C
IndianRed3IndianRed3rgb(205, 85, 85)#CD5555
firebrick2firebrick2rgb(238, 44, 44)#EE2C2C
snow4snow4rgb(139, 137, 137)#8B8989
brown3brown3rgb(205, 51, 51)#CD3333
redredrgb(255, 0, 0)#FF0000
red1red1rgb(255, 0, 0)#FF0000
RosyBrown4RosyBrown4rgb(139, 105, 105)#8B6969
firebrick3firebrick3rgb(205, 38, 38)#CD2626
red2red2rgb(238, 0, 0)#EE0000
firebrickfirebrickrgb(178, 34, 34)#B22222
brownbrownrgb(165, 42, 42)#A52A2A
red3red3rgb(205, 0, 0)#CD0000
IndianRed4IndianRed4rgb(139, 58, 58)#8B3A3A
brown4brown4rgb(139, 35, 35)#8B2323
firebrick4firebrick4rgb(139, 26, 26)#8B1A1A
DarkRedDarkRedrgb(139, 0, 0)#8B0000
red4red4rgb(139, 0, 0)#8B0000
maroonmaroonrgb(128, 0, 0)#800000
LightPink1LightPink1rgb(255, 174, 185)#FFAEB9
LightPink3LightPink3rgb(205, 140, 149)#CD8C95
LightPink4LightPink4rgb(139, 95, 101)#8B5F65
LightPink2LightPink2rgb(238, 162, 173)#EEA2AD
LightPinkLightPinkrgb(255, 182, 193)#FFB6C1
pinkpinkrgb(255, 192, 203)#FFC0CB
crimsoncrimsonrgb(220, 20, 60)#DC143C
pink1pink1rgb(255, 181, 197)#FFB5C5
pink2pink2rgb(238, 169, 184)#EEA9B8
pink3pink3rgb(205, 145, 158)#CD919E
pink4pink4rgb(139, 99, 108)#8B636C
PaleVioletRed4PaleVioletRed4rgb(139, 71, 93)#8B475D
PaleVioletRedPaleVioletRedrgb(219, 112, 147)#DB7093
PaleVioletRed2PaleVioletRed2rgb(238, 121, 159)#EE799F
PaleVioletRed1PaleVioletRed1rgb(255, 130, 171)#FF82AB
PaleVioletRed3PaleVioletRed3rgb(205, 104, 137)#CD6889
LavenderBlushLavenderBlushrgb(255, 240, 245)#FFF0F5
LavenderBlush1LavenderBlush1rgb(255, 240, 245)#FFF0F5
LavenderBlush3LavenderBlush3rgb(205, 193, 197)#CDC1C5
LavenderBlush2LavenderBlush2rgb(238, 224, 229)#EEE0E5
LavenderBlush4LavenderBlush4rgb(139, 131, 134)#8B8386
maroonmaroonrgb(176, 48, 96)#B03060
HotPink3HotPink3rgb(205, 96, 144)#CD6090
VioletRed3VioletRed3rgb(205, 50, 120)#CD3278
VioletRed1VioletRed1rgb(255, 62, 150)#FF3E96
VioletRed2VioletRed2rgb(238, 58, 140)#EE3A8C
VioletRed4VioletRed4rgb(139, 34, 82)#8B2252
HotPink2HotPink2rgb(238, 106, 167)#EE6AA7
HotPink1HotPink1rgb(255, 110, 180)#FF6EB4
HotPink4HotPink4rgb(139, 58, 98)#8B3A62
HotPinkHotPinkrgb(255, 105, 180)#FF69B4
DeepPinkDeepPinkrgb(255, 20, 147)#FF1493
DeepPink1DeepPink1rgb(255, 20, 147)#FF1493
DeepPink2DeepPink2rgb(238, 18, 137)#EE1289
DeepPink3DeepPink3rgb(205, 16, 118)#CD1076
DeepPink4DeepPink4rgb(139, 10, 80)#8B0A50
maroon1maroon1rgb(255, 52, 179)#FF34B3
maroon2maroon2rgb(238, 48, 167)#EE30A7
maroon3maroon3rgb(205, 41, 144)#CD2990
maroon4maroon4rgb(139, 28, 98)#8B1C62
MediumVioletRedMediumVioletRedrgb(199, 21, 133)#C71585
VioletRedVioletRedrgb(208, 32, 144)#D02090
orchid2orchid2rgb(238, 122, 233)#EE7AE9
orchidorchidrgb(218, 112, 214)#DA70D6
orchid1orchid1rgb(255, 131, 250)#FF83FA
orchid3orchid3rgb(205, 105, 201)#CD69C9
orchid4orchid4rgb(139, 71, 137)#8B4789
thistle1thistle1rgb(255, 225, 255)#FFE1FF
thistle2thistle2rgb(238, 210, 238)#EED2EE
plum1plum1rgb(255, 187, 255)#FFBBFF
plum2plum2rgb(238, 174, 238)#EEAEEE
thistlethistlergb(216, 191, 216)#D8BFD8
thistle3thistle3rgb(205, 181, 205)#CDB5CD
plumplumrgb(221, 160, 221)#DDA0DD
violetvioletrgb(238, 130, 238)#EE82EE
plum3plum3rgb(205, 150, 205)#CD96CD
thistle4thistle4rgb(139, 123, 139)#8B7B8B
fuchsiafuchsiargb(255, 0, 255)#FF00FF
magentamagentargb(255, 0, 255)#FF00FF
magenta1magenta1rgb(255, 0, 255)#FF00FF
plum4plum4rgb(139, 102, 139)#8B668B
magenta2magenta2rgb(238, 0, 238)#EE00EE
magenta3magenta3rgb(205, 0, 205)#CD00CD
DarkMagentaDarkMagentargb(139, 0, 139)#8B008B
magenta4magenta4rgb(139, 0, 139)#8B008B
purplepurplergb(128, 0, 128)#800080
MediumOrchidMediumOrchidrgb(186, 85, 211)#BA55D3
MediumOrchid1MediumOrchid1rgb(224, 102, 255)#E066FF
MediumOrchid2MediumOrchid2rgb(209, 95, 238)#D15FEE
MediumOrchid3MediumOrchid3rgb(180, 82, 205)#B452CD
MediumOrchid4MediumOrchid4rgb(122, 55, 139)#7A378B
DarkVioletDarkVioletrgb(148, 0, 211)#9400D3
DarkOrchidDarkOrchidrgb(153, 50, 204)#9932CC
DarkOrchid1DarkOrchid1rgb(191, 62, 255)#BF3EFF
DarkOrchid3DarkOrchid3rgb(154, 50, 205)#9A32CD
DarkOrchid2DarkOrchid2rgb(178, 58, 238)#B23AEE
DarkOrchid4DarkOrchid4rgb(104, 34, 139)#68228B
purplepurplergb(160, 32, 240)#A020F0
indigoindigorgb( 75, 0, 130)#4B0082
BlueVioletBlueVioletrgb(138, 43, 226)#8A2BE2
purple2purple2rgb(145, 44, 238)#912CEE
purple3purple3rgb(125, 38, 205)#7D26CD
purple4purple4rgb( 85, 26, 139)#551A8B
purple1purple1rgb(155, 48, 255)#9B30FF
MediumPurpleMediumPurplergb(147, 112, 219)#9370DB
MediumPurple1MediumPurple1rgb(171, 130, 255)#AB82FF
MediumPurple2MediumPurple2rgb(159, 121, 238)#9F79EE
MediumPurple3MediumPurple3rgb(137, 104, 205)#8968CD
MediumPurple4MediumPurple4rgb( 93, 71, 139)#5D478B
DarkSlateBlueDarkSlateBluergb( 72, 61, 139)#483D8B
LightSlateBlueLightSlateBluergb(132, 112, 255)#8470FF
MediumSlateBlueMediumSlateBluergb(123, 104, 238)#7B68EE
SlateBlueSlateBluergb(106, 90, 205)#6A5ACD
SlateBlue1SlateBlue1rgb(131, 111, 255)#836FFF
SlateBlue2SlateBlue2rgb(122, 103, 238)#7A67EE
SlateBlue3SlateBlue3rgb(105, 89, 205)#6959CD
SlateBlue4SlateBlue4rgb( 71, 60, 139)#473C8B
GhostWhiteGhostWhitergb(248, 248, 255)#F8F8FF
lavenderlavenderrgb(230, 230, 250)#E6E6FA
bluebluergb( 0, 0, 255)#0000FF
blue1blue1rgb( 0, 0, 255)#0000FF
blue2blue2rgb( 0, 0, 238)#0000EE
blue3blue3rgb( 0, 0, 205)#0000CD
MediumBlueMediumBluergb( 0, 0, 205)#0000CD
blue4blue4rgb( 0, 0, 139)#00008B
DarkBlueDarkBluergb( 0, 0, 139)#00008B
MidnightBlueMidnightBluergb( 25, 25, 112)#191970
navynavyrgb( 0, 0, 128)#000080
NavyBlueNavyBluergb( 0, 0, 128)#000080
RoyalBlueRoyalBluergb( 65, 105, 225)#4169E1
RoyalBlue1RoyalBlue1rgb( 72, 118, 255)#4876FF
RoyalBlue2RoyalBlue2rgb( 67, 110, 238)#436EEE
RoyalBlue3RoyalBlue3rgb( 58, 95, 205)#3A5FCD
RoyalBlue4RoyalBlue4rgb( 39, 64, 139)#27408B
CornflowerBlueCornflowerBluergb(100, 149, 237)#6495ED
LightSteelBlueLightSteelBluergb(176, 196, 222)#B0C4DE
LightSteelBlue1LightSteelBlue1rgb(202, 225, 255)#CAE1FF
LightSteelBlue2LightSteelBlue2rgb(188, 210, 238)#BCD2EE
LightSteelBlue3LightSteelBlue3rgb(162, 181, 205)#A2B5CD
LightSteelBlue4LightSteelBlue4rgb(110, 123, 139)#6E7B8B
SlateGray4SlateGray4rgb(108, 123, 139)#6C7B8B
SlateGray1SlateGray1rgb(198, 226, 255)#C6E2FF
SlateGray2SlateGray2rgb(185, 211, 238)#B9D3EE
SlateGray3SlateGray3rgb(159, 182, 205)#9FB6CD
LightSlateGrayLightSlateGrayrgb(119, 136, 153)#778899
LightSlateGreyLightSlateGreyrgb(119, 136, 153)#778899
SlateGraySlateGrayrgb(112, 128, 144)#708090
SlateGreySlateGreyrgb(112, 128, 144)#708090
DodgerBlueDodgerBluergb( 30, 144, 255)#1E90FF
DodgerBlue1DodgerBlue1rgb( 30, 144, 255)#1E90FF
DodgerBlue2DodgerBlue2rgb( 28, 134, 238)#1C86EE
DodgerBlue4DodgerBlue4rgb( 16, 78, 139)#104E8B
DodgerBlue3DodgerBlue3rgb( 24, 116, 205)#1874CD
AliceBlueAliceBluergb(240, 248, 255)#F0F8FF
SteelBlue4SteelBlue4rgb( 54, 100, 139)#36648B
SteelBlueSteelBluergb( 70, 130, 180)#4682B4
SteelBlue1SteelBlue1rgb( 99, 184, 255)#63B8FF
SteelBlue2SteelBlue2rgb( 92, 172, 238)#5CACEE
SteelBlue3SteelBlue3rgb( 79, 148, 205)#4F94CD
SkyBlue4SkyBlue4rgb( 74, 112, 139)#4A708B
SkyBlue1SkyBlue1rgb(135, 206, 255)#87CEFF
SkyBlue2SkyBlue2rgb(126, 192, 238)#7EC0EE
SkyBlue3SkyBlue3rgb(108, 166, 205)#6CA6CD
LightSkyBlueLightSkyBluergb(135, 206, 250)#87CEFA
LightSkyBlue4LightSkyBlue4rgb( 96, 123, 139)#607B8B
LightSkyBlue1LightSkyBlue1rgb(176, 226, 255)#B0E2FF
LightSkyBlue2LightSkyBlue2rgb(164, 211, 238)#A4D3EE
LightSkyBlue3LightSkyBlue3rgb(141, 182, 205)#8DB6CD
SkyBlueSkyBluergb(135, 206, 235)#87CEEB
LightBlue3LightBlue3rgb(154, 192, 205)#9AC0CD
DeepSkyBlueDeepSkyBluergb( 0, 191, 255)#00BFFF
DeepSkyBlue1DeepSkyBlue1rgb( 0, 191, 255)#00BFFF
DeepSkyBlue2DeepSkyBlue2rgb( 0, 178, 238)#00B2EE
DeepSkyBlue4DeepSkyBlue4rgb( 0, 104, 139)#00688B
DeepSkyBlue3DeepSkyBlue3rgb( 0, 154, 205)#009ACD
LightBlue1LightBlue1rgb(191, 239, 255)#BFEFFF
LightBlue2LightBlue2rgb(178, 223, 238)#B2DFEE
LightBlueLightBluergb(173, 216, 230)#ADD8E6
LightBlue4LightBlue4rgb(104, 131, 139)#68838B
PowderBluePowderBluergb(176, 224, 230)#B0E0E6
CadetBlue1CadetBlue1rgb(152, 245, 255)#98F5FF
CadetBlue2CadetBlue2rgb(142, 229, 238)#8EE5EE
CadetBlue3CadetBlue3rgb(122, 197, 205)#7AC5CD
CadetBlue4CadetBlue4rgb( 83, 134, 139)#53868B
turquoise1turquoise1rgb( 0, 245, 255)#00F5FF
turquoise2turquoise2rgb( 0, 229, 238)#00E5EE
turquoise3turquoise3rgb( 0, 197, 205)#00C5CD
turquoise4turquoise4rgb( 0, 134, 139)#00868B
cadet bluecadet bluergb( 95, 158, 160)#5F9EA0
CadetBlueCadetBluergb( 95, 158, 160)#5F9EA0
DarkTurquoiseDarkTurquoisergb( 0, 206, 209)#00CED1
azureazurergb(240, 255, 255)#F0FFFF
azure1azure1rgb(240, 255, 255)#F0FFFF
LightCyanLightCyanrgb(224, 255, 255)#E0FFFF
LightCyan1LightCyan1rgb(224, 255, 255)#E0FFFF
azure2azure2rgb(224, 238, 238)#E0EEEE
LightCyan2LightCyan2rgb(209, 238, 238)#D1EEEE
PaleTurquoise1PaleTurquoise1rgb(187, 255, 255)#BBFFFF
PaleTurquoisePaleTurquoisergb(175, 238, 238)#AFEEEE
PaleTurquoise2PaleTurquoise2rgb(174, 238, 238)#AEEEEE
DarkSlateGray1DarkSlateGray1rgb(151, 255, 255)#97FFFF
azure3azure3rgb(193, 205, 205)#C1CDCD
LightCyan3LightCyan3rgb(180, 205, 205)#B4CDCD
DarkSlateGray2DarkSlateGray2rgb(141, 238, 238)#8DEEEE
PaleTurquoise3PaleTurquoise3rgb(150, 205, 205)#96CDCD
DarkSlateGray3DarkSlateGray3rgb(121, 205, 205)#79CDCD
azure4azure4rgb(131, 139, 139)#838B8B
LightCyan4LightCyan4rgb(122, 139, 139)#7A8B8B
aquaaquargb( 0, 255, 255)#00FFFF
cyancyanrgb( 0, 255, 255)#00FFFF
cyan1cyan1rgb( 0, 255, 255)#00FFFF
PaleTurquoise4PaleTurquoise4rgb(102, 139, 139)#668B8B
cyan2cyan2rgb( 0, 238, 238)#00EEEE
DarkSlateGray4DarkSlateGray4rgb( 82, 139, 139)#528B8B
cyan3cyan3rgb( 0, 205, 205)#00CDCD
cyan4cyan4rgb( 0, 139, 139)#008B8B
DarkCyanDarkCyanrgb( 0, 139, 139)#008B8B
tealtealrgb( 0, 128, 128)#008080
DarkSlateGrayDarkSlateGrayrgb( 47, 79, 79)#2F4F4F
DarkSlateGreyDarkSlateGreyrgb( 47, 79, 79)#2F4F4F
MediumTurquoiseMediumTurquoisergb( 72, 209, 204)#48D1CC
LightSeaGreenLightSeaGreenrgb( 32, 178, 170)#20B2AA
turquoiseturquoisergb( 64, 224, 208)#40E0D0
aquamarine4aquamarine4rgb( 69, 139, 116)#458B74
aquamarineaquamarinergb(127, 255, 212)#7FFFD4
aquamarine1aquamarine1rgb(127, 255, 212)#7FFFD4
aquamarine2aquamarine2rgb(118, 238, 198)#76EEC6
aquamarine3aquamarine3rgb(102, 205, 170)#66CDAA
MediumAquamarineMediumAquamarinergb(102, 205, 170)#66CDAA
MediumSpringGreenMediumSpringGreenrgb( 0, 250, 154)#00FA9A
MintCreamMintCreamrgb(245, 255, 250)#F5FFFA
SpringGreenSpringGreenrgb( 0, 255, 127)#00FF7F
SpringGreen1SpringGreen1rgb( 0, 255, 127)#00FF7F
SpringGreen2SpringGreen2rgb( 0, 238, 118)#00EE76
SpringGreen3SpringGreen3rgb( 0, 205, 102)#00CD66
SpringGreen4SpringGreen4rgb( 0, 139, 69)#008B45
MediumSeaGreenMediumSeaGreenrgb( 60, 179, 113)#3CB371
SeaGreenSeaGreenrgb( 46, 139, 87)#2E8B57
SeaGreen3SeaGreen3rgb( 67, 205, 128)#43CD80
SeaGreen1SeaGreen1rgb( 84, 255, 159)#54FF9F
SeaGreen4SeaGreen4rgb( 46, 139, 87)#2E8B57
SeaGreen2SeaGreen2rgb( 78, 238, 148)#4EEE94
MediumForestGreenMediumForestGreenrgb( 50, 129, 75)#32814B
honeydewhoneydewrgb(240, 255, 240)#F0FFF0
honeydew1honeydew1rgb(240, 255, 240)#F0FFF0
honeydew2honeydew2rgb(224, 238, 224)#E0EEE0
DarkSeaGreen1DarkSeaGreen1rgb(193, 255, 193)#C1FFC1
DarkSeaGreen2DarkSeaGreen2rgb(180, 238, 180)#B4EEB4
PaleGreen1PaleGreen1rgb(154, 255, 154)#9AFF9A
PaleGreenPaleGreenrgb(152, 251, 152)#98FB98
honeydew3honeydew3rgb(193, 205, 193)#C1CDC1
LightGreenLightGreenrgb(144, 238, 144)#90EE90
PaleGreen2PaleGreen2rgb(144, 238, 144)#90EE90
DarkSeaGreen3DarkSeaGreen3rgb(155, 205, 155)#9BCD9B
DarkSeaGreenDarkSeaGreenrgb(143, 188, 143)#8FBC8F
PaleGreen3PaleGreen3rgb(124, 205, 124)#7CCD7C
honeydew4honeydew4rgb(131, 139, 131)#838B83
green1green1rgb( 0, 255, 0)#00FF00
limelimergb( 0, 255, 0)#00FF00
LimeGreenLimeGreenrgb( 50, 205, 50)#32CD32
DarkSeaGreen4DarkSeaGreen4rgb(105, 139, 105)#698B69
green2green2rgb( 0, 238, 0)#00EE00
PaleGreen4PaleGreen4rgb( 84, 139, 84)#548B54
green3green3rgb( 0, 205, 0)#00CD00
ForestGreenForestGreenrgb( 34, 139, 34)#228B22
green4green4rgb( 0, 139, 0)#008B00
greengreenrgb( 0, 128, 0)#008000
DarkGreenDarkGreenrgb( 0, 100, 0)#006400
LawnGreenLawnGreenrgb(124, 252, 0)#7CFC00
chartreusechartreusergb(127, 255, 0)#7FFF00
chartreuse1chartreuse1rgb(127, 255, 0)#7FFF00
chartreuse2chartreuse2rgb(118, 238, 0)#76EE00
chartreuse3chartreuse3rgb(102, 205, 0)#66CD00
chartreuse4chartreuse4rgb( 69, 139, 0)#458B00
GreenYellowGreenYellowrgb(173, 255, 47)#ADFF2F
DarkOliveGreen3DarkOliveGreen3rgb(162, 205, 90)#A2CD5A
DarkOliveGreen1DarkOliveGreen1rgb(202, 255, 112)#CAFF70
DarkOliveGreen2DarkOliveGreen2rgb(188, 238, 104)#BCEE68
DarkOliveGreen4DarkOliveGreen4rgb(110, 139, 61)#6E8B3D
DarkOliveGreenDarkOliveGreenrgb( 85, 107, 47)#556B2F
OliveDrabOliveDrabrgb(107, 142, 35)#6B8E23
OliveDrab1OliveDrab1rgb(192, 255, 62)#C0FF3E
OliveDrab2OliveDrab2rgb(179, 238, 58)#B3EE3A
OliveDrab3OliveDrab3rgb(154, 205, 50)#9ACD32
YellowGreenYellowGreenrgb(154, 205, 50)#9ACD32
OliveDrab4OliveDrab4rgb(105, 139, 34)#698B22
ivoryivoryrgb(255, 255, 240)#FFFFF0
ivory1ivory1rgb(255, 255, 240)#FFFFF0
LightYellowLightYellowrgb(255, 255, 224)#FFFFE0
LightYellow1LightYellow1rgb(255, 255, 224)#FFFFE0
beigebeigergb(245, 245, 220)#F5F5DC
ivory2ivory2rgb(238, 238, 224)#EEEEE0
LightGoldenrodYellowLightGoldenrodYellowrgb(250, 250, 210)#FAFAD2
LightYellow2LightYellow2rgb(238, 238, 209)#EEEED1
ivory3ivory3rgb(205, 205, 193)#CDCDC1
LightYellow3LightYellow3rgb(205, 205, 180)#CDCDB4
ivory4ivory4rgb(139, 139, 131)#8B8B83
LightYellow4LightYellow4rgb(139, 139, 122)#8B8B7A
yellowyellowrgb(255, 255, 0)#FFFF00
yellow1yellow1rgb(255, 255, 0)#FFFF00
yellow2yellow2rgb(238, 238, 0)#EEEE00
yellow3yellow3rgb(205, 205, 0)#CDCD00
yellow4yellow4rgb(139, 139, 0)#8B8B00
oliveolivergb(128, 128, 0)#808000
DarkKhakiDarkKhakirgb(189, 183, 107)#BDB76B
khaki2khaki2rgb(238, 230, 133)#EEE685
LemonChiffon4LemonChiffon4rgb(139, 137, 112)#8B8970
khaki1khaki1rgb(255, 246, 143)#FFF68F
khaki3khaki3rgb(205, 198, 115)#CDC673
khaki4khaki4rgb(139, 134, 78)#8B864E
PaleGoldenrodPaleGoldenrodrgb(238, 232, 170)#EEE8AA
LemonChiffonLemonChiffonrgb(255, 250, 205)#FFFACD
LemonChiffon1LemonChiffon1rgb(255, 250, 205)#FFFACD
khakikhakirgb(240, 230, 140)#F0E68C
LemonChiffon3LemonChiffon3rgb(205, 201, 165)#CDC9A5
LemonChiffon2LemonChiffon2rgb(238, 233, 191)#EEE9BF
MediumGoldenRodMediumGoldenRodrgb(209, 193, 102)#D1C166
cornsilk4cornsilk4rgb(139, 136, 120)#8B8878
goldgoldrgb(255, 215, 0)#FFD700
gold1gold1rgb(255, 215, 0)#FFD700
gold2gold2rgb(238, 201, 0)#EEC900
gold3gold3rgb(205, 173, 0)#CDAD00
gold4gold4rgb(139, 117, 0)#8B7500
LightGoldenrodLightGoldenrodrgb(238, 221, 130)#EEDD82
LightGoldenrod4LightGoldenrod4rgb(139, 129, 76)#8B814C
LightGoldenrod1LightGoldenrod1rgb(255, 236, 139)#FFEC8B
LightGoldenrod3LightGoldenrod3rgb(205, 190, 112)#CDBE70
LightGoldenrod2LightGoldenrod2rgb(238, 220, 130)#EEDC82
cornsilk3cornsilk3rgb(205, 200, 177)#CDC8B1
cornsilk2cornsilk2rgb(238, 232, 205)#EEE8CD
cornsilkcornsilkrgb(255, 248, 220)#FFF8DC
cornsilk1cornsilk1rgb(255, 248, 220)#FFF8DC
goldenrodgoldenrodrgb(218, 165, 32)#DAA520
goldenrod1goldenrod1rgb(255, 193, 37)#FFC125
goldenrod2goldenrod2rgb(238, 180, 34)#EEB422
goldenrod3goldenrod3rgb(205, 155, 29)#CD9B1D
goldenrod4goldenrod4rgb(139, 105, 20)#8B6914
DarkGoldenrodDarkGoldenrodrgb(184, 134, 11)#B8860B
DarkGoldenrod1DarkGoldenrod1rgb(255, 185, 15)#FFB90F
DarkGoldenrod2DarkGoldenrod2rgb(238, 173, 14)#EEAD0E
DarkGoldenrod3DarkGoldenrod3rgb(205, 149, 12)#CD950C
DarkGoldenrod4DarkGoldenrod4rgb(139, 101, 8)#8B6508
FloralWhiteFloralWhitergb(255, 250, 240)#FFFAF0
wheat2wheat2rgb(238, 216, 174)#EED8AE
OldLaceOldLacergb(253, 245, 230)#FDF5E6
wheatwheatrgb(245, 222, 179)#F5DEB3
wheat1wheat1rgb(255, 231, 186)#FFE7BA
wheat3wheat3rgb(205, 186, 150)#CDBA96
orangeorangergb(255, 165, 0)#FFA500
orange1orange1rgb(255, 165, 0)#FFA500
orange2orange2rgb(238, 154, 0)#EE9A00
orange3orange3rgb(205, 133, 0)#CD8500
orange4orange4rgb(139, 90, 0)#8B5A00
wheat4wheat4rgb(139, 126, 102)#8B7E66
moccasinmoccasinrgb(255, 228, 181)#FFE4B5
PapayaWhipPapayaWhiprgb(255, 239, 213)#FFEFD5
NavajoWhite3NavajoWhite3rgb(205, 179, 139)#CDB38B
BlanchedAlmondBlanchedAlmondrgb(255, 235, 205)#FFEBCD
NavajoWhiteNavajoWhitergb(255, 222, 173)#FFDEAD
NavajoWhite1NavajoWhite1rgb(255, 222, 173)#FFDEAD
NavajoWhite2NavajoWhite2rgb(238, 207, 161)#EECFA1
NavajoWhite4NavajoWhite4rgb(139, 121, 94)#8B795E
AntiqueWhite4AntiqueWhite4rgb(139, 131, 120)#8B8378
AntiqueWhiteAntiqueWhitergb(250, 235, 215)#FAEBD7
tantanrgb(210, 180, 140)#D2B48C
bisque4bisque4rgb(139, 125, 107)#8B7D6B
burlywoodburlywoodrgb(222, 184, 135)#DEB887
AntiqueWhite2AntiqueWhite2rgb(238, 223, 204)#EEDFCC
burlywood1burlywood1rgb(255, 211, 155)#FFD39B
burlywood3burlywood3rgb(205, 170, 125)#CDAA7D
burlywood2burlywood2rgb(238, 197, 145)#EEC591
AntiqueWhite1AntiqueWhite1rgb(255, 239, 219)#FFEFDB
burlywood4burlywood4rgb(139, 115, 85)#8B7355
AntiqueWhite3AntiqueWhite3rgb(205, 192, 176)#CDC0B0
DarkOrangeDarkOrangergb(255, 140, 0)#FF8C00
bisque2bisque2rgb(238, 213, 183)#EED5B7
bisquebisquergb(255, 228, 196)#FFE4C4
bisque1bisque1rgb(255, 228, 196)#FFE4C4
bisque3bisque3rgb(205, 183, 158)#CDB79E
DarkOrange1DarkOrange1rgb(255, 127, 0)#FF7F00
linenlinenrgb(250, 240, 230)#FAF0E6
DarkOrange2DarkOrange2rgb(238, 118, 0)#EE7600
DarkOrange3DarkOrange3rgb(205, 102, 0)#CD6600
DarkOrange4DarkOrange4rgb(139, 69, 0)#8B4500
peruperurgb(205, 133, 63)#CD853F
tan1tan1rgb(255, 165, 79)#FFA54F
tan2tan2rgb(238, 154, 73)#EE9A49
tan3tan3rgb(205, 133, 63)#CD853F
tan4tan4rgb(139, 90, 43)#8B5A2B
PeachPuffPeachPuffrgb(255, 218, 185)#FFDAB9
PeachPuff1PeachPuff1rgb(255, 218, 185)#FFDAB9
PeachPuff4PeachPuff4rgb(139, 119, 101)#8B7765
PeachPuff2PeachPuff2rgb(238, 203, 173)#EECBAD
PeachPuff3PeachPuff3rgb(205, 175, 149)#CDAF95
SandyBrownSandyBrownrgb(244, 164, 96)#F4A460
seashell4seashell4rgb(139, 134, 130)#8B8682
seashell2seashell2rgb(238, 229, 222)#EEE5DE
seashell3seashell3rgb(205, 197, 191)#CDC5BF
chocolatechocolatergb(210, 105, 30)#D2691E
chocolate1chocolate1rgb(255, 127, 36)#FF7F24
chocolate2chocolate2rgb(238, 118, 33)#EE7621
chocolate3chocolate3rgb(205, 102, 29)#CD661D
chocolate4chocolate4rgb(139, 69, 19)#8B4513
SaddleBrownSaddleBrownrgb(139, 69, 19)#8B4513
seashellseashellrgb(255, 245, 238)#FFF5EE
seashell1seashell1rgb(255, 245, 238)#FFF5EE
sienna4sienna4rgb(139, 71, 38)#8B4726
siennasiennargb(160, 82, 45)#A0522D
sienna1sienna1rgb(255, 130, 71)#FF8247
sienna2sienna2rgb(238, 121, 66)#EE7942
sienna3sienna3rgb(205, 104, 57)#CD6839
LightSalmon3LightSalmon3rgb(205, 129, 98)#CD8162
LightSalmonLightSalmonrgb(255, 160, 122)#FFA07A
LightSalmon1LightSalmon1rgb(255, 160, 122)#FFA07A
LightSalmon4LightSalmon4rgb(139, 87, 66)#8B5742
LightSalmon2LightSalmon2rgb(238, 149, 114)#EE9572
coralcoralrgb(255, 127, 80)#FF7F50
OrangeRedOrangeRedrgb(255, 69, 0)#FF4500
OrangeRed1OrangeRed1rgb(255, 69, 0)#FF4500
OrangeRed2OrangeRed2rgb(238, 64, 0)#EE4000
OrangeRed3OrangeRed3rgb(205, 55, 0)#CD3700
OrangeRed4OrangeRed4rgb(139, 37, 0)#8B2500
DarkSalmonDarkSalmonrgb(233, 150, 122)#E9967A
salmon1salmon1rgb(255, 140, 105)#FF8C69
salmon2salmon2rgb(238, 130, 98)#EE8262
salmon3salmon3rgb(205, 112, 84)#CD7054
salmon4salmon4rgb(139, 76, 57)#8B4C39
coral1coral1rgb(255, 114, 86)#FF7256
coral2coral2rgb(238, 106, 80)#EE6A50
coral3coral3rgb(205, 91, 69)#CD5B45
coral4coral4rgb(139, 62, 47)#8B3E2F
tomato4tomato4rgb(139, 54, 38)#8B3626
tomatotomatorgb(255, 99, 71)#FF6347
tomato1tomato1rgb(255, 99, 71)#FF6347
tomato2tomato2rgb(238, 92, 66)#EE5C42
tomato3tomato3rgb(205, 79, 57)#CD4F39
MistyRose4MistyRose4rgb(139, 125, 123)#8B7D7B
MistyRose2MistyRose2rgb(238, 213, 210)#EED5D2
MistyRoseMistyRosergb(255, 228, 225)#FFE4E1
MistyRose1MistyRose1rgb(255, 228, 225)#FFE4E1
salmonsalmonrgb(250, 128, 114)#FA8072
MistyRose3MistyRose3rgb(205, 183, 181)#CDB7B5
whitewhitergb(255, 255, 255)#FFFFFF
gray100gray100rgb(255, 255, 255)#FFFFFF
grey100grey100rgb(255, 255, 255)#FFFFFF
grey100grey100rgb(255, 255, 255)#FFFFFF
gray99gray99rgb(252, 252, 252)#FCFCFC
grey99grey99rgb(252, 252, 252)#FCFCFC
gray98gray98rgb(250, 250, 250)#FAFAFA
grey98grey98rgb(250, 250, 250)#FAFAFA
gray97gray97rgb(247, 247, 247)#F7F7F7
grey97grey97rgb(247, 247, 247)#F7F7F7
gray96gray96rgb(245, 245, 245)#F5F5F5
grey96grey96rgb(245, 245, 245)#F5F5F5
WhiteSmokeWhiteSmokergb(245, 245, 245)#F5F5F5
gray95gray95rgb(242, 242, 242)#F2F2F2
grey95grey95rgb(242, 242, 242)#F2F2F2
gray94gray94rgb(240, 240, 240)#F0F0F0
grey94grey94rgb(240, 240, 240)#F0F0F0
gray93gray93rgb(237, 237, 237)#EDEDED
grey93grey93rgb(237, 237, 237)#EDEDED
gray92gray92rgb(235, 235, 235)#EBEBEB
grey92grey92rgb(235, 235, 235)#EBEBEB
gray91gray91rgb(232, 232, 232)#E8E8E8
grey91grey91rgb(232, 232, 232)#E8E8E8
gray90gray90rgb(229, 229, 229)#E5E5E5
grey90grey90rgb(229, 229, 229)#E5E5E5
gray89gray89rgb(227, 227, 227)#E3E3E3
grey89grey89rgb(227, 227, 227)#E3E3E3
gray88gray88rgb(224, 224, 224)#E0E0E0
grey88grey88rgb(224, 224, 224)#E0E0E0
gray87gray87rgb(222, 222, 222)#DEDEDE
grey87grey87rgb(222, 222, 222)#DEDEDE
gainsborogainsbororgb(220, 220, 220)#DCDCDC
gray86gray86rgb(219, 219, 219)#DBDBDB
grey86grey86rgb(219, 219, 219)#DBDBDB
gray85gray85rgb(217, 217, 217)#D9D9D9
grey85grey85rgb(217, 217, 217)#D9D9D9
gray84gray84rgb(214, 214, 214)#D6D6D6
grey84grey84rgb(214, 214, 214)#D6D6D6
gray83gray83rgb(212, 212, 212)#D4D4D4
grey83grey83rgb(212, 212, 212)#D4D4D4
LightGrayLightGrayrgb(211, 211, 211)#D3D3D3
LightGreyLightGreyrgb(211, 211, 211)#D3D3D3
gray82gray82rgb(209, 209, 209)#D1D1D1
grey82grey82rgb(209, 209, 209)#D1D1D1
gray81gray81rgb(207, 207, 207)#CFCFCF
grey81grey81rgb(207, 207, 207)#CFCFCF
gray80gray80rgb(204, 204, 204)#CCCCCC
grey80grey80rgb(204, 204, 204)#CCCCCC
gray79gray79rgb(201, 201, 201)#C9C9C9
grey79grey79rgb(201, 201, 201)#C9C9C9
gray78gray78rgb(199, 199, 199)#C7C7C7
grey78grey78rgb(199, 199, 199)#C7C7C7
gray77gray77rgb(196, 196, 196)#C4C4C4
grey77grey77rgb(196, 196, 196)#C4C4C4
gray76gray76rgb(194, 194, 194)#C2C2C2
grey76grey76rgb(194, 194, 194)#C2C2C2
silversilverrgb(192, 192, 192)#C0C0C0
gray75gray75rgb(191, 191, 191)#BFBFBF
grey75grey75rgb(191, 191, 191)#BFBFBF
gray74gray74rgb(189, 189, 189)#BDBDBD
grey74grey74rgb(189, 189, 189)#BDBDBD
gray73gray73rgb(186, 186, 186)#BABABA
grey73grey73rgb(186, 186, 186)#BABABA
gray72gray72rgb(184, 184, 184)#B8B8B8
grey72grey72rgb(184, 184, 184)#B8B8B8
gray71gray71rgb(181, 181, 181)#B5B5B5
grey71grey71rgb(181, 181, 181)#B5B5B5
gray70gray70rgb(179, 179, 179)#B3B3B3
grey70grey70rgb(179, 179, 179)#B3B3B3
gray69gray69rgb(176, 176, 176)#B0B0B0
grey69grey69rgb(176, 176, 176)#B0B0B0
gray68gray68rgb(173, 173, 173)#ADADAD
grey68grey68rgb(173, 173, 173)#ADADAD
gray67gray67rgb(171, 171, 171)#ABABAB
grey67grey67rgb(171, 171, 171)#ABABAB
DarkGrayDarkGrayrgb(169, 169, 169)#A9A9A9
DarkGreyDarkGreyrgb(169, 169, 169)#A9A9A9
gray66gray66rgb(168, 168, 168)#A8A8A8
grey66grey66rgb(168, 168, 168)#A8A8A8
gray65gray65rgb(166, 166, 166)#A6A6A6
grey65grey65rgb(166, 166, 166)#A6A6A6
gray64gray64rgb(163, 163, 163)#A3A3A3
grey64grey64rgb(163, 163, 163)#A3A3A3
gray63gray63rgb(161, 161, 161)#A1A1A1
grey63grey63rgb(161, 161, 161)#A1A1A1
gray62gray62rgb(158, 158, 158)#9E9E9E
grey62grey62rgb(158, 158, 158)#9E9E9E
gray61gray61rgb(156, 156, 156)#9C9C9C
grey61grey61rgb(156, 156, 156)#9C9C9C
gray60gray60rgb(153, 153, 153)#999999
grey60grey60rgb(153, 153, 153)#999999
gray59gray59rgb(150, 150, 150)#969696
grey59grey59rgb(150, 150, 150)#969696
gray58gray58rgb(148, 148, 148)#949494
grey58grey58rgb(148, 148, 148)#949494
gray57gray57rgb(145, 145, 145)#919191
grey57grey57rgb(145, 145, 145)#919191
gray56gray56rgb(143, 143, 143)#8F8F8F
grey56grey56rgb(143, 143, 143)#8F8F8F
gray55gray55rgb(140, 140, 140)#8C8C8C
grey55grey55rgb(140, 140, 140)#8C8C8C
gray54gray54rgb(138, 138, 138)#8A8A8A
grey54grey54rgb(138, 138, 138)#8A8A8A
gray53gray53rgb(135, 135, 135)#878787
grey53grey53rgb(135, 135, 135)#878787
gray52gray52rgb(133, 133, 133)#858585
grey52grey52rgb(133, 133, 133)#858585
gray51gray51rgb(130, 130, 130)#828282
grey51grey51rgb(130, 130, 130)#828282
fractalfractalrgb(128, 128, 128)#808080
gray50gray50rgb(127, 127, 127)#7F7F7F
grey50grey50rgb(127, 127, 127)#7F7F7F
graygrayrgb(126, 126, 126)#7E7E7E
gray49gray49rgb(125, 125, 125)#7D7D7D
grey49grey49rgb(125, 125, 125)#7D7D7D
gray48gray48rgb(122, 122, 122)#7A7A7A
grey48grey48rgb(122, 122, 122)#7A7A7A
gray47gray47rgb(120, 120, 120)#787878
grey47grey47rgb(120, 120, 120)#787878
gray46gray46rgb(117, 117, 117)#757575
grey46grey46rgb(117, 117, 117)#757575
gray45gray45rgb(115, 115, 115)#737373
grey45grey45rgb(115, 115, 115)#737373
gray44gray44rgb(112, 112, 112)#707070
grey44grey44rgb(112, 112, 112)#707070
gray43gray43rgb(110, 110, 110)#6E6E6E
grey43grey43rgb(110, 110, 110)#6E6E6E
gray42gray42rgb(107, 107, 107)#6B6B6B
grey42grey42rgb(107, 107, 107)#6B6B6B
DimGrayDimGrayrgb(105, 105, 105)#696969
DimGreyDimGreyrgb(105, 105, 105)#696969
gray41gray41rgb(105, 105, 105)#696969
grey41grey41rgb(105, 105, 105)#696969
gray40gray40rgb(102, 102, 102)#666666
grey40grey40rgb(102, 102, 102)#666666
gray39gray39rgb( 99, 99, 99)#636363
grey39grey39rgb( 99, 99, 99)#636363
gray38gray38rgb( 97, 97, 97)#616161
grey38grey38rgb( 97, 97, 97)#616161
gray37gray37rgb( 94, 94, 94)#5E5E5E
grey37grey37rgb( 94, 94, 94)#5E5E5E
gray36gray36rgb( 92, 92, 92)#5C5C5C
grey36grey36rgb( 92, 92, 92)#5C5C5C
gray35gray35rgb( 89, 89, 89)#595959
grey35grey35rgb( 89, 89, 89)#595959
gray34gray34rgb( 87, 87, 87)#575757
grey34grey34rgb( 87, 87, 87)#575757
gray33gray33rgb( 84, 84, 84)#545454
grey33grey33rgb( 84, 84, 84)#545454
gray32gray32rgb( 82, 82, 82)#525252
grey32grey32rgb( 82, 82, 82)#525252
gray31gray31rgb( 79, 79, 79)#4F4F4F
grey31grey31rgb( 79, 79, 79)#4F4F4F
gray30gray30rgb( 77, 77, 77)#4D4D4D
grey30grey30rgb( 77, 77, 77)#4D4D4D
gray29gray29rgb( 74, 74, 74)#4A4A4A
grey29grey29rgb( 74, 74, 74)#4A4A4A
gray28gray28rgb( 71, 71, 71)#474747
grey28grey28rgb( 71, 71, 71)#474747
gray27gray27rgb( 69, 69, 69)#454545
grey27grey27rgb( 69, 69, 69)#454545
gray26gray26rgb( 66, 66, 66)#424242
grey26grey26rgb( 66, 66, 66)#424242
gray25gray25rgb( 64, 64, 64)#404040
grey25grey25rgb( 64, 64, 64)#404040
gray24gray24rgb( 61, 61, 61)#3D3D3D
grey24grey24rgb( 61, 61, 61)#3D3D3D
gray23gray23rgb( 59, 59, 59)#3B3B3B
grey23grey23rgb( 59, 59, 59)#3B3B3B
gray22gray22rgb( 56, 56, 56)#383838
grey22grey22rgb( 56, 56, 56)#383838
gray21gray21rgb( 54, 54, 54)#363636
grey21grey21rgb( 54, 54, 54)#363636
gray20gray20rgb( 51, 51, 51)#333333
grey20grey20rgb( 51, 51, 51)#333333
gray19gray19rgb( 48, 48, 48)#303030
grey19grey19rgb( 48, 48, 48)#303030
gray18gray18rgb( 46, 46, 46)#2E2E2E
grey18grey18rgb( 46, 46, 46)#2E2E2E
gray17gray17rgb( 43, 43, 43)#2B2B2B
grey17grey17rgb( 43, 43, 43)#2B2B2B
gray16gray16rgb( 41, 41, 41)#292929
grey16grey16rgb( 41, 41, 41)#292929
gray15gray15rgb( 38, 38, 38)#262626
grey15grey15rgb( 38, 38, 38)#262626
gray14gray14rgb( 36, 36, 36)#242424
grey14grey14rgb( 36, 36, 36)#242424
gray13gray13rgb( 33, 33, 33)#212121
grey13grey13rgb( 33, 33, 33)#212121
gray12gray12rgb( 31, 31, 31)#1F1F1F
grey12grey12rgb( 31, 31, 31)#1F1F1F
gray11gray11rgb( 28, 28, 28)#1C1C1C
grey11grey11rgb( 28, 28, 28)#1C1C1C
gray10gray10rgb( 26, 26, 26)#1A1A1A
grey10grey10rgb( 26, 26, 26)#1A1A1A
gray9gray9rgb( 23, 23, 23)#171717
grey9grey9rgb( 23, 23, 23)#171717
gray8gray8rgb( 20, 20, 20)#141414
grey8grey8rgb( 20, 20, 20)#141414
gray7gray7rgb( 18, 18, 18)#121212
grey7grey7rgb( 18, 18, 18)#121212
gray6gray6rgb( 15, 15, 15)#0F0F0F
grey6grey6rgb( 15, 15, 15)#0F0F0F
gray5gray5rgb( 13, 13, 13)#0D0D0D
grey5grey5rgb( 13, 13, 13)#0D0D0D
gray4gray4rgb( 10, 10, 10)#0A0A0A
grey4grey4rgb( 10, 10, 10)#0A0A0A
gray3gray3rgb( 8, 8, 8)#080808
grey3grey3rgb( 8, 8, 8)#080808
gray2gray2rgb( 5, 5, 5)#050505
grey2grey2rgb( 5, 5, 5)#050505
gray1gray1rgb( 3, 3, 3)#030303
grey1grey1rgb( 3, 3, 3)#030303
blackblackrgb( 0, 0, 0)#000000
gray0gray0rgb( 0, 0, 0)#000000
grey0grey0rgb( 0, 0, 0)#000000
opaqueopaquergb( 0, 0, 0)#000000
nonenonergba( 0, 0, 0, 0.0)#00000000
transparenttransparentrgba( 0, 0, 0, 0.0)#00000000
+ +
+ +
+ + diff --git a/frontend/imgrid/colors/junk/colorsbest.html b/frontend/imgrid/colors/junk/colorsbest.html new file mode 100755 index 0000000..047eb6b --- /dev/null +++ b/frontend/imgrid/colors/junk/colorsbest.html @@ -0,0 +1,3606 @@ + + + + +
+
+snow
+
+snow1
+
+snow2
+
+RosyBrown1
+
+RosyBrown2
+
+snow3
+
+LightCoral
+
+IndianRed1
+
+RosyBrown3
+
+IndianRed2
+
+RosyBrown
+
+brown1
+
+firebrick1
+
+brown2
+
+IndianRed
+
+IndianRed3
+
+firebrick2
+
+snow4
+
+brown3
+
+red
+
+red1
+
+RosyBrown4
+
+firebrick3
+
+red2
+
+firebrick
+
+brown
+
+red3
+
+IndianRed4
+
+brown4
+
+firebrick4
+
+DarkRed
+
+red4
+
+maroon
+
+LightPink1
+
+LightPink3
+
+LightPink4
+
+LightPink2
+
+LightPink
+
+pink
+
+crimson
+
+pink1
+
+pink2
+
+pink3
+
+pink4
+
+PaleVioletRed4
+
+PaleVioletRed
+
+PaleVioletRed2
+
+PaleVioletRed1
+
+PaleVioletRed3
+
+LavenderBlush
+
+LavenderBlush1
+
+LavenderBlush3
+
+LavenderBlush2
+
+LavenderBlush4
+
+maroon
+
+HotPink3
+
+VioletRed3
+
+VioletRed1
+
+VioletRed2
+
+VioletRed4
+
+HotPink2
+
+HotPink1
+
+HotPink4
+
+HotPink
+
+DeepPink
+
+DeepPink1
+
+DeepPink2
+
+DeepPink3
+
+DeepPink4
+
+maroon1
+
+maroon2
+
+maroon3
+
+maroon4
+
+MediumVioletRed
+
+VioletRed
+
+orchid2
+
+orchid
+
+orchid1
+
+orchid3
+
+orchid4
+
+thistle1
+
+thistle2
+
+plum1
+
+plum2
+
+thistle
+
+thistle3
+
+plum
+
+violet
+
+plum3
+
+thistle4
+
+fuchsia
+
+magenta
+
+magenta1
+
+plum4
+
+magenta2
+
+magenta3
+
+DarkMagenta
+
+magenta4
+
+purple
+
+MediumOrchid
+
+MediumOrchid1
+
+MediumOrchid2
+
+MediumOrchid3
+
+MediumOrchid4
+
+DarkViolet
+
+DarkOrchid
+
+DarkOrchid1
+
+DarkOrchid3
+
+DarkOrchid2
+
+DarkOrchid4
+
+purple
+
+indigo
+
+BlueViolet
+
+purple2
+
+purple3
+
+purple4
+
+purple1
+
+MediumPurple
+
+MediumPurple1
+
+MediumPurple2
+
+MediumPurple3
+
+MediumPurple4
+
+DarkSlateBlue
+
+LightSlateBlue
+
+MediumSlateBlue
+
+SlateBlue
+
+SlateBlue1
+
+SlateBlue2
+
+SlateBlue3
+
+SlateBlue4
+
+GhostWhite
+
+lavender
+
+blue
+
+blue1
+
+blue2
+
+blue3
+
+MediumBlue
+
+blue4
+
+DarkBlue
+
+MidnightBlue
+
+navy
+
+NavyBlue
+
+RoyalBlue
+
+RoyalBlue1
+
+RoyalBlue2
+
+RoyalBlue3
+
+RoyalBlue4
+
+CornflowerBlue
+
+LightSteelBlue
+
+LightSteelBlue1
+
+LightSteelBlue2
+
+LightSteelBlue3
+
+LightSteelBlue4
+
+SlateGray4
+
+SlateGray1
+
+SlateGray2
+
+SlateGray3
+
+LightSlateGray
+
+LightSlateGrey
+
+SlateGray
+
+SlateGrey
+
+DodgerBlue
+
+DodgerBlue1
+
+DodgerBlue2
+
+DodgerBlue4
+
+DodgerBlue3
+
+AliceBlue
+
+SteelBlue4
+
+SteelBlue
+
+SteelBlue1
+
+SteelBlue2
+
+SteelBlue3
+
+SkyBlue4
+
+SkyBlue1
+
+SkyBlue2
+
+SkyBlue3
+
+LightSkyBlue
+
+LightSkyBlue4
+
+LightSkyBlue1
+
+LightSkyBlue2
+
+LightSkyBlue3
+
+SkyBlue
+
+LightBlue3
+
+DeepSkyBlue
+
+DeepSkyBlue1
+
+DeepSkyBlue2
+
+DeepSkyBlue4
+
+DeepSkyBlue3
+
+LightBlue1
+
+LightBlue2
+
+LightBlue
+
+LightBlue4
+
+PowderBlue
+
+CadetBlue1
+
+CadetBlue2
+
+CadetBlue3
+
+CadetBlue4
+
+turquoise1
+
+turquoise2
+
+turquoise3
+
+turquoise4
+
+cadet blue
+
+CadetBlue
+
+DarkTurquoise
+
+azure
+
+azure1
+
+LightCyan
+
+LightCyan1
+
+azure2
+
+LightCyan2
+
+PaleTurquoise1
+
+PaleTurquoise
+
+PaleTurquoise2
+
+DarkSlateGray1
+
+azure3
+
+LightCyan3
+
+DarkSlateGray2
+
+PaleTurquoise3
+
+DarkSlateGray3
+
+azure4
+
+LightCyan4
+
+aqua
+
+cyan
+
+cyan1
+
+PaleTurquoise4
+
+cyan2
+
+DarkSlateGray4
+
+cyan3
+
+cyan4
+
+DarkCyan
+
+teal
+
+DarkSlateGray
+
+DarkSlateGrey
+
+MediumTurquoise
+
+LightSeaGreen
+
+turquoise
+
+aquamarine4
+
+aquamarine
+
+aquamarine1
+
+aquamarine2
+
+aquamarine3
+
+MediumAquamarine
+
+MediumSpringGreen
+
+MintCream
+
+SpringGreen
+
+SpringGreen1
+
+SpringGreen2
+
+SpringGreen3
+
+SpringGreen4
+
+MediumSeaGreen
+
+SeaGreen
+
+SeaGreen3
+
+SeaGreen1
+
+SeaGreen4
+
+SeaGreen2
+
+MediumForestGreen
+
+honeydew
+
+honeydew1
+
+honeydew2
+
+DarkSeaGreen1
+
+DarkSeaGreen2
+
+PaleGreen1
+
+PaleGreen
+
+honeydew3
+
+LightGreen
+
+PaleGreen2
+
+DarkSeaGreen3
+
+DarkSeaGreen
+
+PaleGreen3
+
+honeydew4
+
+green1
+
+lime
+
+LimeGreen
+
+DarkSeaGreen4
+
+green2
+
+PaleGreen4
+
+green3
+
+ForestGreen
+
+green4
+
+green
+
+DarkGreen
+
+LawnGreen
+
+chartreuse
+
+chartreuse1
+
+chartreuse2
+
+chartreuse3
+
+chartreuse4
+
+GreenYellow
+
+DarkOliveGreen3
+
+DarkOliveGreen1
+
+DarkOliveGreen2
+
+DarkOliveGreen4
+
+DarkOliveGreen
+
+OliveDrab
+
+OliveDrab1
+
+OliveDrab2
+
+OliveDrab3
+
+YellowGreen
+
+OliveDrab4
+
+ivory
+
+ivory1
+
+LightYellow
+
+LightYellow1
+
+beige
+
+ivory2
+
+LightGoldenrodYellow
+
+LightYellow2
+
+ivory3
+
+LightYellow3
+
+ivory4
+
+LightYellow4
+
+yellow
+
+yellow1
+
+yellow2
+
+yellow3
+
+yellow4
+
+olive
+
+DarkKhaki
+
+khaki2
+
+LemonChiffon4
+
+khaki1
+
+khaki3
+
+khaki4
+
+PaleGoldenrod
+
+LemonChiffon
+
+LemonChiffon1
+
+khaki
+
+LemonChiffon3
+
+LemonChiffon2
+
+MediumGoldenRod
+
+cornsilk4
+
+gold
+
+gold1
+
+gold2
+
+gold3
+
+gold4
+
+LightGoldenrod
+
+LightGoldenrod4
+
+LightGoldenrod1
+
+LightGoldenrod3
+
+LightGoldenrod2
+
+cornsilk3
+
+cornsilk2
+
+cornsilk
+
+cornsilk1
+
+goldenrod
+
+goldenrod1
+
+goldenrod2
+
+goldenrod3
+
+goldenrod4
+
+DarkGoldenrod
+
+DarkGoldenrod1
+
+DarkGoldenrod2
+
+DarkGoldenrod3
+
+DarkGoldenrod4
+
+FloralWhite
+
+wheat2
+
+OldLace
+
+wheat
+
+wheat1
+
+wheat3
+
+orange
+
+orange1
+
+orange2
+
+orange3
+
+orange4
+
+wheat4
+
+moccasin
+
+PapayaWhip
+
+NavajoWhite3
+
+BlanchedAlmond
+
+NavajoWhite
+
+NavajoWhite1
+
+NavajoWhite2
+
+NavajoWhite4
+
+AntiqueWhite4
+
+AntiqueWhite
+
+tan
+
+bisque4
+
+burlywood
+
+AntiqueWhite2
+
+burlywood1
+
+burlywood3
+
+burlywood2
+
+AntiqueWhite1
+
+burlywood4
+
+AntiqueWhite3
+
+DarkOrange
+
+bisque2
+
+bisque
+
+bisque1
+
+bisque3
+
+DarkOrange1
+
+linen
+
+DarkOrange2
+
+DarkOrange3
+
+DarkOrange4
+
+peru
+
+tan1
+
+tan2
+
+tan3
+
+tan4
+
+PeachPuff
+
+PeachPuff1
+
+PeachPuff4
+
+PeachPuff2
+
+PeachPuff3
+
+SandyBrown
+
+seashell4
+
+seashell2
+
+seashell3
+
+chocolate
+
+chocolate1
+
+chocolate2
+
+chocolate3
+
+chocolate4
+
+SaddleBrown
+
+seashell
+
+seashell1
+
+sienna4
+
+sienna
+
+sienna1
+
+sienna2
+
+sienna3
+
+LightSalmon3
+
+LightSalmon
+
+LightSalmon1
+
+LightSalmon4
+
+LightSalmon2
+
+coral
+
+OrangeRed
+
+OrangeRed1
+
+OrangeRed2
+
+OrangeRed3
+
+OrangeRed4
+
+DarkSalmon
+
+salmon1
+
+salmon2
+
+salmon3
+
+salmon4
+
+coral1
+
+coral2
+
+coral3
+
+coral4
+
+tomato4
+
+tomato
+
+tomato1
+
+tomato2
+
+tomato3
+
+MistyRose4
+
+MistyRose2
+
+MistyRose
+
+MistyRose1
+
+salmon
+
+MistyRose3
+
+white
+
+gray100
+
+grey100
+
+grey100
+
+gray99
+
+grey99
+
+gray98
+
+grey98
+
+gray97
+
+grey97
+
+gray96
+
+grey96
+
+WhiteSmoke
+
+gray95
+
+grey95
+
+gray94
+
+grey94
+
+gray93
+
+grey93
+
+gray92
+
+grey92
+
+gray91
+
+grey91
+
+gray90
+
+grey90
+
+gray89
+
+grey89
+
+gray88
+
+grey88
+
+gray87
+
+grey87
+
+gainsboro
+
+gray86
+
+grey86
+
+gray85
+
+grey85
+
+gray84
+
+grey84
+
+gray83
+
+grey83
+
+LightGray
+
+LightGrey
+
+gray82
+
+grey82
+
+gray81
+
+grey81
+
+gray80
+
+grey80
+
+gray79
+
+grey79
+
+gray78
+
+grey78
+
+gray77
+
+grey77
+
+gray76
+
+grey76
+
+silver
+
+gray75
+
+grey75
+
+gray74
+
+grey74
+
+gray73
+
+grey73
+
+gray72
+
+grey72
+
+gray71
+
+grey71
+
+gray70
+
+grey70
+
+gray69
+
+grey69
+
+gray68
+
+grey68
+
+gray67
+
+grey67
+
+DarkGray
+
+DarkGrey
+
+gray66
+
+grey66
+
+gray65
+
+grey65
+
+gray64
+
+grey64
+
+gray63
+
+grey63
+
+gray62
+
+grey62
+
+gray61
+
+grey61
+
+gray60
+
+grey60
+
+gray59
+
+grey59
+
+gray58
+
+grey58
+
+gray57
+
+grey57
+
+gray56
+
+grey56
+
+gray55
+
+grey55
+
+gray54
+
+grey54
+
+gray53
+
+grey53
+
+gray52
+
+grey52
+
+gray51
+
+grey51
+
+fractal
+
+gray50
+
+grey50
+
+gray
+
+gray49
+
+grey49
+
+gray48
+
+grey48
+
+gray47
+
+grey47
+
+gray46
+
+grey46
+
+gray45
+
+grey45
+
+gray44
+
+grey44
+
+gray43
+
+grey43
+
+gray42
+
+grey42
+
+DimGray
+
+DimGrey
+
+gray41
+
+grey41
+
+gray40
+
+grey40
+
+gray39
+
+grey39
+
+gray38
+
+grey38
+
+gray37
+
+grey37
+
+gray36
+
+grey36
+
+gray35
+
+grey35
+
+gray34
+
+grey34
+
+gray33
+
+grey33
+
+gray32
+
+grey32
+
+gray31
+
+grey31
+
+gray30
+
+grey30
+
+gray29
+
+grey29
+
+gray28
+
+grey28
+
+gray27
+
+grey27
+
+gray26
+
+grey26
+
+gray25
+
+grey25
+
+gray24
+
+grey24
+
+gray23
+
+grey23
+
+gray22
+
+grey22
+
+gray21
+
+grey21
+
+gray20
+
+grey20
+
+gray19
+
+grey19
+
+gray18
+
+grey18
+
+gray17
+
+grey17
+
+gray16
+
+grey16
+
+gray15
+
+grey15
+
+gray14
+
+grey14
+
+gray13
+
+grey13
+
+gray12
+
+grey12
+
+gray11
+
+grey11
+
+gray10
+
+grey10
+
+gray9
+
+grey9
+
+gray8
+
+grey8
+
+gray7
+
+grey7
+
+gray6
+
+grey6
+
+gray5
+
+grey5
+
+gray4
+
+grey4
+
+gray3
+
+grey3
+
+gray2
+
+grey2
+
+gray1
+
+grey1
+
+black
+
+gray0
+
+grey0
+
+opaque
+
+none
+
+transparent
+
+ +
+WHERE THE COLORNAMES WILL GO +
+ +
CLICK TO SHOW HEXES
+
CLICK TO SHOW INFO
+ + + + + + + diff --git a/frontend/imgrid/colors/junk/divlist.js b/frontend/imgrid/colors/junk/divlist.js new file mode 100755 index 0000000..49ee990 --- /dev/null +++ b/frontend/imgrid/colors/junk/divlist.js @@ -0,0 +1,2 @@ +var divlist = ['#d0', '#d1', '#d2', '#d3', '#d4', '#d5', '#d6', '#d7', '#d8', '#d9', '#d10', '#d11', '#d12', '#d13', '#d14', '#d15', '#d16', '#d17', '#d18', '#d19', '#d20', '#d21', '#d22', '#d23', '#d24', '#d25', '#d26', '#d27', '#d28', '#d29', '#d30', '#d31', '#d32', '#d33', '#d34', '#d35', '#d36', '#d37', '#d38', '#d39', '#d40', '#d41', '#d42', '#d43', '#d44', '#d45', '#d46', '#d47', '#d48', '#d49', '#d50', '#d51', '#d52', '#d53', '#d54', '#d55', '#d56', '#d57', '#d58', '#d59', '#d60', '#d61', '#d62', '#d63', '#d64', '#d65', '#d66', '#d67', '#d68', '#d69', '#d70', '#d71', '#d72', '#d73', '#d74', '#d75', '#d76', '#d77', '#d78', '#d79', '#d80', '#d81', '#d82', '#d83', '#d84', '#d85', '#d86', '#d87', '#d88', '#d89', '#d90', '#d91', '#d92', '#d93', '#d94', '#d95', '#d96', '#d97', '#d98', '#d99', '#d100', '#d101', '#d102', '#d103', '#d104', '#d105', '#d106', '#d107', '#d108', '#d109', '#d110', '#d111', '#d112', '#d113', '#d114', '#d115', '#d116', '#d117', '#d118', '#d119', '#d120', '#d121', '#d122', '#d123', '#d124', '#d125', '#d126', '#d127', '#d128', '#d129', '#d130', '#d131', '#d132', '#d133', '#d134', '#d135', '#d136', '#d137', '#d138', '#d139', '#d140', '#d141', '#d142', '#d143', '#d144', '#d145', '#d146', '#d147', '#d148', '#d149', '#d150', '#d151', '#d152', '#d153', '#d154', '#d155', '#d156', '#d157', '#d158', '#d159', '#d160', '#d161', '#d162', '#d163', '#d164', '#d165', '#d166', '#d167', '#d168', '#d169', '#d170', '#d171', '#d172', '#d173', '#d174', '#d175', '#d176', '#d177', '#d178', '#d179', '#d180', '#d181', '#d182', '#d183', '#d184', '#d185', '#d186', '#d187', '#d188', '#d189', '#d190', '#d191', '#d192', '#d193', '#d194', '#d195', '#d196', '#d197', '#d198', '#d199', '#d200', '#d201', '#d202', '#d203', '#d204', '#d205', '#d206', '#d207', '#d208', '#d209', '#d210', '#d211', '#d212', '#d213', '#d214', '#d215', '#d216', '#d217', '#d218', '#d219', '#d220', '#d221', '#d222', '#d223', '#d224', '#d225', '#d226', '#d227', '#d228', '#d229', '#d230', '#d231', '#d232', '#d233', '#d234', '#d235', '#d236', '#d237', '#d238', '#d239', '#d240', '#d241', '#d242', '#d243', '#d244', '#d245', '#d246', '#d247', '#d248', '#d249', '#d250', '#d251', '#d252', '#d253', '#d254', '#d255', '#d256', '#d257', '#d258', '#d259', '#d260', '#d261', '#d262', '#d263', '#d264', '#d265', '#d266', '#d267', '#d268', '#d269', '#d270', '#d271', '#d272', '#d273', '#d274', '#d275', '#d276', '#d277', '#d278', '#d279', '#d280', '#d281', '#d282', '#d283', '#d284', '#d285', '#d286', '#d287', '#d288', '#d289', '#d290', '#d291', '#d292', '#d293', '#d294', '#d295', '#d296', '#d297', '#d298', '#d299', '#d300', '#d301', '#d302', '#d303', '#d304', '#d305', '#d306', '#d307', '#d308', '#d309', '#d310', '#d311', '#d312', '#d313', '#d314', '#d315', '#d316', '#d317', '#d318', '#d319', '#d320', '#d321', '#d322', '#d323', '#d324', '#d325', '#d326', '#d327', '#d328', '#d329', '#d330', '#d331', '#d332', '#d333', '#d334', '#d335', '#d336', '#d337', '#d338', '#d339', '#d340', '#d341', '#d342', '#d343', '#d344', '#d345', '#d346', '#d347', '#d348', '#d349', '#d350', '#d351', '#d352', '#d353', '#d354', '#d355', '#d356', '#d357', '#d358', '#d359', '#d360', '#d361', '#d362', '#d363', '#d364', '#d365', '#d366', '#d367', '#d368', '#d369', '#d370', '#d371', '#d372', '#d373', '#d374', '#d375', '#d376', '#d377', '#d378', '#d379', '#d380', '#d381', '#d382', '#d383', '#d384', '#d385', '#d386', '#d387', '#d388', '#d389', '#d390', '#d391', '#d392', '#d393', '#d394', '#d395', '#d396', '#d397', '#d398', '#d399', '#d400', '#d401', '#d402', '#d403', '#d404', '#d405', '#d406', '#d407', '#d408', '#d409', '#d410', '#d411', '#d412', '#d413', '#d414', '#d415', '#d416', '#d417', '#d418', '#d419', '#d420', '#d421', '#d422', '#d423', '#d424', '#d425', '#d426', '#d427', '#d428', '#d429', '#d430', '#d431', '#d432', '#d433', '#d434', '#d435', '#d436', '#d437', '#d438', '#d439', '#d440', '#d441', '#d442', '#d443', '#d444', '#d445', '#d446', '#d447', '#d448', '#d449', '#d450', '#d451', '#d452', '#d453', '#d454', '#d455', '#d456', '#d457', '#d458', '#d459', '#d460', '#d461', '#d462', '#d463', '#d464', '#d465', '#d466', '#d467', '#d468', '#d469', '#d470', '#d471', '#d472', '#d473', '#d474', '#d475', '#d476', '#d477', '#d478', '#d479', '#d480', '#d481', '#d482', '#d483', '#d484', '#d485', '#d486', '#d487', '#d488', '#d489', '#d490', '#d491', '#d492', '#d493', '#d494', '#d495', '#d496', '#d497', '#d498', '#d499', '#d500', '#d501', '#d502', '#d503', '#d504', '#d505', '#d506', '#d507', '#d508', '#d509', '#d510', '#d511', '#d512', '#d513', '#d514', '#d515', '#d516', '#d517', '#d518', '#d519', '#d520', '#d521', '#d522', '#d523', '#d524', '#d525', '#d526', '#d527', '#d528', '#d529', '#d530', '#d531', '#d532', '#d533', '#d534', '#d535', '#d536', '#d537', '#d538', '#d539', '#d540', '#d541', '#d542', '#d543', '#d544', '#d545', '#d546', '#d547', '#d548', '#d549', '#d550', '#d551', '#d552', '#d553', '#d554', '#d555', '#d556', '#d557', '#d558', '#d559', '#d560', '#d561', '#d562', '#d563', '#d564', '#d565', '#d566', '#d567', '#d568', '#d569', '#d570', '#d571', '#d572', '#d573', '#d574', '#d575', '#d576', '#d577', '#d578', '#d579', '#d580', '#d581', '#d582', '#d583', '#d584', '#d585', '#d586', '#d587', '#d588', '#d589', '#d590', '#d591', '#d592', '#d593', '#d594', '#d595', '#d596', '#d597', '#d598', '#d599', '#d600', '#d601', '#d602', '#d603', '#d604', '#d605', '#d606', '#d607', '#d608', '#d609', '#d610', '#d611', '#d612', '#d613', '#d614', '#d615', '#d616', '#d617', '#d618', '#d619', '#d620', '#d621', '#d622', '#d623', '#d624', '#d625', '#d626', '#d627', '#d628', '#d629', '#d630', '#d631', '#d632', '#d633', '#d634', '#d635', '#d636', '#d637', '#d638', '#d639', '#d640', '#d641', '#d642', '#d643', '#d644', '#d645', '#d646', '#d647', '#d648', '#d649', '#d650', '#d651', '#d652', '#d653', '#d654', '#d655', '#d656', '#d657', '#d658', '#d659', '#d660', '#d661', '#d662', '#d663', '#d664', '#d665', '#d666', '#d667', '#d668', '#d669', '#d670', '#d671', '#d672', '#d673'] +var divtoname = {'#d322': 'khaki4', '#d600': 'gray34', '#d118': 'MediumPurple1', '#d119': 'MediumPurple2', '#d114': 'purple3', '#d115': 'purple4', '#d116': 'purple1', '#d117': 'MediumPurple', '#d110': 'purple', '#d111': 'indigo', '#d112': 'BlueViolet', '#d113': 'purple2', '#d529': 'grey67', '#d231': 'DarkSlateGray', '#d339': 'LightGoldenrod3', '#d233': 'MediumTurquoise', '#d232': 'DarkSlateGrey', '#d235': 'turquoise', '#d234': 'LightSeaGreen', '#d237': 'aquamarine', '#d236': 'aquamarine4', '#d239': 'aquamarine2', '#d238': 'aquamarine1', '#d332': 'gold1', '#d333': 'gold2', '#d334': 'gold3', '#d335': 'gold4', '#d336': 'LightGoldenrod', '#d337': 'LightGoldenrod4', '#d424': 'LightSalmon3', '#d425': 'LightSalmon', '#d426': 'LightSalmon1', '#d427': 'LightSalmon4', '#d420': 'sienna', '#d421': 'sienna1', '#d422': 'sienna2', '#d423': 'sienna3', '#d587': 'grey41', '#d586': 'gray41', '#d585': 'DimGrey', '#d584': 'DimGray', '#d428': 'LightSalmon2', '#d429': 'coral', '#d581': 'grey43', '#d580': 'gray43', '#d89': 'thistle4', '#d88': 'plum3', '#d349': 'goldenrod4', '#d348': 'goldenrod3', '#d81': 'thistle2', '#d80': 'thistle1', '#d83': 'plum2', '#d82': 'plum1', '#d85': 'thistle3', '#d84': 'thistle', '#d87': 'violet', '#d86': 'plum', '#d601': 'grey34', '#d67': 'DeepPink3', '#d66': 'DeepPink2', '#d65': 'DeepPink1', '#d64': 'DeepPink', '#d63': 'HotPink', '#d62': 'HotPink4', '#d61': 'HotPink1', '#d60': 'HotPink2', '#d69': 'maroon1', '#d68': 'DeepPink4', '#d510': 'grey76', '#d511': 'silver', '#d512': 'gray75', '#d513': 'grey75', '#d514': 'gray74', '#d515': 'grey74', '#d516': 'gray73', '#d517': 'grey73', '#d518': 'gray72', '#d519': 'grey72', '#d150': 'LightSteelBlue2', '#d151': 'LightSteelBlue3', '#d152': 'LightSteelBlue4', '#d153': 'SlateGray4', '#d154': 'SlateGray1', '#d155': 'SlateGray2', '#d156': 'SlateGray3', '#d157': 'LightSlateGray', '#d158': 'LightSlateGrey', '#d159': 'SlateGray', '#d565': 'gray50', '#d564': 'fractal', '#d567': 'gray', '#d566': 'grey50', '#d561': 'grey52', '#d560': 'gray52', '#d563': 'grey51', '#d562': 'gray51', '#d604': 'gray32', '#d605': 'grey32', '#d606': 'gray31', '#d607': 'grey31', '#d569': 'grey49', '#d568': 'gray49', '#d602': 'gray33', '#d603': 'grey33', '#d125': 'SlateBlue', '#d124': 'MediumSlateBlue', '#d127': 'SlateBlue2', '#d126': 'SlateBlue1', '#d121': 'MediumPurple4', '#d120': 'MediumPurple3', '#d123': 'LightSlateBlue', '#d122': 'DarkSlateBlue', '#d359': 'wheat1', '#d129': 'SlateBlue4', '#d128': 'SlateBlue3', '#d301': 'LightYellow', '#d300': 'ivory1', '#d303': 'beige', '#d302': 'LightYellow1', '#d305': 'LightGoldenrodYellow', '#d304': 'ivory2', '#d307': 'ivory3', '#d306': 'LightYellow2', '#d309': 'ivory4', '#d308': 'LightYellow3', '#d462': 'grey98', '#d351': 'DarkGoldenrod1', '#d464': 'grey97', '#d465': 'gray96', '#d466': 'grey96', '#d467': 'WhiteSmoke', '#d463': 'gray97', '#d268': 'PaleGreen3', '#d269': 'honeydew4', '#d266': 'DarkSeaGreen3', '#d267': 'DarkSeaGreen', '#d264': 'LightGreen', '#d265': 'PaleGreen2', '#d262': 'PaleGreen', '#d263': 'honeydew3', '#d260': 'DarkSeaGreen2', '#d261': 'PaleGreen1', '#d598': 'gray35', '#d29': 'firebrick4', '#d28': 'brown4', '#d23': 'red2', '#d22': 'firebrick3', '#d21': 'RosyBrown4', '#d20': 'red1', '#d27': 'IndianRed4', '#d26': 'red3', '#d25': 'brown', '#d24': 'firebrick', '#d599': 'grey35', '#d338': 'LightGoldenrod1', '#d419': 'sienna4', '#d418': 'seashell1', '#d230': 'teal', '#d415': 'chocolate4', '#d414': 'chocolate3', '#d417': 'seashell', '#d416': 'SaddleBrown', '#d411': 'chocolate', '#d410': 'seashell3', '#d413': 'chocolate2', '#d412': 'chocolate1', '#d398': 'tan1', '#d399': 'tan2', '#d392': 'DarkOrange1', '#d393': 'linen', '#d390': 'bisque1', '#d391': 'bisque3', '#d396': 'DarkOrange4', '#d397': 'peru', '#d394': 'DarkOrange2', '#d395': 'DarkOrange3', '#d194': 'CadetBlue2', '#d195': 'CadetBlue3', '#d196': 'CadetBlue4', '#d197': 'turquoise1', '#d190': 'LightBlue', '#d191': 'LightBlue4', '#d192': 'PowderBlue', '#d193': 'CadetBlue1', '#d198': 'turquoise2', '#d199': 'turquoise3', '#d330': 'cornsilk4', '#d331': 'gold', '#d640': 'gray14', '#d641': 'grey14', '#d642': 'gray13', '#d643': 'grey13', '#d644': 'gray12', '#d645': 'grey12', '#d646': 'gray11', '#d647': 'grey11', '#d648': 'gray10', '#d649': 'grey10', '#d668': 'black', '#d486': 'gainsboro', '#d487': 'gray86', '#d484': 'gray87', '#d485': 'grey87', '#d482': 'gray88', '#d483': 'grey88', '#d480': 'gray89', '#d481': 'grey89', '#d521': 'grey71', '#d520': 'gray71', '#d523': 'grey70', '#d522': 'gray70', '#d525': 'grey69', '#d524': 'gray69', '#d488': 'grey86', '#d489': 'gray85', '#d430': 'OrangeRed', '#d660': 'gray4', '#d169': 'SteelBlue1', '#d168': 'SteelBlue', '#d661': 'grey4', '#d161': 'DodgerBlue', '#d160': 'SlateGrey', '#d163': 'DodgerBlue2', '#d162': 'DodgerBlue1', '#d165': 'DodgerBlue3', '#d164': 'DodgerBlue4', '#d167': 'SteelBlue4', '#d166': 'AliceBlue', '#d635': 'grey17', '#d634': 'gray17', '#d637': 'grey16', '#d636': 'gray16', '#d631': 'grey19', '#d630': 'gray19', '#d633': 'grey18', '#d632': 'gray18', '#d639': 'grey15', '#d638': 'gray15', '#d368': 'PapayaWhip', '#d222': 'cyan', '#d223': 'cyan1', '#d220': 'LightCyan4', '#d221': 'aqua', '#d226': 'DarkSlateGray4', '#d227': 'cyan3', '#d224': 'PaleTurquoise4', '#d225': 'cyan2', '#d228': 'cyan4', '#d229': 'DarkCyan', '#d590': 'gray39', '#d538': 'gray63', '#d539': 'grey63', '#d591': 'grey39', '#d451': 'MistyRose', '#d450': 'MistyRose2', '#d453': 'salmon', '#d452': 'MistyRose1', '#d455': 'white', '#d454': 'MistyRose3', '#d457': 'grey100', '#d456': 'gray100', '#d459': 'gray99', '#d458': 'grey100', '#d592': 'gray38', '#d593': 'grey38', '#d594': 'gray37', '#d595': 'grey37', '#d596': 'gray36', '#d597': 'grey36', '#d297': 'YellowGreen', '#d296': 'OliveDrab3', '#d295': 'OliveDrab2', '#d294': 'OliveDrab1', '#d293': 'OliveDrab', '#d292': 'DarkOliveGreen', '#d291': 'DarkOliveGreen4', '#d290': 'DarkOliveGreen2', '#d356': 'wheat2', '#d357': 'OldLace', '#d354': 'DarkGoldenrod4', '#d355': 'FloralWhite', '#d352': 'DarkGoldenrod2', '#d353': 'DarkGoldenrod3', '#d299': 'ivory', '#d298': 'OliveDrab4', '#d468': 'gray95', '#d534': 'gray65', '#d535': 'grey65', '#d52': 'LavenderBlush2', '#d53': 'LavenderBlush4', '#d50': 'LavenderBlush1', '#d51': 'LavenderBlush3', '#d56': 'VioletRed3', '#d57': 'VioletRed1', '#d54': 'maroon', '#d55': 'HotPink3', '#d58': 'VioletRed2', '#d59': 'VioletRed4', '#d469': 'grey95', '#d558': 'gray53', '#d559': 'grey53', '#d576': 'gray45', '#d577': 'grey45', '#d574': 'gray46', '#d575': 'grey46', '#d572': 'gray47', '#d573': 'grey47', '#d570': 'gray48', '#d571': 'grey48', '#d671': 'opaque', '#d670': 'grey0', '#d673': 'transparent', '#d672': 'none', '#d578': 'gray44', '#d579': 'grey44', '#d589': 'grey40', '#d588': 'gray40', '#d4': 'RosyBrown2', '#d5': 'snow3', '#d6': 'LightCoral', '#d7': 'IndianRed1', '#d0': 'snow', '#d1': 'snow1', '#d2': 'snow2', '#d3': 'RosyBrown1', '#d8': 'RosyBrown3', '#d9': 'IndianRed2', '#d136': 'MediumBlue', '#d137': 'blue4', '#d134': 'blue2', '#d135': 'blue3', '#d132': 'blue', '#d133': 'blue1', '#d130': 'GhostWhite', '#d131': 'lavender', '#d583': 'grey42', '#d138': 'DarkBlue', '#d139': 'MidnightBlue', '#d312': 'yellow1', '#d313': 'yellow2', '#d310': 'LightYellow4', '#d311': 'yellow', '#d316': 'olive', '#d317': 'DarkKhaki', '#d314': 'yellow3', '#d315': 'yellow4', '#d318': 'khaki2', '#d319': 'LemonChiffon4', '#d259': 'DarkSeaGreen1', '#d258': 'honeydew2', '#d253': 'SeaGreen4', '#d252': 'SeaGreen1', '#d251': 'SeaGreen3', '#d250': 'SeaGreen', '#d257': 'honeydew1', '#d256': 'honeydew', '#d255': 'MediumForestGreen', '#d254': 'SeaGreen2', '#d345': 'goldenrod', '#d344': 'cornsilk1', '#d612': 'gray28', '#d347': 'goldenrod2', '#d461': 'gray98', '#d346': 'goldenrod1', '#d479': 'grey90', '#d341': 'cornsilk3', '#d478': 'gray90', '#d340': 'LightGoldenrod2', '#d343': 'cornsilk', '#d342': 'cornsilk2', '#d528': 'gray67', '#d408': 'seashell4', '#d409': 'seashell2', '#d406': 'PeachPuff3', '#d407': 'SandyBrown', '#d404': 'PeachPuff4', '#d405': 'PeachPuff2', '#d402': 'PeachPuff', '#d403': 'PeachPuff1', '#d400': 'tan3', '#d401': 'tan4', '#d552': 'gray56', '#d460': 'grey99', '#d16': 'firebrick2', '#d17': 'snow4', '#d14': 'IndianRed', '#d15': 'IndianRed3', '#d12': 'firebrick1', '#d13': 'brown2', '#d10': 'RosyBrown', '#d11': 'brown1', '#d532': 'gray66', '#d533': 'grey66', '#d530': 'DarkGray', '#d531': 'DarkGrey', '#d536': 'gray64', '#d537': 'grey64', '#d18': 'brown3', '#d19': 'red', '#d329': 'MediumGoldenRod', '#d328': 'LemonChiffon2', '#d178': 'LightSkyBlue1', '#d179': 'LightSkyBlue2', '#d172': 'SkyBlue4', '#d173': 'SkyBlue1', '#d170': 'SteelBlue2', '#d171': 'SteelBlue3', '#d176': 'LightSkyBlue', '#d177': 'LightSkyBlue4', '#d174': 'SkyBlue2', '#d175': 'SkyBlue3', '#d626': 'gray21', '#d627': 'grey21', '#d624': 'gray22', '#d625': 'grey22', '#d622': 'gray23', '#d623': 'grey23', '#d620': 'gray24', '#d621': 'grey24', '#d628': 'gray20', '#d629': 'grey20', '#d219': 'azure4', '#d218': 'DarkSlateGray3', '#d217': 'PaleTurquoise3', '#d216': 'DarkSlateGray2', '#d215': 'LightCyan3', '#d214': 'azure3', '#d213': 'DarkSlateGray1', '#d212': 'PaleTurquoise2', '#d211': 'PaleTurquoise', '#d210': 'PaleTurquoise1', '#d669': 'gray0', '#d582': 'gray42', '#d442': 'coral3', '#d443': 'coral4', '#d440': 'coral1', '#d441': 'coral2', '#d446': 'tomato1', '#d447': 'tomato2', '#d444': 'tomato4', '#d445': 'tomato', '#d448': 'tomato3', '#d449': 'MistyRose4', '#d280': 'DarkGreen', '#d281': 'LawnGreen', '#d282': 'chartreuse', '#d283': 'chartreuse1', '#d284': 'chartreuse2', '#d285': 'chartreuse3', '#d286': 'chartreuse4', '#d287': 'GreenYellow', '#d288': 'DarkOliveGreen3', '#d289': 'DarkOliveGreen1', '#d361': 'orange', '#d360': 'wheat3', '#d367': 'moccasin', '#d366': 'wheat4', '#d365': 'orange4', '#d364': 'orange3', '#d49': 'LavenderBlush', '#d48': 'PaleVioletRed3', '#d45': 'PaleVioletRed', '#d44': 'PaleVioletRed4', '#d47': 'PaleVioletRed1', '#d46': 'PaleVioletRed2', '#d41': 'pink2', '#d40': 'pink1', '#d43': 'pink4', '#d42': 'pink3', '#d358': 'wheat', '#d527': 'grey68', '#d526': 'gray68', '#d614': 'gray27', '#d543': 'grey61', '#d542': 'gray61', '#d541': 'grey62', '#d540': 'gray62', '#d547': 'grey59', '#d546': 'gray59', '#d545': 'grey60', '#d544': 'gray60', '#d662': 'gray3', '#d663': 'grey3', '#d549': 'grey58', '#d548': 'gray58', '#d666': 'gray1', '#d667': 'grey1', '#d664': 'gray2', '#d665': 'grey2', '#d103': 'MediumOrchid4', '#d102': 'MediumOrchid3', '#d101': 'MediumOrchid2', '#d100': 'MediumOrchid1', '#d107': 'DarkOrchid3', '#d106': 'DarkOrchid1', '#d105': 'DarkOrchid', '#d104': 'DarkViolet', '#d109': 'DarkOrchid4', '#d108': 'DarkOrchid2', '#d244': 'SpringGreen', '#d245': 'SpringGreen1', '#d246': 'SpringGreen2', '#d247': 'SpringGreen3', '#d240': 'aquamarine3', '#d241': 'MediumAquamarine', '#d242': 'MediumSpringGreen', '#d243': 'MintCream', '#d327': 'LemonChiffon3', '#d326': 'khaki', '#d325': 'LemonChiffon1', '#d324': 'LemonChiffon', '#d248': 'SpringGreen4', '#d249': 'MediumSeaGreen', '#d321': 'khaki3', '#d320': 'khaki1', '#d350': 'DarkGoldenrod', '#d439': 'salmon4', '#d438': 'salmon3', '#d98': 'purple', '#d99': 'MediumOrchid', '#d96': 'DarkMagenta', '#d97': 'magenta4', '#d94': 'magenta2', '#d95': 'magenta3', '#d92': 'magenta1', '#d93': 'plum4', '#d90': 'fuchsia', '#d91': 'magenta', '#d433': 'OrangeRed3', '#d432': 'OrangeRed2', '#d431': 'OrangeRed1', '#d74': 'VioletRed', '#d75': 'orchid2', '#d76': 'orchid', '#d77': 'orchid1', '#d70': 'maroon2', '#d71': 'maroon3', '#d72': 'maroon4', '#d73': 'MediumVioletRed', '#d437': 'salmon2', '#d78': 'orchid3', '#d79': 'orchid4', '#d436': 'salmon1', '#d435': 'DarkSalmon', '#d434': 'OrangeRed4', '#d507': 'gray77', '#d506': 'grey78', '#d505': 'gray78', '#d504': 'grey79', '#d503': 'gray79', '#d502': 'grey80', '#d501': 'gray80', '#d500': 'grey81', '#d509': 'gray76', '#d508': 'grey77', '#d473': 'grey93', '#d369': 'NavajoWhite3', '#d147': 'CornflowerBlue', '#d146': 'RoyalBlue4', '#d145': 'RoyalBlue3', '#d144': 'RoyalBlue2', '#d143': 'RoyalBlue1', '#d142': 'RoyalBlue', '#d141': 'NavyBlue', '#d140': 'navy', '#d149': 'LightSteelBlue1', '#d148': 'LightSteelBlue', '#d472': 'gray93', '#d613': 'grey28', '#d363': 'orange2', '#d611': 'grey29', '#d610': 'gray29', '#d617': 'grey26', '#d616': 'gray26', '#d615': 'grey27', '#d362': 'orange1', '#d619': 'grey25', '#d618': 'gray25', '#d208': 'azure2', '#d209': 'LightCyan2', '#d200': 'turquoise4', '#d201': 'cadet blue', '#d202': 'CadetBlue', '#d203': 'DarkTurquoise', '#d204': 'azure', '#d205': 'azure1', '#d206': 'LightCyan', '#d207': 'LightCyan1', '#d608': 'gray30', '#d609': 'grey30', '#d374': 'NavajoWhite4', '#d375': 'AntiqueWhite4', '#d376': 'AntiqueWhite', '#d377': 'tan', '#d370': 'BlanchedAlmond', '#d371': 'NavajoWhite', '#d372': 'NavajoWhite1', '#d373': 'NavajoWhite2', '#d477': 'grey91', '#d476': 'gray91', '#d475': 'grey92', '#d474': 'gray92', '#d378': 'bisque4', '#d379': 'burlywood', '#d471': 'grey94', '#d470': 'gray94', '#d279': 'green', '#d278': 'green4', '#d275': 'PaleGreen4', '#d274': 'green2', '#d277': 'ForestGreen', '#d276': 'green3', '#d271': 'lime', '#d270': 'green1', '#d273': 'DarkSeaGreen4', '#d272': 'LimeGreen', '#d38': 'pink', '#d39': 'crimson', '#d30': 'DarkRed', '#d31': 'red4', '#d32': 'maroon', '#d33': 'LightPink1', '#d34': 'LightPink3', '#d35': 'LightPink4', '#d36': 'LightPink2', '#d37': 'LightPink', '#d658': 'gray5', '#d389': 'bisque', '#d388': 'bisque2', '#d381': 'burlywood1', '#d380': 'AntiqueWhite2', '#d383': 'burlywood2', '#d382': 'burlywood3', '#d385': 'burlywood4', '#d384': 'AntiqueWhite1', '#d387': 'DarkOrange', '#d386': 'AntiqueWhite3', '#d189': 'LightBlue2', '#d188': 'LightBlue1', '#d183': 'DeepSkyBlue', '#d182': 'LightBlue3', '#d181': 'SkyBlue', '#d180': 'LightSkyBlue3', '#d187': 'DeepSkyBlue3', '#d186': 'DeepSkyBlue4', '#d185': 'DeepSkyBlue2', '#d184': 'DeepSkyBlue1', '#d657': 'grey6', '#d656': 'gray6', '#d655': 'grey7', '#d654': 'gray7', '#d653': 'grey8', '#d652': 'gray8', '#d651': 'grey9', '#d650': 'gray9', '#d550': 'gray57', '#d659': 'grey5', '#d551': 'grey57', '#d495': 'LightGray', '#d494': 'grey83', '#d497': 'gray82', '#d496': 'LightGrey', '#d491': 'gray84', '#d490': 'grey85', '#d493': 'gray83', '#d492': 'grey84', '#d554': 'gray55', '#d555': 'grey55', '#d556': 'gray54', '#d557': 'grey54', '#d499': 'gray81', '#d498': 'grey82', '#d323': 'PaleGoldenrod', '#d553': 'grey56'} \ No newline at end of file diff --git a/frontend/imgrid/colors/junk/divlistmaker b/frontend/imgrid/colors/junk/divlistmaker new file mode 100755 index 0000000..b461bc9 --- /dev/null +++ b/frontend/imgrid/colors/junk/divlistmaker @@ -0,0 +1,32 @@ +#!/usr/bin/python2.7 + + + +divlist = [] +for x in range(674): + divlist.append("#d"+str(x)) + +print str(divlist) + +f = open('colordict.js', 'a') + +f.write("var divlist = ") +f.write(str(divlist)) +f.close() + +f = open('colors.html', 'r') +lines = f.readlines() +colornames = [] +for line in lines: + if 'right' in line and 'td' in line: + colornames.append(line[22:-6]) + +divtoname = {} +for i in divlist: + divtoname[i] = colornames[divlist.index(i)] + +print divtoname +f = open('colordict.js', 'a') +f.write("\nvar divtoname = ") +f.write(str(divtoname)) + diff --git a/frontend/imgrid/colors/junk/mapmaker.html b/frontend/imgrid/colors/junk/mapmaker.html new file mode 100755 index 0000000..05ca832 --- /dev/null +++ b/frontend/imgrid/colors/junk/mapmaker.html @@ -0,0 +1,3586 @@ + + + + +
+
+snow
+
+snow1
+
+snow2
+
+RosyBrown1
+
+RosyBrown2
+
+snow3
+
+LightCoral
+
+IndianRed1
+
+RosyBrown3
+
+IndianRed2
+
+RosyBrown
+
+brown1
+
+firebrick1
+
+brown2
+
+IndianRed
+
+IndianRed3
+
+firebrick2
+
+snow4
+
+brown3
+
+red
+
+red1
+
+RosyBrown4
+
+firebrick3
+
+red2
+
+firebrick
+
+brown
+
+red3
+
+IndianRed4
+
+brown4
+
+firebrick4
+
+DarkRed
+
+red4
+
+maroon
+
+LightPink1
+
+LightPink3
+
+LightPink4
+
+LightPink2
+
+LightPink
+
+pink
+
+crimson
+
+pink1
+
+pink2
+
+pink3
+
+pink4
+
+PaleVioletRed4
+
+PaleVioletRed
+
+PaleVioletRed2
+
+PaleVioletRed1
+
+PaleVioletRed3
+
+LavenderBlush
+
+LavenderBlush1
+
+LavenderBlush3
+
+LavenderBlush2
+
+LavenderBlush4
+
+maroon
+
+HotPink3
+
+VioletRed3
+
+VioletRed1
+
+VioletRed2
+
+VioletRed4
+
+HotPink2
+
+HotPink1
+
+HotPink4
+
+HotPink
+
+DeepPink
+
+DeepPink1
+
+DeepPink2
+
+DeepPink3
+
+DeepPink4
+
+maroon1
+
+maroon2
+
+maroon3
+
+maroon4
+
+MediumVioletRed
+
+VioletRed
+
+orchid2
+
+orchid
+
+orchid1
+
+orchid3
+
+orchid4
+
+thistle1
+
+thistle2
+
+plum1
+
+plum2
+
+thistle
+
+thistle3
+
+plum
+
+violet
+
+plum3
+
+thistle4
+
+fuchsia
+
+magenta
+
+magenta1
+
+plum4
+
+magenta2
+
+magenta3
+
+DarkMagenta
+
+magenta4
+
+purple
+
+MediumOrchid
+
+MediumOrchid1
+
+MediumOrchid2
+
+MediumOrchid3
+
+MediumOrchid4
+
+DarkViolet
+
+DarkOrchid
+
+DarkOrchid1
+
+DarkOrchid3
+
+DarkOrchid2
+
+DarkOrchid4
+
+purple
+
+indigo
+
+BlueViolet
+
+purple2
+
+purple3
+
+purple4
+
+purple1
+
+MediumPurple
+
+MediumPurple1
+
+MediumPurple2
+
+MediumPurple3
+
+MediumPurple4
+
+DarkSlateBlue
+
+LightSlateBlue
+
+MediumSlateBlue
+
+SlateBlue
+
+SlateBlue1
+
+SlateBlue2
+
+SlateBlue3
+
+SlateBlue4
+
+GhostWhite
+
+lavender
+
+blue
+
+blue1
+
+blue2
+
+blue3
+
+MediumBlue
+
+blue4
+
+DarkBlue
+
+MidnightBlue
+
+navy
+
+NavyBlue
+
+RoyalBlue
+
+RoyalBlue1
+
+RoyalBlue2
+
+RoyalBlue3
+
+RoyalBlue4
+
+CornflowerBlue
+
+LightSteelBlue
+
+LightSteelBlue1
+
+LightSteelBlue2
+
+LightSteelBlue3
+
+LightSteelBlue4
+
+SlateGray4
+
+SlateGray1
+
+SlateGray2
+
+SlateGray3
+
+LightSlateGray
+
+LightSlateGrey
+
+SlateGray
+
+SlateGrey
+
+DodgerBlue
+
+DodgerBlue1
+
+DodgerBlue2
+
+DodgerBlue4
+
+DodgerBlue3
+
+AliceBlue
+
+SteelBlue4
+
+SteelBlue
+
+SteelBlue1
+
+SteelBlue2
+
+SteelBlue3
+
+SkyBlue4
+
+SkyBlue1
+
+SkyBlue2
+
+SkyBlue3
+
+LightSkyBlue
+
+LightSkyBlue4
+
+LightSkyBlue1
+
+LightSkyBlue2
+
+LightSkyBlue3
+
+SkyBlue
+
+LightBlue3
+
+DeepSkyBlue
+
+DeepSkyBlue1
+
+DeepSkyBlue2
+
+DeepSkyBlue4
+
+DeepSkyBlue3
+
+LightBlue1
+
+LightBlue2
+
+LightBlue
+
+LightBlue4
+
+PowderBlue
+
+CadetBlue1
+
+CadetBlue2
+
+CadetBlue3
+
+CadetBlue4
+
+turquoise1
+
+turquoise2
+
+turquoise3
+
+turquoise4
+
+cadet blue
+
+CadetBlue
+
+DarkTurquoise
+
+azure
+
+azure1
+
+LightCyan
+
+LightCyan1
+
+azure2
+
+LightCyan2
+
+PaleTurquoise1
+
+PaleTurquoise
+
+PaleTurquoise2
+
+DarkSlateGray1
+
+azure3
+
+LightCyan3
+
+DarkSlateGray2
+
+PaleTurquoise3
+
+DarkSlateGray3
+
+azure4
+
+LightCyan4
+
+aqua
+
+cyan
+
+cyan1
+
+PaleTurquoise4
+
+cyan2
+
+DarkSlateGray4
+
+cyan3
+
+cyan4
+
+DarkCyan
+
+teal
+
+DarkSlateGray
+
+DarkSlateGrey
+
+MediumTurquoise
+
+LightSeaGreen
+
+turquoise
+
+aquamarine4
+
+aquamarine
+
+aquamarine1
+
+aquamarine2
+
+aquamarine3
+
+MediumAquamarine
+
+MediumSpringGreen
+
+MintCream
+
+SpringGreen
+
+SpringGreen1
+
+SpringGreen2
+
+SpringGreen3
+
+SpringGreen4
+
+MediumSeaGreen
+
+SeaGreen
+
+SeaGreen3
+
+SeaGreen1
+
+SeaGreen4
+
+SeaGreen2
+
+MediumForestGreen
+
+honeydew
+
+honeydew1
+
+honeydew2
+
+DarkSeaGreen1
+
+DarkSeaGreen2
+
+PaleGreen1
+
+PaleGreen
+
+honeydew3
+
+LightGreen
+
+PaleGreen2
+
+DarkSeaGreen3
+
+DarkSeaGreen
+
+PaleGreen3
+
+honeydew4
+
+green1
+
+lime
+
+LimeGreen
+
+DarkSeaGreen4
+
+green2
+
+PaleGreen4
+
+green3
+
+ForestGreen
+
+green4
+
+green
+
+DarkGreen
+
+LawnGreen
+
+chartreuse
+
+chartreuse1
+
+chartreuse2
+
+chartreuse3
+
+chartreuse4
+
+GreenYellow
+
+DarkOliveGreen3
+
+DarkOliveGreen1
+
+DarkOliveGreen2
+
+DarkOliveGreen4
+
+DarkOliveGreen
+
+OliveDrab
+
+OliveDrab1
+
+OliveDrab2
+
+OliveDrab3
+
+YellowGreen
+
+OliveDrab4
+
+ivory
+
+ivory1
+
+LightYellow
+
+LightYellow1
+
+beige
+
+ivory2
+
+LightGoldenrodYellow
+
+LightYellow2
+
+ivory3
+
+LightYellow3
+
+ivory4
+
+LightYellow4
+
+yellow
+
+yellow1
+
+yellow2
+
+yellow3
+
+yellow4
+
+olive
+
+DarkKhaki
+
+khaki2
+
+LemonChiffon4
+
+khaki1
+
+khaki3
+
+khaki4
+
+PaleGoldenrod
+
+LemonChiffon
+
+LemonChiffon1
+
+khaki
+
+LemonChiffon3
+
+LemonChiffon2
+
+MediumGoldenRod
+
+cornsilk4
+
+gold
+
+gold1
+
+gold2
+
+gold3
+
+gold4
+
+LightGoldenrod
+
+LightGoldenrod4
+
+LightGoldenrod1
+
+LightGoldenrod3
+
+LightGoldenrod2
+
+cornsilk3
+
+cornsilk2
+
+cornsilk
+
+cornsilk1
+
+goldenrod
+
+goldenrod1
+
+goldenrod2
+
+goldenrod3
+
+goldenrod4
+
+DarkGoldenrod
+
+DarkGoldenrod1
+
+DarkGoldenrod2
+
+DarkGoldenrod3
+
+DarkGoldenrod4
+
+FloralWhite
+
+wheat2
+
+OldLace
+
+wheat
+
+wheat1
+
+wheat3
+
+orange
+
+orange1
+
+orange2
+
+orange3
+
+orange4
+
+wheat4
+
+moccasin
+
+PapayaWhip
+
+NavajoWhite3
+
+BlanchedAlmond
+
+NavajoWhite
+
+NavajoWhite1
+
+NavajoWhite2
+
+NavajoWhite4
+
+AntiqueWhite4
+
+AntiqueWhite
+
+tan
+
+bisque4
+
+burlywood
+
+AntiqueWhite2
+
+burlywood1
+
+burlywood3
+
+burlywood2
+
+AntiqueWhite1
+
+burlywood4
+
+AntiqueWhite3
+
+DarkOrange
+
+bisque2
+
+bisque
+
+bisque1
+
+bisque3
+
+DarkOrange1
+
+linen
+
+DarkOrange2
+
+DarkOrange3
+
+DarkOrange4
+
+peru
+
+tan1
+
+tan2
+
+tan3
+
+tan4
+
+PeachPuff
+
+PeachPuff1
+
+PeachPuff4
+
+PeachPuff2
+
+PeachPuff3
+
+SandyBrown
+
+seashell4
+
+seashell2
+
+seashell3
+
+chocolate
+
+chocolate1
+
+chocolate2
+
+chocolate3
+
+chocolate4
+
+SaddleBrown
+
+seashell
+
+seashell1
+
+sienna4
+
+sienna
+
+sienna1
+
+sienna2
+
+sienna3
+
+LightSalmon3
+
+LightSalmon
+
+LightSalmon1
+
+LightSalmon4
+
+LightSalmon2
+
+coral
+
+OrangeRed
+
+OrangeRed1
+
+OrangeRed2
+
+OrangeRed3
+
+OrangeRed4
+
+DarkSalmon
+
+salmon1
+
+salmon2
+
+salmon3
+
+salmon4
+
+coral1
+
+coral2
+
+coral3
+
+coral4
+
+tomato4
+
+tomato
+
+tomato1
+
+tomato2
+
+tomato3
+
+MistyRose4
+
+MistyRose2
+
+MistyRose
+
+MistyRose1
+
+salmon
+
+MistyRose3
+
+white
+
+gray100
+
+grey100
+
+grey100
+
+gray99
+
+grey99
+
+gray98
+
+grey98
+
+gray97
+
+grey97
+
+gray96
+
+grey96
+
+WhiteSmoke
+
+gray95
+
+grey95
+
+gray94
+
+grey94
+
+gray93
+
+grey93
+
+gray92
+
+grey92
+
+gray91
+
+grey91
+
+gray90
+
+grey90
+
+gray89
+
+grey89
+
+gray88
+
+grey88
+
+gray87
+
+grey87
+
+gainsboro
+
+gray86
+
+grey86
+
+gray85
+
+grey85
+
+gray84
+
+grey84
+
+gray83
+
+grey83
+
+LightGray
+
+LightGrey
+
+gray82
+
+grey82
+
+gray81
+
+grey81
+
+gray80
+
+grey80
+
+gray79
+
+grey79
+
+gray78
+
+grey78
+
+gray77
+
+grey77
+
+gray76
+
+grey76
+
+silver
+
+gray75
+
+grey75
+
+gray74
+
+grey74
+
+gray73
+
+grey73
+
+gray72
+
+grey72
+
+gray71
+
+grey71
+
+gray70
+
+grey70
+
+gray69
+
+grey69
+
+gray68
+
+grey68
+
+gray67
+
+grey67
+
+DarkGray
+
+DarkGrey
+
+gray66
+
+grey66
+
+gray65
+
+grey65
+
+gray64
+
+grey64
+
+gray63
+
+grey63
+
+gray62
+
+grey62
+
+gray61
+
+grey61
+
+gray60
+
+grey60
+
+gray59
+
+grey59
+
+gray58
+
+grey58
+
+gray57
+
+grey57
+
+gray56
+
+grey56
+
+gray55
+
+grey55
+
+gray54
+
+grey54
+
+gray53
+
+grey53
+
+gray52
+
+grey52
+
+gray51
+
+grey51
+
+fractal
+
+gray50
+
+grey50
+
+gray
+
+gray49
+
+grey49
+
+gray48
+
+grey48
+
+gray47
+
+grey47
+
+gray46
+
+grey46
+
+gray45
+
+grey45
+
+gray44
+
+grey44
+
+gray43
+
+grey43
+
+gray42
+
+grey42
+
+DimGray
+
+DimGrey
+
+gray41
+
+grey41
+
+gray40
+
+grey40
+
+gray39
+
+grey39
+
+gray38
+
+grey38
+
+gray37
+
+grey37
+
+gray36
+
+grey36
+
+gray35
+
+grey35
+
+gray34
+
+grey34
+
+gray33
+
+grey33
+
+gray32
+
+grey32
+
+gray31
+
+grey31
+
+gray30
+
+grey30
+
+gray29
+
+grey29
+
+gray28
+
+grey28
+
+gray27
+
+grey27
+
+gray26
+
+grey26
+
+gray25
+
+grey25
+
+gray24
+
+grey24
+
+gray23
+
+grey23
+
+gray22
+
+grey22
+
+gray21
+
+grey21
+
+gray20
+
+grey20
+
+gray19
+
+grey19
+
+gray18
+
+grey18
+
+gray17
+
+grey17
+
+gray16
+
+grey16
+
+gray15
+
+grey15
+
+gray14
+
+grey14
+
+gray13
+
+grey13
+
+gray12
+
+grey12
+
+gray11
+
+grey11
+
+gray10
+
+grey10
+
+gray9
+
+grey9
+
+gray8
+
+grey8
+
+gray7
+
+grey7
+
+gray6
+
+grey6
+
+gray5
+
+grey5
+
+gray4
+
+grey4
+
+gray3
+
+grey3
+
+gray2
+
+grey2
+
+gray1
+
+grey1
+
+black
+
+gray0
+
+grey0
+
+opaque
+
+none
+
+transparent
+
+ +
+WHERE THE COLORNAMES WILL GO +
+ +
CLICK TO SHOW HEXES
+
CLICK TO SHOW INFO
+ + + + diff --git a/frontend/imgrid/colors/junk/picker.js b/frontend/imgrid/colors/junk/picker.js new file mode 100755 index 0000000..04a49f1 --- /dev/null +++ b/frontend/imgrid/colors/junk/picker.js @@ -0,0 +1,15 @@ +var colorpicker = "
"+"
"+"snow
"+"
"+"snow1
"+"
"+"snow2
"+"
"+"RosyBrown1
"+"
"+"RosyBrown2
"+"
"+"snow3
"+"
"+"LightCoral
"+"
"+"IndianRed1
"+"
"+"RosyBrown3
"+"
"+"IndianRed2
"+"
"+"RosyBrown
"+"
"+"brown1
"+"
"+"firebrick1
"+"
"+"brown2
"+"
"+"IndianRed
"+"
"+"IndianRed3
"+"
"+"firebrick2
"+"
"+"snow4
"+"
"+"brown3
"+"
"+"red
"+"
"+"red1
"+"
"+"RosyBrown4
"+"
"+"firebrick3
"+"
"+"red2
"+"
"+"firebrick
"+"
"+"brown
"+"
"+"red3
"+"
"+"IndianRed4
"+"
"+"brown4
"+"
"+"firebrick4
"+"
"+"DarkRed
"+"
"+"red4
"+"
"+"maroon
"+"
"+"LightPink1
"+"
"+"LightPink3
"+"
"+"LightPink4
"+"
"+"LightPink2
"+"
"+"LightPink
"+"
"+"pink
"+"
"+"crimson
"+"
"+"pink1
"+"
"+"pink2
"+"
"+"pink3
"+"
"+"pink4
"+"
"+"PaleVioletRed4
"+"
"+"PaleVioletRed
"+"
"+"PaleVioletRed2
"+"
"+"PaleVioletRed1
"+"
"+"PaleVioletRed3
"+"
"+"LavenderBlush
"+"
"+"LavenderBlush1
"+"
"+"LavenderBlush3
"+"
"+"LavenderBlush2
"+"
"+"LavenderBlush4
"+"
"+"maroon
"+"
"+"HotPink3
"+"
"+"VioletRed3
"+"
"+"VioletRed1
"+"
"+"VioletRed2
"+"
"+"VioletRed4
"+"
"+"HotPink2
"+"
"+"HotPink1
"+"
"+"HotPink4
"+"
"+"HotPink
"+"
"+"DeepPink
"+"
"+"DeepPink1
"+"
"+"DeepPink2
"+"
"+"DeepPink3
"+"
"+"DeepPink4
"+"
"+"maroon1
"+"
"+"maroon2
"+"
"+"maroon3
"+"
"+"maroon4
"+"
"+"MediumVioletRed
"+"
"+"VioletRed
"+"
"+"orchid2
"+"
"+"orchid
"+"
"+"orchid1
"+"
"+"orchid3
"+"
"+"orchid4
"+"
"+"thistle1
"+"
"+"thistle2
"+"
"+"plum1
"+"
"+"plum2
"+"
"+"thistle
"+"
"+"thistle3
"+"
"+"plum
"+"
"+"violet
"+"
"+"plum3
"+"
"+"thistle4
"+"
"+"fuchsia
"+"
"+"magenta
"+"
"+"magenta1
"+"
"+"plum4
"+"
"+"magenta2
"+"
"+"magenta3
"+"
"+"DarkMagenta
"+"
"+"magenta4
"+"
"+"purple
"+"
"+"MediumOrchid
"+"
"+"MediumOrchid1
"+"
"+"MediumOrchid2
"+"
"+"MediumOrchid3
"+"
"+"MediumOrchid4
"+"
"+"DarkViolet
"+"
"+"DarkOrchid
"+"
"+"DarkOrchid1
"+"
"+"DarkOrchid3
"+"
"+"DarkOrchid2
"+"
"+"DarkOrchid4
"+"
"+"purple
"+"
"+"indigo
"+"
"+"BlueViolet
"+"
"+"purple2
"+"
"+"purple3
"+"
"+"purple4
"+"
"+"purple1
"+"
"+"MediumPurple
"+"
"+"MediumPurple1
"+"
"+"MediumPurple2
"+"
"+"MediumPurple3
"+"
"+"MediumPurple4
"+"
"+"DarkSlateBlue
"+"
"+"LightSlateBlue
"+"
"+"MediumSlateBlue
"+"
"+"SlateBlue
"+"
"+"SlateBlue1
"+"
"+"SlateBlue2
"+"
"+"SlateBlue3
"+"
"+"SlateBlue4
"+"
"+"GhostWhite
"+"
"+"lavender
"+"
"+"blue
"+"
"+"blue1
"+"
"+"blue2
"+"
"+"blue3
"+"
"+"MediumBlue
"+"
"+"blue4
"+"
"+"DarkBlue
"+"
"+"MidnightBlue
"+"
"+"navy
"+"
"+"NavyBlue
"+"
"+"RoyalBlue
"+"
"+"RoyalBlue1
"+"
"+"RoyalBlue2
"+"
"+"RoyalBlue3
"+"
"+"RoyalBlue4
"+"
"+"CornflowerBlue
"+"
"+"LightSteelBlue
"+"
"+"LightSteelBlue1
"+"
"+"LightSteelBlue2
"+"
"+"LightSteelBlue3
"+"
"+"LightSteelBlue4
"+"
"+"SlateGray4
"+"
"+"SlateGray1
"+"
"+"SlateGray2
"+"
"+"SlateGray3
"+"
"+"LightSlateGray
"+"
"+"LightSlateGrey
"+"
"+"SlateGray
"+"
"+"SlateGrey
"+"
"+"DodgerBlue
"+"
"+"DodgerBlue1
"+"
"+"DodgerBlue2
"+"
"+"DodgerBlue4
"+"
"+"DodgerBlue3
"+"
"+"AliceBlue
"+"
"+"SteelBlue4
"+"
"+"SteelBlue
"+"
"+"SteelBlue1
"+"
"+"SteelBlue2
"+"
"+"SteelBlue3
"+"
"+"SkyBlue4
"+"
"+"SkyBlue1
"+"
"+"SkyBlue2
"+"
"+"SkyBlue3
"+"
"+"LightSkyBlue
"+"
"+"LightSkyBlue4
"+"
"+"LightSkyBlue1
"+"
"+"LightSkyBlue2
"+"
"+"LightSkyBlue3
"+"
"+"SkyBlue
"+"
"+"LightBlue3
"+"
"+"DeepSkyBlue
"+"
"+"DeepSkyBlue1
"+"
"+"DeepSkyBlue2
"+"
"+"DeepSkyBlue4
"+"
"+"DeepSkyBlue3
"+"
"+"LightBlue1
"+"
"+"LightBlue2
"+"
"+"LightBlue
"+"
"+"LightBlue4
"+"
"+"PowderBlue
"+"
"+"CadetBlue1
"+"
"+"CadetBlue2
"+"
"+"CadetBlue3
"+"
"+"CadetBlue4
"+"
"+"turquoise1
"+"
"+"turquoise2
"+"
"+"turquoise3
"+"
"+"turquoise4
"+"
"+"cadet blue
"+"
"+"CadetBlue
"+"
"+"DarkTurquoise
"+"
"+"azure
"+"
"+"azure1
"+"
"+"LightCyan
"+"
"+"LightCyan1
"+"
"+"azure2
"+"
"+"LightCyan2
"+"
"+"PaleTurquoise1
"+"
"+"PaleTurquoise
"+"
"+"PaleTurquoise2
"+"
"+"DarkSlateGray1
"+"
"+"azure3
"+"
"+"LightCyan3
"+"
"+"DarkSlateGray2
"+"
"+"PaleTurquoise3
"+"
"+"DarkSlateGray3
"+"
"+"azure4
"+"
"+"LightCyan4
"+"
"+"aqua
"+"
"+"cyan
"+"
"+"cyan1
"+"
"+"PaleTurquoise4
"+"
"+"cyan2
"+"
"+"DarkSlateGray4
"+"
"+"cyan3
"+"
"+"cyan4
"+"
"+"DarkCyan
"+"
"+"teal
"+"
"+"DarkSlateGray
"+"
"+"DarkSlateGrey
"+"
"+"MediumTurquoise
"+"
"+"LightSeaGreen
"+"
"+"turquoise
"+"
"+"aquamarine4
"+"
"+"aquamarine
"+"
"+"aquamarine1
"+"
"+"aquamarine2
"+"
"+"aquamarine3
"+"
"+"MediumAquamarine
"+"
"+"MediumSpringGreen
"+"
"+"MintCream
"+"
"+"SpringGreen
"+"
"+"SpringGreen1
"+"
"+"SpringGreen2
"+"
"+"SpringGreen3
"+"
"+"SpringGreen4
"+"
"+"MediumSeaGreen
"+"
"+"SeaGreen
"+"
"+"SeaGreen3
"+"
"+"SeaGreen1
"+"
"+"SeaGreen4
"+"
"+"SeaGreen2
"+"
"+"MediumForestGreen
"+"
"+"honeydew
"+"
"+"honeydew1
"+"
"+"honeydew2
"+"
"+"DarkSeaGreen1
"+"
"+"DarkSeaGreen2
"+"
"+"PaleGreen1
"+"
"+"PaleGreen
"+"
"+"honeydew3
"+"
"+"LightGreen
"+"
"+"PaleGreen2
"+"
"+"DarkSeaGreen3
"+"
"+"DarkSeaGreen
"+"
"+"PaleGreen3
"+"
"+"honeydew4
"+"
"+"green1
"+"
"+"lime
"+"
"+"LimeGreen
"+"
"+"DarkSeaGreen4
"+"
"+"green2
"+"
"+"PaleGreen4
"+"
"+"green3
"+"
"+"ForestGreen
"+"
"+"green4
"+"
"+"green
"+"
"+"DarkGreen
"+"
"+"LawnGreen
"+"
"+"chartreuse
"+"
"+"chartreuse1
"+"
"+"chartreuse2
"+"
"+"chartreuse3
"+"
"+"chartreuse4
"+"
"+"GreenYellow
"+"
"+"DarkOliveGreen3
"+"
"+"DarkOliveGreen1
"+"
"+"DarkOliveGreen2
"+"
"+"DarkOliveGreen4
"+"
"+"DarkOliveGreen
"+"
"+"OliveDrab
"+"
"+"OliveDrab1
"+"
"+"OliveDrab2
"+"
"+"OliveDrab3
"+"
"+"YellowGreen
"+"
"+"OliveDrab4
"+"
"+"ivory
"+"
"+"ivory1
"+"
"+"LightYellow
"+"
"+"LightYellow1
"+"
"+"beige
"+"
"+"ivory2
"+"
"+"LightGoldenrodYellow
"+"
"+"LightYellow2
"+"
"+"ivory3
"+"
"+"LightYellow3
"+"
"+"ivory4
"+"
"+"LightYellow4
"+"
"+"yellow
"+"
"+"yellow1
"+"
"+"yellow2
"+"
"+"yellow3
"+"
"+"yellow4
"+"
"+"olive
"+"
"+"DarkKhaki
"+"
"+"khaki2
"+"
"+"LemonChiffon4
"+"
"+"khaki1
"+"
"+"khaki3
"+"
"+"khaki4
"+"
"+"PaleGoldenrod
"+"
"+"LemonChiffon
"+"
"+"LemonChiffon1
"+"
"+"khaki
"+"
"+"LemonChiffon3
"+"
"+"LemonChiffon2
"+"
"+"MediumGoldenRod
"+"
"+"cornsilk4
"+"
"+"gold
"+"
"+"gold1
"+"
"+"gold2
"+"
"+"gold3
"+"
"+"gold4
"+"
"+"LightGoldenrod
"+"
"+"LightGoldenrod4
"+"
"+"LightGoldenrod1
"+"
"+"LightGoldenrod3
"+"
"+"LightGoldenrod2
"+"
"+"cornsilk3
"+"
"+"cornsilk2
"+"
"+"cornsilk
"+"
"+"cornsilk1
"+"
"+"goldenrod
"+"
"+"goldenrod1
"+"
"+"goldenrod2
"+"
"+"goldenrod3
"+"
"+"goldenrod4
"+"
"+"DarkGoldenrod
"+"
"+"DarkGoldenrod1
"+"
"+"DarkGoldenrod2
"+"
"+"DarkGoldenrod3
"+"
"+"DarkGoldenrod4
"+"
"+"FloralWhite
"+"
"+"wheat2
"+"
"+"OldLace
"+"
"+"wheat
"+"
"+"wheat1
"+"
"+"wheat3
"+"
"+"orange
"+"
"+"orange1
"+"
"+"orange2
"+"
"+"orange3
"+"
"+"orange4
"+"
"+"wheat4
"+"
"+"moccasin
"+"
"+"PapayaWhip
"+"
"+"NavajoWhite3
"+"
"+"BlanchedAlmond
"+"
"+"NavajoWhite
"+"
"+"NavajoWhite1
"+"
"+"NavajoWhite2
"+"
"+"NavajoWhite4
"+"
"+"AntiqueWhite4
"+"
"+"AntiqueWhite
"+"
"+"tan
"+"
"+"bisque4
"+"
"+"burlywood
"+"
"+"AntiqueWhite2
"+"
"+"burlywood1
"+"
"+"burlywood3
"+"
"+"burlywood2
"+"
"+"AntiqueWhite1
"+"
"+"burlywood4
"+"
"+"AntiqueWhite3
"+"
"+"DarkOrange
"+"
"+"bisque2
"+"
"+"bisque
"+"
"+"bisque1
"+"
"+"bisque3
"+"
"+"DarkOrange1
"+"
"+"linen
"+"
"+"DarkOrange2
"+"
"+"DarkOrange3
"+"
"+"DarkOrange4
"+"
"+"peru
"+"
"+"tan1
"+"
"+"tan2
"+"
"+"tan3
"+"
"+"tan4
"+"
"+"PeachPuff
"+"
"+"PeachPuff1
"+"
"+"PeachPuff4
"+"
"+"PeachPuff2
"+"
"+"PeachPuff3
"+"
"+"SandyBrown
"+"
"+"seashell4
"+"
"+"seashell2
"+"
"+"seashell3
"+"
"+"chocolate
"+"
"+"chocolate1
"+"
"+"chocolate2
"+"
"+"chocolate3
"+"
"+"chocolate4
"+"
"+"SaddleBrown
"+"
"+"seashell
"+"
"+"seashell1
"+"
"+"sienna4
"+"
"+"sienna
"+"
"+"sienna1
"+"
"+"sienna2
"+"
"+"sienna3
"+"
"+"LightSalmon3
"+"
"+"LightSalmon
"+"
"+"LightSalmon1
"+"
"+"LightSalmon4
"+"
"+"LightSalmon2
"+"
"+"coral
"+"
"+"OrangeRed
"+"
"+"OrangeRed1
"+"
"+"OrangeRed2
"+"
"+"OrangeRed3
"+"
"+"OrangeRed4
"+"
"+"DarkSalmon
"+"
"+"salmon1
"+"
"+"salmon2
"+"
"+"salmon3
"+"
"+"salmon4
"+"
"+"coral1
"+"
"+"coral2
"+"
"+"coral3
"+"
"+"coral4
"+"
"+"tomato4
"+"
"+"tomato
"+"
"+"tomato1
"+"
"+"tomato2
"+"
"+"tomato3
"+"
"+"MistyRose4
"+"
"+"MistyRose2
"+"
"+"MistyRose
"+"
"+"MistyRose1
"+"
"+"salmon
"+"
"+"MistyRose3
"+"
"+"white
"+"
"+"gray100
"+"
"+"grey100
"+"
"+"grey100
"+"
"+"gray99
"+"
"+"grey99
"+"
"+"gray98
"+"
"+"grey98
"+"
"+"gray97
"+"
"+"grey97
"+"
"+"gray96
"+"
"+"grey96
"+"
"+"WhiteSmoke
"+"
"+"gray95
"+"
"+"grey95
"+"
"+"gray94
"+"
"+"grey94
"+"
"+"gray93
"+"
"+"grey93
"+"
"+"gray92
"+"
"+"grey92
"+"
"+"gray91
"+"
"+"grey91
"+"
"+"gray90
"+"
"+"grey90
"+"
"+"gray89
"+"
"+"grey89
"+"
"+"gray88
"+"
"+"grey88
"+"
"+"gray87
"+"
"+"grey87
"+"
"+"gainsboro
"+"
"+"gray86
"+"
"+"grey86
"+"
"+"gray85
"+"
"+"grey85
"+"
"+"gray84
"+"
"+"grey84
"+"
"+"gray83
"+"
"+"grey83
"+"
"+"LightGray
"+"
"+"LightGrey
"+"
"+"gray82
"+"
"+"grey82
"+"
"+"gray81
"+"
"+"grey81
"+"
"+"gray80
"+"
"+"grey80
"+"
"+"gray79
"+"
"+"grey79
"+"
"+"gray78
"+"
"+"grey78
"+"
"+"gray77
"+"
"+"grey77
"+"
"+"gray76
"+"
"+"grey76
"+"
"+"silver
"+"
"+"gray75
"+"
"+"grey75
"+"
"+"gray74
"+"
"+"grey74
"+"
"+"gray73
"+"
"+"grey73
"+"
"+"gray72
"+"
"+"grey72
"+"
"+"gray71
"+"
"+"grey71
"+"
"+"gray70
"+"
"+"grey70
"+"
"+"gray69
"+"
"+"grey69
"+"
"+"gray68
"+"
"+"grey68
"+"
"+"gray67
"+"
"+"grey67
"+"
"+"DarkGray
"+"
"+"DarkGrey
"+"
"+"gray66
"+"
"+"grey66
"+"
"+"gray65
"+"
"+"grey65
"+"
"+"gray64
"+"
"+"grey64
"+"
"+"gray63
"+"
"+"grey63
"+"
"+"gray62
"+"
"+"grey62
"+"
"+"gray61
"+"
"+"grey61
"+"
"+"gray60
"+"
"+"grey60
"+"
"+"gray59
"+"
"+"grey59
"+"
"+"gray58
"+"
"+"grey58
"+"
"+"gray57
"+"
"+"grey57
"+"
"+"gray56
"+"
"+"grey56
"+"
"+"gray55
"+"
"+"grey55
"+"
"+"gray54
"+"
"+"grey54
"+"
"+"gray53
"+"
"+"grey53
"+"
"+"gray52
"+"
"+"grey52
"+"
"+"gray51
"+"
"+"grey51
"+"
"+"fractal
"+"
"+"gray50
"+"
"+"grey50
"+"
"+"gray
"+"
"+"gray49
"+"
"+"grey49
"+"
"+"gray48
"+"
"+"grey48
"+"
"+"gray47
"+"
"+"grey47
"+"
"+"gray46
"+"
"+"grey46
"+"
"+"gray45
"+"
"+"grey45
"+"
"+"gray44
"+"
"+"grey44
"+"
"+"gray43
"+"
"+"grey43
"+"
"+"gray42
"+"
"+"grey42
"+"
"+"DimGray
"+"
"+"DimGrey
"+"
"+"gray41
"+"
"+"grey41
"+"
"+"gray40
"+"
"+"grey40
"+"
"+"gray39
"+"
"+"grey39
"+"
"+"gray38
"+"
"+"grey38
"+"
"+"gray37
"+"
"+"grey37
"+"
"+"gray36
"+"
"+"grey36
"+"
"+"gray35
"+"
"+"grey35
"+"
"+"gray34
"+"
"+"grey34
"+"
"+"gray33
"+"
"+"grey33
"+"
"+"gray32
"+"
"+"grey32
"+"
"+"gray31
"+"
"+"grey31
"+"
"+"gray30
"+"
"+"grey30
"+"
"+"gray29
"+"
"+"grey29
"+"
"+"gray28
"+"
"+"grey28
"+"
"+"gray27
"+"
"+"grey27
"+"
"+"gray26
"+"
"+"grey26
"+"
"+"gray25
"+"
"+"grey25
"+"
"+"gray24
"+"
"+"grey24
"+"
"+"gray23
"+"
"+"grey23
"+"
"+"gray22
"+"
"+"grey22
"+"
"+"gray21
"+"
"+"grey21
"+"
"+"gray20
"+"
"+"grey20
"+"
"+"gray19
"+"
"+"grey19
"+"
"+"gray18
"+"
"+"grey18
"+"
"+"gray17
"+"
"+"grey17
"+"
"+"gray16
"+"
"+"grey16
"+"
"+"gray15
"+"
"+"grey15
"+"
"+"gray14
"+"
"+"grey14
"+"
"+"gray13
"+"
"+"grey13
"+"
"+"gray12
"+"
"+"grey12
"+"
"+"gray11
"+"
"+"grey11
"+"
"+"gray10
"+"
"+"grey10
"+"
"+"gray9
"+"
"+"grey9
"+"
"+"gray8
"+"
"+"grey8
"+"
"+"gray7
"+"
"+"grey7
"+"
"+"gray6
"+"
"+"grey6
"+"
"+"gray5
"+"
"+"grey5
"+"
"+"gray4
"+"
"+"grey4
"+"
"+"gray3
"+"
"+"grey3
"+"
"+"gray2
"+"
"+"grey2
"+"
"+"gray1
"+"
"+"grey1
"+"
"+"black
"+"
"+"gray0
"+"
"+"grey0
"+"
"+"opaque
"+"
"+"none
"+"
"+"transparent
"+"
"+"
WHERE THE COLORNAMES WILL GO
"+""+"" + + +function showpicker() + { + $('#popupContact').html(colorpicker); + $('#swingleft').append("whos the dadd addad"); + $('#popupContact').css('height', '1500px') + } + +$('#colorlist').click(function(){showpicker()}) + + + + diff --git a/frontend/imgrid/colors/junk/scrollio.html b/frontend/imgrid/colors/junk/scrollio.html new file mode 100755 index 0000000..e1443c3 --- /dev/null +++ b/frontend/imgrid/colors/junk/scrollio.html @@ -0,0 +1,3850 @@ + + + + + + +
+
+
+
+snow
+
+snow1
+
+snow2
+
+RosyBrown1
+
+RosyBrown2
+
+snow3
+
+LightCoral
+
+IndianRed1
+
+RosyBrown3
+
+IndianRed2
+
+RosyBrown
+
+brown1
+
+firebrick1
+
+brown2
+
+IndianRed
+
+IndianRed3
+
+firebrick2
+
+snow4
+
+brown3
+
+red
+
+red1
+
+RosyBrown4
+
+firebrick3
+
+red2
+
+firebrick
+
+brown
+
+red3
+
+IndianRed4
+
+brown4
+
+firebrick4
+
+DarkRed
+
+red4
+
+maroon
+
+LightPink1
+
+LightPink3
+
+LightPink4
+
+LightPink2
+
+LightPink
+
+pink
+
+crimson
+
+pink1
+
+pink2
+
+pink3
+
+pink4
+
+PaleVioletRed4
+
+PaleVioletRed
+
+PaleVioletRed2
+
+PaleVioletRed1
+
+PaleVioletRed3
+
+LavenderBlush
+
+LavenderBlush1
+
+LavenderBlush3
+
+LavenderBlush2
+
+LavenderBlush4
+
+maroon
+
+HotPink3
+
+VioletRed3
+
+VioletRed1
+
+VioletRed2
+
+VioletRed4
+
+HotPink2
+
+HotPink1
+
+HotPink4
+
+HotPink
+
+DeepPink
+
+DeepPink1
+
+DeepPink2
+
+DeepPink3
+
+DeepPink4
+
+maroon1
+
+maroon2
+
+maroon3
+
+maroon4
+
+MediumVioletRed
+
+VioletRed
+
+orchid2
+
+orchid
+
+orchid1
+
+orchid3
+
+orchid4
+
+thistle1
+
+thistle2
+
+plum1
+
+plum2
+
+thistle
+
+thistle3
+
+plum
+
+violet
+
+plum3
+
+thistle4
+
+fuchsia
+
+magenta
+
+magenta1
+
+plum4
+
+magenta2
+
+magenta3
+
+DarkMagenta
+
+magenta4
+
+purple
+
+MediumOrchid
+
+MediumOrchid1
+
+MediumOrchid2
+
+MediumOrchid3
+
+MediumOrchid4
+
+DarkViolet
+
+DarkOrchid
+
+DarkOrchid1
+
+DarkOrchid3
+
+DarkOrchid2
+
+DarkOrchid4
+
+purple
+
+indigo
+
+BlueViolet
+
+purple2
+
+purple3
+
+purple4
+
+purple1
+
+MediumPurple
+
+MediumPurple1
+
+MediumPurple2
+
+MediumPurple3
+
+MediumPurple4
+
+DarkSlateBlue
+
+LightSlateBlue
+
+MediumSlateBlue
+
+SlateBlue
+
+SlateBlue1
+
+SlateBlue2
+
+SlateBlue3
+
+SlateBlue4
+
+GhostWhite
+
+lavender
+
+blue
+
+blue1
+
+blue2
+
+blue3
+
+MediumBlue
+
+blue4
+
+DarkBlue
+
+MidnightBlue
+
+navy
+
+NavyBlue
+
+RoyalBlue
+
+RoyalBlue1
+
+RoyalBlue2
+
+RoyalBlue3
+
+RoyalBlue4
+
+CornflowerBlue
+
+LightSteelBlue
+
+LightSteelBlue1
+
+LightSteelBlue2
+
+LightSteelBlue3
+
+LightSteelBlue4
+
+SlateGray4
+
+SlateGray1
+
+SlateGray2
+
+SlateGray3
+
+LightSlateGray
+
+LightSlateGrey
+
+SlateGray
+
+SlateGrey
+
+DodgerBlue
+
+DodgerBlue1
+
+DodgerBlue2
+
+DodgerBlue4
+
+DodgerBlue3
+
+AliceBlue
+
+SteelBlue4
+
+SteelBlue
+
+SteelBlue1
+
+SteelBlue2
+
+SteelBlue3
+
+SkyBlue4
+
+SkyBlue1
+
+SkyBlue2
+
+SkyBlue3
+
+LightSkyBlue
+
+LightSkyBlue4
+
+LightSkyBlue1
+
+LightSkyBlue2
+
+LightSkyBlue3
+
+SkyBlue
+
+LightBlue3
+
+DeepSkyBlue
+
+DeepSkyBlue1
+
+DeepSkyBlue2
+
+DeepSkyBlue4
+
+DeepSkyBlue3
+
+LightBlue1
+
+LightBlue2
+
+LightBlue
+
+LightBlue4
+
+PowderBlue
+
+CadetBlue1
+
+CadetBlue2
+
+CadetBlue3
+
+CadetBlue4
+
+turquoise1
+
+turquoise2
+
+turquoise3
+
+turquoise4
+
+cadet blue
+
+CadetBlue
+
+DarkTurquoise
+
+azure
+
+azure1
+
+LightCyan
+
+LightCyan1
+
+azure2
+
+LightCyan2
+
+PaleTurquoise1
+
+PaleTurquoise
+
+PaleTurquoise2
+
+DarkSlateGray1
+
+azure3
+
+LightCyan3
+
+DarkSlateGray2
+
+PaleTurquoise3
+
+DarkSlateGray3
+
+azure4
+
+LightCyan4
+
+aqua
+
+cyan
+
+cyan1
+
+PaleTurquoise4
+
+cyan2
+
+DarkSlateGray4
+
+cyan3
+
+cyan4
+
+DarkCyan
+
+teal
+
+DarkSlateGray
+
+DarkSlateGrey
+
+MediumTurquoise
+
+LightSeaGreen
+
+turquoise
+
+aquamarine4
+
+aquamarine
+
+aquamarine1
+
+aquamarine2
+
+aquamarine3
+
+MediumAquamarine
+
+MediumSpringGreen
+
+MintCream
+
+SpringGreen
+
+SpringGreen1
+
+SpringGreen2
+
+SpringGreen3
+
+SpringGreen4
+
+MediumSeaGreen
+
+SeaGreen
+
+SeaGreen3
+
+SeaGreen1
+
+SeaGreen4
+
+SeaGreen2
+
+MediumForestGreen
+
+honeydew
+
+honeydew1
+
+honeydew2
+
+DarkSeaGreen1
+
+DarkSeaGreen2
+
+PaleGreen1
+
+PaleGreen
+
+honeydew3
+
+LightGreen
+
+PaleGreen2
+
+DarkSeaGreen3
+
+DarkSeaGreen
+
+PaleGreen3
+
+honeydew4
+
+green1
+
+lime
+
+LimeGreen
+
+DarkSeaGreen4
+
+green2
+
+PaleGreen4
+
+green3
+
+ForestGreen
+
+green4
+
+green
+
+DarkGreen
+
+LawnGreen
+
+chartreuse
+
+chartreuse1
+
+chartreuse2
+
+chartreuse3
+
+chartreuse4
+
+GreenYellow
+
+DarkOliveGreen3
+
+DarkOliveGreen1
+
+DarkOliveGreen2
+
+DarkOliveGreen4
+
+DarkOliveGreen
+
+OliveDrab
+
+OliveDrab1
+
+OliveDrab2
+
+OliveDrab3
+
+YellowGreen
+
+OliveDrab4
+
+ivory
+
+ivory1
+
+LightYellow
+
+LightYellow1
+
+beige
+
+ivory2
+
+LightGoldenrodYellow
+
+LightYellow2
+
+ivory3
+
+LightYellow3
+
+ivory4
+
+LightYellow4
+
+yellow
+
+yellow1
+
+yellow2
+
+yellow3
+
+yellow4
+
+olive
+
+DarkKhaki
+
+khaki2
+
+LemonChiffon4
+
+khaki1
+
+khaki3
+
+khaki4
+
+PaleGoldenrod
+
+LemonChiffon
+
+LemonChiffon1
+
+khaki
+
+LemonChiffon3
+
+LemonChiffon2
+
+MediumGoldenRod
+
+cornsilk4
+
+gold
+
+gold1
+
+gold2
+
+gold3
+
+gold4
+
+LightGoldenrod
+
+LightGoldenrod4
+
+LightGoldenrod1
+
+LightGoldenrod3
+
+LightGoldenrod2
+
+cornsilk3
+
+cornsilk2
+
+cornsilk
+
+cornsilk1
+
+goldenrod
+
+goldenrod1
+
+goldenrod2
+
+goldenrod3
+
+goldenrod4
+
+DarkGoldenrod
+
+DarkGoldenrod1
+
+DarkGoldenrod2
+
+DarkGoldenrod3
+
+DarkGoldenrod4
+
+FloralWhite
+
+wheat2
+
+OldLace
+
+wheat
+
+wheat1
+
+wheat3
+
+orange
+
+orange1
+
+orange2
+
+orange3
+
+orange4
+
+wheat4
+
+moccasin
+
+PapayaWhip
+
+NavajoWhite3
+
+BlanchedAlmond
+
+NavajoWhite
+
+NavajoWhite1
+
+NavajoWhite2
+
+NavajoWhite4
+
+AntiqueWhite4
+
+AntiqueWhite
+
+tan
+
+bisque4
+
+burlywood
+
+AntiqueWhite2
+
+burlywood1
+
+burlywood3
+
+burlywood2
+
+AntiqueWhite1
+
+burlywood4
+
+AntiqueWhite3
+
+DarkOrange
+
+bisque2
+
+bisque
+
+bisque1
+
+bisque3
+
+DarkOrange1
+
+linen
+
+DarkOrange2
+
+DarkOrange3
+
+DarkOrange4
+
+peru
+
+tan1
+
+tan2
+
+tan3
+
+tan4
+
+PeachPuff
+
+PeachPuff1
+
+PeachPuff4
+
+PeachPuff2
+
+PeachPuff3
+
+SandyBrown
+
+seashell4
+
+seashell2
+
+seashell3
+
+chocolate
+
+chocolate1
+
+chocolate2
+
+chocolate3
+
+chocolate4
+
+SaddleBrown
+
+seashell
+
+seashell1
+
+sienna4
+
+sienna
+
+sienna1
+
+sienna2
+
+sienna3
+
+LightSalmon3
+
+LightSalmon
+
+LightSalmon1
+
+LightSalmon4
+
+LightSalmon2
+
+coral
+
+OrangeRed
+
+OrangeRed1
+
+OrangeRed2
+
+OrangeRed3
+
+OrangeRed4
+
+DarkSalmon
+
+salmon1
+
+salmon2
+
+salmon3
+
+salmon4
+
+coral1
+
+coral2
+
+coral3
+
+coral4
+
+tomato4
+
+tomato
+
+tomato1
+
+tomato2
+
+tomato3
+
+MistyRose4
+
+MistyRose2
+
+MistyRose
+
+MistyRose1
+
+salmon
+
+MistyRose3
+
+white
+
+gray100
+
+grey100
+
+grey100
+
+gray99
+
+grey99
+
+gray98
+
+grey98
+
+gray97
+
+grey97
+
+gray96
+
+grey96
+
+WhiteSmoke
+
+gray95
+
+grey95
+
+gray94
+
+grey94
+
+gray93
+
+grey93
+
+gray92
+
+grey92
+
+gray91
+
+grey91
+
+gray90
+
+grey90
+
+gray89
+
+grey89
+
+gray88
+
+grey88
+
+gray87
+
+grey87
+
+gainsboro
+
+gray86
+
+grey86
+
+gray85
+
+grey85
+
+gray84
+
+grey84
+
+gray83
+
+grey83
+
+LightGray
+
+LightGrey
+
+gray82
+
+grey82
+
+gray81
+
+grey81
+
+gray80
+
+grey80
+
+gray79
+
+grey79
+
+gray78
+
+grey78
+
+gray77
+
+grey77
+
+gray76
+
+grey76
+
+silver
+
+gray75
+
+grey75
+
+gray74
+
+grey74
+
+gray73
+
+grey73
+
+gray72
+
+grey72
+
+gray71
+
+grey71
+
+gray70
+
+grey70
+
+gray69
+
+grey69
+
+gray68
+
+grey68
+
+gray67
+
+grey67
+
+DarkGray
+
+DarkGrey
+
+gray66
+
+grey66
+
+gray65
+
+grey65
+
+gray64
+
+grey64
+
+gray63
+
+grey63
+
+gray62
+
+grey62
+
+gray61
+
+grey61
+
+gray60
+
+grey60
+
+gray59
+
+grey59
+
+gray58
+
+grey58
+
+gray57
+
+grey57
+
+gray56
+
+grey56
+
+gray55
+
+grey55
+
+gray54
+
+grey54
+
+gray53
+
+grey53
+
+gray52
+
+grey52
+
+gray51
+
+grey51
+
+fractal
+
+gray50
+
+grey50
+
+gray
+
+gray49
+
+grey49
+
+gray48
+
+grey48
+
+gray47
+
+grey47
+
+gray46
+
+grey46
+
+gray45
+
+grey45
+
+gray44
+
+grey44
+
+gray43
+
+grey43
+
+gray42
+
+grey42
+
+DimGray
+
+DimGrey
+
+gray41
+
+grey41
+
+gray40
+
+grey40
+
+gray39
+
+grey39
+
+gray38
+
+grey38
+
+gray37
+
+grey37
+
+gray36
+
+grey36
+
+gray35
+
+grey35
+
+gray34
+
+grey34
+
+gray33
+
+grey33
+
+gray32
+
+grey32
+
+gray31
+
+grey31
+
+gray30
+
+grey30
+
+gray29
+
+grey29
+
+gray28
+
+grey28
+
+gray27
+
+grey27
+
+gray26
+
+grey26
+
+gray25
+
+grey25
+
+gray24
+
+grey24
+
+gray23
+
+grey23
+
+gray22
+
+grey22
+
+gray21
+
+grey21
+
+gray20
+
+grey20
+
+gray19
+
+grey19
+
+gray18
+
+grey18
+
+gray17
+
+grey17
+
+gray16
+
+grey16
+
+gray15
+
+grey15
+
+gray14
+
+grey14
+
+gray13
+
+grey13
+
+gray12
+
+grey12
+
+gray11
+
+grey11
+
+gray10
+
+grey10
+
+gray9
+
+grey9
+
+gray8
+
+grey8
+
+gray7
+
+grey7
+
+gray6
+
+grey6
+
+gray5
+
+grey5
+
+gray4
+
+grey4
+
+gray3
+
+grey3
+
+gray2
+
+grey2
+
+gray1
+
+grey1
+
+black
+
+gray0
+
+grey0
+
+opaque
+
+none
+
+transparent
+
+
+ +
+CLICK TO CHOOSE THE COLOR +
+ +
+ +OPTIONS +
CLICK TO USE HEX KEYS
+
+
CLICK TO TOGGLE PALATE INFO
+
+
CLICK TO TOGGLE BACKGROUNDS
+
+
+
YOU WILL CHOOSE:
+
+to choose transparent as a color, click HERE +
+
+ + + + + + diff --git a/frontend/imgrid/colors/junk/separate b/frontend/imgrid/colors/junk/separate new file mode 100755 index 0000000..b32bc49 --- /dev/null +++ b/frontend/imgrid/colors/junk/separate @@ -0,0 +1,126 @@ +#!/usr/bin/python2.7 + + +f = open('colors.html', 'r') +lines = f.readlines() +colornames = [] +hexes = [] +for line in lines: + if 'right' in line and 'td' in line: + colornames.append(line[22:-6]) + if '#' in line: + hexes.append(line[21:28]) + if line == lines[len(lines)-1]: + break +print len(hexes) +print len(colornames) +###making a dictionary +hextoname = {} +nametohex = {} +for i in hexes: + hextoname[i] = colornames[hexes.index(i)] +for i in colornames: + nametohex[i] = hexes[colornames.index(i)] +w = open('colordict.js', 'w') +w.write("var hextoname = "+str(hextoname)+"\n") +w.write("var nametohex = "+str(nametohex)+"\n") +w.close() +ds = [] +for x in range(674): + ds.append('d'+str(x)) + +#print hexes +#note last two hex values in lists are wrong for they correspond to none and transparent +w = open('colorsnew.html', 'w') +w.write("""\n\n +") +w.write("\n
\n") +for x in range(674): + w.write("
\n"+colornames[x]+"
\n") +w.write("
\n") +w.write("
WHERE THE COLORNAMES WILL GO
") +w.write("") +w.write("\n") +w.write("\n") +w.write("\n\n") diff --git a/frontend/imgrid/colors/junk/todo.txt b/frontend/imgrid/colors/junk/todo.txt new file mode 100755 index 0000000..ff9ae66 --- /dev/null +++ b/frontend/imgrid/colors/junk/todo.txt @@ -0,0 +1,135 @@ +manyprettygradients: +finish formatting tumblr +put on autoscroll +think about font (minoan) THIS IS WHY WE NEED TEXT BLASTER +turn it to a bot + pre-step: delete everything on there + step 1: gradientscrape longerlogfile + step 2: post those + step 3: make gradientscrape call itself every 30 minutes + step 5: swipe??? + step 4: import the write function from main.py + + + + + + + + + + + + + + + + + + + + + + python 2.6 == /opt/python2.6/bin/python + + + JUANITA = True + #JUANITA = False + + + +from main.py, import * (follow_followers, reblog_posts, post_images) +process_followers() +reblog_posts() +post_images() + +def now (): + return int(time.mktime(time.localtime())) + +def save_seen (ids): + out = open (DUMP_SEEN+".tmp", "w") + for id in ids.keys(): + out.write(id+"\n") + out.close() + system(["/bin/mv", DUMP_SEEN+".tmp", DUMP_SEEN]) + +def slurp (file): + input = open (file, "r") + lines = input.readlines() + input.close() + return lines + +def new_dump (dumps, seen): + id = random.choice(dumps.keys()) + while id in seen: + id = random.choice(dumps.keys()) + thedump = dumps[id] + seen[id] = True + save_seen(seen) + if JUANITA: + print thedump + else: + dump.say(thedump) + wait = random.randint(2,28)*30 + random.randint(1,55) + print "sleeping for", str(wait/60) + "m" + str(wait % 60) + "s..." + print + time.sleep(wait) + +def main (): + score_lines = slurp(DUMP_LIST) + dumps = {} + scored = {} + # first pass to work out the top score for each dump + for line in score_lines: + # 0 id 1 score 2 favers 3 urls + partz = line.split("\t") +#skipping over really old stuff + if int(partz[0]) < 3618853: + continue + + urls = partz[3].split(" ") + skip = False + for url in urls: + if "http" not in url: + skip = True + if skip: + continue + # dictionary: urls => (id, score) + if partz[3] in scored and int(partz[1]) > scored[partz[3]][1]: + scored[partz[3]] = (partz[0], int(partz[1])) + else: + scored[partz[3]] = (partz[0], int(partz[1])) + + except KeyError: + continue + except ValueError: + continue + + # second pass to weed out dumps with scores too high/low + for urls in scored.keys(): + if scored[urls][1] > 0 and scored[urls][1] < 6: + # dictionary: id => urls + dumps[scored[urls][0]] = urls.strip() + + seen_lines = slurp(DUMP_SEEN) + seen = {} + for line in seen_lines: + l = line.strip() + if len(l): + seen[l] = True + + print len(dumps), "dumps in queue" + print len(seen_lines), "dumped already" + + if JUANITA: + for i in xrange(10): + new_dump (dumps, seen) + else: + while (1): + new_dump (dumps, seen) + else: + print "TURNED OFF, sleeping for half an hour..." + time.sleep (30*60) + +main () + diff --git a/frontend/imgrid/colors/junk/withscroller.html b/frontend/imgrid/colors/junk/withscroller.html new file mode 100755 index 0000000..e1443c3 --- /dev/null +++ b/frontend/imgrid/colors/junk/withscroller.html @@ -0,0 +1,3850 @@ + + + + + + +
+
+
+
+snow
+
+snow1
+
+snow2
+
+RosyBrown1
+
+RosyBrown2
+
+snow3
+
+LightCoral
+
+IndianRed1
+
+RosyBrown3
+
+IndianRed2
+
+RosyBrown
+
+brown1
+
+firebrick1
+
+brown2
+
+IndianRed
+
+IndianRed3
+
+firebrick2
+
+snow4
+
+brown3
+
+red
+
+red1
+
+RosyBrown4
+
+firebrick3
+
+red2
+
+firebrick
+
+brown
+
+red3
+
+IndianRed4
+
+brown4
+
+firebrick4
+
+DarkRed
+
+red4
+
+maroon
+
+LightPink1
+
+LightPink3
+
+LightPink4
+
+LightPink2
+
+LightPink
+
+pink
+
+crimson
+
+pink1
+
+pink2
+
+pink3
+
+pink4
+
+PaleVioletRed4
+
+PaleVioletRed
+
+PaleVioletRed2
+
+PaleVioletRed1
+
+PaleVioletRed3
+
+LavenderBlush
+
+LavenderBlush1
+
+LavenderBlush3
+
+LavenderBlush2
+
+LavenderBlush4
+
+maroon
+
+HotPink3
+
+VioletRed3
+
+VioletRed1
+
+VioletRed2
+
+VioletRed4
+
+HotPink2
+
+HotPink1
+
+HotPink4
+
+HotPink
+
+DeepPink
+
+DeepPink1
+
+DeepPink2
+
+DeepPink3
+
+DeepPink4
+
+maroon1
+
+maroon2
+
+maroon3
+
+maroon4
+
+MediumVioletRed
+
+VioletRed
+
+orchid2
+
+orchid
+
+orchid1
+
+orchid3
+
+orchid4
+
+thistle1
+
+thistle2
+
+plum1
+
+plum2
+
+thistle
+
+thistle3
+
+plum
+
+violet
+
+plum3
+
+thistle4
+
+fuchsia
+
+magenta
+
+magenta1
+
+plum4
+
+magenta2
+
+magenta3
+
+DarkMagenta
+
+magenta4
+
+purple
+
+MediumOrchid
+
+MediumOrchid1
+
+MediumOrchid2
+
+MediumOrchid3
+
+MediumOrchid4
+
+DarkViolet
+
+DarkOrchid
+
+DarkOrchid1
+
+DarkOrchid3
+
+DarkOrchid2
+
+DarkOrchid4
+
+purple
+
+indigo
+
+BlueViolet
+
+purple2
+
+purple3
+
+purple4
+
+purple1
+
+MediumPurple
+
+MediumPurple1
+
+MediumPurple2
+
+MediumPurple3
+
+MediumPurple4
+
+DarkSlateBlue
+
+LightSlateBlue
+
+MediumSlateBlue
+
+SlateBlue
+
+SlateBlue1
+
+SlateBlue2
+
+SlateBlue3
+
+SlateBlue4
+
+GhostWhite
+
+lavender
+
+blue
+
+blue1
+
+blue2
+
+blue3
+
+MediumBlue
+
+blue4
+
+DarkBlue
+
+MidnightBlue
+
+navy
+
+NavyBlue
+
+RoyalBlue
+
+RoyalBlue1
+
+RoyalBlue2
+
+RoyalBlue3
+
+RoyalBlue4
+
+CornflowerBlue
+
+LightSteelBlue
+
+LightSteelBlue1
+
+LightSteelBlue2
+
+LightSteelBlue3
+
+LightSteelBlue4
+
+SlateGray4
+
+SlateGray1
+
+SlateGray2
+
+SlateGray3
+
+LightSlateGray
+
+LightSlateGrey
+
+SlateGray
+
+SlateGrey
+
+DodgerBlue
+
+DodgerBlue1
+
+DodgerBlue2
+
+DodgerBlue4
+
+DodgerBlue3
+
+AliceBlue
+
+SteelBlue4
+
+SteelBlue
+
+SteelBlue1
+
+SteelBlue2
+
+SteelBlue3
+
+SkyBlue4
+
+SkyBlue1
+
+SkyBlue2
+
+SkyBlue3
+
+LightSkyBlue
+
+LightSkyBlue4
+
+LightSkyBlue1
+
+LightSkyBlue2
+
+LightSkyBlue3
+
+SkyBlue
+
+LightBlue3
+
+DeepSkyBlue
+
+DeepSkyBlue1
+
+DeepSkyBlue2
+
+DeepSkyBlue4
+
+DeepSkyBlue3
+
+LightBlue1
+
+LightBlue2
+
+LightBlue
+
+LightBlue4
+
+PowderBlue
+
+CadetBlue1
+
+CadetBlue2
+
+CadetBlue3
+
+CadetBlue4
+
+turquoise1
+
+turquoise2
+
+turquoise3
+
+turquoise4
+
+cadet blue
+
+CadetBlue
+
+DarkTurquoise
+
+azure
+
+azure1
+
+LightCyan
+
+LightCyan1
+
+azure2
+
+LightCyan2
+
+PaleTurquoise1
+
+PaleTurquoise
+
+PaleTurquoise2
+
+DarkSlateGray1
+
+azure3
+
+LightCyan3
+
+DarkSlateGray2
+
+PaleTurquoise3
+
+DarkSlateGray3
+
+azure4
+
+LightCyan4
+
+aqua
+
+cyan
+
+cyan1
+
+PaleTurquoise4
+
+cyan2
+
+DarkSlateGray4
+
+cyan3
+
+cyan4
+
+DarkCyan
+
+teal
+
+DarkSlateGray
+
+DarkSlateGrey
+
+MediumTurquoise
+
+LightSeaGreen
+
+turquoise
+
+aquamarine4
+
+aquamarine
+
+aquamarine1
+
+aquamarine2
+
+aquamarine3
+
+MediumAquamarine
+
+MediumSpringGreen
+
+MintCream
+
+SpringGreen
+
+SpringGreen1
+
+SpringGreen2
+
+SpringGreen3
+
+SpringGreen4
+
+MediumSeaGreen
+
+SeaGreen
+
+SeaGreen3
+
+SeaGreen1
+
+SeaGreen4
+
+SeaGreen2
+
+MediumForestGreen
+
+honeydew
+
+honeydew1
+
+honeydew2
+
+DarkSeaGreen1
+
+DarkSeaGreen2
+
+PaleGreen1
+
+PaleGreen
+
+honeydew3
+
+LightGreen
+
+PaleGreen2
+
+DarkSeaGreen3
+
+DarkSeaGreen
+
+PaleGreen3
+
+honeydew4
+
+green1
+
+lime
+
+LimeGreen
+
+DarkSeaGreen4
+
+green2
+
+PaleGreen4
+
+green3
+
+ForestGreen
+
+green4
+
+green
+
+DarkGreen
+
+LawnGreen
+
+chartreuse
+
+chartreuse1
+
+chartreuse2
+
+chartreuse3
+
+chartreuse4
+
+GreenYellow
+
+DarkOliveGreen3
+
+DarkOliveGreen1
+
+DarkOliveGreen2
+
+DarkOliveGreen4
+
+DarkOliveGreen
+
+OliveDrab
+
+OliveDrab1
+
+OliveDrab2
+
+OliveDrab3
+
+YellowGreen
+
+OliveDrab4
+
+ivory
+
+ivory1
+
+LightYellow
+
+LightYellow1
+
+beige
+
+ivory2
+
+LightGoldenrodYellow
+
+LightYellow2
+
+ivory3
+
+LightYellow3
+
+ivory4
+
+LightYellow4
+
+yellow
+
+yellow1
+
+yellow2
+
+yellow3
+
+yellow4
+
+olive
+
+DarkKhaki
+
+khaki2
+
+LemonChiffon4
+
+khaki1
+
+khaki3
+
+khaki4
+
+PaleGoldenrod
+
+LemonChiffon
+
+LemonChiffon1
+
+khaki
+
+LemonChiffon3
+
+LemonChiffon2
+
+MediumGoldenRod
+
+cornsilk4
+
+gold
+
+gold1
+
+gold2
+
+gold3
+
+gold4
+
+LightGoldenrod
+
+LightGoldenrod4
+
+LightGoldenrod1
+
+LightGoldenrod3
+
+LightGoldenrod2
+
+cornsilk3
+
+cornsilk2
+
+cornsilk
+
+cornsilk1
+
+goldenrod
+
+goldenrod1
+
+goldenrod2
+
+goldenrod3
+
+goldenrod4
+
+DarkGoldenrod
+
+DarkGoldenrod1
+
+DarkGoldenrod2
+
+DarkGoldenrod3
+
+DarkGoldenrod4
+
+FloralWhite
+
+wheat2
+
+OldLace
+
+wheat
+
+wheat1
+
+wheat3
+
+orange
+
+orange1
+
+orange2
+
+orange3
+
+orange4
+
+wheat4
+
+moccasin
+
+PapayaWhip
+
+NavajoWhite3
+
+BlanchedAlmond
+
+NavajoWhite
+
+NavajoWhite1
+
+NavajoWhite2
+
+NavajoWhite4
+
+AntiqueWhite4
+
+AntiqueWhite
+
+tan
+
+bisque4
+
+burlywood
+
+AntiqueWhite2
+
+burlywood1
+
+burlywood3
+
+burlywood2
+
+AntiqueWhite1
+
+burlywood4
+
+AntiqueWhite3
+
+DarkOrange
+
+bisque2
+
+bisque
+
+bisque1
+
+bisque3
+
+DarkOrange1
+
+linen
+
+DarkOrange2
+
+DarkOrange3
+
+DarkOrange4
+
+peru
+
+tan1
+
+tan2
+
+tan3
+
+tan4
+
+PeachPuff
+
+PeachPuff1
+
+PeachPuff4
+
+PeachPuff2
+
+PeachPuff3
+
+SandyBrown
+
+seashell4
+
+seashell2
+
+seashell3
+
+chocolate
+
+chocolate1
+
+chocolate2
+
+chocolate3
+
+chocolate4
+
+SaddleBrown
+
+seashell
+
+seashell1
+
+sienna4
+
+sienna
+
+sienna1
+
+sienna2
+
+sienna3
+
+LightSalmon3
+
+LightSalmon
+
+LightSalmon1
+
+LightSalmon4
+
+LightSalmon2
+
+coral
+
+OrangeRed
+
+OrangeRed1
+
+OrangeRed2
+
+OrangeRed3
+
+OrangeRed4
+
+DarkSalmon
+
+salmon1
+
+salmon2
+
+salmon3
+
+salmon4
+
+coral1
+
+coral2
+
+coral3
+
+coral4
+
+tomato4
+
+tomato
+
+tomato1
+
+tomato2
+
+tomato3
+
+MistyRose4
+
+MistyRose2
+
+MistyRose
+
+MistyRose1
+
+salmon
+
+MistyRose3
+
+white
+
+gray100
+
+grey100
+
+grey100
+
+gray99
+
+grey99
+
+gray98
+
+grey98
+
+gray97
+
+grey97
+
+gray96
+
+grey96
+
+WhiteSmoke
+
+gray95
+
+grey95
+
+gray94
+
+grey94
+
+gray93
+
+grey93
+
+gray92
+
+grey92
+
+gray91
+
+grey91
+
+gray90
+
+grey90
+
+gray89
+
+grey89
+
+gray88
+
+grey88
+
+gray87
+
+grey87
+
+gainsboro
+
+gray86
+
+grey86
+
+gray85
+
+grey85
+
+gray84
+
+grey84
+
+gray83
+
+grey83
+
+LightGray
+
+LightGrey
+
+gray82
+
+grey82
+
+gray81
+
+grey81
+
+gray80
+
+grey80
+
+gray79
+
+grey79
+
+gray78
+
+grey78
+
+gray77
+
+grey77
+
+gray76
+
+grey76
+
+silver
+
+gray75
+
+grey75
+
+gray74
+
+grey74
+
+gray73
+
+grey73
+
+gray72
+
+grey72
+
+gray71
+
+grey71
+
+gray70
+
+grey70
+
+gray69
+
+grey69
+
+gray68
+
+grey68
+
+gray67
+
+grey67
+
+DarkGray
+
+DarkGrey
+
+gray66
+
+grey66
+
+gray65
+
+grey65
+
+gray64
+
+grey64
+
+gray63
+
+grey63
+
+gray62
+
+grey62
+
+gray61
+
+grey61
+
+gray60
+
+grey60
+
+gray59
+
+grey59
+
+gray58
+
+grey58
+
+gray57
+
+grey57
+
+gray56
+
+grey56
+
+gray55
+
+grey55
+
+gray54
+
+grey54
+
+gray53
+
+grey53
+
+gray52
+
+grey52
+
+gray51
+
+grey51
+
+fractal
+
+gray50
+
+grey50
+
+gray
+
+gray49
+
+grey49
+
+gray48
+
+grey48
+
+gray47
+
+grey47
+
+gray46
+
+grey46
+
+gray45
+
+grey45
+
+gray44
+
+grey44
+
+gray43
+
+grey43
+
+gray42
+
+grey42
+
+DimGray
+
+DimGrey
+
+gray41
+
+grey41
+
+gray40
+
+grey40
+
+gray39
+
+grey39
+
+gray38
+
+grey38
+
+gray37
+
+grey37
+
+gray36
+
+grey36
+
+gray35
+
+grey35
+
+gray34
+
+grey34
+
+gray33
+
+grey33
+
+gray32
+
+grey32
+
+gray31
+
+grey31
+
+gray30
+
+grey30
+
+gray29
+
+grey29
+
+gray28
+
+grey28
+
+gray27
+
+grey27
+
+gray26
+
+grey26
+
+gray25
+
+grey25
+
+gray24
+
+grey24
+
+gray23
+
+grey23
+
+gray22
+
+grey22
+
+gray21
+
+grey21
+
+gray20
+
+grey20
+
+gray19
+
+grey19
+
+gray18
+
+grey18
+
+gray17
+
+grey17
+
+gray16
+
+grey16
+
+gray15
+
+grey15
+
+gray14
+
+grey14
+
+gray13
+
+grey13
+
+gray12
+
+grey12
+
+gray11
+
+grey11
+
+gray10
+
+grey10
+
+gray9
+
+grey9
+
+gray8
+
+grey8
+
+gray7
+
+grey7
+
+gray6
+
+grey6
+
+gray5
+
+grey5
+
+gray4
+
+grey4
+
+gray3
+
+grey3
+
+gray2
+
+grey2
+
+gray1
+
+grey1
+
+black
+
+gray0
+
+grey0
+
+opaque
+
+none
+
+transparent
+
+
+ +
+CLICK TO CHOOSE THE COLOR +
+ +
+ +OPTIONS +
CLICK TO USE HEX KEYS
+
+
CLICK TO TOGGLE PALATE INFO
+
+
CLICK TO TOGGLE BACKGROUNDS
+
+
+
YOU WILL CHOOSE:
+
+to choose transparent as a color, click HERE +
+
+ + + + + + -- cgit v1.2.3-70-g09d2