Skip to content

Instantly share code, notes, and snippets.

@markwylde
Created September 2, 2022 07:35
Show Gist options
  • Save markwylde/1d25a9c2237dd79cf4d1a1fc2f4e0d45 to your computer and use it in GitHub Desktop.
Save markwylde/1d25a9c2237dd79cf4d1a1fc2f4e0d45 to your computer and use it in GitHub Desktop.
HackerNews Dark Theme
/* ==UserStyle==
@name HackerNews Dark
@namespace gist.github.com/markwylde/1d25a9c2237dd79cf4d1a1fc2f4e0d45
@author Mark Wylde
@description Change the HackerNews style to dark
@version 1
@license MIT
==/UserStyle== */
@-moz-document domain("news.ycombinator.com") {
body {
font-family: Verdana, Geneva, sans-serif;
background-color: #1d2c3b !important;
}
#hnmain{
background-color: #1d2c3b !important;
}
#hnmain > tbody > tr:nth-child(1) > td {
background-color: #121c25 !important;
}
a {
color: #ededed !important;
text-decoration: none;
}
.c00 {
color: #cecece !important;
}
textarea {
background-color: #243240;
color: white;
border: 0;
}
input[type="submit"]:hover {
background-color: #151e27;
cursor: pointer;
}
input[type="submit"] {
color: white;
background-color: #243240;
border: 0;
padding: 5px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment