Skip to content

Commit

Permalink
prevent horrible hard to read link in dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
dragoncoder047 authored Jul 28, 2023
1 parent f1cca78 commit b44080f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,18 @@
color: red;
}

a, a:visited {
color: blue;
}

@media screen and (prefers-color-scheme: dark) {
body, textarea {
color: white;
background: black;
}
a, a:visited {
color: magenta;
}
}
</style>
<style id="custom-css"></style>
Expand Down

0 comments on commit b44080f

Please sign in to comment.