<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>textures-tones.com &#187; misc</title>
	<atom:link href="http://textures-tones.com/category/misc/feed/" rel="self" type="application/rss+xml" />
	<link>http://textures-tones.com</link>
	<description>documenting the major successes and minor failures of this international life</description>
	<lastBuildDate>Sun, 05 Sep 2010 18:44:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>CSS Plaintext Colors</title>
		<link>http://textures-tones.com/2010/08/11/css-plaintext-colors/</link>
		<comments>http://textures-tones.com/2010/08/11/css-plaintext-colors/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 19:27:17 +0000</pubDate>
		<dc:creator>sean x. l.</dc:creator>
				<category><![CDATA[misc]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://textures-tones.com/?p=1212</guid>
		<description><![CDATA[So I&#8217;m writing a web application to display the relative location of wireless sensors within a 2D floor plan. Since everything is dynamic, as in there can be any number of possible sensors to display, I needed some way of color coding them so the points are recognizable in a legend. I looked all around [...]]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;m writing a web application to display the relative location of wireless sensors within a 2D floor plan. Since everything is dynamic, as in there can be any number of possible sensors to display, I needed some way of color coding them so the points are recognizable in a legend. I looked all around for a simple list of colors, something that I could easily put into my PHP code. A pre-formatted array would have been even better. I found neither. The best I found was a pre-formatted array of RGB values, but I wanted plaintext and hex, and as far as those go the best they got are color charts and tables.</p>
<p>On a completely unrelated bit, I was working on a PHP screen scraper to pull specific data out of web pages. The two projects seemed to work well together actually. I found a page of all the plaintext CSS color words and their appropriate hex codes, used my screen scraper to just grab the name and code, then generated a pre-formatted output and preview, that&#8217;s attached to this post :)</p>
<p>I&#8217;m using 4 spaces per tab, so a simple Dreamweaver convert-spaces-to-tabs will give you a properly formatted array of valid CSS plaintext colors and their hex codes. It works great in my sensor web application by the way. I&#8217;m having it loop through it and randomly getting colors for 15 sensors at the moment.</p>
<div style="padding:10px; background-color:#F4F4F4; margin:10px 0;">
<code><br />
$COLORS = array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;'1' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'aliceblue'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#f0f8ff' <span style="background-color:aliceblue; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'2' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'antiquewhite'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#faebd7' <span style="background-color:antiquewhite; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'3' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'aqua'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#00ffff' <span style="background-color:aqua; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'4' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'aquamarine'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#7fffd4' <span style="background-color:aquamarine; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'5' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'azure'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#f0ffff' <span style="background-color:azure; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'6' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'beige'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#f5f5dc' <span style="background-color:beige; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'7' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'bisque'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#ffe4c4' <span style="background-color:bisque; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'8' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'black'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#000000' <span style="background-color:black; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'9' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'blanchedalmond'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#ffebcd' <span style="background-color:blanchedalmond; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'10' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'blue'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#0000ff' <span style="background-color:blue; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'11' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'blueviolet'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#8a2be2' <span style="background-color:blueviolet; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'12' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'brown'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#a52a2a' <span style="background-color:brown; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'13' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'burlywood'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#deb887' <span style="background-color:burlywood; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'14' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'cadetblue'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#5f9ea0' <span style="background-color:cadetblue; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'15' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'chartreuse'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#7fff00' <span style="background-color:chartreuse; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'16' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'chocolate'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#d2691e' <span style="background-color:chocolate; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'17' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'coral'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#ff7f50' <span style="background-color:coral; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'18' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'cornflowerblue'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#6495ed' <span style="background-color:cornflowerblue; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'19' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'cornsilk'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#fff8dc' <span style="background-color:cornsilk; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'20' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'crimson'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#dc143c' <span style="background-color:crimson; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'21' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'cyan'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#00ffff' <span style="background-color:cyan; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'22' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'darkblue'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#00008b' <span style="background-color:darkblue; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'23' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'darkcyan'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#008b8b' <span style="background-color:darkcyan; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'24' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'darkgoldenrod'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#b8860b' <span style="background-color:darkgoldenrod; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'25' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'darkgray'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#a9a9a9' <span style="background-color:darkgray; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'26' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'darkgreen'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#006400' <span style="background-color:darkgreen; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'27' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'darkkhaki'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#bdb76b' <span style="background-color:darkkhaki; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'28' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'darkmagenta'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#8b008b' <span style="background-color:darkmagenta; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'29' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'darkolivegreen'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#556b2f' <span style="background-color:darkolivegreen; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'30' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'darkorange'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#ff8c00' <span style="background-color:darkorange; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'31' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'darkorchid'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#9932cc' <span style="background-color:darkorchid; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'32' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'darkred'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#8b0000' <span style="background-color:darkred; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'33' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'darksalmon'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#e9967a' <span style="background-color:darksalmon; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'34' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'darkseagreen'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#8fbc8f' <span style="background-color:darkseagreen; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'35' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'darkslateblue'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#483d8b' <span style="background-color:darkslateblue; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'36' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'darkslategray'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#2f4f4f' <span style="background-color:darkslategray; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'37' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'darkturquoise'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#00ced1' <span style="background-color:darkturquoise; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'38' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'darkviolet'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#9400d3' <span style="background-color:darkviolet; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'39' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'deeppink'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#ff1493' <span style="background-color:deeppink; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'40' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'deepskyblue'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#00bfff' <span style="background-color:deepskyblue; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'41' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'dimgray'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#696969' <span style="background-color:dimgray; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'42' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'dodgerblue'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#1e90ff' <span style="background-color:dodgerblue; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'43' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'firebrick'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#b22222' <span style="background-color:firebrick; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'44' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'floralwhite'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#fffaf0' <span style="background-color:floralwhite; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'45' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'forestgreen'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#228b22' <span style="background-color:forestgreen; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'46' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'fuchsia'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#ff00ff' <span style="background-color:fuchsia; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'47' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'gainsboro'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#dcdcdc' <span style="background-color:gainsboro; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'48' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'ghostwhite'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#f8f8ff' <span style="background-color:ghostwhite; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'49' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'gold'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#ffd700' <span style="background-color:gold; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'50' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'goldenrod'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#daa520' <span style="background-color:goldenrod; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'51' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'gray'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#808080' <span style="background-color:gray; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'52' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'green'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#008000' <span style="background-color:green; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'53' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'greenyellow'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#adff2f' <span style="background-color:greenyellow; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'54' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'honeydew'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#f0fff0' <span style="background-color:honeydew; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'55' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'hotpink'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#ff69b4' <span style="background-color:hotpink; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'56' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'indianred '<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#cd5c5c' <span style="background-color:indianred ; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'57' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'indigo '<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#4b0082' <span style="background-color:indigo ; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'58' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'ivory'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#fffff0' <span style="background-color:ivory; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'59' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'khaki'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#f0e68c' <span style="background-color:khaki; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'60' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'lavender'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#e6e6fa' <span style="background-color:lavender; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'61' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'lavenderblush'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#fff0f5' <span style="background-color:lavenderblush; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'62' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'lawngreen'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#7cfc00' <span style="background-color:lawngreen; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'63' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'lemonchiffon'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#fffacd' <span style="background-color:lemonchiffon; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'64' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'lightblue'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#add8e6' <span style="background-color:lightblue; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'65' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'lightcoral'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#f08080' <span style="background-color:lightcoral; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'66' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'lightcyan'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#e0ffff' <span style="background-color:lightcyan; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'67' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'lightgoldenrodyellow'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#fafad2' <span style="background-color:lightgoldenrodyellow; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'68' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'lightgrey'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#d3d3d3' <span style="background-color:lightgrey; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'69' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'lightgreen'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#90ee90' <span style="background-color:lightgreen; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'70' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'lightpink'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#ffb6c1' <span style="background-color:lightpink; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'71' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'lightsalmon'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#ffa07a' <span style="background-color:lightsalmon; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'72' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'lightseagreen'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#20b2aa' <span style="background-color:lightseagreen; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'73' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'lightskyblue'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#87cefa' <span style="background-color:lightskyblue; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'74' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'lightslategray'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#778899' <span style="background-color:lightslategray; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'75' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'lightsteelblue'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#b0c4de' <span style="background-color:lightsteelblue; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'76' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'lightyellow'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#ffffe0' <span style="background-color:lightyellow; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'77' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'lime'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#00ff00' <span style="background-color:lime; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'78' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'limegreen'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#32cd32' <span style="background-color:limegreen; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'79' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'linen'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#faf0e6' <span style="background-color:linen; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'80' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'magenta'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#ff00ff' <span style="background-color:magenta; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'81' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'maroon'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#800000' <span style="background-color:maroon; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'82' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'mediumaquamarine'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#66cdaa' <span style="background-color:mediumaquamarine; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'83' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'mediumblue'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#0000cd' <span style="background-color:mediumblue; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'84' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'mediumorchid'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#ba55d3' <span style="background-color:mediumorchid; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'85' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'mediumpurple'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#9370d8' <span style="background-color:mediumpurple; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'86' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'mediumseagreen'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#3cb371' <span style="background-color:mediumseagreen; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'87' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'mediumslateblue'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#7b68ee' <span style="background-color:mediumslateblue; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'88' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'mediumspringgreen'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#00fa9a' <span style="background-color:mediumspringgreen; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'89' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'mediumturquoise'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#48d1cc' <span style="background-color:mediumturquoise; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'90' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'mediumvioletred'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#c71585' <span style="background-color:mediumvioletred; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'91' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'midnightblue'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#191970' <span style="background-color:midnightblue; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'92' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'mintcream'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#f5fffa' <span style="background-color:mintcream; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'93' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'mistyrose'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#ffe4e1' <span style="background-color:mistyrose; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'94' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'moccasin'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#ffe4b5' <span style="background-color:moccasin; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'95' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'navajowhite'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#ffdead' <span style="background-color:navajowhite; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'96' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'navy'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#000080' <span style="background-color:navy; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'97' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'oldlace'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#fdf5e6' <span style="background-color:oldlace; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'98' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'olive'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#808000' <span style="background-color:olive; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'99' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'olivedrab'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#6b8e23' <span style="background-color:olivedrab; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'100' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'orange'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#ffa500' <span style="background-color:orange; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'101' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'orangered'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#ff4500' <span style="background-color:orangered; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'102' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'orchid'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#da70d6' <span style="background-color:orchid; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'103' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'palegoldenrod'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#eee8aa' <span style="background-color:palegoldenrod; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'104' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'palegreen'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#98fb98' <span style="background-color:palegreen; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'105' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'paleturquoise'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#afeeee' <span style="background-color:paleturquoise; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'106' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'palevioletred'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#d87093' <span style="background-color:palevioletred; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'107' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'papayawhip'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#ffefd5' <span style="background-color:papayawhip; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'108' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'peachpuff'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#ffdab9' <span style="background-color:peachpuff; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'109' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'peru'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#cd853f' <span style="background-color:peru; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'110' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'pink'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#ffc0cb' <span style="background-color:pink; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'111' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'plum'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#dda0dd' <span style="background-color:plum; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'112' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'powderblue'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#b0e0e6' <span style="background-color:powderblue; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'113' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'purple'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#800080' <span style="background-color:purple; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'114' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'red'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#ff0000' <span style="background-color:red; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'115' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'rosybrown'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#bc8f8f' <span style="background-color:rosybrown; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'116' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'royalblue'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#4169e1' <span style="background-color:royalblue; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'117' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'saddlebrown'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#8b4513' <span style="background-color:saddlebrown; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'118' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'salmon'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#fa8072' <span style="background-color:salmon; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'119' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'sandybrown'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#f4a460' <span style="background-color:sandybrown; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'120' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'seagreen'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#2e8b57' <span style="background-color:seagreen; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'121' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'seashell'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#fff5ee' <span style="background-color:seashell; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'122' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'sienna'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#a0522d' <span style="background-color:sienna; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'123' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'silver'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#c0c0c0' <span style="background-color:silver; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'124' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'skyblue'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#87ceeb' <span style="background-color:skyblue; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'125' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'slateblue'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#6a5acd' <span style="background-color:slateblue; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'126' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'slategray'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#708090' <span style="background-color:slategray; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'127' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'snow'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#fffafa' <span style="background-color:snow; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'128' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'springgreen'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#00ff7f' <span style="background-color:springgreen; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'129' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'steelblue'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#4682b4' <span style="background-color:steelblue; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'130' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'tan'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#d2b48c' <span style="background-color:tan; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'131' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'teal'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#008080' <span style="background-color:teal; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'132' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'thistle'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#d8bfd8' <span style="background-color:thistle; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'133' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'tomato'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#ff6347' <span style="background-color:tomato; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'134' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'turquoise'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#40e0d0' <span style="background-color:turquoise; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'135' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'violet'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#ee82ee' <span style="background-color:violet; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'136' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'wheat'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#f5deb3' <span style="background-color:wheat; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'137' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'white'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#ffffff' <span style="background-color:white; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'138' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'whitesmoke'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#f5f5f5' <span style="background-color:whitesmoke; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'139' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'yellow'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#ffff00' <span style="background-color:yellow; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
&nbsp;&nbsp;&nbsp;&nbsp;'140' => array(<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'name'&nbsp;&nbsp;&nbsp;&nbsp;=> 'yellowgreen'<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'hex'&nbsp;&nbsp;&nbsp;&nbsp;=> '#9acd32' <span style="background-color:yellowgreen; width:100px; display:inline-block;">&nbsp;</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;),<br />
);<br />
</code>
</div>
]]></content:encoded>
			<wfw:commentRss>http://textures-tones.com/2010/08/11/css-plaintext-colors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Data Loss</title>
		<link>http://textures-tones.com/2010/08/04/data-loss/</link>
		<comments>http://textures-tones.com/2010/08/04/data-loss/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 00:19:57 +0000</pubDate>
		<dc:creator>sean x. l.</dc:creator>
				<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://textures-tones.com/?p=1156</guid>
		<description><![CDATA[Well&#8230; So says my hosting provider: &#8220;I&#8217;m so sorry but file system of the server crashed and we had only one way to solve this situation by restoring all accounts to a different server from the backups.&#8221; That means&#8230;I lost the last 5 days worth of posts. SIGH. I dug through all my cache files [...]]]></description>
			<content:encoded><![CDATA[<p>Well&#8230;</p>
<p>So says my hosting provider:</p>
<p>&#8220;I&#8217;m so sorry but file system of the server crashed and we had only one way to solve this situation by restoring all accounts to a different server from the backups.&#8221;</p>
<p>That means&#8230;I lost the last 5 days worth of posts. SIGH. I dug through all my cache files on my PC, iPad, and Mac and managed to recreate 2 and a half posts&#8230;which I&#8217;ll re-post soon. And easy way of keeping track is through my Music Project posts. They restored back to Day 31, I should have up to Day 37. I managed to re-create Day 36, 35, and part of 34. Yesterday&#8217;s post was short anyways, and it wasn&#8217;t that long ago. As far as Day 33 and 32, well, they&#8217;re just lost well aren&#8217;t they?</p>
<p>I thought my hosting provider had daily backups! WTF man? I guess I&#8217;m going to have to start backing up using WordPress everyday now because part of what they also lost was the upgrade to 3.0.1 which means I can&#8217;t just backup my DB (which would be easier but need to backup all relevant files as well) because it might be out of sync then with the restored install version. Again&#8230;SIGH.</p>
]]></content:encoded>
			<wfw:commentRss>http://textures-tones.com/2010/08/04/data-loss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Layout!</title>
		<link>http://textures-tones.com/2010/06/10/new-layout/</link>
		<comments>http://textures-tones.com/2010/06/10/new-layout/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 07:03:02 +0000</pubDate>
		<dc:creator>sean x. l.</dc:creator>
				<category><![CDATA[misc]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://textures-tones.com/?p=911</guid>
		<description><![CDATA[So I&#8217;ve been talking and thinking about this for a while now, and it&#8217;s come up in at least one blog post already, if not more, but finally we have a new layout for the blog! It is, for most intents and purposes, exactly the same but with a new color scheme. The old one [...]]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ve been talking and thinking about this for a while now, and it&#8217;s come up in at least one blog post already, if not more, but finally we have a new layout for the blog! It is, for most intents and purposes, exactly the same but with a new color scheme. The old one looked too, grey, and I think Maria described this new one best as &#8220;glossy.&#8221; I like that, I think. Either way. The other point was to clean up some of the code behind the other one. That had been a theme somebody else developed which I had just heavily modified, but that meant none of the CSS class names were mine, and were actually in Italian of all languages so completely incomprehensible. I&#8217;ve tidied it up, translated it into English, simplified it really but to achieve the same results, improves some legibility and whatnot, and hopefully it still validates which I just realized I forgot to do and here I&#8217;ve almost closed Dreamweaver even. Either way. Um&#8230;so yeah, new layout w00t! I&#8217;ll proper blog at a later date I promise, and not &#8220;later&#8221; in the Chinese sense of the word to mean &#8220;never&#8221; but Western &#8220;later,&#8221; as in&#8230;later.</p>
<p>[edit]<br />
This was actually also inspired by the fact that I came across this header graphic that I had created many, many years ago for another project that never got off the ground.</p>
<p>[edit 2]<br />
And it validates! And I even went through the trouble of making a screenshot and theme description and meta for the WP Admin.! w00t!</p>
]]></content:encoded>
			<wfw:commentRss>http://textures-tones.com/2010/06/10/new-layout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hurry up and wait.</title>
		<link>http://textures-tones.com/2009/09/11/hurry-up-and-wait/</link>
		<comments>http://textures-tones.com/2009/09/11/hurry-up-and-wait/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 19:21:02 +0000</pubDate>
		<dc:creator>maria j. g.</dc:creator>
				<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://textures-tones.com/?p=166</guid>
		<description><![CDATA[Currently, I&#8217;m waiting for the woman who called me 50 min ago and told me she&#8217;d be here in 15 min to show up. I&#8217;m going to show her my car. I intend to sell it tomorrow, although as always events may dictate otherwise. One way or another, though, it needs to get sold soon. [...]]]></description>
			<content:encoded><![CDATA[<p>Currently, I&#8217;m waiting for the woman who called me 50 min ago and told me she&#8217;d be here in 15 min to show up.  I&#8217;m going to show her my car.  I intend to sell it tomorrow, although as always events may dictate otherwise.  One way or another, though, it needs to get sold soon.  I had been about to leave to take care of some retirement-account errands when she called and asked if &#8220;now&#8221; were a good time to come.  Pffffft.</p>
]]></content:encoded>
			<wfw:commentRss>http://textures-tones.com/2009/09/11/hurry-up-and-wait/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Validation &amp; Countdown: 2 Weeks, 6 Days</title>
		<link>http://textures-tones.com/2009/09/01/validation-and-countdown-2-weeks-6-days/</link>
		<comments>http://textures-tones.com/2009/09/01/validation-and-countdown-2-weeks-6-days/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 08:17:02 +0000</pubDate>
		<dc:creator>sean x. l.</dc:creator>
				<category><![CDATA[misc]]></category>
		<category><![CDATA[pre-china]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://textures-tones.com/?p=48</guid>
		<description><![CDATA[Ok so it&#8217;s a little geeky, but I finally got this page to validate, both the html and css. I also transitioned the javascript from mootools and prototype to jquery, which I am more familiar with. I&#8217;ve also properly formatted the code in all the pages I&#8217;ve edited. I must say I&#8217;m surprised. I really [...]]]></description>
			<content:encoded><![CDATA[<p>Ok so it&#8217;s a little geeky, but I finally got this page to validate, both the html and css. I also transitioned the javascript from mootools and prototype to jquery, which I am more familiar with. I&#8217;ve also properly formatted the code in all the pages I&#8217;ve edited. </p>
<p>I must say I&#8217;m surprised. I really do enjoy this theme that was created already, and it&#8217;s been quite easy to customize and tweak and whatnot, but I had at least expected the code to validate on it&#8217;s own, out of the box. All of the css classes/IDs are in Italian also, which is a total pain in the ass. Still, I feel good. I&#8217;ve implemented some new features, made some minor, probably not noticeable streamlining changes in the backend php. Coming along nicely if I must say so myself.</p>
<p>We have also just passed the three week mark. Only eight business days left of work also, one of which includes the luncheon. Maria got our Visa applications in to the Chinese Consulate today. She&#8217;s picking them up on Thursday. Everything is progressing.</p>
]]></content:encoded>
			<wfw:commentRss>http://textures-tones.com/2009/09/01/validation-and-countdown-2-weeks-6-days/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Notice to VS Media</title>
		<link>http://textures-tones.com/2009/08/19/notice-to-vs-media/</link>
		<comments>http://textures-tones.com/2009/08/19/notice-to-vs-media/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 06:03:00 +0000</pubDate>
		<dc:creator>sean x. l.</dc:creator>
				<category><![CDATA[misc]]></category>
		<category><![CDATA[pre-china]]></category>
		<category><![CDATA[vs media]]></category>

		<guid isPermaLink="false">http://textures-tones.com/2009/08/19/notice-to-vs-media/</guid>
		<description><![CDATA[I, Sean X. Luo, henceforth known as The Employee,do hereby make known, in writing, as prescribedby the bylaws governing such declarations,henceforth known as The Declaration, that onSeptember the Eleventh, the Year of Our Lord TwoThousand and Nine, he will depart and vacate hiscurrent employment by V.S. Media Inc., henceforthknown as The Company, for all eternity, [...]]]></description>
			<content:encoded><![CDATA[<p>I, Sean X. Luo, henceforth known as The Employee,<br />do hereby make known, in writing, as prescribed<br />by the bylaws governing such declarations,<br />henceforth known as The Declaration, that on<br />September the Eleventh, the Year of Our Lord Two<br />Thousand and Nine, he will depart and vacate his<br />current employment by V.S. Media Inc., henceforth<br />known as The Company, for all eternity, in<br />perpetuity through the Universe and for all time,<br />and that this declaration shall remain binding<br />and effective throughout all of The Company&#8217;s<br />directors, shareholders, officers, employees,<br />partners, agents, subsidiaries, affiliates,<br />subcontractors and assignees and so forth and<br />all of The Employee&#8217;s successors, progeny, affiliates,<br />and so forth.</p>
<p>The Declaration may be rendered null and void<br />and can only be rendered null and void upon an<br />agreement by both The Company and The Employee<br />at any time.</p>
<p>Signed,<br />Sean X. Luo (the Employee)<br />August the tenth<br />The Year of Our Lord Two Thousand and Nine</p>
]]></content:encoded>
			<wfw:commentRss>http://textures-tones.com/2009/08/19/notice-to-vs-media/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
