<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: A Precise CSS3 Color Table</title>
	<atom:link href="http://meyerweb.com/eric/thoughts/2012/05/18/aprecise-css3-color-table/feed/" rel="self" type="application/rss+xml" />
	<link>http://meyerweb.com/eric/thoughts/2012/05/18/aprecise-css3-color-table/</link>
	<description>Things that Eric A. Meyer, CSS expert, writes about on his personal Web site; it&#039;s largely Web standards and Web technology, but also various bits of culture, politics, personal observations, and other miscellaneous stuff</description>
	<lastBuildDate>Fri, 10 May 2013 11:50:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Priit Pirita</title>
		<link>http://meyerweb.com/eric/thoughts/2012/05/18/aprecise-css3-color-table/#comment-680534</link>
		<dc:creator>Priit Pirita</dc:creator>
		<pubDate>Fri, 25 May 2012 19:03:32 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1863#comment-680534</guid>
		<description><![CDATA[About that sort - do all at once is one solution:

&lt;pre&gt;&lt;code&gt;sorter.sort(function(a,b){
	var x = a.red - b.red;
	if ( x === 0 ) {
		var y = a.green - b.green; 
		if ( y === 0 ) {
			return a.blue - b.blue;
		} else {
			return y;
		}
	} else {
		return x;
	}
});
&lt;/code&gt;&lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>About that sort &#8211; do all at once is one solution:</p>
<pre><code>sorter.sort(function(a,b){
	var x = a.red - b.red;
	if ( x === 0 ) {
		var y = a.green - b.green; 
		if ( y === 0 ) {
			return a.blue - b.blue;
		} else {
			return y;
		}
	} else {
		return x;
	}
});
</code></pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lydia</title>
		<link>http://meyerweb.com/eric/thoughts/2012/05/18/aprecise-css3-color-table/#comment-680202</link>
		<dc:creator>Lydia</dc:creator>
		<pubDate>Fri, 25 May 2012 11:55:57 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1863#comment-680202</guid>
		<description><![CDATA[Keeps getting better, Eric. Thanks.]]></description>
		<content:encoded><![CDATA[<p>Keeps getting better, Eric. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Meyer</title>
		<link>http://meyerweb.com/eric/thoughts/2012/05/18/aprecise-css3-color-table/#comment-680051</link>
		<dc:creator>Eric Meyer</dc:creator>
		<pubDate>Fri, 25 May 2012 05:31:21 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1863#comment-680051</guid>
		<description><![CDATA[mt (and anyone else interested): I’ve added sorting to the Keyword, Decimal RGB, and HSL columns.  The HSL sort order is hue, then saturation, then lightness.  I know, thoroughly unoriginal, but it was the least awful of the many permutations I tried.  Similarly, the RGB sort is red-then-green-then-blue, which seems no better or worse than the others I tried.

If anyone has suggestions for interesting sort patterns, let me know, but do be specific.

I’ll update the post tomorrow to mention the new features, but for now I must sleep.]]></description>
		<content:encoded><![CDATA[<p>mt (and anyone else interested): I’ve added sorting to the Keyword, Decimal RGB, and HSL columns.  The HSL sort order is hue, then saturation, then lightness.  I know, thoroughly unoriginal, but it was the least awful of the many permutations I tried.  Similarly, the RGB sort is red-then-green-then-blue, which seems no better or worse than the others I tried.</p>
<p>If anyone has suggestions for interesting sort patterns, let me know, but do be specific.</p>
<p>I’ll update the post tomorrow to mention the new features, but for now I must sleep.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mt</title>
		<link>http://meyerweb.com/eric/thoughts/2012/05/18/aprecise-css3-color-table/#comment-679786</link>
		<dc:creator>mt</dc:creator>
		<pubDate>Thu, 24 May 2012 19:21:23 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1863#comment-679786</guid>
		<description><![CDATA[Eric (#4):

You know, that&#039;s an excellent question. Two-dimensional vectors are easy to tabulate and sort in screenspace. Three-dimensional ones, less so.... I personally don&#039;t have a preference as to sort order. Would it be possible to have the user specify the sort order?

Also -- and this may be too involved to code just for kicks as you have with this table -- what about a color picker style dialog with sliders or even just numbers that would give the closest color keyword match to a particular RGB/HSL combination? I figure something like that would involve some ugly JavaScript, though. Eesh.]]></description>
		<content:encoded><![CDATA[<p>Eric (#4):</p>
<p>You know, that&#8217;s an excellent question. Two-dimensional vectors are easy to tabulate and sort in screenspace. Three-dimensional ones, less so&#8230;. I personally don&#8217;t have a preference as to sort order. Would it be possible to have the user specify the sort order?</p>
<p>Also &#8212; and this may be too involved to code just for kicks as you have with this table &#8212; what about a color picker style dialog with sliders or even just numbers that would give the closest color keyword match to a particular RGB/HSL combination? I figure something like that would involve some ugly JavaScript, though. Eesh.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Meyer</title>
		<link>http://meyerweb.com/eric/thoughts/2012/05/18/aprecise-css3-color-table/#comment-678041</link>
		<dc:creator>Eric Meyer</dc:creator>
		<pubDate>Tue, 22 May 2012 16:47:15 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1863#comment-678041</guid>
		<description><![CDATA[It’s not a browser quirk.  They’re the same color, but not the same keyword.  SVG took the X11 colors and internationalized a few of them, which are the ones you’re seeing.]]></description>
		<content:encoded><![CDATA[<p>It’s not a browser quirk.  They’re the same color, but not the same keyword.  SVG took the X11 colors and internationalized a few of them, which are the ones you’re seeing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim</title>
		<link>http://meyerweb.com/eric/thoughts/2012/05/18/aprecise-css3-color-table/#comment-677781</link>
		<dc:creator>Jim</dc:creator>
		<pubDate>Tue, 22 May 2012 12:43:05 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1863#comment-677781</guid>
		<description><![CDATA[Don&#039;t get me wrong, this table will be very useful. But for some reason I&#039;m seeing doubles of some of the colors.

I viewed the page on FireFox 12 and Opera Mobile 12. I&#039;m assuming its a browser quirk.]]></description>
		<content:encoded><![CDATA[<p>Don&#8217;t get me wrong, this table will be very useful. But for some reason I&#8217;m seeing doubles of some of the colors.</p>
<p>I viewed the page on FireFox 12 and Opera Mobile 12. I&#8217;m assuming its a browser quirk.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Meyer</title>
		<link>http://meyerweb.com/eric/thoughts/2012/05/18/aprecise-css3-color-table/#comment-677496</link>
		<dc:creator>Eric Meyer</dc:creator>
		<pubDate>Tue, 22 May 2012 03:54:29 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1863#comment-677496</guid>
		<description><![CDATA[Look again, Jim.  Look closer.]]></description>
		<content:encoded><![CDATA[<p>Look again, Jim.  Look closer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim</title>
		<link>http://meyerweb.com/eric/thoughts/2012/05/18/aprecise-css3-color-table/#comment-677395</link>
		<dc:creator>Jim</dc:creator>
		<pubDate>Tue, 22 May 2012 00:30:41 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1863#comment-677395</guid>
		<description><![CDATA[Wow and just wanted to mention I saw two instances for slategrey]]></description>
		<content:encoded><![CDATA[<p>Wow and just wanted to mention I saw two instances for slategrey</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric A. Meyer</title>
		<link>http://meyerweb.com/eric/thoughts/2012/05/18/aprecise-css3-color-table/#comment-675546</link>
		<dc:creator>Eric A. Meyer</dc:creator>
		<pubDate>Sat, 19 May 2012 17:32:51 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1863#comment-675546</guid>
		<description><![CDATA[That’s definitely on the to-do list, mt.  When sorting by hue, would you subsort by lightness then saturation, or the other way around?]]></description>
		<content:encoded><![CDATA[<p>That’s definitely on the to-do list, mt.  When sorting by hue, would you subsort by lightness then saturation, or the other way around?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lydia</title>
		<link>http://meyerweb.com/eric/thoughts/2012/05/18/aprecise-css3-color-table/#comment-675377</link>
		<dc:creator>Lydia</dc:creator>
		<pubDate>Sat, 19 May 2012 13:15:04 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1863#comment-675377</guid>
		<description><![CDATA[Super helpful, thanks!]]></description>
		<content:encoded><![CDATA[<p>Super helpful, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mt</title>
		<link>http://meyerweb.com/eric/thoughts/2012/05/18/aprecise-css3-color-table/#comment-675007</link>
		<dc:creator>mt</dc:creator>
		<pubDate>Fri, 18 May 2012 23:58:59 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1863#comment-675007</guid>
		<description><![CDATA[Brilliant. A suggestion on presentation: options to reorder the list so it&#039;s not only by alphabetical color name but closer to a rainbow or the typical palette view.]]></description>
		<content:encoded><![CDATA[<p>Brilliant. A suggestion on presentation: options to reorder the list so it&#8217;s not only by alphabetical color name but closer to a rainbow or the typical palette view.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Neal G</title>
		<link>http://meyerweb.com/eric/thoughts/2012/05/18/aprecise-css3-color-table/#comment-674911</link>
		<dc:creator>Neal G</dc:creator>
		<pubDate>Fri, 18 May 2012 21:01:56 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1863#comment-674911</guid>
		<description><![CDATA[Ah, I love how you delve into the most obscure and undocumented areas of CSS!]]></description>
		<content:encoded><![CDATA[<p>Ah, I love how you delve into the most obscure and undocumented areas of CSS!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->