reverse colorscheme
This commit is contained in:
parent
5924cc1216
commit
90b55fb6a7
|
@ -1,5 +1,5 @@
|
||||||
.header {
|
.header {
|
||||||
background-color: #193360;
|
background-color: #0e1e38;
|
||||||
}
|
}
|
||||||
|
|
||||||
.headerContent {
|
.headerContent {
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue