Created attachment 431109 [details] screenshot of a link on dark color-scheme with a failing score of 1.77 see issue in this reduced case https://cdpn.io/argyleink/debug/98e3068212c217dd1867ac992006ec77 looks like the user-agent stylesheet link color needs desaturated when in a dark color scheme.
<rdar://problem/79228859>
Visited color failing as well (see attached image)
Created attachment 431363 [details] screenshot of visited link on dark color-scheme with a failing score of 1.49
currently mitigating the issue with the following CSS: ```css @media (prefers-color-scheme: dark) { @supports (-webkit-hyphens:none) { a[href] { color: hsl(240 100% 81%); } } } ```
*** This bug has been marked as a duplicate of bug 209851 ***