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 {
background-color: #193360;
background-color: #0e1e38;
}
.headerContent {

View File

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

View File

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