TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Custom Colors of HN

122 点作者 coconutrandom大约 11 年前

39 条评论

dfc大约 11 年前
Changing the topcolor is more than a simple matter of aesthetics; the topcolor also serves as a signal for whether I am logged in.<p>I have to say that <i>dfcdfc</i> is a nice topcolor. But don&#x27;t take my word for it, here is another HNer happy with the tranquil bar along the top:<p><pre><code> &gt; thanks for the recommendation on your profile page to use dfcdfc as &gt; the topcolor; I stumbled onto it over a year ago and have been using &gt; it ever since. [^1] </code></pre> [^1]: <a href="https://news.ycombinator.com/item?id=5891431" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=5891431</a>
评论 #7433205 未加载
评论 #7435165 未加载
评论 #7432494 未加载
评论 #7432585 未加载
kyro大约 11 年前
For those with enough karma, I&#x27;m curious to see what custom logos you&#x27;ve chosen to replace the Y. And for users who&#x27;ve been here for more than 8600* days, how frequently do you use the direct messaging feature?<p>*Edit: 2500 days. Read the wrong stat on my profile. So much for pulling a quick one...
评论 #7432526 未加载
评论 #7432487 未加载
评论 #7432734 未加载
评论 #7432759 未加载
评论 #7432545 未加载
评论 #7433501 未加载
dmnd大约 11 年前
Paste this snippet into your dev console, then mouseover the colours to get a preview.<p><pre><code> Array.prototype.forEach.call($$(&quot;td[bgcolor]&quot;), function(td) { td.parentNode.addEventListener(&#x27;mouseenter&#x27;, function() { $(&quot;td[bgcolor]&quot;).setAttribute(&quot;bgcolor&quot;, td.parentNode.children[1].getAttribute(&quot;bgcolor&quot;)); }); });</code></pre>
评论 #7433167 未加载
habosa大约 11 年前
I use #bada55, I saw it in a comment on HN and thought it was funny. Pretty ugly, but I use HNES on my laptop anyway which negates my topcolor.<p>Also plug for HNES while we&#x27;re talking about Hacker News aesthetics, it makes HN way better (collapsible comments, inline reply, new stylesheet) and is open source. I&#x27;ve contributed and the repo owner (etcet) is very welcoming.
评论 #7434643 未加载
评论 #7435395 未加载
ginko大约 11 年前
Here&#x27;s a quick and dirty script for parsing the site and rendering the colors in an RGB scatter plot.<p><a href="https://gist.github.com/ginkgo/9656285" rel="nofollow">https:&#x2F;&#x2F;gist.github.com&#x2F;ginkgo&#x2F;9656285</a><p>edit:<p>There&#x27;s a couple of interesting things to see here:<p>* There&#x27;s a clearly visible diagonal axis of the shades of grey.<p>* There&#x27;s a cluster of colors around the default orange value.<p>* The &quot;pink corner&quot; of the color cube is very sparsely populated compared to the other ones.
评论 #7434760 未加载
评论 #7434613 未加载
markbao大约 11 年前
I wish this included the number of users that use each color, to see if anyone else uses the (harmonious) #f1e9d9.<p><a href="http://cl.ly/image/040u3a1R342q" rel="nofollow">http:&#x2F;&#x2F;cl.ly&#x2F;image&#x2F;040u3a1R342q</a>
评论 #7432672 未加载
51Cards大约 11 年前
I&#x27;d like to see a count, or percentage, beside each of popularity.
评论 #7433507 未加载
coconutrandom大约 11 年前
What&#x27;s the karma threshold to choose a color?
评论 #7432354 未加载
TazeTSchnitzel大约 11 年前
So I wasn&#x27;t the only one to use #f6f6ef so the bar would dissolve into the background! :)
评论 #7432565 未加载
acangiano大约 11 年前
I&#x27;m surprised to see that I&#x27;m not the only one using the, rather arbitrary, #ccffaa.
评论 #7432479 未加载
sachinag大约 11 年前
Ha! My topcolor is pretty much the only thing left of my startup. It&#x27;s also weirdly surprisingly close to my current employer&#x27;s corporate color.
bostonpete大约 11 年前
Would be nice to see a count of how many people chose each color. I assume the vast majority of those colors are all equal (i.e. used by a single person).
评论 #7432493 未加载
peterjmag大约 11 年前
#000000 is surprisingly high up there.<p>Lookin&#x27; good: <a href="http://i.imgur.com/oMBwQma.png" rel="nofollow">http:&#x2F;&#x2F;i.imgur.com&#x2F;oMBwQma.png</a>
评论 #7434357 未加载
sixQuarks大约 11 年前
If you get 1 million karma, PG will do your laundry once per week
minikomi大约 11 年前
Here they are arranged by hue &#x2F; saturation: <a href="http://jsfiddle.net/LtnS3/1/embedded/result/" rel="nofollow">http:&#x2F;&#x2F;jsfiddle.net&#x2F;LtnS3&#x2F;1&#x2F;embedded&#x2F;result&#x2F;</a>
评论 #7434545 未加载
codezero大约 11 年前
For some fun, grep your local dictionary for qualified colors :) cat words |grep -i &quot;^[a-f]\{6\}$&quot;<p>or use 4 and add be, or ed etc...<p>I went with beefed, and it looks like that page is updated in real time.
jffry大约 11 年前
Why settle for a single color when you can have the HN topbar in literally every color of the rainbow?<p><pre><code> @-webkit-keyframes hue { 100% { -webkit-filter:hue-rotate(360deg); } } body &gt; center &gt; table &gt; tbody &gt; tr:first-child &gt; td, body &gt; center &gt; table &gt; tbody &gt; tr:last-child &gt; td { -webkit-filter: hue-rotate(0deg); -webkit-animation: hue 20s linear infinite; }</code></pre>
user24大约 11 年前
Quick and dirty 3d visualisation: <a href="http://solidred.co.uk/topcolors/" rel="nofollow">http:&#x2F;&#x2F;solidred.co.uk&#x2F;topcolors&#x2F;</a>
chrismorgan大约 11 年前
I like #123456 and #abcdef as colours; #123456 doesn&#x27;t work here (black on #123456 is difficult to read) but #abcdef works well.
user24大约 11 年前
I use #222222 so that I can&#x27;t see my karma score. That way I don&#x27;t play HN like a points scoring game.
drblast大约 11 年前
Allow me to plug #ddeeff. I think it very nicely complements the orange Y and the gray background, and it&#x27;s easy to remember.<p>I&#x27;m mildly colorblind, however, so take my recommendation with a large grain of salt. But if you&#x27;re also colorblind you&#x27;re just going to love #ddeeff to death.
ihuman大约 11 年前
Does anyone know if it is possible to change the color of the &#x27;Y&#x27; logo gif by using custom CSS or Javascript? I&#x27;m wondering if it is possible to make an extension that automatically changes the color of the logo to match the color of the top boar.
评论 #7433493 未加载
FiloSottile大约 11 年前
Feeling banal with my white bar now
评论 #7432495 未加载
marinhero大约 11 年前
I can&#x27;t change my color on HN :( I didn&#x27;t even know that this existed!
imkevinxu大约 11 年前
I&#x27;ve been using a forked version of this Chrome extension. Looks really nice<p><a href="https://github.com/imkevinxu/hacker-news-plus" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;imkevinxu&#x2F;hacker-news-plus</a>
kafkaesque大约 11 年前
Oh! When I saw Top Colour I thought it was referring to the order of the list as the most used colours first, in descending order.<p>Haha. I just realised it means the colour of the top bar the logo is on.
chm大约 11 年前
I never noticed I had topcolor enabled. Is there a list that details what gets enabled when? I&#x27;m at 566 points and I&#x27;ve just recently been granted downvote access.
rdl大约 11 年前
I wonder if the gray people use (I use aaaaaa) says something about individual monitor choices. I&#x27;d probably go lighter if I used a windows machine more.
Raphmedia大约 11 年前
Personally, I like to use #50b1db. It clashes a bit, but it&#x27;s a nice blue and I like it next to the orange of the logo.<p>I should write a custom CSS for HN...
评论 #7433527 未加载
markwakeford大约 11 年前
lol @ me hunting around the profile page for the last 5 minutes trying to work out if its a hidden menu or something.
评论 #7432590 未加载
评论 #7432638 未加载
agumonkey大约 11 年前
What is .. oh per-profile topcolor option. Never took the time to use that.
pazimzadeh大约 11 年前
Using the the background-color #f6f6f9 works well.
评论 #7437802 未加载
ChuckMcM大约 11 年前
Is there a list organized by colorspace?
pbhjpbhj大约 11 年前
Uniquely using #99AAFF at present.
sgold515大约 11 年前
55b6f2 looks like beauty :)
amaks大约 11 年前
Oh, they have #0b00b5
izzydata大约 11 年前
Might as well just let people put in their own hex value.
评论 #7434134 未加载
kbar13大约 11 年前
#00dd00 4lyfe
zerny大约 11 年前
bbbbbb works best for me :)