|
I have some styles I use. Screenshots: https://imgur.com/a/WZAaJST I don't love when dark modes skew blue, so tried to keep it neutral with blacks and greys ```
@media (prefers-color-scheme:dark) {
body {
background-color: #2a2b2e;
}
#hnmain {
background-color: rgb(32, 33, 36);
} a:link, .hnmore a:link, a:visited, td, .c00, .c00 a:link {
color: #e8eaed;
}
.subtext, .comhead a:link, .subtext a:visited, span.subtext a:link, .subtext a:visited {
color: #9aa0a6;
}
}
``` |
Source for a CSS simlpe arrow https://css-tricks.com/snippets/css/css-triangle/