Skip to content

Instantly share code, notes, and snippets.

@perpetual-hydrofoil
Created October 8, 2018 14:56
Show Gist options
  • Save perpetual-hydrofoil/6e3c66fabf093e17536d5191d6f6bd66 to your computer and use it in GitHub Desktop.
Save perpetual-hydrofoil/6e3c66fabf093e17536d5191d6f6bd66 to your computer and use it in GitHub Desktop.
HN dark stylesheet (use with stylus on chrome or ff)
/* jamiesonbecker's HN styles
* this is a dark theme.
* license: public domain (do what you will)
*/
.comment {
/* I like narrow comment lines */
max-width: 20rem;
}
table#hnmain{
background:#333;
}
a,
a:visited {
color:#007bd7;
}
a:link{
color:#004980;
}
body{
color:#ddd;
background:#000;
}
.c00, .c00 a:link{
color:#ccc;
}
td.title a{
color:#0087d6;
}
td.title a.visited{
color:#aaa;
}
textarea, input, select{
background:#444;
border:none;
color:#bbb;
}
::-webkit-scrollbar {
height: 12px;
width: 12px;
background: rgba(0,0,0,0.2);
border:none;
}
::-webkit-scrollbar-thumb {
background: #313d46;
-webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0);
-webkit-border:none;
-webkit-border-radius:0;
}
::-webkit-scrollbar-corner {
background: #000;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment