Skip to content

Instantly share code, notes, and snippets.

@simonrenoult
Created December 20, 2013 14:28
Embed
What would you like to do?
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