Skip to content

Commit

Permalink
fix(report): color contrast and var name
Browse files Browse the repository at this point in the history
  • Loading branch information
nnn3d authored Oct 13, 2023
1 parent 7cf3da6 commit 7d09f1c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions styles/report.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
--test-link-selected-color: hsl(54 100% 90%);

--link-color: #0000ee;
--link-color-visited: #551a8b;
--link-visited-color: #551a8b;
}

@media (prefers-color-scheme: dark) {
Expand All @@ -49,7 +49,7 @@
--test-link-selected-color: hsl(221 31% 20%);

--link-color: #38a2ff;
--link-color-visited: #a06eff;
--link-visited-color: #b68fff;
}
}

Expand Down Expand Up @@ -89,7 +89,7 @@ a:focus {
}

a:visited {
color: var(--link-color-visited);
color: var(--link-visited-color);
}

.header {
Expand Down

0 comments on commit 7d09f1c

Please sign in to comment.