Closed andrewnicols closed 1 year ago
When adding a link to the frame comment, it is rendered as the browsers standard link colour. In Chrome this is rgb(0, 0, 238) or #0000ee.
rgb(0, 0, 238)
#0000ee
This is rendered on a background which is rgba(255, 255, 255, .05) over a background with colour #303030. This basically gives it a colour of #3b3b3b.
rgba(255, 255, 255, .05)
#303030
#3b3b3b
This combination has a contrast ratio of 1.19:1 and is, unfortunately, almost impossible to read.
The hover colour of #4BB1B1 is also a fail at 4.38:1.
#4BB1B1
I'd suggest:
#c6c6c6
When adding a link to the frame comment, it is rendered as the browsers standard link colour. In Chrome this is
rgb(0, 0, 238)
or#0000ee
.This is rendered on a background which is
rgba(255, 255, 255, .05)
over a background with colour#303030
. This basically gives it a colour of#3b3b3b
.This combination has a contrast ratio of 1.19:1 and is, unfortunately, almost impossible to read.
The hover colour of
#4BB1B1
is also a fail at 4.38:1.I'd suggest:
#c6c6c6
which has a contrast ratio of 5.81:1 (WCAG AA pass).