Skip to content

Instantly share code, notes, and snippets.

@simonrenoult
Created December 20, 2013 14:28
Show Gist options
  • Save simonrenoult/8055480 to your computer and use it in GitHub Desktop.
Save simonrenoult/8055480 to your computer and use it in GitHub Desktop.
Hexadecimal color to RGB.
color = '#' + ( @model.get 'stroke_color' )
.map ( color ) ->
xColor = color.toString 16
if xColor.length is 1 then "0" + xColor else xColor
.reduce ( prev, cur, i ) ->
if i < 3 then prev + cur else prev
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment