/* SPDX-License-Identifier: AGPL-3.0-or-later */

@import url("org-default-9.7.11.css");

/*
  modus-themes according to version modus-themes-20241228.1050 from elpa

  This was very useful to get on them:

    M-x describe-face

  and the mapping between some color name and the RGB triples you can found in:

    M-x list-colors-display

  src https://www.gnu.org/software/emacs/manual/html_node/emacs/Colors.html
*/

/* default font */
body {
    font-family: sans;
    font-size: 1.125rem;
    line-height: 1.5;
}

#postamble {
    text-align: center;
    padding: 4rem 1rem 1.5rem;
}

/* more spaced links in navbar */
nav a {
    margin: 0 1rem;
}

/* inspired on emacs theme: modus-operandi-tinted */
@media(prefers-color-scheme:light) {
    body {
        background: #fbf7f0;
        color: #000000;
    }
    a {
        color: #008b8b;
    }
    pre {
        background: #efe9dd;
        color: #000000;
    }
    code {
        color: #8f0075;
    }

    /* exception changed to make this more visible */
    .timestamp {
        color: #666666;
    }
}

/* inspired on emacs theme: modus-vivendi-tinted */
@media(prefers-color-scheme:dark) {
    body {
        background: #0d0e1c;
        color: #ffffff;
    }
    a {
        color: #97ffff;
    }
    pre {
        background: #1d2235;
        color: #ffffff;
    }
    code {
        color: #f78fe7;
    }

    /* exception changed to make this more visible */
    .timestamp {
        color: #cccccc;
    }
}
