
/******************************************************************************
* MODULE     : theme-dark.css
* DESCRIPTION: CSS style sheet for using dark colors
* COPYRIGHT  : (C) 2020  Joris van der Hoeven
*******************************************************************************
* This software falls under the GNU general public license version 3 or later.
* It comes WITHOUT ANY WARRANTY WHATSOEVER. For details, see the file LICENSE
* in the root directory or <http://www.gnu.org/licenses/gpl-3.0.html>.
******************************************************************************/

@supports not (-ms-high-contrast: none) {

/******************************************************************************
* Main colors
******************************************************************************/

html {
    background-color: #202020;
}

body {
    background-color: #202020;
    color: #E0E0E0;
}

a:link, a:visited {
    color: #80B0E0;
}

a:active, a:focus, a:hover {
    color: #50CCC0;
}

img {
    filter: invert(80%) sepia(30%);
}

.image {
    filter: sepia(30%);
}

/*****************************************************************************/
