From 90b55fb6a7e0de1d8d8214b6764f92e8affaf152 Mon Sep 17 00:00:00 2001 From: neri Date: Thu, 12 Dec 2019 01:49:00 +0100 Subject: [PATCH] reverse colorscheme --- src/components/nav.module.css | 2 +- src/pages/treff.js | 4 ++-- src/styles/global.css | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/nav.module.css b/src/components/nav.module.css index a718a25..7ff99fc 100644 --- a/src/components/nav.module.css +++ b/src/components/nav.module.css @@ -1,5 +1,5 @@ .header { - background-color: #193360; + background-color: #0e1e38; } .headerContent { diff --git a/src/pages/treff.js b/src/pages/treff.js index d21e973..ad7a82f 100644 --- a/src/pages/treff.js +++ b/src/pages/treff.js @@ -16,8 +16,8 @@ export default () => { return (

- Raumstatus{" "} - + Raumstatus:{" "} + {opened ? "OFFEN" : "GESCHLOSSEN"}

diff --git a/src/styles/global.css b/src/styles/global.css index 86cda6d..5f78ab8 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -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; }