/* Applies a solarized light theme to the page */

:root {
    --base03: #002b36;
    --base02: #073642;
    --base01: #586e75;
    --base00: #657b83;
    --base0: #839496;
    --base1: #93a1a1;
    --base2: #eee8d5;
    --base3: #fdf6e3;
}

body {
    background-color: var(--base3);
}

#title {
    color: var(--base01);
}

#themeswitcher svg {
    fill: var(--base03);
}

.linkbox:hover {
    background-color: var(--base2);
}

.linkbox h2 {
    color: var(--base01);
}

div.content p {
    color: var(--base00);
}
