Fix dark mode visited link color to prevent browser default purple

Add a:visited alongside a:link so visited links inherit the correct color
in both light and dark mode, instead of falling back to the browser's
default dark purple.
This commit is contained in:
James Coleman 2026-06-05 13:05:00 -05:00
parent 6a0fb0fe4d
commit bb9ff3b4ba

View file

@ -29,7 +29,8 @@
padding-bottom: 40px;
text-align: center;
}
.repo-list a:link {
.repo-list a:link,
.repo-list a:visited {
color: #000;
text-decoration: none;
}
@ -93,7 +94,8 @@
background-color: #1e1e1e;
color: #e0e0e0;
}
.repo-list a:link {
.repo-list a:link,
.repo-list a:visited {
color: #e0e0e0;
}
.repo {