Browse Source

Make dark mode link hover color to be darker than the non-hover color (instead of being the same color), just like on light mode.

Martijn Laan 1 year ago
parent
commit
1ca372d9ba
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ISHelp/Staging/styles.css

+ 1 - 1
ISHelp/Staging/styles.css

@@ -62,7 +62,7 @@ A:link, A:visited {
 }
 A[href]:hover {
 	color: hsl(206, 100%, 30%); /* for IE */
-	color: light-dark(hsl(206, 100%, 30%), hsl(206, 100%, 50%));
+	color: light-dark(hsl(206, 100%, 30%), hsl(206, 100%, 43%));
 	text-decoration: underline;
 }
 A.highlighted {