From 8248479cce03446d02c1ce82bd200526adaef78c Mon Sep 17 00:00:00 2001 From: neri Date: Fri, 13 Dec 2019 12:55:48 +0100 Subject: [PATCH] use more accessible colors --- src/components/roomState.js | 4 ++-- src/styles/global.css | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/roomState.js b/src/components/roomState.js index d70b573..ca71cdd 100644 --- a/src/components/roomState.js +++ b/src/components/roomState.js @@ -2,8 +2,8 @@ import React, { useEffect, useState } from "react" const roomStateData = { loading: { text: "ladeā€¦", color: "white" }, - open: { text: "OFFEN", color: "forestgreen" }, - closed: { text: "GESCHLOSSEN", color: "firebrick" }, + open: { text: "OFFEN", color: "#00aa00" }, + closed: { text: "GESCHLOSSEN", color: "#ee3333" }, } export default () => { diff --git a/src/styles/global.css b/src/styles/global.css index 5f78ab8..1c27414 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -20,9 +20,9 @@ body { } a { - color: forestgreen; + color: #22bb22; } a:visited { - color: mediumorchid; + color: #ee66ff; }