Qix-/color

The issue has been closed
Unable to parse color from string: 00ff00 #180
weaver posted onGitHub
Hello, I came across this error today. It looks like #00ff00
works but 00ff00
does not (missing #
prefix. I'm doing this as a workaround. Any chance of supporting hex strings with an optional octothorp?
const parseColor = (input: string) => {
try {
return Color(input)
} catch(originalError) {
try {
// Is this a 'Unable to parse color from string' error?
return Color('#' + input);
} catch(_) {
throw originalError;
}
}
}