Skip to content

Commit

Permalink
make colors more readable, get rid of :active
Browse files Browse the repository at this point in the history
  • Loading branch information
billbrod committed Oct 11, 2024
1 parent 4afdbbc commit 3b88912
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions site/assets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -109,16 +109,14 @@ footer img {
@media (prefers-color-scheme: dark) {
body {
background-color: rgb(40, 40, 40);
color: rgb(193 193 193)
color: white;
}
header,
footer {
background-color: rgb(80 80 80);
}
:link,
:visited,
:hover,
:active {
:visited {
color: white;
}
.grid.cards>ol>li,
Expand All @@ -142,16 +140,14 @@ footer img {
@media (prefers-color-scheme: light) {
body {
background-color: rgb(248, 249, 250);
color: rgb(102, 102, 102);
color: black;
}
header,
footer {
background-color: rgb(234 234 234);
}
:link,
:visited,
:hover,
:active {
:visited {
color: black;
}
.grid.cards>ol>li,
Expand Down

0 comments on commit 3b88912

Please sign in to comment.