Lighthouse reported color contrast issues in the code block colored by prism.js . Actually I don’t care about these issues because people doesn’t read code blocks carefully. However, I just did the quick fixes for them by changing the color to see the contrast ratio in Chrome developer console.
Fixes are the following. The full CSS is attached to the gist .
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 @@ -71,11 +71,11 @@ .token.prolog, .token.doctype, .token.cdata { - color: slategray; + color: #5f6d7b; } .token.punctuation { - color: #999; + color: #525252; } .namespace { @@ -98,7 +98,7 @@ .token.char, .token.builtin, .token.inserted { - color: #690; + color: #055a01; } .token.operator, @@ -106,24 +106,23 @@ .token.url, .language-css .token.string, .style .token.string { - color: #a67f59; - background: hsla(0, 0%, 100%, .5); + color: #695037; } .token.atrule, .token.attr-value, .token.keyword { - color: #07a; + color: #03427b; } .token.function { - color: #DD4A68; + color: #9a213b; } .token.regex, .token.important, .token.variable { - color: #e90; + color: #714902; } .token.important, @@ -174,7 +173,7 @@ .line-numbers-rows > span:before { content: counter(linenumber); - color: #999; + color: #6f6f6f; display: block; padding-right: 0.8em; text-align: right;
Although I prefer to the default colors, I think the a11y edition (all colors become darker) is decent and able to get 100 scores on Lighthouse 👍.