According to MDN, the list attribute can be used for elements of type color to provide a list of predefined colors. That page also indicates that list is supported at least in Chrome.
Though when I specified some colors they were not shown as expected using Chrome 67. Instead, only empty items were shown in the color picker popup and clicking on them set the value of the input to rgba(0, 0, 0, 0).
Simple example:
I tried to specify the colors in different formats like used in CSS, e.g. rgb() or color keywords like red, though none of them worked.
Having a look at the HTML specification, it says that the input only accepts "lowercase simple colors", which is defined as the 6-character hex format.
So, is that a bug in Chrome or am I supposed to specify the colors in a different format?
