Skip to content

Commit

Permalink
fix hover color on links dark theme (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
Arhell authored Mar 12, 2024
1 parent d7166b2 commit d9f6ce8
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions docs/assets/css/extra.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,13 @@
}

[data-md-color-scheme="slate"] .md-typeset a:hover {
color: #bf79f0 !important;
color: #699cfa !important;
}

[data-md-color-scheme="slate"] .md-nav__item .md-nav__link--active:hover {
color: #bf79f0 !important;
color: #699cfa !important;
}

[data-md-color-scheme="slate"] .md-nav__link a:hover {
color: #699cfa !important;
}

0 comments on commit d9f6ce8

Please sign in to comment.