Skip to content

Commit

Permalink
Update hyperlink and hover/focus colors for light and dark mode
Browse files Browse the repository at this point in the history
Signed-off-by: PixelRobots <22979170+PixelRobots@users.noreply.github.com>
  • Loading branch information
PixelRobots committed Oct 3, 2024
1 parent b9a7530 commit 4c319c6
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions docs/_sass/custom/custom.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/* Light mode - Default theme */
a:link, a:visited {
color: #11a9bb; /* Light mode hyperlink color */
}

a:hover, a:focus {
color: #11a9bb; /* Light mode hover/focus color */
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
a:link, a:visited {
color: #11a9bb; /* Dark mode hyperlink color */
}

a:hover, a:focus {
color: #11a9bb; /* Dark mode hover/focus color */
}
}

0 comments on commit 4c319c6

Please sign in to comment.