Skip to content

Instantly share code, notes, and snippets.

@jonrandy
Created January 5, 2022 04:09
Show Gist options
  • Save jonrandy/40a7af586e860663d709d79281fa308f to your computer and use it in GitHub Desktop.
Save jonrandy/40a7af586e860663d709d79281fa308f to your computer and use it in GitHub Desktop.
isValidCSSColour
const isValidCSSColour = str => {
const s = new Option().style
s.color = str
return s.color != ''
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment