/*
 * So, you want dark mode. Good.
 * copy paste this thing to whatever css overriding plugin you are using
 * ---------------------------------------------------------------------
 *
 * "what's wrong with this guy?"
 *
 * 1. why you default to light / almost-no-theme?
 *    Please read here:
 *    https://shrik3.com/post/www/webfront/#your-color-is-not-my-color
 *
 * 2. why all the hassle? Can't you just javascript the theme switch?
 *    My paranoia is NOT TO USE a single line of javascript. (except
 *    for math symbol)
 *
 * 3. btw, my site looks great with NO CSS AT ALL. Try turning off css
 *     on your browser!
 *
 * ---------------------------------------------------------------------
 */

* {
   background-color: #000022;
   color: #00d56d;
   font-family: monospace;
   font-size: unset;
}
tr.alt_color:nth-child(even) {background-color: unset;}
blockquote {background: #000033;}
table, th, td {border: 1px solid #39c5bb;}
@media screen and (max-width: 600px) {table.tidy tr td{border-bottom: 2px dotted #002255;}}

a:link {color:#00d56d;}
a:visited {color:#00d56d;}
a:hover {color: red!important; background-color:white!important;}
a.nohov:hover{background:none!important;color:white!important;}
hr, hr.dim {border-top: 1px solid #666666;}
.noprebg pre, code{background: none}
*.dimmed {color: #666666 !important;}
