use more accessible colors

This commit is contained in:
neri 2019-12-13 12:55:48 +01:00
parent 440b50fd88
commit 8248479cce
2 changed files with 4 additions and 4 deletions

View File

@ -2,8 +2,8 @@ import React, { useEffect, useState } from "react"
const roomStateData = { const roomStateData = {
loading: { text: "lade…", color: "white" }, loading: { text: "lade…", color: "white" },
open: { text: "OFFEN", color: "forestgreen" }, open: { text: "OFFEN", color: "#00aa00" },
closed: { text: "GESCHLOSSEN", color: "firebrick" }, closed: { text: "GESCHLOSSEN", color: "#ee3333" },
} }
export default () => { export default () => {

View File

@ -20,9 +20,9 @@ body {
} }
a { a {
color: forestgreen; color: #22bb22;
} }
a:visited { a:visited {
color: mediumorchid; color: #ee66ff;
} }