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 = {
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 () => {

View File

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