more legible css in dark mode

practiced-songs
Matthew Huntington 11 months ago
parent 218cbc9e39
commit 7a07a455d2

@ -5,7 +5,7 @@ body {
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
body { body {
background-color: black; background-color: black;
color: grey; color: white;
} }
a { a {
color:white; color:white;
@ -18,9 +18,11 @@ td,th {
} }
th { th {
background:lightgrey; background:lightgrey;
color:black;
} }
tbody tr:nth-child(even) td{ tbody tr:nth-child(even) td{
background:#eeeeee; background:#eeeeee;
color:black;
} }
nav { nav {
@ -39,9 +41,11 @@ nav ul li {
nav ul li a { nav ul li a {
padding: 0.5em; padding: 0.5em;
background-color:rgba(100,100,100, 0.8); background-color:rgba(100,100,100, 1);
pointer-events:visible; pointer-events:visible;
display:inline-block; display:inline-block;
color:white;
border:1px solid black;
} }
@media (min-width: 900px){ @media (min-width: 900px){

@ -87,6 +87,7 @@
} }
.timerRunning.micThresholdExceeded { .timerRunning.micThresholdExceeded {
background:green; background:darkgreen;
color:white;
} }
</style> </style>

Loading…
Cancel
Save