Closed
Description
When having the following code:
const color = '#ff0000';
It is not detected as a color in the standalone color picker. However, if I insert a space before it, it begins being detected. This works:
const color = ' #ff0000';
I think that the color picker should also be shown when the hex color is in a string like in this example.