Skip to content

Commit

Permalink
Add color for visited links (#218)
Browse files Browse the repository at this point in the history
  • Loading branch information
recrwplay authored Mar 6, 2024
1 parent e04e990 commit 7d1c353
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/css/doc.css
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,10 @@ body {
color: var(--link_hover-font-color);
}

.doc a:visited {
color: var(--link_visited-font-color);
}

.doc code a {
color: inherit;
}
Expand Down
2 changes: 1 addition & 1 deletion src/css/vars.css
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@
/* links */
--link-font-color: rgba(var(--colors-baltic-50));
--link_hover-font-color: rgba(var(--colors-baltic-40));
--link_visited-font-color: rgba(var(--colors-baltic-55));
--link_visited-font-color: var(--palette-categorical-8);
--link_unresolved-font-color: var(--important-color);

/* abstract */
Expand Down

0 comments on commit 7d1c353

Please sign in to comment.