update dark color scheme + cleanup

This commit is contained in:
error 2023-04-25 11:35:21 +02:00
parent 73b6352c5f
commit fb0c8ac2c8

View File

@ -8,30 +8,31 @@
:root :root
{ {
--teal: #008080; --accent-a: #008080;
--maroon: #800000; --accent-b: #800000;
--img-border: #FFFFFF; --img-border: #FFFFFF;
--gradient: linear-gradient(45deg, #800000 10%, #008080 90%); --gradient: linear-gradient(45deg, #800000 10%, #008080 90%);
} }
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
:root { :root {
--teal: #7acccc; --accent-a: #7acccc;
--maroon: #cc7a7a; --accent-b: #ff0080;
--img-border: hsl(0, 1%, 25%); --img-border: hsl(0, 1%, 25%);
--gradient: linear-gradient(45deg, #cc7a7a 10%, #7acccc 90%); --body-bg-color: #1c1c1c;
--gradient: linear-gradient(45deg, #ff0080 10%, #7acccc 90%);
} }
} }
/* overwrite latex.css colors */ /* overwrite latex.css colors */
a, a,
a:visited { a:visited {
color: var(--teal); color: var(--accent-a);
text-decoration: none; text-decoration: none;
} }
a:hover { a:hover {
color: var(--maroon); color: var(--accent-b);
} }
video { video {
@ -48,7 +49,7 @@ sup {
/* main navigation */ /* main navigation */
nav.navigation { nav.navigation {
border-right-color: var(--teal); border-right-color: var(--accent-a);
border-right-style: solid; border-right-style: solid;
border-right-width: 4px; border-right-width: 4px;
font-family: "ubuntu"; font-family: "ubuntu";
@ -65,12 +66,12 @@ nav.navigation h1 {
background: var(--gradient); background: var(--gradient);
-webkit-background-clip: text; -webkit-background-clip: text;
-webkit-text-fill-color: transparent; -webkit-text-fill-color: transparent;
color: var(--teal); color: var(--accent-a);
text-align: right; text-align: right;
} }
nav.navigation a { nav.navigation a {
color: var(--teal); color: var(--accent-a);
padding-right: 4px padding-right: 4px
text-align: right; text-align: right;
} }
@ -80,13 +81,13 @@ nav.navigation a:hover {
} }
nav.navigation footer { nav.navigation footer {
color: var(--maroon); color: var(--accent-b);
font-size: 0.8rem; font-size: 0.8rem;
} }
nav.navigation footer a, nav.navigation footer a,
nav.navigation footer a:hover { nav.navigation footer a:hover {
color: var(--maroon); color: var(--accent-b);
} }
/* support small screens */ /* support small screens */
@ -102,7 +103,7 @@ nav.navigation footer a:hover {
nav.navigation h1 { nav.navigation h1 {
display: block; display: block;
border-right-color: var(--teal); border-right-color: var(--accent-a);
border-right-style: solid; border-right-style: solid;
border-right-width: 4px; border-right-width: 4px;
margin-bottom: 0px; margin-bottom: 0px;