Skip to content

Commit b44080f

Browse files
prevent horrible hard to read link in dark mode
1 parent f1cca78 commit b44080f

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

index.html

+7
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,18 @@
2828
color: red;
2929
}
3030

31+
a, a:visited {
32+
color: blue;
33+
}
34+
3135
@media screen and (prefers-color-scheme: dark) {
3236
body, textarea {
3337
color: white;
3438
background: black;
3539
}
40+
a, a:visited {
41+
color: magenta;
42+
}
3643
}
3744
</style>
3845
<style id="custom-css"></style>

0 commit comments

Comments
 (0)