reverse colorscheme

This commit is contained in:
neri 2019-12-12 01:49:00 +01:00
parent 5924cc1216
commit 90b55fb6a7
3 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,5 @@
.header { .header {
background-color: #193360; background-color: #0e1e38;
} }
.headerContent { .headerContent {

View File

@ -16,8 +16,8 @@ export default () => {
return ( return (
<Layout> <Layout>
<h2> <h2>
Raumstatus{" "} Raumstatus:{" "}
<span style={{ color: opened ? `green` : `darkred` }}> <span style={{ color: opened ? `forestgreen` : `firebrick` }}>
{opened ? "OFFEN" : "GESCHLOSSEN"} {opened ? "OFFEN" : "GESCHLOSSEN"}
</span> </span>
</h2> </h2>

View File

@ -1,5 +1,5 @@
html { html {
background-color: #0e1e38; background-color: #193360;
color: #eeeeee; color: #eeeeee;
margin: 0; margin: 0;
height: 100%; height: 100%;
@ -20,9 +20,9 @@ body {
} }
a { a {
color: green; color: forestgreen;
} }
a:visited { a:visited {
color: darkorchid; color: mediumorchid;
} }