Ask HN: Light grey text is killing my eyes.
31–40 of 43 posts
Re: Ask HN: Light grey text is killing my eyes.
#32Re: Ask HN: Light grey text is killing my eyes.
#33Light gray text is a DTD (designer-transmitted disease) that's rapidly infecting sites across the Internet. (When it's really light, I use Firebug to modify the CSS.)
Re: Ask HN: Light grey text is killing my eyes.
#34.. or to be really geeky, add a button to darken the color in the menu bar (simply change the .css with a little javascript!)
Re: Ask HN: Light grey text is killing my eyes.
#35I haven't seen a rationale for it yet but I'd guess that it's a subtle way of encouraging descriptions to be short (like the one you just wrote), it's probably intentional that it's hard to read long rambling posts like http://news.ycombinator.com/item?id=468139 I read a pg comment somewhere that makes me think that's his design decision - he already weighs "Ask HN" type of posts differently than the standard one wit…
Yes; I do this to discourage people from making too many such posts, and making them too long. I don't want HN to turn into a blogging platform. Also, I wanted to make it easy to tell these posts from comments. If I made the text black I'd have to make it smaller, and then it would look just like a comment. But I'm not wedded to the current way of doing things. I'd be open to alternatives.
Anyway, if you want to nurture the community, I don't think it's a bad idea to make the feedback deliberate. "This is too long, don't post it," will be a lot more effective than changing the color of the text.
Re: Ask HN: Light grey text is killing my eyes.
#36Re: Ask HN: Light grey text is killing my eyes.
#37Earlier quoted context omitted.
Then limit the size of the textarea or something like that. It's bad usage, and saying that "it's a feature, not a bug" doesn't help.
Not sure that limiting the textarea would help - it's not like it constrains the length of these replies, for example. It's pretty trivial to compose a block of text in Textmate and paste it in, I'll often do that just for the spell checking or to make sure it doesn't get lost in submission or browser crash or whatever. (and often to review and make sure I don't post something I'll regret)
Re: Ask HN: Light grey text is killing my eyes.
#38Bookmarklet: javascript:var%20l=document.getElementsByTagName("TD");for(var%20i=0;i<l.length;i++)%20l[i].style.color='#000'
Re: Ask HN: Light grey text is killing my eyes.
#39Use your mouse to quickly highlight the text. Now you can read it as light grey on blue, which is much easier.
Re: Ask HN: Light grey text is killing my eyes.
#40For firefox, put this in your user stylesheet @-moz-document url-prefix( http://news.ycombinator.com/) { td { color: #000000 !important; } td.subtext { color: #828282 !important; } } see http://news.ycombinator.com/item?id=467680 for more info.